/* ═══════════════════════════════════════════════════════════════════════════════
   LABORATORIOS TENDENCIA - HOJA DE ESTILOS

   PALETA:
   • Negro base:      #0a0a0f
   • Panel/Tarjeta:   #15151d
   • Amarillo neón:   #e2ff2e  (acentos, CTA principal)
   • Púrpura neón:    #a855f7  (acentos secundarios, hover)
   • Magenta:         #d946ef  (degradados, glow)
   • Cian:            #22d3ee  (detalle puntual)
   • Blanco:          #f5f5f7  (texto principal)
   • Gris texto:      #9a9aa8  (texto secundario)
   ═══════════════════════════════════════════════════════════════════════════════ */

:root {
    --negro: #0a0a0f;
    --panel: #15151d;
    --panel-borde: #232330;
    --amarillo: #e2ff2e;
    --purpura: #a855f7;
    --magenta: #d946ef;
    --cian: #22d3ee;
    --blanco: #f5f5f7;
    --gris: #9a9aa8;

    --font-display: 'Anton', 'Impact', sans-serif;
    --font-texto: 'Inter', -apple-system, sans-serif;
    --transicion: all 0.25s ease;
    --radio: 10px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-texto);
    background-color: var(--negro);
    color: var(--blanco);
    line-height: 1.6;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

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

/* Iconos SVG: por defecto heredan el color del texto que los rodea */
.icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: currentColor;
}

.icon-inline {
    width: 16px;
    height: 16px;
    vertical-align: -3px;
    margin-left: 0.4rem;
}

/* ═════════════════════════════════════════════════════════
   BARRA DE PROMOCIÓN
   ═════════════════════════════════════════════════════════ */

.promo-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--negro);
    color: var(--blanco);
    text-align: center;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 0.55rem 1rem;
}

.promo-bar .icon-inline {
    margin-left: 0;
    color: var(--amarillo);
}

.promo-divider {
    height: 2px;
    background: linear-gradient(90deg, var(--amarillo), var(--cian) 50%, var(--purpura));
    box-shadow: 0 0 12px rgba(168, 85, 247, 0.5);
}

/* ═════════════════════════════════════════════════════════
   ENCABEZADO
   ═════════════════════════════════════════════════════════ */

.header {
    background-color: var(--negro);
    border-bottom: 1px solid var(--panel-borde);
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    overflow: visible;
}

/* Barra de búsqueda desplegable */
.search-bar {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
    border-top: 0 solid var(--panel-borde);
}

.search-bar.open {
    max-height: 80px;
    border-top: 1px solid var(--panel-borde);
}

.search-bar-inner {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    max-width: 1300px;
    margin: 0 auto;
    padding: 1rem 2rem;
    color: var(--gris);
}

.search-bar-inner input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--blanco);
    font-family: var(--font-texto);
    font-size: 1rem;
}

.search-bar-inner input::placeholder {
    color: var(--gris);
}

.search-bar-inner button {
    background: none;
    border: none;
    color: var(--gris);
    cursor: pointer;
    display: flex;
}

.search-bar-inner button:hover {
    color: var(--amarillo);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 1.5rem;
}

.menu-toggle {
    background: none;
    border: none;
    color: var(--blanco);
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2100;
    position: relative;
}

.menu-toggle .icon-close {
    display: none;
}

.menu-toggle.open .icon-menu {
    display: none;
}

.menu-toggle.open .icon-close {
    display: block;
}

.logo {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
}

.logo-img {
    height: 100px;
    width: auto;
    display: block;
}

.navbar {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2.2rem;
}

.nav-link {
    color: var(--blanco);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 0.4rem;
    transition: var(--transicion);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--amarillo);
    transition: var(--transicion);
}

.nav-link:hover,
.nav-link.active {
    color: var(--amarillo);
}

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

.header-icons {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.icon-btn {
    background: none;
    border: none;
    color: var(--blanco);
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    transition: var(--transicion);
}

.icon-btn:hover {
    color: var(--amarillo);
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--purpura);
    color: var(--blanco);
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ═════════════════════════════════════════════════════════
   HERO
   ═════════════════════════════════════════════════════════ */

.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    max-width: 1300px;
    margin: 0 auto;
    padding: 4rem 2rem;
    min-height: 480px;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    line-height: 1.05;
    letter-spacing: 1px;
    color: var(--blanco);
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.hero-title .highlight,
.section-title .highlight {
    background: linear-gradient(90deg, var(--amarillo), var(--purpura));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--gris);
    margin-bottom: 2rem;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn {
    font-family: var(--font-texto);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    padding: 0.9rem 1.8rem;
    border-radius: 6px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transicion);
    text-transform: uppercase;
}

