/* ========================================
   CONTA ESI — Styles
   Colors: Barbie #EC1F80, Sunset #F15C24,
   Aquamarine #5BB68E, Electric #F9C711
   ======================================== */

:root {
    --pink: #EC1F80;
    --orange: #F15C24;
    --green: #5BB68E;
    --yellow: #F9C711;
    --dark: #333333;
    --light: #fafafa;
    --white: #ffffff;
    --gray: #666666;
    --light-gray: #f5f5f5;
    --pink-light: #fce4f0;
    --green-light: #e8f5ee;
    --orange-light: #fef0e8;
    --yellow-light: #fef9e3;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Didact Gothic', 'Helvetica Neue', Arial, sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.05rem;
    margin-bottom: 48px;
}

.text-pink { color: var(--pink); }
.text-orange { color: var(--orange); }
.text-green { color: var(--green); }
.text-yellow { color: var(--yellow); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 36px;
    font-family: 'Didact Gothic', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    text-decoration: none;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--pink);
    color: var(--white);
    border-color: var(--pink);
}

.btn-primary:hover {
    background: transparent;
    color: var(--pink);
}

.btn-outline {
    background: transparent;
    color: var(--orange);
    border-color: var(--orange);
}

.btn-outline:hover {
    background: var(--orange);
    color: var(--white);
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* ===== COUNTRY BAR ===== */
.country-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: var(--green);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.8rem;
}

.country-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.country-bar-inner span {
    letter-spacing: 0.1em;
    opacity: 0.7;
}

.country-btn {
    background: none;
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.7);
    padding: 4px 12px;
    font-size: 0.78rem;
    cursor: pointer;
    border-radius: 20px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.country-btn:hover {
    border-color: rgba(255,255,255,0.5);
    color: var(--white);
}

.country-btn.active {
    background: var(--pink);
    border-color: var(--pink);
    color: var(--white);
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: var(--dark);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--pink);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--pink);
}

.nav-link:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--dark);
    transition: all 0.3s ease;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
    background: linear-gradient(135deg, var(--white) 0%, var(--pink-light) 50%, var(--green-light) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(91, 182, 142, 0.1) 0%, transparent 70%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 8px;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--pink);
    font-style: italic;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* ===== HERO SLIDESHOW ===== */
.hero-slideshow {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    animation: float 6s ease-in-out infinite;
}
.hero-slideshow img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    animation: none;
    max-height: none;
}
.hero-slideshow img.active {
    opacity: 1;
}

/* ===== NOSOTROS ===== */
.nosotros {
    background: var(--white);
}

.nosotros-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.nosotros-logo img {
    max-width: 320px;
    width: 100%;
}

