.web-response {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 999999;
    width: 390px;
    max-width: calc(100vw - 32px);
    opacity: 0;
    transform: translateY(18px) scale(.98);
    transition: all .22s ease;
    pointer-events: none;
}

.web-response.is-open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.web-response-inner {
    background: #005CB9;
    color: #fff;
    border-radius: 16px;
    padding: 18px 18px;
    box-shadow: 0 18px 40px rgba(0, 36, 90, .22);
    display: grid;
    grid-template-columns: 42px 1fr 28px;
    gap: 14px;
    align-items: center;
}

.web-response-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,.16);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.web-response-title {
    font-size: 16px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 3px;
}

.web-response-message {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    color: rgba(255,255,255,.92);
}

.web-response-close {
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    color: rgba(255,255,255,.92);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    padding: 0;
    cursor: pointer;
    transition: all .18s ease;
    margin-top: -2px;
}

.web-response-close:hover {
    background: rgba(255,255,255,.22);
    color: #fff;
    transform: scale(1.08);
}

.web-response-close i {
    line-height: 1;
}

.web-response-error .web-response-inner {
    background: #c62828;
}

.web-response-warning .web-response-inner {
    background: #f59e0b;
}

.web-response-info .web-response-inner {
    background: #005CB9;
}

.web-response-success .web-response-inner {
    background: #005CB9;
}

@media (max-width: 575px) {
    .web-response {
        right: 16px;
        left: 16px;
        bottom: 16px;
        width: auto;
    }

    .web-response-inner {
        grid-template-columns: 38px 1fr 26px;
        padding: 16px;
    }
}

.cart-qty-fixed .qty-view {
    width: 42px;
    height: 42px;
    background: #f7f8fb;
    color: #071d49;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
}

.cart-empty-btn {
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 12px 20px;
    border-radius: 12px;
    background: #fff;
    color: #b7b7b7 !important;
    border: 2px solid #e4e7ec;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none !important;
    transition: all .18s ease;
}

.desktop.cart-empty-btn {
    display: inline-flex;
}

.mobile.cart-empty-btn {
    display: none;
}

@media screen and (max-width: 751px) {
    .desktop.cart-empty-btn {
        display: none !important;
    }

    .mobile.cart-empty-btn {
        display: inline-flex !important;
    }
}

.cart-empty-btn:hover {
    color: #fff !important;
    background: #c62828;
    border-color: #c62828;
}

.cart-empty-btn i {
    font-size: 17px;
}
.cart-row-loading {
    opacity: .72;
    transition: opacity .18s ease;
}

.cart-row-loading .qty {
    background: #f3f6fb;
}

.ya-pague-box {
    border: 1px solid #e4e7ec;
    border-radius: 16px;
    padding: 22px;
    background: #f8fbff;
}

.ya-pague-box h4 {
    color: #003E79;
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 18px;
}

.ya-pague-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 0;
    border-bottom: 1px solid #e4e7ec;
    font-size: 16px;
    font-weight: 700;
}

.ya-pague-row strong {
    color: #003E79;
    font-size: 18px;
    font-weight: 900;
}

.ya-pague-total {
    border-bottom: 0;
    margin-top: 8px;
    padding-top: 16px;
    font-size: 20px;
}

.ya-pague-total strong {
    font-size: 24px;
}

.ya-pague-transfer-box {
    max-width: 620px;
    border: 1px solid #e4e7ec;
    border-radius: 16px;
    padding: 22px;
    background: #fff;
}

.ya-pague-transfer-box h5 {
    color: #003E79;
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 16px;
}
.ya-pague-alert {
    background: #eef5ff;
    border: 1px solid #d7e6ff;
    color: #003E79;
    padding: 16px 18px;
    border-radius: 12px;
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 22px;
}

.ya-pague-alert strong {
    font-weight: 900;
}

.ya-pague-next-step {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid #dfe5ec;
    font-size: 15px;
    font-weight: 700;
    color: #003E79;
}
/*======== COMPRA ================================================= */
.payment-box {
    margin-top: 35px;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.payment-header {
    padding: 22px;
    background: #f8f9fa;
    text-align: center;
    border-bottom: 1px solid #e5e5e5;
}

.payment-header h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}

.payment-header p {
    margin: 8px 0 0;
    color: #666;
    font-size: 14px;
}

.payment-section {
    padding: 24px;
}

.payment-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.payment-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 18px;
}