.btn-primary {
    background-color: var(--amarillo);
    color: var(--negro);
    box-shadow: 0 0 20px rgba(226, 255, 46, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(226, 255, 46, 0.4);
}

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

.btn-outline:hover {
    background-color: var(--cian);
    color: var(--negro);
    transform: translateY(-3px);
}

.btn-small {
    padding: 0.7rem 1.4rem;
    font-size: 0.8rem;
}

.social-proof {
    display: flex;
    flex-direction: column;
    font-size: 0.8rem;
}

.proof-count {
    color: var(--amarillo);
    font-weight: 800;
    letter-spacing: 1px;
}

.proof-text {
    color: var(--gris);
}

.hero-visual {
    position: relative;
    flex: 1;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg-logo {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 620px;
    max-width: 140%;
    opacity: 0.9;
    filter: drop-shadow(0 0 40px rgba(168, 85, 247, 0.35));
    pointer-events: none;
}

.hero-img {
    position: relative;
    z-index: 2;
    max-height: 520px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.6));
}

.glow-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
}

.glow-purple {
    width: 320px;
    height: 320px;
    background: var(--purpura);
    top: 10%;
    right: 15%;
}

.glow-yellow {
    width: 260px;
    height: 260px;
    background: var(--amarillo);
    bottom: 5%;
    left: 10%;
}

/* ═════════════════════════════════════════════════════════
   BARRA DE CATEGORÍAS
   ═════════════════════════════════════════════════════════ */

.categories-bar {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    max-width: 1300px;
    margin: 0 auto;
    padding: 1.5rem 2rem 2.5rem;
    border-top: 1px solid var(--panel-borde);
    border-bottom: 1px solid var(--panel-borde);
}

.category-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: var(--panel);
    border: 1px solid var(--panel-borde);
    color: var(--gris);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 1rem 1.4rem;
    border-radius: var(--radio);
    cursor: pointer;
    transition: var(--transicion);
}

.category-pill .cat-icon {
    width: 24px;
    height: 24px;
}

.category-pill:hover,
.category-pill.active {
    border-color: var(--purpura);
    color: var(--blanco);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.25);
}

/* ═════════════════════════════════════════════════════════
   COLECCIONES / PRODUCTOS
   ═════════════════════════════════════════════════════════ */

.collections-section {
    padding: 4rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.collections-header {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2.5rem;
}

.eyebrow {
    color: var(--amarillo);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
}

.section-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 2rem;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.collections-text {
    color: var(--gris);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.product-card {
    position: relative;
    background-color: var(--panel);
    border: 1px solid var(--panel-borde);
    border-radius: var(--radio);
    overflow: hidden;
    transition: var(--transicion);
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: var(--purpura);
    box-shadow: 0 12px 30px rgba(168, 85, 247, 0.2);
}

.badge {
    position: absolute;
    top: 0.8rem;
    left: 0.8rem;
    z-index: 2;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.3rem 0.7rem;
    border-radius: 4px;
}

.badge-new {
    background: var(--amarillo);
    color: var(--negro);
}

.badge-offer {
    background: var(--purpura);
    color: var(--blanco);
}

.product-image {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gris);
    overflow: hidden;
}

.product-real-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.product-image .icon-placeholder {
    width: 64px;
    height: 64px;
}

.product-info {
    padding: 1rem 1.2rem 1.2rem;
}

.product-name {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.product-stock {
    font-size: 0.75rem;
    color: var(--cian);
    margin-bottom: 0.5rem;
}

.product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price {
    font-weight: 800;
    color: var(--amarillo);
    font-size: 1.05rem;
}

.price-old {
    color: var(--gris);
    font-weight: 500;
    font-size: 0.85rem;
    text-decoration: line-through;
    margin-right: 0.3rem;
}

.add-to-cart {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--purpura);
    background: transparent;
    color: var(--purpura);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transicion);
}

.add-to-cart:hover {
    background: var(--purpura);
    color: var(--blanco);
}

.add-to-cart.added {
    background: var(--amarillo);
    border-color: var(--amarillo);
    color: var(--negro);
    transform: scale(1.2);
}

