/* ============================================================
   AGUAS WELKO - INDEX MOCK FINAL
   Referencia visual basada en propuesta enviada
   ============================================================ */

:root {
    --azul: #123dad;
    --azul-2: #0b42be;
    --oscuro: #061f67;
    --verde: #129c3d;
    --celeste: #18aee8;
    --texto: #071b56;
    --suave: #5e6a82;
    --fondo: #f3f8ff;
    --borde: #d9e6f8;
    --blanco: #ffffff;
    --shadow: 0 14px 34px rgba(8, 38, 105, .10);
    --max: 1180px;
}

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

/* Bloqueo visual de selección de textos */
html, body, header, main, section, footer, div, span, p, h1, h2, h3, h4, small, strong, a, button, li {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

input, textarea, select, option {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--fondo);
    color: var(--texto);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

.topbar {
    background: var(--oscuro);
    color: var(--blanco);
    font-size: 14px;
    font-weight: 800;
}

.topbar-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 9px 24px;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    align-items: center;
}

.wsp-inline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.wsp-icon {
    width: 23px;
    height: 23px;
    object-fit: contain;
    flex: 0 0 auto;
}

.header {
    background: rgba(255,255,255,.98);
    border-bottom: 1px solid var(--borde);
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 14px 24px;
    display: grid;
    grid-template-columns: 170px 1fr auto;
    gap: 22px;
    align-items: center;
}

.logo-img {
    width: 132px;
    max-height: 76px;
    object-fit: contain;
}

.logo-text {
    color: var(--azul);
    font-size: 40px;
    font-weight: 900;
    line-height: .82;
}

.logo-text small {
    display: block;
    font-size: 12px;
    letter-spacing: 1.8px;
    margin-top: 10px;
}

.nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    font-weight: 900;
}

.nav a {
    position: relative;
    padding: 8px 0;
}

.nav a.active,
.nav a:hover {
    color: var(--azul);
}

.nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 3px;
    border-radius: 999px;
    background: var(--azul);
}

.btn {
    border: none;
    border-radius: 12px;
    padding: 14px 22px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    cursor: pointer;
    white-space: nowrap;
    font-size: 15px;
}

.btn-blue {
    background: var(--azul);
    color: var(--blanco);
}

.btn-green {
    background: var(--verde);
    color: var(--blanco);
}

.hero-wrap {
    background:
        radial-gradient(circle at 73% 42%, rgba(24,174,232,.2), transparent 36%),
        linear-gradient(180deg, #ffffff 0%, #eef7ff 100%);
    border-bottom: 1px solid rgba(18,61,173,.08);
}

.hero {
    max-width: var(--max);
    margin: 0 auto;
    padding: 52px 24px 28px;
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    align-items: center;
    gap: 26px;
}

.hero h1 {
    font-size: clamp(42px, 5vw, 63px);
    line-height: 1.04;
    color: var(--azul);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    line-height: 1.5;
    color: var(--texto);
    margin-bottom: 24px;
    max-width: 560px;
}

.hero-actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.hero-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 560px;
    gap: 0;
}

.hero-benefit {
    padding: 0 18px;
    min-height: 54px;
    border-right: 1px solid #c7d8f0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--azul);
    font-weight: 900;
    font-size: 14px;
}

.hero-benefit:first-child {
    padding-left: 0;
}

.hero-benefit:last-child {
    border-right: none;
}

.hero-icon {
    width: 42px;
    height: 42px;
    background: var(--azul);
    color: var(--blanco);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 21px;
}

.hero-products {
    display: grid;
    grid-template-columns: 1fr .58fr;
    gap: 16px;
    align-items: end;
}

.hero-products img,
.hero-products .img-missing {
    width: 100%;
    max-height: 410px;
    object-fit: contain;
    filter: drop-shadow(0 20px 24px rgba(8, 50, 120, .22));
}