.payment-account-card {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 15px;
    text-align: left;
    background: #fafafa;
}

.payment-account-card table {
    width: 100%;
    margin-top: 10px;
}

.payment-account-card td {
    padding: 4px 0;
    font-size: 14px;
}

.payment-account-card td:first-child {
    width: 35%;
    color: #666;
}

.payment-upload {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.payment-accordion {
    margin-top: 15px;
}

.payment-accordion .accordion-button {
    background-color: #f8f9fa !important;
    color: #202124 !important;
    font-weight: 700;
    box-shadow: none !important;
    padding: 18px 20px;
}

.payment-accordion .accordion-button:not(.collapsed) {
    background-color: #eef2f7 !important;
    color: #202124 !important;
}

.payment-accordion .accordion-body {
    padding: 24px;
    background: #fff;
}

.payment-accordion .accordion-item {
    border: 1px solid #d9dee3;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
}

.payment-accordion .accordion-button::after {
    opacity: 1;
}
.payment-alt-item {
    border: 1px solid #d9dee3;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
    background: #fff;
}

.payment-alt-btn {
    width: 100%;
    border: 0;
    background: #f8f9fa;
    color: #202124;
    padding: 18px 20px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
}

.payment-alt-btn:hover {
    background: #eef2f7;
}

.payment-alt-content {
    display: none;
    padding: 24px;
    background: #fff;
    border-top: 1px solid #e5e5e5;
}

.payment-alt-item.open .payment-alt-content {
    display: block;
}

.payment-alt-item.open .payment-alt-icon {
    transform: rotate(180deg);
}

.payment-alt-icon {
    transition: transform .2s ease;
}
/* ================================================================ */
/* ================================================================ */
/* Estilos del botón de Mercado Pago */
/* ================================================================ */
.mercado-pago-btn {
    display: inline-block;
    background-color: #009ee3;
    color: white;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    padding: 12px 24px;
    text-align: center;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin: 30px;
}

.mercado-pago-btn:hover {
    background-color: #018ac5;
    color: white;
}

.mercado-pago-btn img {
    vertical-align: middle;
    margin-right: 8px;
    width: 100px;
}

/* ================================================================ */
/* ================================================================ */
/* ================================================================ */
/* ======================== PACKS ================================= */
/* ================================================================ */
/* ================================================================ */
/* ================================================================ */
.pack-cta {
    position: relative;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    margin: 20px 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pack-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.pack-cta-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 0.4s ease;
}

.pack-cta:hover .pack-cta-bg {
    transform: scale(1.05);
}

.pack-cta-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,1), rgba(0,0,0,0.2));
}

.pack-cta-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 25px;
    width: 100%;
}

.pack-cta-content h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.pack-cta-content p {
    font-size: 18px;
    margin-bottom: 18px;
    opacity: 1;
    color: #fff;
    font-weight: 700;
}

.pack-cta-btn {
    display: inline-block;
    background: #ffffff;
    color: #000;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
}
.modal-body {
    position: relative;
    height: 75vh; /* podés ajustar esto */
    overflow: hidden;
    margin-top: 0;
}

#pack-step-fotos {
    height: 100%;
    position: relative;
}

.pack-selected-preview {
    position: absolute;
    inset: 0;
    z-index: 50;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.9);
    display: none;
    align-items: center;
    justify-content: center;
}

.pack-selected-preview a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.pack-selected-preview img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.pack-selected-close,
.pack-nav {
    position: absolute;
    z-index: 80;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,.82);
    color: #111;
    box-shadow: 0 8px 22px rgba(0,0,0,.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s ease;
}

.pack-selected-close:hover,
.pack-nav:hover {
    background: rgba(255,255,255,.95);
    transform: scale(1.06);
}

.pack-selected-close {
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    font-size: 30px;
    line-height: 1;
}

.pack-nav {
    top: 50%;
    width: 50px;
    height: 50px;
    font-size: 42px;
    line-height: 1;
    transform: translateY(-50%);
}

.pack-nav:hover {
    transform: translateY(-50%) scale(1.06);
}

.pack-nav-prev {
    left: 16px;
}

.pack-nav-next {
    right: 16px;
}