.no-results {
    text-align: center;
    color: var(--gris);
    padding: 2rem;
}

/* ═════════════════════════════════════════════════════════
   FRANJA DE BENEFICIOS
   ═════════════════════════════════════════════════════════ */

.features-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    max-width: 1300px;
    margin: 0 auto 2rem;
    padding: 1.8rem 2rem;
    border: 1px solid var(--panel-borde);
    border-radius: var(--radio);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.feature-icon {
    width: 30px;
    height: 30px;
    color: var(--amarillo);
}

.feature-item h4 {
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.feature-item p {
    font-size: 0.8rem;
    color: var(--gris);
}

/* ═════════════════════════════════════════════════════════
   SOBRE NOSOTROS
   ═════════════════════════════════════════════════════════ */

.about-section {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.08) 0%, rgba(226, 255, 46, 0.05) 100%);
    padding: 4.5rem 2rem;
    border-top: 1px solid var(--panel-borde);
    border-bottom: 1px solid var(--panel-borde);
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
}

.about-text h2 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.about-text p {
    color: var(--gris);
    margin-bottom: 1.8rem;
    max-width: 640px;
}

.about-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
}

.about-features li {
    color: var(--blanco);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ═════════════════════════════════════════════════════════
   CONTACTO
   ═════════════════════════════════════════════════════════ */

.contact-section {
    padding: 4.5rem 2rem;
    text-align: center;
}

.contact-section h2 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-item {
    background-color: var(--panel);
    border: 1px solid var(--panel-borde);
    border-left: 3px solid var(--amarillo);
    padding: 1.8rem;
    border-radius: var(--radio);
    transition: var(--transicion);
}

.contact-item:hover {
    transform: translateY(-4px);
    border-left-color: var(--purpura);
}

.contact-item h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
}

.contact-item a {
    color: var(--purpura);
    font-weight: 600;
}

.contact-item a:hover {
    color: var(--amarillo);
}

.contact-item p {
    color: var(--gris);
}

/* ═════════════════════════════════════════════════════════
   FOOTER
   ═════════════════════════════════════════════════════════ */

.footer {
    background-color: var(--negro);
    border-top: 1px solid var(--panel-borde);
    padding: 3.5rem 2rem 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1.4fr;
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto 2rem;
}

.footer-logo {
    height: 60px;
    margin-bottom: 0.8rem;
}

.footer-brand p {
    color: var(--gris);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 0.9rem;
}

.social-icons a {
    color: var(--gris);
    transition: var(--transicion);
}

.social-icons a:hover {
    color: var(--amarillo);
}

.social-icons .icon {
    width: 20px;
    height: 20px;
}

.footer-section h4,
.footer-newsletter h4 {
    color: var(--blanco);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--gris);
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
}

.footer-newsletter p {
    color: var(--gris);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    background: var(--panel);
    border: 1px solid var(--panel-borde);
    color: var(--blanco);
    padding: 0.7rem 0.9rem;
    border-radius: 6px;
    font-family: var(--font-texto);
    font-size: 0.85rem;
}

.newsletter-form input::placeholder {
    color: var(--gris);
}

.newsletter-form button {
    background: var(--amarillo);
    color: var(--negro);
    border: none;
    border-radius: 6px;
    padding: 0 1rem;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transicion);
}

.newsletter-form button:hover {
    background: var(--purpura);
    color: var(--blanco);
}

.footer-divider {
    border: none;
    height: 1px;
    background: var(--panel-borde);
    margin: 1.5rem auto;
    max-width: 1300px;
}

.copyright {
    text-align: center;
    color: var(--gris);
    font-size: 0.8rem;
}

/* ═════════════════════════════════════════════════════════
   RESPONSIVIDAD
   ═════════════════════════════════════════════════════════ */