.img-missing {
    border: 2px dashed #aac3ec;
    background: linear-gradient(135deg, #fff, #ecf6ff);
    border-radius: 18px;
    min-height: 145px;
    color: var(--azul);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 9px;
    text-align: center;
    padding: 14px;
}

.img-missing small {
    color: var(--suave);
    font-size: 12px;
}

.categories {
    max-width: var(--max);
    margin: 0 auto;
    padding: 20px 24px 16px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.cat-card {
    background: var(--blanco);
    border: 1px solid var(--borde);
    border-radius: 15px;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 11px;
    align-items: center;
    padding: 12px;
    min-height: 104px;
}

.cat-card img,
.cat-card .img-missing {
    width: 58px;
    height: 68px;
    min-height: 68px;
    object-fit: contain;
    padding: 0;
    font-size: 9px;
    border-radius: 11px;
}

.cat-card h3 {
    color: var(--azul);
    font-size: 15px;
    line-height: 1.15;
    margin-bottom: 5px;
}

.cat-card p {
    color: var(--texto);
    font-size: 12px;
    line-height: 1.25;
}

.cat-card span {
    color: var(--azul);
    font-size: 12px;
    font-weight: 900;
}

.section {
    max-width: var(--max);
    margin: 0 auto;
    padding: 18px 24px;
}

.section-title {
    text-align: center;
    color: var(--azul);
    text-transform: uppercase;
    margin: 0 0 14px;
}

.section-title h2 {
    font-size: 31px;
    line-height: 1;
    letter-spacing: 1.5px;
}

.section-title p {
    text-transform: none;
    color: var(--texto);
    font-size: 15px;
    margin-top: 6px;
    font-weight: 700;
}

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

.recarga-card {
    background: var(--blanco);
    border: 1px solid #b8cff1;
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 12px 18px 10px;
    text-align: center;
    overflow: hidden;
}

.recarga-card h3 {
    color: var(--azul);
    font-size: 23px;
    line-height: 1.08;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.recarga-card img,
.recarga-card .img-missing {
    width: 100%;
    height: 142px;
    object-fit: contain;
    margin: 0 auto;
}

.price-pill {
    background: var(--oscuro);
    color: var(--blanco);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 154px;
    padding: 9px 24px;
    border-radius: 9px;
    font-size: 31px;
    font-weight: 900;
    line-height: 1;
    margin: -5px auto 8px;
    position: relative;
    z-index: 2;
}

.btn-small {
    padding: 9px 18px;
    border-radius: 9px;
    font-size: 14px;
}

.lower-grid {
    display: grid;
    grid-template-columns: 1.08fr .88fr .95fr .95fr;
    gap: 14px;
    align-items: stretch;
}

.panel {
    background: var(--blanco);
    border: 1px solid var(--borde);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 16px;
    overflow: hidden;
}

.panel h2 {
    color: var(--azul);
    text-transform: uppercase;
    text-align: center;
    font-size: 26px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 11px;
}

.mini-product {
    border: 1px solid var(--borde);
    border-radius: 14px;
    padding: 10px;
    text-align: center;
    background: linear-gradient(180deg, #fff, #f8fbff);
}

.mini-product h3 {
    color: var(--azul);
    font-size: 15px;
    line-height: 1.15;
    margin-bottom: 5px;
}

.mini-product img,
.mini-product .img-missing {
    height: 96px;
    width: 100%;
    object-fit: contain;
}

.mini-product .price-mini {
    color: var(--azul);
    font-size: 18px;
    font-weight: 900;
    margin: 6px 0;
}

.kit {
    margin-top: 11px;
    border: 1px solid var(--borde);
    border-radius: 14px;
    padding: 12px;
    display: grid;
    grid-template-columns: .8fr 1fr;
    gap: 8px;
    align-items: center;
}

.kit h3 {
    color: var(--azul);
    font-size: 22px;
}

.kit p {
    font-size: 13px;
    font-weight: 700;
}

.kit strong {
    color: var(--azul);
    font-size: 22px;
}

.bomba-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 11px;
}

.club-box {
    text-align: center;
}

.club-box h3 {
    color: var(--azul);
    font-size: 26px;
    line-height: 1.05;
    text-transform: uppercase;
    margin-bottom: 9px;
}

.club-ribbon {
    background: var(--verde);
    color: var(--blanco);
    display: inline-block;
    padding: 8px 18px;
    border-radius: 4px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.club-box strong {
    color: var(--azul);
    font-size: 19px;
    text-transform: uppercase;
    display: block;
    line-height: 1.25;
}

.club-bottom {
    margin-top: 10px;
    display: grid;
    grid-template-columns: 1fr .8fr;
    gap: 8px;
    align-items: end;
    text-align: left;
}

.club-bottom p {
    color: var(--azul);
    font-size: 13px;
    font-weight: 900;
}

.points-box {
    text-align: center;
}

.points-box h3 {
    color: var(--azul);
    text-transform: uppercase;
    font-size: 27px;
    line-height: 1.05;
}

.points-box p {
    font-weight: 800;
    margin: 8px 0 13px;
}

.points-box img,
.points-box .img-missing {
    height: 150px;
    margin: 0 auto 13px;
    object-fit: contain;
}

.testimonials-title {
    color: var(--azul);
    text-align: center;
    text-transform: uppercase;
    font-size: 22px;
    margin: 16px 0 10px;
    letter-spacing: 1px;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.testimonial {
    background: var(--blanco);
    border: 1px solid var(--borde);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 14px;
    display: grid;
    grid-template-columns: 68px 1fr;
    gap: 12px;
    align-items: center;
}

.testimonial img,
.testimonial .img-missing {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    min-height: 62px;
    object-fit: cover;
    font-size: 8px;
    padding: 0;
}

.stars {
    color: #ffc122;
    font-size: 18px;
    letter-spacing: 1px;
}

.testimonial p {
    color: var(--texto);
    font-size: 13px;
    line-height: 1.35;
    font-weight: 700;
}

.testimonial strong {
    color: var(--azul);
    display: block;
    font-size: 14px;
    margin-top: 4px;
}

.google-note {
    text-align: center;
    color: var(--azul);
    font-weight: 900;
    font-size: 14px;
    margin: 10px 0 4px;
}

.cta {
    background: linear-gradient(135deg, var(--azul), #0057d9);
    color: var(--blanco);
}

.cta-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 22px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    align-items: center;
}

.cta-block {
    display: flex;
    align-items: center;
    gap: 16px;
    border-right: 1px solid rgba(255,255,255,.35);
    min-height: 72px;
}

.cta-block:last-child {
    border-right: none;
}

.cta-icon {
    width: 58px;
    height: 58px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    font-size: 38px;
}

.cta h3 {
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.cta .big {
    font-size: 34px;
    font-weight: 900;
    letter-spacing: 3px;
}

.cta .email {
    font-size: 25px;
    font-weight: 900;
}

.footer {
    background: var(--oscuro);
    color: var(--blanco);
}

.footer-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 28px 24px 16px;
    display: grid;
    grid-template-columns: 1fr 1fr 1.05fr 1.05fr;
    gap: 28px;
}

.footer-logo {
    width: 135px;
    margin-bottom: 10px;
}

.footer h4 {
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 16px;
}

.footer p,
.footer li {
    color: rgba(255,255,255,.82);
    font-size: 14px;
    line-height: 1.55;
    list-style: none;
}

.footer-bottom {
    max-width: var(--max);
    margin: 0 auto;
    padding: 12px 24px 18px;
    text-align: center;
    color: rgba(255,255,255,.82);
    font-size: 13px;
}

.cart-button {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 100;
    background: var(--azul);
    color: var(--blanco);
    border: 0;
    border-radius: 999px;
    padding: 15px 20px;
    font-weight: 900;
    box-shadow: 0 18px 38px rgba(0, 0, 0, .22);
    cursor: pointer;
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .28);
    z-index: 120;
    display: none;
}

.overlay.open {
    display: block;
}

.drawer {
    position: fixed;
    right: 0;
    top: 0;
    width: min(430px, 94vw);
    height: 100vh;
    background: var(--blanco);
    z-index: 150;
    box-shadow: -18px 0 45px rgba(0, 0, 0, .22);
    transform: translateX(110%);
    transition: .25s;
    display: flex;
    flex-direction: column;
}

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

.cart-head {
    background: var(--oscuro);
    color: var(--blanco);
    padding: 20px;
    display: flex;
    justify-content: space-between;
}

.cart-body {
    padding: 20px;
    overflow: auto;
    flex: 1;
}

.cart-line {
    border-bottom: 1px solid var(--borde);
    padding: 12px 0;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
}

.cart-total {
    padding: 18px 20px;
    border-top: 1px solid var(--borde);
    font-size: 22px;
    font-weight: 900;
}

.cart-form {
    padding: 0 20px 20px;
    display: grid;
    gap: 10px;
}

.cart-form input,
.cart-form textarea,
.cart-form select {
    border: 1px solid var(--borde);
    border-radius: 12px;
    padding: 12px;
}

@media (max-width: 1080px) {
    .header-inner {
        grid-template-columns: 150px 1fr;
    }

    .nav {
        display: none;
    }

    .hero,
    .hero-products,
    .cta-inner {
        grid-template-columns: 1fr;
    }

    .categories {
        grid-template-columns: repeat(3, 1fr);
    }

    .recargas-grid,
    .lower-grid,
    .testimonials {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    .cta-block {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,.25);
        padding-bottom: 14px;
    }
}

@media (max-width: 640px) {
    .topbar-inner {
        justify-content: center;
        text-align: center;
    }

    .header-inner {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero-benefits,
    .categories,
    .mini-grid,
    .bomba-grid,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .testimonial {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

    .cta .big {
        font-size: 29px;
    }

    .cta .email {
        font-size: 20px;
    }
}


/* ============================================================
   AJUSTES V2 - HEADER, SOMBRAS, CARRITO Y BLOQUES
   ============================================================ */

.header {
    box-shadow: 0 12px 28px rgba(8, 38, 105, .11);
}

.nav {
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(18, 61, 173, .12);
    border-radius: 999px;
    padding: 7px;
    box-shadow: 0 8px 22px rgba(8, 38, 105, .08);
}

.nav a {
    border-radius: 999px;
    padding: 10px 16px;
    transition: .18s ease;
}

.nav a.active,
.nav a:hover {
    background: var(--azul);
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(18, 61, 173, .26);
}

.nav a.active::after {
    display: none;
}

.header-actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn,
.cat-card,
.recarga-card,
.panel,
.testimonial,
.location,
.drawer {
    box-shadow: 0 18px 42px rgba(8, 38, 105, .15);
}

.hero-products img,
.hero-products .img-missing {
    filter: drop-shadow(0 28px 34px rgba(8, 50, 120, .32));
}

.wsp-icon {
    width: 32px;
    height: 32px;
}

.topbar .wsp-icon {
    width: 27px;
    height: 27px;
}

.footer .wsp-icon,
.cta .wsp-icon {
    width: 38px;
    height: 38px;
}

.header-cart-button {
    background: var(--azul);
    color: #ffffff;
    border: 0;
    border-radius: 13px;
    padding: 14px 18px;
    font-weight: 900;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    box-shadow: 0 18px 42px rgba(8, 38, 105, .15);
}

.cart-button {
    display: none;
}

/* REORGANIZACIÓN BLOQUES INFERIORES */
.lower-grid {
    grid-template-columns: 1.05fr .95fr;
    align-items: stretch;
}

.panel-wide {
    min-height: 100%;
}

.after-products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 14px;
}

.points-form {
    display: grid;
    gap: 9px;
    margin-top: 13px;
}

.points-form input,
.points-form textarea {
    border: 1px solid var(--borde);
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 13px;
    width: 100%;
}

.points-form textarea {
    resize: vertical;
    min-height: 68px;
}

.footer a {
    color: rgba(255,255,255,.9);
}

.footer a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-schedule-label {
    display: block;
    color: #ffffff;
    font-weight: 900;
    margin-top: 6px;
}

.footer-schedule-time {
    display: block;
    margin-bottom: 8px;
}

@media (max-width: 1080px) {
    .header-inner {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .header-actions {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .lower-grid,
    .after-products-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .nav {
        display: flex;
        overflow-x: auto;
        width: 100%;
        justify-content: flex-start;
        padding: 7px;
    }

    .nav a {
        flex: 0 0 auto;
    }

    .header-actions .btn,
    .header-cart-button {
        width: 100%;
    }
}


/* ============================================================
   AJUSTES V3 - MÓVIL, CENTRADO DESKTOP Y CLUB WELKO
   ============================================================ */

/* CORRECCIÓN DE CARGA HACIA LA DERECHA EN ESCRITORIO */
body {
    overflow-x: hidden;
}

.topbar-inner,
.header-inner,
.hero,
.categories,
.section,
.cta-inner,
.footer-inner,
.footer-bottom {
    width: min(100%, var(--max));
}

.header-inner,
.hero,
.categories,
.section,
.cta-inner,
.footer-inner {
    margin-left: auto;
    margin-right: auto;
}

.hero-wrap {
    width: 100%;
}

/* KIT DE INICIO CENTRADO */
.kit {
    text-align: center;
}

.kit h3,
.kit p,
.kit strong {
    text-align: center;
}

.kit > div:first-child {
    display: grid;
    place-items: center;
}

/* BOTÓN HAMBURGUESA */
.mobile-menu-button {
    display: none;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 13px;
    background: var(--azul);
    color: #ffffff;
    font-size: 26px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 12px 26px rgba(8, 38, 105, .18);
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 170;
    background: rgba(0, 0, 0, .28);
    display: none;
}

.mobile-menu-overlay.open {
    display: block;
}

.mobile-menu-panel {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 180;
    width: min(320px, 88vw);
    height: 100vh;
    background: #ffffff;
    box-shadow: 18px 0 45px rgba(0, 0, 0, .22);
    transform: translateX(-110%);
    transition: .24s ease;
    padding-bottom: 24px;
}

.mobile-menu-panel.open {
    transform: translateX(0);
}

.mobile-menu-head {
    background: var(--oscuro);
    color: #ffffff;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-menu-head button {
    border: 0;
    border-radius: 10px;
    background: #ffffff;
    color: var(--oscuro);
    padding: 8px 12px;
    font-weight: 900;
}

.mobile-menu-panel a {
    display: block;
    padding: 17px 22px;
    color: var(--azul);
    font-weight: 900;
    border-bottom: 1px solid var(--borde);
}

/* FORMULARIO CLUB */
.club-register-btn {
    margin-top: 14px;
    width: 100%;
}

.club-modal-overlay,
.address-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.32);
    z-index: 210;
    display: none;
}

.club-modal-overlay.open,
.address-modal-overlay.open {
    display: block;
}

.club-modal,
.address-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 220;
    width: min(760px, 94vw);
    max-height: 92vh;
    overflow: auto;
    transform: translate(-50%, -50%) scale(.96);
    opacity: 0;
    pointer-events: none;
    background: #ffffff;
    border: 1px solid var(--borde);
    border-radius: 22px;
    box-shadow: 0 24px 70px rgba(0,0,0,.28);
    transition: .2s ease;
}

.club-modal.open,
.address-modal.open {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    pointer-events: auto;
}

.club-modal-head {
    background: var(--oscuro);
    color: #ffffff;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.club-modal-head button {
    border: 0;
    border-radius: 10px;
    background: #ffffff;
    color: var(--oscuro);
    padding: 8px 12px;
    font-weight: 900;
}

.club-form,
.address-modal {
    padding: 20px;
}

.club-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.club-form label,
.address-modal label {
    display: grid;
    gap: 7px;
    color: var(--azul);
    font-weight: 900;
    font-size: 14px;
}

.club-form input,
.club-form textarea,
.address-modal input {
    width: 100%;
    border: 1px solid var(--borde);
    border-radius: 12px;
    padding: 12px;
    font-size: 15px;
    color: var(--texto);
}

.address-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}

.btn-address {
    padding-left: 16px;
    padding-right: 16px;
}

.date-fake-input {
    width: 100%;
    border: 1px solid var(--borde);
    border-radius: 12px;
    padding: 12px;
    background: #ffffff;
    color: var(--texto);
    text-align: left;
    font-size: 15px;
    cursor: pointer;
}

.calendar-box {
    display: none;
    margin: 0 20px 20px;
    border: 1px solid var(--borde);
    border-radius: 18px;
    padding: 14px;
    background: #f7fbff;
}

.calendar-box.open {
    display: block;
}

.calendar-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--azul);
    font-weight: 900;
    margin-bottom: 12px;
}

.calendar-head button {
    border: 0;
    background: var(--azul);
    color: #ffffff;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    font-size: 22px;
    cursor: pointer;
}

.calendar-week,
.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 7px;
    text-align: center;
}