.pack-photo-option.selected img {
    border: 4px solid #111;
    border-radius: 8px;
}
/* ================================================================= */
/* ======================== BANNER DEL PACK ======================== */
/* ================================================================= */
.pack-banner {
    position: relative;
    min-height: 335px;
    border-radius: 22px;
    overflow: hidden;
    cursor: pointer;
    margin: 25px 0;
    padding: 45px 40px 85px;
    background:
            radial-gradient(circle at 65% 30%, rgba(29, 93, 180, .65), transparent 35%),
            linear-gradient(135deg, #03163a 0%, #061f4d 45%, #052c70 100%);
}

.pack-banner-copy {
    position: relative;
    z-index: 3;
    width: 52%;
    color: #fff;
}

.pack-banner-copy h2 {
    position: relative;
    color: #fff;
    font-size: 50px;
    line-height: .95;
    font-weight: 800;
    margin: 0 0 18px;
    letter-spacing: -1px;
}
.sparkle-svg {
    position: absolute;
    right: 130px;
    top: -35px;
    width: 60px;
    height: 60px;
}


.pack-banner-main {
    color: #fff;
    font-size: 22px;
    line-height: 1.22 !important;
    margin: 0 0 22px;
    font-weight: 500;
}

.pack-banner-small {
    color: rgba(255,255,255,.9);
    font-size: 17px;
    margin: 0 0 26px;
}

.pack-banner-cta {
    position: relative;
    width: 300px;
    height: 55px;
    border-radius: 10px;
    background: linear-gradient(180deg, #2f7cff, #0050f0);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    font-size: 20px;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(0, 78, 255, .35);
}

.pack-banner-arrow {
    font-size: 42px;
    line-height: 1;
}

.pack-banner-visual {
    position: absolute;
    right: 0;
    top: 0;
    width: 52%;
    height: 100%;
    z-index: 2;
}

.pack-banner-kid {
    position: absolute;
    right: 35px;
    bottom: 0px;
    height: 88%;
    max-height: 350px;
    object-fit: contain;
    filter: drop-shadow(0 18px 28px rgba(0,0,0,.35));
}

.pack-banner-flow {
    position: absolute;

    left: 40px;   /* 🔥 igual al padding del banner */
    right: 40px;  /* 🔥 clave: ocupa todo el ancho */
    bottom: 15px;

    z-index: 4;
    height: 60px;

    border-radius: 10px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 10px 35px rgba(0, 0, 0, .18);

    display: flex;
    align-items: center;
    justify-content: space-between; /* 🔥 distribuye mejor */
    padding: 0 25px;
    gap: 20px;
}

.pack-flow-item {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 230px;
    color: #929bad;
}

.pack-flow-item strong {
    display: block;
    font-size: 15px;
    color: #7b8495;
    line-height: 1.1;
}

.pack-flow-item span {
    display: block;
    font-size: 14px;
    margin-top: 4px;
}

.pack-flow-item.active strong {
    color: #075cff;
}

.pack-flow-item.active .pack-flow-num {
    border-color: #075cff;
    color: #075cff;
}

.pack-flow-num {
    width: 44px;
    height: 44px;
    border: 2px solid #d4d9e2;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    flex: 0 0 44px;
}

.pack-flow-line {
    height: 2px;
    flex: 1;
    background: #d9dde5;
    min-width: 70px;
}

@media (max-width: 900px) {
    .pack-banner {
        padding: 32px 24px 120px;
        min-height: 420px;
    }

    .pack-banner-copy {
        width: 100%;
    }

    .pack-banner-copy h2 {
        font-size: 42px;
    }

    .pack-banner-main {
        font-size: 19px;
    }

    .pack-banner-visual {
        opacity: .35;
        width: 100%;
    }

    .pack-banner-kid {
        right: -20px;
        bottom: 95px;
        height: 62%;
    }

    .pack-banner-flow {
        left: 16px;
        right: 16px;
        height: auto;
        padding: 14px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .pack-flow-line {
        display: none;
    }

    .pack-flow-item {
        min-width: 0;
    }
}
/* ================================================================= */
/* ======================== LISTADO DE PACKS ======================= */
/* ================================================================= */

.pack-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,.12);
    cursor: pointer;
    transition: all .25s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pack-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,.18);
}

/* IMAGEN */
.pack-card-img {
    width: 100%;
    aspect-ratio: 1 / 1; /* 🔥 esto lo hace cuadrado siempre */
    overflow: hidden;
    border-radius: 22px 22px 0 0;
}

.pack-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.pack-card:hover .pack-card-img img {
    transform: scale(1);
}
.pack-card.selected {
    border: 2px solid #2f6bff;
}

/* BODY */
.pack-card-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px;
    background: #f8f9fb;
}