@media (max-width: 900px) {
    .collections-header {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .header-icons {
        gap: 0.9rem;
    }

    .navbar {
        display: none;
    }

    .navbar.nav-open {
        display: flex;
        position: fixed;
        inset: 0;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(8px);
        z-index: 2000;
        align-items: center;
        justify-content: center;
    }

    .navbar.nav-open .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .navbar.nav-open .nav-link {
        font-size: 1.4rem;
    }

    .hero-section {
        text-align: left;
        padding: 1.5rem 1rem;
        min-height: auto;
        gap: 1rem;
    }

    .hero-content {
        max-width: 55%;
    }

    .hero-title {
        font-size: clamp(1.3rem, 6vw, 1.8rem);
    }

    .hero-subtitle {
        font-size: 0.75rem;
        margin-bottom: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.6rem;
        margin-bottom: 1rem;
    }

    .hero-buttons .btn {
        padding: 0.6rem 1rem;
        font-size: 0.7rem;
    }

    .social-proof {
        font-size: 0.65rem;
    }

    .hero-visual {
        min-height: 220px;
        width: 45%;
        margin-top: 0;
        flex: 0 0 auto;
    }

    .hero-bg-logo {
        width: 220px;
        max-width: 140%;
    }

    .hero-img {
        max-height: 230px;
    }

    .categories-bar {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding: 1.2rem 1.5rem 1.5rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .categories-bar::-webkit-scrollbar {
        display: none;
    }

    .category-pill {
        flex: 0 0 auto;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .features-bar {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.8rem 0.4rem;
        padding: 1.3rem 0.8rem;
        margin: 0 auto 0.4rem;
    }

    .feature-item {
        flex-direction: column;
        align-items: center;
        gap: 0.4rem;
        text-align: center;
    }

    .feature-icon {
        width: 22px;
        height: 22px;
    }

    .feature-item h4 {
        font-size: 0.72rem;
        line-height: 1.15;
    }

    .feature-item p {
        font-size: 0.62rem;
        line-height: 1.2;
    }

    .teaser-section {
        padding: 0.5rem 0 2rem;
    }

    .teaser-section .eyebrow {
        font-size: 0.65rem;
        margin-bottom: 0.2rem;
    }

    .teaser-section .section-title {
        font-size: 1.5rem;
        margin-bottom: 0;
    }

    .teaser-header {
        padding: 0 1rem;
        margin-bottom: 1.2rem;
    }

    .teaser-ver-todo {
        padding: 0.5rem 0.9rem;
        font-size: 0.7rem;
    }

    .teaser-section .products-grid {
        display: flex;
        overflow-x: auto;
        gap: 1rem;
        padding: 0 1rem 0.5rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .teaser-section .products-grid::-webkit-scrollbar {
        display: none;
    }

    .teaser-section .product-card {
        flex: 0 0 46%;
    }
}

@media (max-width: 480px) {
    .hero-visual {
        min-height: 180px;
        width: 42%;
    }

    .hero-bg-logo {
        width: 170px;
    }

    .hero-img {
        max-height: 190px;
    }

    .header-content {
        gap: 0.8rem;
        padding: 0 1.2rem;
    }

    .logo-img {
        height: 56px;
    }

    .icon-btn .icon {
        width: 18px;
        height: 18px;
    }

    .hero-title {
        font-size: 1.15rem;
    }

    .hero-content {
        max-width: 58%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

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

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

    .promo-bar {
        font-size: 0.68rem;
        padding: 0.5rem;
    }
}

/* ═════════════════════════════════════════════════════════
   CARRITO LATERAL (DRAWER)
   ═════════════════════════════════════════════════════════ */

.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 2400;
}

.cart-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 380px;
    max-width: 90vw;
    background: var(--panel);
    border-left: 1px solid var(--panel-borde);
    z-index: 2500;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

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

.cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid var(--panel-borde);
}

.cart-drawer-header h3 {
    font-family: var(--font-display);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cart-drawer-header button {
    background: none;
    border: none;
    color: var(--gris);
    cursor: pointer;
}

.cart-drawer-header button:hover {
    color: var(--amarillo);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1.5rem;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--panel-borde);
}

.cart-item-thumb {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    background: var(--negro);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gris);
}

.cart-item-thumb .icon {
    width: 26px;
    height: 26px;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-info h4 {
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-price {
    color: var(--amarillo);
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cart-item-stepper {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.stepper-btn {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    border: 1px solid var(--panel-borde);
    background: var(--negro);
    color: var(--blanco);
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1;
    transition: var(--transicion);
}

.stepper-btn:hover {
    border-color: var(--purpura);
    color: var(--purpura);
}

.cart-item-stepper span {
    font-size: 0.85rem;
    font-weight: 600;
    min-width: 14px;
    text-align: center;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--gris);
    cursor: pointer;
    align-self: flex-start;
}

.cart-item-remove .icon {
    width: 18px;
    height: 18px;
}

.cart-item-remove:hover {
    color: var(--magenta);
}

.cart-empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--gris);
    padding: 2rem;
}

.cart-empty .icon {
    width: 48px;
    height: 48px;
    opacity: 0.5;
}

.cart-drawer-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--panel-borde);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

#cartTotal {
    color: var(--amarillo);
    font-size: 1.3rem;
}

.cart-checkout {
    width: 100%;
}

/* ═════════════════════════════════════════════════════════
   MODAL DE CUENTA
   ═════════════════════════════════════════════════════════ */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 2400;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -46%);
    width: 380px;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    background: var(--panel);
    border: 1px solid var(--panel-borde);
    border-radius: var(--radio);
    z-index: 2500;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.4rem 1.5rem;
    border-bottom: 1px solid var(--panel-borde);
    flex: 0 0 auto;
}