.calendar-week span {
    color: var(--azul);
    font-weight: 900;
    font-size: 13px;
}

.calendar-days button {
    border: 1px solid var(--borde);
    border-radius: 10px;
    background: #ffffff;
    padding: 10px 0;
    cursor: pointer;
    font-weight: 800;
    color: var(--texto);
}

.calendar-days button:hover {
    background: var(--azul);
    color: #ffffff;
}

.club-form-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 16px;
}

.address-note,
.geo-status {
    color: var(--suave);
    line-height: 1.5;
    margin-bottom: 14px;
}

.address-results {
    margin: 14px 0;
    display: grid;
    gap: 8px;
}

.address-results button {
    border: 1px solid var(--borde);
    border-radius: 12px;
    padding: 12px;
    background: #ffffff;
    color: var(--azul);
    font-weight: 900;
    cursor: pointer;
}

/* REEMPLAZA SCROLL HORIZONTAL DEL MENÚ EN MÓVIL POR HAMBURGUESA */
@media (max-width: 640px) {
    .mobile-menu-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        grid-row: 1;
        grid-column: 1;
        justify-self: start;
    }

    .header-inner {
        grid-template-columns: 46px 1fr;
        justify-items: center;
        text-align: center;
    }

    .header-inner > a {
        grid-column: 2;
        justify-self: center;
    }

    .header-actions {
        grid-column: 1 / -1;
    }

    .nav {
        display: none !important;
    }

    .club-form-grid,
    .address-row {
        grid-template-columns: 1fr;
    }

    .club-form-actions {
        justify-content: stretch;
    }

    .club-form-actions .btn {
        width: 100%;
    }
}