/* TEXTO */
.pack-card-text h5 {
    font-size: 26px;
    font-weight: 700;
    color: #0b2a5a;
    margin-bottom: 5px;
}

.pack-card-text p {
    font-size: 16px;
    color: #6b768a;
    margin: 0;
}

/* ICONO */
.pack-card-icon {
    width: 60px;
    height: 60px;
    background: #e9efff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pack-card-icon svg {
    width: 32px;
    height: 32px;
}
#pack-paso-title{
    font-size: 20px !important;
    margin: 0 !important;
}
#pack-paso-description{
    font-size: 16px !important;
}

/*==============================================================*/
/*==============================================================*/
/*==============================================================*/
/*==============================================================*/
/*===== COMBOS =================================================*/
/*==============================================================*/
/*==============================================================*/
/*==============================================================*/

.combo-banner {
    position: relative;
    min-height: 335px;
    border-radius: 22px;
    overflow: hidden;
    cursor: pointer;
    margin: 25px 0;
    padding: 45px 40px 85px;
    background:
            radial-gradient(circle at 65% 30%, rgba(39,137,37,.45), transparent 35%),
            linear-gradient(135deg, #1d5f1c 0%, #278925 50%, #3faa39 100%);
}

/* TEXT */
.combo-banner-copy {
    position: relative;
    z-index: 3;
    width: 52%;
    color: #fff;
}

.combo-banner-copy h2 {
    position: relative;
    color: #fff;
    font-size: 50px;
    line-height: .95;
    font-weight: 800;
    margin: 0 0 18px;
    letter-spacing: -1px;
}

.combo-sparkle-svg {
    position: absolute;
    right: 80px;
    top: -30px;
    width: 55px;
}

/* TEXT BLOCK */
.combo-banner-main {
    color: #fff;
    font-size: 22px;
    line-height: 1.22 !important;
    margin: 0 0 22px;
    font-weight: 500;
}

.combo-banner-small {
    color: rgba(255, 255, 255, .9);
    font-size: 17px;
    margin: 0 0 26px;
}

/* CTA */
.combo-banner-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    width: 280px;
    height: 55px;
    border-radius: 10px;
    background: linear-gradient(180deg, #35c233, #1e7d1c);
    font-weight: 800;
    font-size: 18px;
    box-shadow: 0 12px 28px rgba(0,0,0,.25);
}

.combo-banner-arrow {
    font-size: 36px;
}

/* IMAGE */
.combo-banner-visual {
    position: absolute;
    right: 0;
    top: 0;
    width: 52%;
    height: 100%;
}

.combo-banner-img {
    position: absolute;
    right: 75px;
    bottom: 0;
    height: 100%;
    max-height: 360px;
    object-fit: contain;
    filter: drop-shadow(0 18px 28px rgba(0, 0, 0, .35));
}

/* FLOW */
.combo-banner-flow {
    position: absolute;

    left: 40px;   /* 🔥 igual al padding del banner */
    right: 40px;  /* 🔥 clave: ocupa todo el ancho */
    bottom: 15px;

    z-index: 4;
    height: 60px;

    border-radius: 10px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 10px 35px rgba(0, 0, 0, .18);

    display: flex;
    align-items: center;
    justify-content: space-between; /* 🔥 distribuye mejor */
    padding: 0 25px;
    gap: 20px;
}

.combo-flow-item {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 230px;
    color: #929bad;
}
.combo-flow-item strong {
    display: block;
    font-size: 15px;
    color: #7b8495;
    line-height: 1.1;
}

.combo-flow-item span {
    display: block;
    font-size: 14px;
    margin-top: 4px;
}

.combo-flow-item.active .combo-flow-num {
    border-color: #278925;
    color: #278925;
}

.combo-flow-num {
    width: 44px;
    height: 44px;
    border: 2px solid #d4d9e2;
    font-size: 22px;
    flex: 0 0 44px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.combo-flow-line {
    height: 2px;
    flex: 1;
    background: #d9dde5;
    min-width: 70px;
}

@media (max-width: 900px) {
    .combo-banner {
        padding: 32px 24px 120px;
        min-height: 420px;
    }

    .combo-banner-copy {
        width: 100%;
    }

    .combo-banner-copy h2 {
        font-size: 42px;
    }

    .combo-banner-main {
        font-size: 19px;
    }

    .combo-banner-visual {
        opacity: .35;
        width: 100%;
    }

    .combo-banner-kid {
        right: -20px;
        bottom: 95px;
        height: 62%;
    }

    .combo-banner-flow {
        left: 16px;
        right: 16px;
        height: auto;
        padding: 14px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .combo-flow-line {
        display: none;
    }

    .combo-flow-item {
        min-width: 0;
    }
}


.combo-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0,0,0,.12);
    cursor: pointer;
    transition: all .25s ease;
    height: 100%;
    overflow: hidden;
}

.combo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(0,0,0,.18);
}