.modal-header h3 {
    font-family: var(--font-display);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.2rem;
}

.modal-header button {
    background: none;
    border: none;
    color: var(--gris);
    cursor: pointer;
}

.modal-header button:hover {
    color: var(--amarillo);
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding: 1.5rem;
    overflow-y: auto;
}

.modal-form label {
    font-size: 0.78rem;
    color: var(--gris);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.4rem;
}

.modal-form input {
    background: var(--negro);
    border: 1px solid var(--panel-borde);
    color: var(--blanco);
    padding: 0.75rem 0.9rem;
    border-radius: 6px;
    font-family: var(--font-texto);
    font-size: 0.9rem;
}

.modal-form input:focus {
    outline: none;
    border-color: var(--purpura);
}

.modal-form button {
    margin-top: 0.8rem;
}

.user-welcome {
    color: var(--gris);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.user-gate-msg {
    color: var(--gris);
    font-size: 0.85rem;
    line-height: 1.5;
    border-left: 3px solid var(--amarillo);
    background: rgba(226, 255, 46, 0.06);
    padding: 0.9rem 1rem;
    margin: 1.2rem 1.5rem 0;
    border-radius: 6px;
}

/* ═════════════════════════════════════════════════════════
   PERFIL DEL CLIENTE (pedidos + dirección)
   ═════════════════════════════════════════════════════════ */

.perfil-modal {
    width: 480px;
}

.perfil-btn-link {
    display: block;
    text-align: center;
    margin-top: 0.6rem;
}

.perfil {
    display: flex;
    flex-direction: column;
    padding: 1.2rem 1.5rem 1.5rem;
    overflow-y: auto;
}

.perfil-email {
    color: var(--gris);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.perfil-email strong {
    color: var(--blanco);
}

.perfil-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.1rem;
}

.perfil-tab {
    flex: 1;
    background: var(--negro);
    border: 1px solid var(--panel-borde);
    color: var(--gris);
    font-family: var(--font-texto);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.6rem 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transicion);
}

.perfil-tab:hover {
    color: var(--blanco);
    border-color: var(--purpura);
}

.perfil-tab.active {
    border-color: var(--amarillo);
    color: var(--amarillo);
    background: rgba(226, 255, 46, 0.08);
}

.perfil-cargando,
.perfil-vacio {
    color: var(--gris);
    font-size: 0.85rem;
    text-align: center;
    padding: 1.2rem 0.5rem;
}

/* ── Tarjeta de pedido ── */

.perfil-pedido {
    background: var(--negro);
    border: 1px solid var(--panel-borde);
    border-radius: var(--radio);
    padding: 0.9rem 1rem;
    margin-bottom: 0.8rem;
}

.perfil-pedido-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    margin-bottom: 0.4rem;
}

.perfil-pedido-num {
    font-weight: 700;
    font-size: 0.9rem;
}

.perfil-estado {
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.25rem 0.65rem;
    border-radius: 20px;
}

.perfil-estado.estado-pendiente { background: rgba(154, 154, 168, 0.18); color: var(--gris); }
.perfil-estado.estado-confirmado { background: rgba(34, 211, 238, 0.15); color: var(--cian); }
.perfil-estado.estado-enviado { background: rgba(168, 85, 247, 0.18); color: var(--purpura); }
.perfil-estado.estado-entregado { background: rgba(226, 255, 46, 0.15); color: var(--amarillo); }
.perfil-estado.estado-cancelado { background: rgba(244, 91, 105, 0.15); color: #f87171; }

.perfil-pedido-msg {
    color: var(--gris);
    font-size: 0.82rem;
    margin-bottom: 0.6rem;
}

.perfil-pedido-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--gris);
}