.nosotros-text h2 {
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.nosotros-text p {
    margin-bottom: 16px;
    color: var(--gray);
    font-size: 0.98rem;
}

blockquote {
    margin-top: 24px;
    padding: 20px 24px;
    border-left: 4px solid var(--green);
    background: var(--green-light);
    border-radius: 0 8px 8px 0;
}

blockquote p {
    font-style: italic;
    color: var(--dark) !important;
    font-size: 1.05rem !important;
    margin-bottom: 4px !important;
}

blockquote cite {
    color: var(--green);
    font-size: 0.9rem;
}

/* ===== VALORES ===== */
.valores {
    background: var(--light-gray);
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 48px auto 0;
    max-width: 1100px;
}

.valor-card {
    background: var(--white);
    padding: 32px 24px;
    text-align: center;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.valor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.valor-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.valor-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
}

.valor-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.valor-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.valor-card p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* ===== CATÁLOGO ===== */
.catalogo {
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: var(--pink);
    color: var(--white);
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
}

.badge-orange { background: var(--orange); }
.badge-green { background: var(--green); }
.badge-yellow { background: var(--yellow); }

.product-info {
    padding: 16px 20px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-info .product-price {
    margin-top: auto;
}

.variant-thumbs {
    display: flex;
    gap: 6px;
    margin: 8px 0 10px;
    flex-wrap: wrap;
}
.variant-thumb {
    width: 38px;
    height: 38px;
    border-radius: 6px;
    border: 2px solid transparent;
    padding: 0;
    overflow: hidden;
    cursor: pointer;
    background: #f5f5f5;
    transition: border-color 0.15s ease, transform 0.15s ease;
}
.variant-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.variant-thumb:hover { transform: scale(1.05); }
.variant-thumb.active {
    border-color: var(--color-barbie, #EC1F80);
}
.variant-thumb-info {
    position: relative;
    border-style: dashed;
    border-color: #aaa;
}
.variant-thumb-info::after {
    content: 'i';
    position: absolute;
    bottom: -3px;
    right: -3px;
    background: var(--color-barbie, #EC1F80);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    width: 14px;
    height: 14px;
    line-height: 14px;
    border-radius: 50%;
    text-align: center;
    font-family: serif;
    font-style: italic;
}

/* ===== COUNTRY SELECTOR ===== */
.country-selector {
    margin-right: 10px;
    padding: 6px 8px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    font-size: 0.85rem;
    font-family: inherit;
    color: #333;
    cursor: pointer;
    outline: none;
    transition: border-color 0.15s ease;
}
.country-selector:hover, .country-selector:focus {
    border-color: var(--color-barbie, #EC1F80);
}

/* ===== GOOGLE TRANSLATE WIDGET ===== */
.lang-switcher {
    margin-right: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.lang-flag {
    font-size: 1.2rem;
    line-height: 1;
}
.lang-switcher .goog-te-gadget {
    font-family: inherit !important;
    font-size: 0 !important;
    color: transparent !important;
}
.lang-switcher .goog-te-gadget > span > a {
    display: none !important;
}
.lang-switcher .goog-te-gadget .goog-te-combo {
    margin: 0 !important;
    padding: 6px 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    font-size: 0.85rem;
    font-family: inherit;
    color: #333;
    cursor: pointer;
    outline: none;
}
.lang-switcher .goog-te-gadget .goog-te-combo:hover {
    border-color: var(--color-barbie, #EC1F80);
}
/* Ocultar la barra horrible que Google pone arriba */
.skiptranslate.goog-te-banner-frame { display: none !important; }
body { top: 0 !important; }
.goog-tooltip, .goog-tooltip:hover { display: none !important; }
.goog-text-highlight { background: none !important; box-shadow: none !important; }

/* ===== PRODUCT MODAL ===== */
.product-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 15000;
    padding: 20px;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-tap-highlight-color: transparent;
}
.product-modal-overlay.open { display: flex; }
.product-modal {
    background: #fff;
    border-radius: 16px;
    max-width: 1000px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}
.product-modal-close {
    position: fixed;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    border: none;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    z-index: 16000;
    backdrop-filter: blur(8px);
}
.product-modal-close:hover { background: rgba(255, 255, 255, 0.3); }
.product-modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-height: 90vh;
    overflow: hidden;
}
.product-modal-image-wrap {
    position: relative;
    aspect-ratio: 1;
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.product-modal-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.product-modal-info {
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}
.product-modal-info h2 {
    font-size: 1.7rem;
    font-weight: 700;
    margin: 0 0 14px;
    color: #222;
}
.product-modal-desc {
    color: #555;
    line-height: 1.7;
    margin: 0 0 20px;
    font-size: 0.95rem;
}
.product-modal-info .variant-thumbs { margin: 0 0 8px; }
.modal-variant-label {
    font-size: 0.85rem;
    color: #666;
    margin: 0 0 12px;
}
.modal-includes {
    list-style: none;
    padding: 14px 16px;
    margin: 0 0 6px;
    background: #f7f9f8;
    border-radius: 10px;
    font-size: 0.88rem;
    line-height: 1.7;
    color: #333;
}
.modal-includes li {
    padding: 2px 0;
}
.modal-includes strong {
    color: var(--green, #5BB68E);
}
.product-modal-price {
    font-size: 1.6rem !important;
    font-weight: 700;
    color: var(--color-barbie, #EC1F80);
    margin: 18px 0 18px;
}
.product-modal-info .btn-checkout {
    width: 100%;
    padding: 14px;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .product-modal-overlay {
        padding: 0;
        align-items: flex-start;
        overflow-y: auto;
    }
    .product-modal {
        border-radius: 0;
        max-height: none;
        height: auto;
        min-height: 100vh;
        overflow: visible;
    }
    .product-modal-grid {
        grid-template-columns: 1fr;
        max-height: none;
        overflow: visible;
    }
    .product-modal-image-wrap { aspect-ratio: 4/3; }
    .product-modal-info {
        padding: 24px 20px 100px;
        overflow: visible;
    }
    .product-modal-info h2 { font-size: 1.4rem; }
    .product-modal-close {
        position: fixed;
        top: 12px;
        right: 12px;
        width: 38px;
        height: 38px;
        background: rgba(0, 0, 0, 0.55);
    }
    /* Botón Agregar fijo abajo en mobile */
    .product-modal-info .btn-checkout {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        margin: 0;
        border-radius: 0;
        z-index: 16000;
    }
}

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 20000;
    padding: 32px;
    cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img {
    max-width: 95vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.lightbox-close {
    position: absolute;
    top: 16px;
    right: 24px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
}
.lightbox-close:hover { background: rgba(255, 255, 255, 0.3); }

.product-info h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.product-desc {
    color: var(--gray);
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--pink);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.product-price-main {
    display: block;
}

.product-price-original {
    color: #555;
    font-weight: 600;
    text-decoration: line-through;
    font-size: 0.95em;
    margin-right: 8px;
}

.product-installments {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    color: #444;
}

.product-transfer {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--green, #5BB68E);
}

.product-currency {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--gray);
}

/* ===== TRUST SECTION ===== */
.trust-section {
    background: #fdf8e8;
    padding: 60px 0;
}
.trust-section .container {
    max-width: 1100px;
    text-align: center;
}
.trust-eyebrow {
    color: #b09a3a;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.trust-title {
    font-size: 1.7rem;
    color: #2d3138;
    margin-bottom: 30px;
    font-weight: 700;
}
.trust-payments {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 36px;
}
.trust-pay-card {
    background: #fff;
    border-radius: 12px;
    padding: 22px 18px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 110px;
}
.trust-pay-logo {
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 1rem;
}
.trust-pay-text {
    color: #555;
    font-size: 0.85rem;
}
.trust-mp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.mp-logo {
    height: 50px;
    width: auto;
    display: block;
}
.trust-paypal {
    display: flex;
    align-items: center;
    justify-content: center;
}
.trust-cards { display: flex; gap: 6px; }
.card-badge {
    display: inline-block;
    padding: 4px 8px;
    font-size: 0.7rem;
    font-weight: 800;
    color: #fff;
    border-radius: 4px;
}
.card-visa { background: #1a1f71; }
.card-mc { background: linear-gradient(90deg, #eb001b 50%, #f79e1b 50%); }
.card-amex { background: #2e77bb; }
.trust-transfer { color: #5BB68E; }
.trust-transfer-text { color: #5BB68E !important; font-weight: 700; }

.trust-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    border-top: 1px solid rgba(176, 154, 58, 0.2);
    padding-top: 26px;
    text-align: left;
}
@media (max-width: 1000px) {
    .trust-features { grid-template-columns: repeat(2, 1fr); }
}
.trust-feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.trust-feature-icon {
    font-size: 1.6rem;
    line-height: 1;
}
.trust-feature strong {
    display: block;
    color: #2d3138;
    font-size: 1rem;
    margin-bottom: 4px;
}
.trust-feature p {
    color: #6b7280;
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
}

.trust-payments.no-mp { grid-template-columns: repeat(3, 1fr); }
.trust-payments.no-mp #mpPayCard { display: none; }

@media (max-width: 768px) {
    .trust-payments { grid-template-columns: repeat(2, 1fr); }
    .trust-features { grid-template-columns: 1fr; gap: 16px; }
    .trust-title { font-size: 1.4rem; }
}

.cart-shipping-notice {
    text-align: center;
    padding: 8px 12px;
    margin: 6px 0 10px;
    background: #eaf7f0;
    color: #1f7a4d;
    border-radius: 8px;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
}
.cart-shipping-notice strong {
    font-weight: 800;
}

.product-transfer-only {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #b06b00;
    background: #fff3e0;
    padding: 4px 8px;
    border-radius: 4px;
    margin-top: 4px;
    text-align: center;
}

.stock-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.stock-immediate {
    background: #d4edda;
    color: #1f7a4d;
    border: 1px solid #b7e0c4;
}
.stock-delayed {
    background: #fff3cd;
    color: #8a4b00;
    border: 1px solid #ffe5a3;
}
.product-modal-info .stock-badge {
    font-size: 0.78rem;
    margin-bottom: 12px;
}

.cart-transfer-only-notice {
    background: #fff3e0;
    color: #8a4b00;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    margin: 10px 0;
    text-align: center;
    line-height: 1.4;
}

/* ===== MAYORISTA ===== */
.mayorista {
    background: var(--green-light);
    padding: 50px 0;
}

.mayorista-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.mayorista-text h2 {
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.mayorista-text p {
    color: var(--gray);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .mayorista-box {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== KITS ===== */
.kits {
    background: var(--light-gray);
}

.kits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.kit-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 2px solid var(--pink-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(236, 31, 128, 0.1);
}

.kit-image {
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.kit-image img {
    max-width: 100%;
    height: auto;
    max-height: 280px;
    object-fit: contain;
}

.kit-info {
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.kit-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--pink);
    margin-bottom: 4px;
}

.kit-info > p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.kit-info ul {
    list-style: none;
    margin-bottom: 16px;
}

.kit-info ul li {
    position: relative;
    padding-left: 20px;
    font-size: 0.88rem;
    color: var(--gray);
    margin-bottom: 4px;
}

.kit-info ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
}

/* ===== DESCUENTO ===== */
.descuento {
    background: linear-gradient(135deg, var(--pink) 0%, var(--orange) 100%);
    padding: 60px 0;
}

.descuento-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    color: var(--white);
}

.descuento-badge {
    display: inline-block;
    background: var(--yellow);
    color: var(--dark);
    padding: 8px 24px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.descuento-left h2 {
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.descuento-left p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.descuento-right h3 {
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.descuento-right ul {
    list-style: none;
}

.descuento-right ul li {
    padding: 6px 0;
    padding-left: 24px;
    position: relative;
    font-size: 1rem;
}

.descuento-right ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: 700;
}

/* ===== CONTACTO ===== */
.contacto {
    background: var(--white);
}

.contacto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 48px;
}

.contacto-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 28px;
}

.contacto-icon {
    width: 48px;
    height: 48px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contacto-item h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.contacto-item a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.contacto-item a:hover {
    color: var(--pink);
}

.contacto-form input,
.contacto-form select,
.contacto-form textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.3s ease;
    background: var(--white);
    color: var(--dark);
}

.contacto-form input:focus,
.contacto-form select:focus,
.contacto-form textarea:focus {
    border-color: var(--pink);
}

.form-group {
    margin-bottom: 16px;
}

.contacto-form textarea {
    resize: vertical;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    height: 80px;
    width: auto;
    margin-bottom: 12px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
}

.footer-links h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.4);
}

.footer-links a {
    display: block;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 4px 0;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--pink);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .valores-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section { padding: 60px 0; }
    .section-title { font-size: 1.8rem; }

    /* Header mobile */
    .nav {
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .nav.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Hero mobile */
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 40px;
    }

    .hero-text h1 { font-size: 2.4rem; }
    .hero-buttons { justify-content: center; flex-wrap: wrap; }
    .hero-image { order: -1; }
    .hero-image img { max-height: 300px; }
    /* Hero slideshow como banner full-width en mobile */
    .hero-image {
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        max-width: 100vw;
    }
    .hero-slideshow {
        max-width: none;
        width: 100%;
        margin: 0;
        aspect-ratio: 3 / 2;
        border-radius: 0;
        animation: none;
    }
    .hero-slideshow img {
        border-radius: 0;
        object-fit: cover;
        object-position: center 25%;
    }

    /* Beneficios mobile: 1 col */
    .valores-grid { grid-template-columns: 1fr; max-width: 400px; }

    /* Eventos mobile: 1 col */
    .eventos-grid { grid-template-columns: 1fr; }

    /* Nosotros mobile */
    .nosotros-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .nosotros-logo img { max-width: 200px; margin: 0 auto; }

    /* Products mobile */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* Kits mobile */
    .kits-grid { grid-template-columns: 1fr; }
    .kit-card { grid-template-columns: 1fr; }

    /* Descuento mobile */
    .descuento-box { grid-template-columns: 1fr; text-align: center; }
    .descuento-left h2 { font-size: 2rem; }

    /* Contacto mobile */
    .contacto-grid { grid-template-columns: 1fr; }

    /* Footer mobile */
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 4px; }
}

@media (max-width: 480px) {
    .hero-text h1 { font-size: 1.9rem; }
    .products-grid { grid-template-columns: 1fr; }
    .btn { padding: 12px 24px; font-size: 0.85rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
}

/* ===== EVENTOS ===== */
.eventos {
    background: var(--white);
}

.eventos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.evento-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: var(--dark);
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.evento-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.evento-img {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--light-gray);
}

.evento-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.evento-card:hover .evento-img img {
    transform: scale(1.05);
}

.evento-year-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255,255,255,0.95);
    padding: 4px 14px;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    color: var(--dark);
    border-radius: 20px;
}

.evento-card-info {
    padding: 20px;
}

.evento-card-info h3 {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.evento-card-info p {
    color: var(--gray);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .eventos-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .eventos-grid { grid-template-columns: 1fr; }
}

/* ===== BUY BUTTON ===== */
.btn-buy {
    width: 100%;
    padding: 10px;
    margin-top: 8px;
    font-family: inherit;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: var(--dark);
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-buy:hover {
    background: var(--pink);
}

/* ===== IVA ===== */
.product-iva {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--gray);
}

/* ===== COUPON ===== */
.coupon-section {
    background: var(--light-gray);
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 48px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.coupon-section label {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    flex-shrink: 0;
}

.coupon-section input {
    padding: 8px 14px;
    font-family: inherit;
    font-size: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    outline: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    width: 180px;
}

.coupon-section input:focus {
    border-color: var(--pink);
}

.coupon-section button {
    padding: 8px 20px;
    font-family: inherit;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: var(--dark);
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.coupon-section button:hover {
    background: var(--pink);
}

.coupon-msg {
    font-size: 0.85rem;
    width: 100%;
}

.coupon-success { color: var(--green); }
.coupon-error { color: var(--pink); }

/* ===== PLACEHOLDERS ===== */
.placeholder-pink { background: var(--pink-light); }
.placeholder-green { background: var(--green-light); }
.placeholder-orange { background: var(--orange-light); }
.placeholder-yellow { background: var(--yellow-light); }
.placeholder-pink-light { background: var(--pink-light); }
.placeholder-green-light { background: var(--green-light); }

.placeholder-emoji {
    font-size: 3.5rem;
    opacity: 0.7;
}

.kit-emoji {
    font-size: 4rem;
    opacity: 0.6;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

/* ===== CART FLOAT (mobile) ===== */
.cart-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 60px;
    height: 60px;
    background: #EC1F80;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(236, 31, 128, 0.45);
    z-index: 999;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cart-float:hover {
    transform: scale(1.08);
}
.cart-float-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #fff;
    color: #EC1F80;
    font-size: 0.78rem;
    font-weight: 800;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #EC1F80;
}
@media (max-width: 768px) {
    .cart-float[data-has-items="true"] {
        display: flex !important;
    }
}

/* ===== CART ICON ===== */
.cart-icon {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    color: var(--dark);
    transition: color 0.3s ease;
    margin-right: 8px;
}

.cart-icon:hover {
    color: var(--pink);
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -6px;
    background: var(--pink);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}

/* ===== CART OVERLAY ===== */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* ===== CART DRAWER ===== */
.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 380px;
    max-width: 100vw;
    background: var(--white);
    z-index: 2001;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.15);
}

.cart-drawer.open {
    transform: translateX(0);
}

.cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #eee;
    flex-shrink: 0;
}

.cart-drawer-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.cart-close-btn {
    background: none;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    color: var(--gray);
    padding: 4px 8px;
    transition: color 0.3s ease;
}

.cart-close-btn:hover {
    color: var(--pink);
}

/* ===== CART EMPTY STATE ===== */
.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 48px 24px;
    text-align: center;
    color: var(--gray);
}

.cart-empty p {
    font-size: 1rem;
    letter-spacing: 0.05em;
}

/* ===== CART CONTENT ===== */
.cart-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 16px 24px;
}

.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
}

.cart-item-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-price {
    font-size: 0.8rem;
    color: var(--gray);
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    margin-left: 12px;
}

.cart-qty-btn {
    width: 28px;
    height: 28px;
    border: 1px solid #ddd;
    background: var(--white);
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: var(--dark);
    transition: all 0.2s ease;
}

.cart-qty-btn:hover {
    border-color: var(--pink);
    color: var(--pink);
}

.cart-qty {
    font-size: 0.9rem;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.cart-remove-btn {
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
    font-size: 0.85rem;
    padding: 4px;
    margin-left: 4px;
    transition: color 0.2s ease;
}

.cart-remove-btn:hover {
    color: var(--pink);
}

.cart-discount-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 0.85rem;
    color: var(--green);
    font-weight: 600;
}

/* ===== CART COUPON ===== */
.cart-coupon-section {
    padding: 16px 24px;
    border-top: 1px solid #eee;
    flex-shrink: 0;
}

.cart-coupon-section label {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
    color: var(--gray);
}

.cart-coupon-row {
    display: flex;
    gap: 8px;
}

.cart-coupon-section input {
    flex: 1;
    padding: 8px 12px;
    font-family: inherit;
    font-size: 0.85rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    outline: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.cart-coupon-section input:focus {
    border-color: var(--pink);
}

.cart-coupon-section button {
    padding: 8px 16px;
    font-family: inherit;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--dark);
    color: var(--white);
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.cart-coupon-section button:hover {
    background: var(--pink);
}

.cart-coupon-section .coupon-msg {
    font-size: 0.8rem;
    margin-top: 6px;
}

/* ===== CART TOTAL ===== */
.cart-total-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    border-top: 1px solid #eee;
    flex-shrink: 0;
}

.cart-total-label {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.cart-total-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--pink);
}

.cart-total-currency {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--gray);
}

/* ===== CHECKOUT BUTTON ===== */
.btn-checkout {
    margin: 16px 24px 24px;
    padding: 14px;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: var(--pink);
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    flex-shrink: 0;
}

.btn-checkout:hover {
    background: #d41570;
}

.btn-checkout:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* ===== BUY BUTTON ADDED ANIMATION ===== */
.btn-buy-added {
    background: var(--green) !important;
    color: var(--white) !important;
}

/* ===== TOAST NOTIFICATION ===== */
.cart-toast {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--dark);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 0.88rem;
    letter-spacing: 0.05em;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
    z-index: 3000;
    pointer-events: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.cart-toast.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* ===== CART RESPONSIVE ===== */
@media (max-width: 480px) {
    .cart-drawer {
        width: 100vw;
    }
}

@media (max-width: 768px) {
    /* En mobile, el header solo muestra logo + hamburguesa.
       El carrito está como botón flotante. País e idioma adentro del menú. */
    .cart-icon { display: none !important; }
    .country-selector,
    .lang-switcher {
        display: none;
    }
    .nav.active .country-selector,
    .nav.active .lang-switcher,
    .nav.active .mobile-menu-extras {
        display: flex;
    }
    .mobile-menu-extras {
        flex-direction: column;
        gap: 12px;
        margin-top: 16px;
        padding-top: 16px;
        border-top: 1px solid #eee;
        align-items: flex-start;
    }
    .mobile-menu-extras .country-selector {
        width: 100%;
        padding: 10px 14px;
    }
    .mobile-menu-extras .lang-switcher {
        width: 100%;
    }
    .mobile-menu-extras .lang-switcher .goog-te-gadget .goog-te-combo {
        width: 100%;
        padding: 10px 14px;
    }
}

/* ===== TRANSFER MODAL ===== */
.transfer-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}
.transfer-modal {
    background: #fff;
    border-radius: 16px;
    max-width: 480px;
    width: 100%;
    padding: 32px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.transfer-modal h3 {
    margin: 0 0 8px;
    font-size: 1.4rem;
    color: #333;
}
.transfer-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: transparent;
    border: none;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    color: #888;
    padding: 0;
}
.transfer-modal-close:hover { color: #333; }
.transfer-modal label {
    display: block;
    margin: 12px 0 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #555;
}
.transfer-modal input,
.transfer-modal textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    box-sizing: border-box;
    font-family: inherit;
    resize: vertical;
}
.transfer-modal input:focus,
.transfer-modal textarea:focus {
    outline: none;
    border-color: #5BB68E;
}
.checkout-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 4px;
}
.checkout-row-2 { grid-template-columns: 1fr 1fr; }
.checkout-row-3 { grid-template-columns: 1fr 1fr 1fr; }
.checkout-field label {
    display: block;
    margin: 8px 0 4px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #555;
}
@media (max-width: 600px) {
    .checkout-row-2, .checkout-row-3 { grid-template-columns: 1fr; }
}
.transfer-bank-info {
    background: #f7f9f8;
    border: 1px solid #e0e8e4;
    border-radius: 10px;
    padding: 16px 20px;
    margin-top: 16px;
    font-size: 0.92rem;
    line-height: 1.5;
}