.combo-card-body {
    padding: 24px;
    background: #f8f9fb;
}
.combo-card-text{
    min-height: 100px;
}
.combo-card-body h5 {
    font-size: 25px;
    font-weight: 800;
    color: #0b2a5a;
    margin-bottom: 8px;
}

.combo-card-body p {
    font-size: 15px;
    color: #6b768a;
    margin-bottom: 12px;
}

.combo-modal-body {
    display: flex;
    flex-direction: column;
    height: 75vh;
    overflow: hidden;
}

/* HEADER FIJO */
.combo-step-header {
    position: sticky;
    top: 0;
    z-index: 30;

    background: #fff;

    padding-bottom: 12px;
    margin-bottom: 12px;

    border-bottom: 1px solid #eee;
}

/* SOLO SCROLLEAN LAS FOTOS */
.combo-step-photos {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;

    padding-right: 5px;
}

/* opcional scrollbar linda */
.combo-step-photos::-webkit-scrollbar {
    width: 8px;
}

.combo-step-photos::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,.15);
    border-radius: 10px;
}


.combo-selected-preview {
    position: absolute;
    inset: 0;
    z-index: 50;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.9);
    display: none;
    align-items: center;
    justify-content: center;
}

.combo-selected-preview a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.combo-selected-preview img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.combo-selected-close,
.combo-nav {
    position: absolute;
    z-index: 80;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,.82);
    color: #111;
    box-shadow: 0 8px 22px rgba(0,0,0,.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s ease;
}

.combo-selected-close {
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    font-size: 30px;
}

.combo-nav {
    top: 50%;
    width: 50px;
    height: 50px;
    font-size: 42px;
    transform: translateY(-50%);
}

.combo-nav-prev { left: 16px; }
.combo-nav-next { right: 16px; }

.combo-photo-option.selected img {
    border: 4px solid #111;
    border-radius: 8px;
}
#combo-paso-title{
    font-size: 20px;
    margin: 0;
}
#combo-paso-description {
    font-size: 16px;
}
.combo-builder-modal {
    --combo-blue: #071d49;
    --combo-gray: #8d96aa;
    --combo-border: #e7ebf3;
    --combo-soft: #f7f9fc;
}

.combo-builder-dialog {
    width: calc(100vw - 32px);
    max-width: none;
    height: calc(100vh - 32px);
    margin: 16px auto;
}

.combo-builder-content {
    height: 100%;
    border: 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.18);
}