.perfil-pedido-meta strong {
    color: var(--amarillo);
    font-size: 0.95rem;
}

.perfil-ver-items {
    background: none;
    border: none;
    color: var(--cian);
    font-family: var(--font-texto);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.5rem 0 0;
    cursor: pointer;
}

.perfil-ver-items:hover {
    color: var(--amarillo);
}

.perfil-items {
    margin-top: 0.7rem;
    padding-top: 0.7rem;
    border-top: 1px solid var(--panel-borde);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.perfil-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.perfil-item-thumb {
    width: 54px;
    height: 54px;
    flex-shrink: 0;
    background: var(--panel);
    border: 1px solid var(--panel-borde);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gris);
}

.perfil-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.perfil-item-thumb .icon {
    width: 24px;
    height: 24px;
}

.perfil-item-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.perfil-item-nombre {
    font-size: 0.85rem;
    font-weight: 600;
}

.perfil-item-detalle {
    font-size: 0.78rem;
    color: var(--gris);
}

/* ── Formulario de dirección ── */

.perfil-form {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.perfil-form-nota {
    color: var(--gris);
    font-size: 0.82rem;
    margin-bottom: 0.4rem;
}

.perfil-form label {
    font-size: 0.75rem;
    color: var(--gris);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.4rem;
}

.perfil-form input {
    background: var(--negro);
    border: 1px solid var(--panel-borde);
    color: var(--blanco);
    padding: 0.7rem 0.9rem;
    border-radius: 6px;
    font-family: var(--font-texto);
    font-size: 0.9rem;
    width: 100%;
}

.perfil-form input:focus {
    outline: none;
    border-color: var(--purpura);
}

.perfil-form-fila {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
}

.perfil-form-fila > div {
    display: flex;
    flex-direction: column;
}

.perfil-form-msg {
    color: #ff9aa4;
    background: rgba(244, 91, 105, 0.1);
    border-left: 3px solid #f45b69;
    font-size: 0.82rem;
    padding: 0.7rem 0.9rem;
    border-radius: 6px;
    margin-top: 0.6rem;
}

.perfil-form button[type="submit"] {
    margin-top: 1rem;
}

.perfil-logout {
    margin-top: 1.2rem;
    width: 100%;
}

/* ═════════════════════════════════════════════════════════
   MODAL DE PAGO (TARJETA / PAYPAL)
   ═════════════════════════════════════════════════════════ */

.payment-modal {
    width: 440px;
}

.payment-demo-notice {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin: 1.2rem 1.5rem 0;
    padding: 0.75rem 0.9rem;
    background: rgba(226, 255, 46, 0.08);
    border: 1px solid rgba(226, 255, 46, 0.35);
    border-radius: 8px;
    color: var(--amarillo);
    font-size: 0.78rem;
    line-height: 1.4;
}

.payment-demo-notice .icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 1px;
}

.payment-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 1.5rem 0;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.payment-total span:last-child {
    color: var(--amarillo);
    font-size: 1.3rem;
}

.payment-methods {
    display: flex;
    gap: 0.7rem;
    padding: 1.1rem 1.5rem 0;
}

.payment-method-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--negro);
    border: 1px solid var(--panel-borde);
    color: var(--gris);
    font-family: var(--font-texto);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 0.7rem 0.6rem;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transicion);
}

.payment-method-btn .icon {
    width: 18px;
    height: 18px;
}

.payment-method-btn:hover {
    border-color: var(--purpura);
    color: var(--blanco);
}

.payment-method-btn.active {
    border-color: var(--amarillo);
    color: var(--amarillo);
    background: rgba(226, 255, 46, 0.08);
}

.payment-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
}

.payment-form-field {
    display: flex;
    flex-direction: column;
}

/* ═════════════════════════════════════════════════════════
   NOTIFICACIONES (TOAST)
   ═════════════════════════════════════════════════════════ */

.toast-container {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    z-index: 3000;
    width: 100%;
    padding: 0 1rem;
}