/* ============================================================
   AJUSTES V4 - HEADER MÓVIL, PORTADA COMPLETA Y BOTONES FLOTANTES
   ============================================================ */

.mobile-floating-actions {
    display: none;
}

@media (max-width: 640px) {

    /* HEADER SOBRE LA PORTADA */
    .header {
        position: absolute;
        top: 36px;
        left: 0;
        right: 0;
        z-index: 90;
        background: transparent;
        border-bottom: none;
        box-shadow: none;
    }

    .header-inner {
        width: 100%;
        max-width: 100%;
        padding: 12px 14px;
        display: grid;
        grid-template-columns: 50px 1fr;
        gap: 10px;
        align-items: center;
        justify-items: center;
    }

    .mobile-menu-button {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        grid-column: 1;
        justify-self: start;
        width: 48px;
        height: 48px;
        border-radius: 16px;
        background: rgba(255,255,255,.92);
        color: var(--azul);
        border: 1px solid rgba(18,61,173,.18);
        box-shadow: 0 12px 30px rgba(8,38,105,.22);
        backdrop-filter: blur(8px);
        z-index: 100;
    }

    .header-inner > a {
        grid-column: 2;
        justify-self: center;
        pointer-events: none;
    }

    .logo-img {
        max-width: 108px;
        max-height: 58px;
        filter: drop-shadow(0 8px 15px rgba(0,0,0,.22));
    }

    .logo-text {
        color: #ffffff;
        text-shadow: 0 3px 12px rgba(0,0,0,.4);
    }

    .nav,
    .header-actions {
        display: none !important;
    }

    /* PORTADA A TODO EL ANCHO EN MÓVIL */
    .hero-wrap {
        margin-top: 0;
        background: #eef7ff;
    }

    .hero {
        width: 100%;
        max-width: 100%;
        padding: 0;
        display: block;
        position: relative;
    }

    .hero > section:first-child {
        position: relative;
        z-index: 2;
        padding: 310px 22px 28px;
        background: linear-gradient(180deg, rgba(6,31,103,0) 0%, rgba(6,31,103,.28) 56%, rgba(245,249,255,1) 100%);
    }

    .hero h1 {
        font-size: 34px;
        color: #ffffff;
        text-shadow: 0 3px 14px rgba(0,0,0,.38);
        margin-bottom: 12px;
    }

    .hero p {
        color: #ffffff;
        text-shadow: 0 2px 10px rgba(0,0,0,.32);
        font-size: 16px;
        margin-bottom: 18px;
    }

    .hero-actions {
        margin-bottom: 18px;
    }

    .hero-benefits {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .hero-benefit {
        border-right: none;
        background: rgba(255,255,255,.9);
        border-radius: 15px;
        padding: 10px 12px;
        min-height: auto;
    }

    .hero-images {
        position: absolute;
        inset: 0 0 auto 0;
        height: 390px;
        display: block;
        overflow: hidden;
        z-index: 1;
    }

    .hero-images > div:first-child,
    .hero-images > div:first-child img,
    .hero-images > div:first-child .img-missing {
        width: 100%;
        height: 390px;
        max-height: none;
        border-radius: 0;
    }

    .hero-images > div:first-child img {
        object-fit: cover;
        filter: none;
    }

    .hero-images > div:first-child .img-missing {
        min-height: 390px;
        border-radius: 0;
    }

    .hero-images > div:nth-child(2) {
        display: none;
    }

    /* OCULTAR WHATSAPP Y CARRITO DEL HEADER EN MÓVIL */
    .header-whatsapp-button,
    .header-cart-button {
        display: none !important;
    }

    /* BOTONES FLOTANTES MÓVILES */
    .mobile-floating-actions {
        position: fixed;
        right: 16px;
        bottom: 16px;
        z-index: 160;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .mobile-float-btn {
        width: 58px;
        height: 58px;
        border-radius: 50%;
        border: none;
        display: grid;
        place-items: center;
        box-shadow: 0 14px 32px rgba(0,0,0,.25);
        cursor: pointer;
        position: relative;
    }

    .mobile-float-whatsapp {
        background: var(--verde);
    }

    .mobile-float-cart {
        background: var(--azul);
        color: #ffffff;
        font-size: 25px;
    }

    .mobile-float-btn .wsp-icon {
        width: 38px;
        height: 38px;
    }

    #wkMobileCartCount {
        position: absolute;
        top: -5px;
        right: -5px;
        min-width: 24px;
        height: 24px;
        padding: 0 6px;
        border-radius: 999px;
        background: #ffffff;
        color: var(--azul);
        border: 2px solid var(--azul);
        font-size: 12px;
        font-weight: 900;
        display: grid;
        place-items: center;
    }

    /* ASEGURAR FUNCIONAMIENTO Y CLIC DEL MENÚ */
    .mobile-menu-overlay {
        z-index: 190;
    }

    .mobile-menu-panel {
        z-index: 200;
    }

    /* AJUSTE PARA QUE EL RESTO NO QUEDE TAPADO */
    .categories {
        margin-top: 0;
        padding-top: 18px;
    }
}