.combo-builder-header {
    height: 76px;
    padding: 0 28px;
    border-bottom: 1px solid var(--combo-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.combo-builder-title-wrap {
    display: flex;
    align-items: center;
    gap: 18px;
}

.combo-builder-back-icon {
    width: 36px;
    height: 36px;
    border: 0;
    background: transparent;
    color: var(--combo-blue);
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.combo-builder-title {
    margin: 0;
    color: var(--combo-blue);
    font-size: 26px;
    font-weight: 900;
}

.combo-builder-steps {
    height: 82px;
    border-bottom: 1px solid var(--combo-border);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.combo-builder-step {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #b3bac8;
    font-size: 20px;
    font-weight: 800;
}

.combo-builder-step span {
    width: 42px;
    height: 42px;
    border: 3px solid #e3e7ef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.combo-builder-step.active,
.combo-builder-step.done {
    color: var(--combo-blue);
}

.combo-builder-step.active span,
.combo-builder-step.done span {
    background: var(--combo-blue);
    border-color: var(--combo-blue);
    color: #fff;
}

.combo-builder-line {
    width: 150px;
    height: 3px;
    background: #e3e7ef;
}

.combo-builder-body {
    height: calc(100% - 76px - 82px - 92px);
    overflow: auto;
    padding: 28px 36px;
}

.combo-builder-footer {
    height: 92px;
    padding: 0 36px;
    border-top: 1px solid var(--combo-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
}

.combo-builder-intro {
    color: var(--combo-gray);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
}

.combo-builder-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.combo-builder-card {
    border: 1px solid var(--combo-border);
    border-radius: 14px;
    padding: 24px;
    background: #fff;
    cursor: pointer;
    transition: all .18s ease;
}

.combo-builder-card:hover,
.combo-builder-card.is-selected {
    border-color: var(--combo-blue);
    box-shadow: 0 12px 34px rgba(7,29,73,.14);
    transform: translateY(-2px);
}

.combo-builder-card-img {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.combo-builder-card-img img {
    max-width: 100%;
    max-height: 180px;
    object-fit: contain;
}

.combo-builder-card-body h5 {
    color: var(--combo-blue);
    font-size: 25px;
    font-weight: 900;
    margin: 0 0 14px;
}

.combo-builder-card-body p {
    color: var(--combo-blue);
    font-size: 17px;
    font-weight: 700;
    min-height: 72px;
    margin-bottom: 18px;
}

.combo-builder-card-total {
    color: var(--combo-blue);
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 18px;
}

.combo-builder-card-price {
    color: var(--combo-blue);
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 18px;
}

.combo-builder-card-btn,
.combo-builder-btn-primary {
    background: var(--combo-blue);
    color: #fff;
    border: 0;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 900;
    padding: 14px 28px;
}

.combo-builder-card-btn {
    width: 100%;
}

.combo-builder-card-btn:hover,
.combo-builder-btn-primary:hover {
    background: #0b2b6f;
    color: #fff;
}

.combo-builder-btn-light {
    background: #fff;
    border: 1px solid #d8deea;
    color: var(--combo-blue);
    border-radius: 8px;
    font-size: 18px;
    font-weight: 800;
    padding: 13px 26px;
    margin-right: 14px;
}

.combo-builder-photo-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 32px;
}

.combo-builder-counter {
    color: var(--combo-gray);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px;
}

#combo-paso-title,
.combo-builder-review-title {
    color: var(--combo-blue);
    font-size: 34px;
    font-weight: 900;
    margin: 0;
}

.combo-builder-required {
    color: #dd5a6f;
    font-size: 20px;
    font-weight: 800;
    margin-top: 6px;
}

.combo-builder-photos-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.combo-builder-photo-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 4px solid transparent;
    cursor: pointer;
    background: #f2f4f8;
    aspect-ratio: 1 / 1;
}

.combo-builder-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.combo-builder-photo-item.selected {
    border-color: #1687ff;
}

.combo-builder-check {
    position: absolute;
    right: 8px;
    bottom: 8px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #1687ff;
    color: #fff;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.combo-builder-photo-item.selected .combo-builder-check {
    display: flex;
}

.combo-builder-selection-side {
    border-left: 1px solid var(--combo-border);
    padding-left: 28px;
}

.combo-selection-box {
    border: 1px solid var(--combo-border);
    border-radius: 12px;
    padding: 22px;
    position: sticky;
    top: 0;
}

.combo-selection-box h5 {
    color: var(--combo-blue);
    font-size: 18px;
    font-weight: 900;
    margin: 0 0 10px;
}

.combo-selection-box p {
    color: #dd5a6f;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 18px;
}

.combo-selection-slots {
    display: grid;
    grid-template-columns: repeat(2, 86px);
    gap: 14px;
}

.combo-selection-slot {
    width: 86px;
    height: 86px;
    border-radius: 8px;
    border: 2px dashed #d7dce7;
    background: #fafbfe;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--combo-gray);
    font-size: 32px;
    overflow: hidden;
}

.combo-selection-slot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.combo-builder-review-layout {
    display: grid;
    grid-template-columns: 1fr 520px;
    gap: 46px;
    align-items: start;
}

.combo-builder-review-subtitle {
    color: var(--combo-gray);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 28px;
}

.combo-review-group {
    margin-bottom: 28px;
}

.combo-review-group h5 {
    color: var(--combo-blue);
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 14px;
}

.combo-review-photos {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.combo-review-photo {
    width: 150px;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
    background: #f3f5f9;
}

.combo-review-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.combo-builder-review-card {
    border: 1px solid var(--combo-border);
    border-radius: 14px;
    padding: 28px;
    color: var(--combo-blue);
}

.combo-review-card-head {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 22px;
    align-items: start;
    margin-bottom: 28px;
}

.combo-review-card-head img {
    width: 150px;
    height: 105px;
    object-fit: contain;
}

.combo-review-card-head h5 {
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 14px;
}

.combo-review-card-head ul {
    margin: 0;
    padding-left: 20px;
    font-size: 17px;
    font-weight: 700;
}

.combo-review-card-row {
    border-top: 1px solid var(--combo-border);
    padding-top: 20px;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 21px;
    font-weight: 900;
}

.combo-review-card-price {
    font-size: 34px;
}

@media (max-width: 991px) {
    .combo-builder-dialog {
        width: calc(100vw - 16px);
        height: calc(100vh - 16px);
        margin: 8px auto;
    }

    .combo-builder-grid {
        grid-template-columns: 1fr;
    }

    .combo-builder-photo-layout,
    .combo-builder-review-layout {
        grid-template-columns: 1fr;
    }

    .combo-builder-selection-side {
        border-left: 0;
        padding-left: 0;
    }

    .combo-builder-photos-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .combo-builder-line {
        width: 38px;
    }

    .combo-builder-step strong {
        display: none;
    }
}

/*==============================================================*/
/*==============================================================*/
/*==============================================================*/
/*==============================================================*/
/*===== MODAL DE PHOTOS ========================================*/
/*==============================================================*/
/*==============================================================*/
/*==============================================================*/
.photo-options-modal .photo-modal-dialog {
    max-width: 1180px;
}

.photo-modal-content {
    border: 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.16);
}

.photo-modal-header {
    border-bottom: 0;
    padding: 26px 32px 10px;
}

.photo-modal-title {
    font-size: 24px;
    line-height: 1.2;
    font-weight: 800;
    color: #071d49;
    margin: 0;
}

.photo-modal-close {
    box-shadow: none !important;
    opacity: .8;
}

.photo-modal-body {
    padding: 10px 32px 20px;
}

.photo-tabs-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    margin: 8px 0 28px;
}

.photo-tab-btn {
    border: 0;
    background: transparent;
    color: #8d96aa;
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
    padding: 12px 8px 16px;
    position: relative;
    cursor: pointer;
}

.photo-tab-btn.active {
    color: #071d49;
}

.photo-tab-btn.active:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    background: #071d49;
    border-radius: 10px;
}

.photo-tab-separator {
    width: 1px;
    height: 34px;
    background: #d9dde7;
}

.photo-tab-pane {
    display: none;
}

.photo-tab-pane.active {
    display: block;
}

.photo-modal-row {
    align-items: stretch;
}

.photo-left-col,
.photo-right-col {
    padding: 0 12px;
}

.photo-preview-wrap {
    width: 100%;
    height: 520px;
    border-radius: 6px;
    overflow: hidden;
    background: #f3f5f9;
    border: 1px solid #e6eaf2;
}

.photo-preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.photo-panel,
.photo-combos-panel {
    background: #fff;
    border: 1px solid #e7ebf3;
    border-radius: 12px;
    overflow: hidden;
    height: 520px;
}

.photo-combos-panel {
    height: auto;
    min-height: 420px;
    background: #eef6ff;
    padding-bottom: 20px;
}

.photo-panel-header {
    height: 70px;
    padding: 0 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e7ebf3;
    background: #fff;
}

.photo-panel-header-blue {
    background: #eef6ff;
}

.photo-panel-title {
    font-size: 20px;
    font-weight: 900;
    color: #071d49;
    text-transform: uppercase;
}

.photo-panel-arrow {
    font-size: 24px;
    color: #071d49;
}

.photo-panel-body {
    height: calc(520px - 70px);
    overflow-y: auto;
    padding: 0 18px;
}

.photo-option-row,
.photo-product-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid #edf0f5;
}

.photo-option-info {
    flex: 1;
    min-width: 0;
}

.photo-option-name,
.photo-product-name {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 800;
    color: #071d49;
    margin-bottom: 6px;
}

.photo-option-price,
.photo-product-price {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 600;
    color: #8d96aa;
}

.photo-option-actions,
.photo-product-actions {
    flex: 0 0 auto;
}

.photo-quantity {
    display: flex;
    align-items: center;
    margin: 0;
    background: #f7f8fb;
    border-radius: 4px;
    overflow: hidden;
}

.photo-quantity button {
    width: 42px;
    height: 42px;
    border: 0;
    background: #f7f8fb;
    color: #071d49;
    font-size: 16px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-quantity button:disabled {
    opacity: .4;
    cursor: not-allowed;
}

.photo-quantity input {
    width: 52px;
    height: 42px;
    border: 0;
    background: #fff;
    color: #071d49;
    font-size: 18px;
    font-weight: 800;
    text-align: center;
    box-shadow: none;
    outline: none;
    padding: 0;
}

.photo-quantity input::-webkit-outer-spin-button,
.photo-quantity input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.photo-quantity input[type=number] {
    -moz-appearance: textfield;
}

.photo-products-scroll {
    overflow-y: auto;
}

.photo-product-thumb {
    width: 72px;
    flex: 0 0 72px;
}

.photo-product-img {
    width: 72px;
    height: 58px;
    border-radius: 6px;
    background-size: cover;
    background-position: center;
    background-color: #f3f5f9;
}

.photo-product-info {
    flex: 1;
    min-width: 0;
}

.photo-combos-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    padding: 22px;
}

.photo-combo-card {
    background: #fff;
    border: 1px solid #e6eaf2;
    border-radius: 12px;
    padding: 18px 16px;
    min-height: 360px;
    text-align: center;
    cursor: pointer;
    transition: all .18s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.photo-combo-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(7,29,73,.12);
    border-color: #071d49;
}

.photo-combo-card.is-selected {
    border-color: #071d49;
    box-shadow: 0 0 0 3px rgba(7,29,73,.12);
}

.photo-combo-img {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.photo-combo-img img {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
    display: block;
}

.photo-combo-img-empty {
    background: #f3f5f9;
    border-radius: 8px;
    color: #8d96aa;
    font-size: 13px;
    font-weight: 700;
}

.photo-combo-body h5 {
    font-size: 22px;
    line-height: 1.15;
    font-weight: 900;
    color: #071d49;
    margin: 0 0 12px;
}

.photo-combo-body p {
    font-size: 15px;
    line-height: 1.35;
    font-weight: 600;
    color: #071d49;
    margin: 0 0 14px;
    min-height: 42px;
}

.photo-combo-meta {
    font-size: 16px;
    font-weight: 900;
    color: #071d49;
    margin-bottom: 12px;
}

.photo-combo-price {
    font-size: 22px;
    font-weight: 900;
    color: #071d49;
    margin-bottom: 16px;
}

.photo-combo-btn {
    width: 100%;
    background: #071d49;
    color: #fff;
    border: 0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
    padding: 11px 14px;
}

.photo-combo-btn:hover {
    background: #0b2b6f;
    color: #fff;
}

.photo-empty-state {
    padding: 24px;
    color: #8d96aa;
    font-size: 15px;
    font-weight: 700;
}

.photo-modal-footer {
    border-top: 1px solid #eef1f6;
    padding: 20px 32px;
    display: flex;
    justify-content: flex-end;
    gap: 18px;
}

.photo-btn-close {
    background: #fff;
    color: #8d96aa;
    border: 0;
    font-size: 18px;
    font-weight: 800;
    padding: 14px 32px;
}

.photo-btn-cart {
    min-width: 360px;
    background: #071d49;
    color: #fff;
    border: 0;
    border-radius: 8px;
    font-size: 22px;
    font-weight: 900;
    padding: 16px 28px;
}

.photo-btn-cart:hover {
    background: #0b2b6f;
    color: #fff;
}

@media (max-width: 991px) {
    .photo-tabs-wrap {
        gap: 12px;
    }

    .photo-tab-btn {
        font-size: 15px;
    }

    .photo-tab-separator {
        display: none;
    }

    .photo-preview-wrap,
    .photo-panel {
        height: 420px;
        margin-bottom: 18px;
    }

    .photo-panel-body {
        height: calc(420px - 70px);
    }

    .photo-combos-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .photo-btn-cart {
        min-width: 220px;
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .photo-modal-header,
    .photo-modal-body,
    .photo-modal-footer {
        padding-left: 18px;
        padding-right: 18px;
    }

    .photo-tabs-wrap {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .photo-tab-btn {
        white-space: nowrap;
    }

    .photo-combos-grid {
        grid-template-columns: 1fr;
        padding: 16px;
    }

    .photo-option-row,
    .photo-product-row {
        align-items: flex-start;
    }

    .photo-product-thumb {
        width: 56px;
        flex-basis: 56px;
    }

    .photo-product-img {
        width: 56px;
        height: 48px;
    }

    .photo-btn-cart {
        width: 100%;
        min-width: 0;
    }

    .photo-modal-footer {
        flex-direction: column-reverse;
    }
}