.toast {
    background: var(--panel);
    border: 1px solid var(--purpura);
    color: var(--blanco);
    padding: 0.8rem 1.4rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    max-width: 420px;
    text-align: center;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

/* ═════════════════════════════════════════════════════════
   RESPONSIVIDAD ADICIONAL
   ═════════════════════════════════════════════════════════ */

@media (max-width: 480px) {
    .cart-drawer {
        width: 100vw;
        max-width: 100vw;
    }

    .modal {
        width: 92vw;
    }
}

/* ═════════════════════════════════════════════════════════
   VISTA RÁPIDA DEL PRODUCTO (QUICK VIEW + ROTACIÓN)
   ═════════════════════════════════════════════════════════ */

.quickview-modal {
    width: 780px;
    max-width: 92vw;
}

.quickview-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 1.8rem;
    overflow-y: auto;
}

.qv-viewer {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.qv-rotor-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 900px;
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
}

.qv-rotor-wrap.dragging {
    cursor: grabbing;
}

.qv-rotor {
    width: 80%;
    height: 80%;
    transform-style: preserve-3d;
    transition: transform 0.05s linear;
}

.qv-gradient {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gris);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--panel-borde);
    overflow: hidden;
    position: relative;
}

.qv-real-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
}

.qv-icon {
    width: 30%;
    height: 30%;
}

.qv-viewer-controls {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-top: 1.2rem;
}

.qv-viewer-controls button {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--panel-borde);
    background: var(--negro);
    color: var(--blanco);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transicion);
}

.qv-viewer-controls button:hover {
    border-color: var(--purpura);
    color: var(--purpura);
}

.qv-angulo {
    font-weight: 700;
    color: var(--amarillo);
    min-width: 40px;
    text-align: center;
    font-size: 0.9rem;
}

.qv-hint {
    color: var(--gris);
    font-size: 0.78rem;
    margin-top: 0.7rem;
}

.qv-info {
    display: flex;
    flex-direction: column;
}

.qv-info h2 {
    font-family: var(--font-display);
    font-weight: 400;
    text-transform: uppercase;
    font-size: 1.6rem;
    margin: 0.3rem 0 0.8rem;
    line-height: 1.15;
}

.qv-precio {
    color: var(--amarillo);
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
}

.qv-stock {
    color: var(--cian);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.qv-cantidad {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: var(--gris);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.qv-agregar {
    width: 100%;
    margin-top: auto;
}

@media (max-width: 700px) {
    .modal {
        max-height: 80vh;
    }

    .quickview-body {
        grid-template-columns: 1fr;
        padding: 1.2rem;
        gap: 1rem;
    }

    .qv-rotor-wrap {
        max-width: 200px;
        margin: 0 auto;
    }
}

/* ═════════════════════════════════════════════════════════
   ENRUTADOR DE PÁGINAS
   ═════════════════════════════════════════════════════════ */

.page {
    display: none;
}

.page.active {
    display: block;
    animation: fadeInPage 0.35s ease;
}

@keyframes fadeInPage {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.page-header {
    text-align: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 3.5rem 2rem 1.5rem;
}

.page-subtitle {
    color: var(--gris);
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

/* ═════════════════════════════════════════════════════════
   TEASER DE DESTACADOS (PÁGINA INICIO)
   ═════════════════════════════════════════════════════════ */

.teaser-section {
    max-width: 1300px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.teaser-section .eyebrow {
    margin-bottom: 0.3rem;
}

.teaser-section .section-title {
    margin-bottom: 0;
}

.teaser-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.teaser-ver-todo {
    flex: 0 0 auto;
    white-space: nowrap;
}

.teaser-cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* ═════════════════════════════════════════════════════════
   NAV ACTIVO POR PÁGINA
   ═════════════════════════════════════════════════════════ */

.nav-link.active {
    color: var(--amarillo);
}

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

.footer-link {
    cursor: pointer;
    transition: var(--transicion);
}

.footer-link:hover {
    color: var(--amarillo);
}

.footer-enlace {
    color: inherit;
    text-decoration: none;
    transition: var(--transicion);
}

.footer-enlace:hover {
    color: var(--amarillo);
}
/* ═══════════════════════════════════════════════════════════════════════════════
   AJUSTES PARA TELÉFONO
   Va al final del archivo a propósito: estas reglas corrigen lo que se
   desacomoda en pantallas chicas y deben ganarle a las de más arriba.
   ═══════════════════════════════════════════════════════════════════════════════ */

/* Nada debe empujar la página a lo ancho */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

img,
svg,
video {
    max-width: 100%;
}

/* Los modales deben poder desplazarse por dentro en pantallas bajas */
#userModalBody,
#paymentModalBody,
.perfil,
.modal-form,
.quickview-body,
.cart-items {
    min-height: 0;
}

#userModalBody,
#paymentModalBody {
    overflow-y: auto;
}

@media (max-width: 768px) {

    /* ── Encabezado ── */
    .header-content {
        padding: 0 1rem;
        gap: 0.7rem;
    }

    .logo-img {
        height: 68px;
    }

    .search-bar-inner {
        padding: 0.9rem 1rem;
    }

    /* ── Franja de beneficios: 4 en fila se ve apretado ── */
    .features-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem 0.6rem;
        padding: 1.1rem 1rem;
        margin: 0 1rem 1rem;
    }

    .feature-item {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 0.6rem;
    }

    .feature-item h4 {
        font-size: 0.78rem;
    }

    .feature-item p {
        font-size: 0.68rem;
    }

    /* ── Encabezados de página ── */
    .page-header {
        padding: 2rem 1rem 1rem;
    }

    .page-header .section-title {
        font-size: 1.6rem;
    }

    .page-subtitle {
        font-size: 0.85rem;
    }

    .collections-section {
        padding: 1.5rem 1rem 2.5rem;
    }

    /* ── Tarjetas de producto más bajitas ── */
    .products-grid {
        gap: 0.9rem;
    }

    .product-image {
        height: 170px;
    }

    .product-info {
        padding: 0.8rem 0.9rem 1rem;
    }

    .product-name {
        font-size: 0.88rem;
    }

    .product-price {
        font-size: 0.95rem;
    }

    /* ── Secciones de texto ── */
    .about-section,
    .contact-section {
        padding: 2.5rem 1rem;
    }

    .about-text h2,
    .contact-section h2 {
        font-size: 1.6rem;
    }

    .footer {
        padding: 2.5rem 1rem 1.2rem;
    }

    /* ── Modales ── */
    .modal {
        max-height: 88vh;
    }

    .perfil-modal,
    .payment-modal {
        width: 94vw;
    }

    .perfil {
        padding: 1rem 1.1rem 1.2rem;
    }

    .modal-form {
        padding: 1.1rem;
    }

    .payment-total,
    .payment-methods {
        padding-left: 1.1rem;
        padding-right: 1.1rem;
    }

    .payment-method-btn {
        font-size: 0.75rem;
        padding: 0.6rem 0.4rem;
    }

    /* ── Perfil del cliente ── */
    .perfil-item-thumb {
        width: 46px;
        height: 46px;
    }

    .perfil-pedido {
        padding: 0.8rem 0.9rem;
    }

    /* ── Carrito ── */
    .cart-drawer-header,
    .cart-drawer-footer {
        padding: 1.1rem;
    }

    .cart-items {
        padding: 0.8rem 1.1rem;
    }
}

@media (max-width: 480px) {

    /* ── Hero: que el texto no quede espachurrado ── */
    .hero-section {
        gap: 0.6rem;
        padding: 1.2rem 1rem;
    }

    .hero-content {
        max-width: 56%;
    }

    .hero-title {
        font-size: 1.25rem;
        margin-bottom: 0.7rem;
    }

    .hero-subtitle {
        font-size: 0.72rem;
        line-height: 1.45;
        margin-bottom: 0.9rem;
    }

    .hero-buttons .btn {
        padding: 0.6rem 0.8rem;
        font-size: 0.68rem;
    }

    /* ── Beneficios ── */
    .features-bar {
        margin: 0 0.9rem 1rem;
        padding: 1rem 0.8rem;
    }

    /* ── Producto ── */
    .product-image {
        height: 150px;
    }

    .badge {
        font-size: 0.58rem;
        padding: 0.22rem 0.5rem;
        top: 0.5rem;
        left: 0.5rem;
    }

    /* ── Formularios del perfil: una columna ── */
    .perfil-form-fila {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .perfil-tab {
        font-size: 0.74rem;
        padding: 0.55rem 0.3rem;
    }

    /* ── Pago ── */
    .payment-form-row {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

    .payment-method-btn {
        flex-direction: column;
        gap: 0.3rem;
        font-size: 0.7rem;
    }

    /* ── Vista rápida ── */
    .quickview-body {
        padding: 1rem;
    }

    .qv-info h2 {
        font-size: 1.3rem;
    }

    .qv-precio {
        font-size: 1.35rem;
    }

    /* ── Notificaciones ── */
    .toast {
        font-size: 0.8rem;
        padding: 0.7rem 1rem;
    }
}