/* ==========================================
   RESET Y VARIABLES GLOBALES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Aura';
    src: url('./font/Nomixa-SemiBold.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    /* Colores */
    --color-bg: #0a0a0a;
    --color-bg-secondary: #1a1a1a;
    --color-text: #ffffff;
    --color-text-secondary: #a0a0a0;
    --color-accent: #ff4444;
    --color-gold: #f4c542;
    --color-gold-dark: #d4a832;
    
    /* Header */
    --header-height: 80px;
    --header-height-mobile: 65px;
    
    /* Safe areas para dispositivos con notch */
    --safe-area-top: env(safe-area-inset-top, 0px);
    --safe-area-bottom: env(safe-area-inset-bottom, 0px);
    --safe-area-left: env(safe-area-inset-left, 0px);
    --safe-area-right: env(safe-area-inset-right, 0px);
    
    /* Transiciones */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
    
    /* Espaciado */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    
    /* Touch targets mínimos */
    --touch-target-min: 44px;
}

/* ==========================================
   SCROLLBAR
   ========================================== */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--color-gold) rgba(240, 197, 81, 0.12);
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(240, 197, 81, 0.06);
}

::-webkit-scrollbar-thumb {
    background: var(--color-gold);
    border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
    background: #f3d16d;
}

/* ==========================================
   BASE STYLES
   ========================================== */
html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Aura', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    text-transform: uppercase;
    background-color: var(--color-bg);
    color: var(--color-text);
    overflow-x: hidden;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: var(--safe-area-top);
    padding-bottom: var(--safe-area-bottom);
}

/* Clase para ocultar visualmente pero mantener accesibilidad */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==========================================
   CURSOR PERSONALIZADO (Solo desktop)
   ========================================== */
@media (pointer: fine) and (hover: hover) {
    .custom-cursor {
        position: fixed;
        top: 0;
        left: 0;
        width: 26px;
        height: 26px;
        border-radius: 50%;
        border: 2px solid #255a6b;
        pointer-events: none;
        z-index: 10000;
        transform: translate3d(-50%, -50%, 0);
        opacity: 0;
        background-color: rgba(253, 253, 253, 0.02);
        transition: all 0.16s ease;
    }

    .custom-cursor::after {
        content: "";
        position: absolute;
        inset: 50%;
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background-color: #255a6b;
        transform: translate(-50%, -50%);
    }

    .custom-cursor.cursor--hover {
        width: 38px;
        height: 38px;
        background-color: rgba(240, 197, 81, 0.16);
        border-color: var(--color-gold);
        box-shadow: 0 0 22px rgba(240, 197, 81, 0.28);
    }

    .custom-cursor.cursor--down {
        transform: translate3d(-50%, -50%, 0) scale(0.88);
    }
}

/* Ocultar cursor en dispositivos táctiles */
@media (pointer: coarse) {
    .custom-cursor {
        display: none !important;
    }
    
    * {
        cursor: auto;
    }
}

/* ==========================================
   FAQ FLOTANTE
   ========================================== */
.floating-btn {
    position: fixed;
    bottom: calc(22px + var(--safe-area-bottom));
    right: calc(22px + var(--safe-area-right));
    width: 54px;
    height: 54px;
    min-width: var(--touch-target-min);
    min-height: var(--touch-target-min);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, var(--color-accent), #ff7043);
    color: white;
    box-shadow: 0 12px 30px rgba(229, 57, 53, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 999;
}

.floating-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 45px rgba(229, 57, 53, 0.6);
}

.floating-btn:active {
    transform: scale(0.95);
}

/* Panel FAQ */
.faq-panel {
    position: fixed;
    bottom: calc(90px + var(--safe-area-bottom));
    right: calc(20px + var(--safe-area-right));
    width: min(320px, calc(100vw - 40px));
    max-height: 60vh;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    transform: scale(0.9);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    z-index: 1000;
}

.faq-panel.active {
    transform: scale(1);
    opacity: 1;
    pointer-events: auto;
}

.faq-header {
    background: #255a6b;
    color: #fff;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-header button {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    min-width: var(--touch-target-min);
    min-height: var(--touch-target-min);
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-body {
    padding: 12px;
    max-height: calc(60vh - 60px);
    overflow-y: auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 14px 0;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    min-height: var(--touch-target-min);
    color: #333;
    text-align: left;
}

.faq-answer {
    font-size: 13px;
    color: #555;
    padding-bottom: 14px;
    display: none;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

/* ==========================================
   HEADER
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    padding-top: var(--safe-area-top);
}

.header.scrolled {
    background-color: rgba(10, 10, 10, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    display: block;
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
    transition: var(--transition);
}

.logo-img:hover {
    opacity: 0.8;
}

/* Navegación */
.nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: clamp(1.5rem, 3vw, 3rem);
    align-items: center;
}

.nav-link {
    color: var(--color-text);
    text-decoration: none;
    font-size: clamp(0.75rem, 1.5vw, 0.875rem);
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--color-text);
    cursor: pointer;
    padding: 0.5rem 1rem;
    transition: var(--transition);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.875rem;
    min-height: var(--touch-target-min);
}

.cart-btn:hover {
    color: var(--color-gold);
}

.cart-btn-icon {
    display: none;
}

/* Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    min-width: var(--touch-target-min);
    min-height: var(--touch-target-min);
    justify-content: center;
    align-items: center;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition);
    display: block;
}

.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 SECTION
   ========================================== */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: url("../img/bg.png");
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    padding-top: calc(var(--header-height) + var(--safe-area-top));
    overflow: hidden;
}

@supports (background-attachment: fixed) {
    @media (hover: hover) {
        .hero {
            background-attachment: fixed;
        }
    }
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    z-index: 1;
    position: relative;
    padding: var(--spacing-lg);
}

.lottie-container {
    width: min(600px, 85vw);
    height: min(600px, 85vw);
    margin: 0 auto;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about-section {
    min-height: 100vh;
    min-height: 100dvh;
    position: relative;
    display: flex;
    align-items: center;
    padding: var(--spacing-xl) var(--spacing-lg);
    overflow: hidden;
    background: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 600"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)" opacity="0.08"/></svg>'),
        linear-gradient(135deg, #0a1f1f 0%, #0d3838 20%, #1a4d4d 40%, #2a5555 60%, #1a3333 80%, #0a1a1a 100%);
    background-size: 200% 200%, cover;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at 80% 50%, rgba(255, 180, 50, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    z-index: 2;
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.about-text {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-text.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.about-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: var(--spacing-lg);
    color: var(--color-gold);
}

.about-description {
    font-size: clamp(0.938rem, 1.8vw, 1.125rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--spacing-lg);
    font-weight: 300;
}

.explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    min-height: var(--touch-target-min);
}

.explore-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-gold);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.explore-btn:hover {
    color: #0a1f1f;
}

.explore-btn:hover::before {
    left: 0;
}

.about-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.about-visual.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.visual-text {
    font-size: clamp(3rem, 12vw, 8rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 0.9;
    color: var(--color-gold);
    opacity: 0.2;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    user-select: none;
}

/* ==========================================
   FIND YOUR AURA SECTION
   ========================================== */
.find-aura-section {
    min-height: 100vh;
    min-height: 100dvh;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: var(--spacing-xl) var(--spacing-lg);
    position: relative;
    overflow: hidden;
}

.find-aura-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(244, 197, 66, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 168, 50, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.find-aura-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.find-aura-intro {
    max-width: 450px;
    margin-bottom: var(--spacing-xl);
}

.intro-text {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
}

.aura-visual-wrapper {
    position: relative;
    min-height: min(500px, 60vh);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: var(--spacing-xl) 0;
}

.crown-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.crown-image {
    width: clamp(200px, 35vw, 400px);
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(255, 215, 0, 0.15));
    animation: crownFloat 3s ease-in-out infinite;
}

@keyframes crownFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.aura-text-overlay {
    position: relative;
    z-index: 1;
    text-align: center;
    pointer-events: none;
}

.aura-text-top,
.aura-text-bottom {
    font-weight: 900;
    line-height: 0.85;
    text-transform: uppercase;
}

.aura-text-top {
    font-size: clamp(2.5rem, 7vw, 8rem);
    color: #E82525;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px #E82525;
}

.aura-text-bottom {
    font-size: clamp(4rem, 12vw, 20rem);
    background: linear-gradient(180deg, #f44242 0%, #d43232 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 8px #E82525);
}

.catalog-cta {
    text-align: center;
    margin-top: var(--spacing-xl);
}

.catalog-btn {
    display: inline-block;
    position: relative;
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: #0a0a0a;
    text-decoration: none;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    font-weight: 700;
    letter-spacing: 2px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(244, 197, 66, 0.25);
    min-height: var(--touch-target-min);
}

.catalog-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(244, 197, 66, 0.4);
}

.catalog-btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-25deg);
    transition: left 0.6s ease;
}

.catalog-btn:hover .catalog-btn-shine {
    left: 150%;
}

/* ==========================================
   CATÁLOGO
   ========================================== */
.catalog-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: #0a0a0a;
}

.catalog-container {
    height: 100%;
    width: 100%;
    position: relative;
}

.catalog-horizontal-track {
    display: flex;
    height: 100%;
    width: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.catalog-slide {
    min-width: 100vw;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-lg);
}

/* Intro Slide */
.intro-slide {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.intro-content {
    text-align: center;
    max-width: 600px;
    padding: var(--spacing-lg);
}

.catalog-main-title {
    font-size: clamp(2rem, 8vw, 5rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.catalog-main-subtitle {
    font-size: clamp(0.875rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: var(--spacing-xl);
    letter-spacing: 1px;
}

.scroll-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
    animation: bounceDown 2s infinite;
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* Product Slide */
.product-slide {
    background: radial-gradient(circle at 30% 50%, rgba(244, 197, 66, 0.03) 0%, transparent 50%), #0f0f0f;
}

.product-card-v2 {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-bg-text {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    text-align: center;
    pointer-events: none;
    user-select: none;
    width: 100%;
}

.bg-text-line {
    font-size: clamp(2rem, 10vw, 7rem);
    font-weight: 900;
    letter-spacing: 0.05em;
    color: rgba(139, 123, 82, 0.08);
    line-height: 0.9;
}

/* Contenido Principal del Producto */
.product-main-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 0.9fr 1.4fr 0.9fr;
    gap: 1.5rem;
    padding: var(--spacing-lg);
    flex: 1;
    align-items: flex-start;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
}

.product-left-column,
.product-right-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: var(--spacing-lg);
}

.product-tagline {
    font-size: clamp(0.625rem, 1vw, 0.75rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.product-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.5rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

.product-subtitle-secondary {
    font-size: clamp(0.875rem, 1.5vw, 1.25rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.product-long-description {
    font-size: clamp(0.75rem, 1.1vw, 0.938rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
}

.product-center-column {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
    z-index: 5;
}

.product-character-wrapper {
    position: relative;
    width: 100%;
    max-width: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-character-img {
    max-width: 100%;
    height: auto;
    max-height: 50vh;
    object-fit: contain;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.6));
    transition: transform 0.12s ease-out;
    will-change: transform;
}

.product-detail-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-title {
    font-size: clamp(0.75rem, 1.1vw, 0.938rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.detail-content {
    font-size: clamp(0.688rem, 1vw, 0.875rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    margin: 0;
}

/* Barra de Información */
.product-info-bar {
    position: relative;
    z-index: 3;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    padding: 1.25rem var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.info-bar-left {
    display: flex;
    gap: clamp(1.5rem, 3vw, 3rem);
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.info-icon {
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0a0a;
    flex-shrink: 0;
}

.info-icon svg {
    width: 20px;
    height: 20px;
}

.info-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.info-label {
    font-size: 0.688rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 0.875rem;
    font-weight: 700;
    color: #0a0a0a;
}

/* Botón Ordenar */
.order-now-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(0, 0, 0, 0.3);
    border-radius: 6px;
    color: #0a0a0a;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    min-height: var(--touch-target-min);
}

.order-now-btn:hover {
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 0, 0, 0.5);
    transform: translateY(-2px);
}

/* Selector de Tamaños */
.product-size-bar {
    position: relative;
    z-index: 3;
    background: #0a0a0a;
    padding: 1rem var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.size-options-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: clamp(1rem, 3vw, 2rem);
    max-width: 650px;
    margin: 0 auto;
    border: none;
    padding: 0;
}

.size-option-v2 {
    position: relative;
    flex: 1;
    max-width: 120px;
}

.size-option-v2 input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.size-option-v2 label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
    transition: var(--transition);
    padding: 0.5rem;
    min-height: var(--touch-target-min);
}

.bottle-icon {
    width: 28px;
    height: 45px;
    stroke: rgba(255, 255, 255, 0.25);
    transition: var(--transition);
}

.size-option-v2:nth-child(2) .bottle-icon {
    width: 34px;
    height: 54px;
}

.size-option-v2 input[type="radio"]:checked + label .bottle-icon {
    stroke: var(--color-gold);
    filter: drop-shadow(0 0 10px rgba(244, 197, 66, 0.6));
}

.size-option-v2 label:hover .bottle-icon {
    stroke: rgba(244, 197, 66, 0.7);
    transform: translateY(-3px);
}

.size-ml {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

.size-option-v2 input[type="radio"]:checked + label .size-ml {
    color: var(--color-gold);
}

.size-price {
    font-size: 0.938rem;
    font-weight: 700;
    color: #ffffff;
}

/* Indicador de Progreso */
.catalog-progress {
    position: fixed;
    bottom: calc(1.5rem + var(--safe-area-bottom));
    left: 10%;
    transform: translateX(-50%);
    z-index: 150;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
}

.catalog-progress.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.progress-middle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
}

.progress-bar {
    width: clamp(100px, 20vw, 180px);
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--color-gold);
    width: 0%;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-counter {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.current-slide {
    color: var(--color-gold);
    font-weight: 700;
}

.progress-btn {
    width: 38px;
    height: 38px;
    min-width: var(--touch-target-min);
    min-height: var(--touch-target-min);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(0, 0, 0, 0.35);
    color: var(--color-gold);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--color-gold);
}

.progress-btn:active {
    transform: scale(0.95);
}

/* ==========================================
   SECCIÓN GÉNERO
   ========================================== */
.gender-section {
    width: 100%;
    height: 100vh;
    height: 100dvh;
    position: relative;
    overflow: hidden;
    background: #0a0a0a;
}

.gender-container {
    display: flex;
    height: 100%;
    width: 100%;
}

.gender-column {
    position: relative;
    flex: 1;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.gender-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(0.3) brightness(0.7);
}

.gender-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.2) 0%, rgba(10, 10, 10, 0.6) 100%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.gender-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: var(--spacing-xl) var(--spacing-lg);
    color: #ffffff;
}

.gender-title-wrapper {
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.gender-title {
    font-size: clamp(2rem, 6vw, 5rem);
    font-weight: 900;
    text-align: center;
    margin: 0;
    line-height: 1;
    background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.gender-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--color-gold);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gender-info {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 600px;
    width: 100%;
    margin-top: var(--spacing-xl);
    text-align: center;
}

.info-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(244, 197, 66, 0.15);
    border: 2px solid rgba(244, 197, 66, 0.5);
    color: var(--color-gold);
    font-size: 0.813rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: var(--spacing-lg);
    border-radius: 50px;
}

.info-description {
    font-size: clamp(0.875rem, 1.5vw, 1.125rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    margin-bottom: var(--spacing-lg);
}

.info-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: var(--spacing-lg);
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.gender-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: #0a0a0a;
    text-decoration: none;
    font-size: 0.938rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: 50px;
    transition: var(--transition);
    min-height: var(--touch-target-min);
}

.gender-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(244, 197, 66, 0.4);
}

/* Hover States - Solo en desktop */
@media (hover: hover) and (pointer: fine) {
    .gender-column:hover {
        flex: 1.8;
    }

    .gender-column:not(:hover) {
        flex: 0.2;
    }

    .gender-container:has(.gender-column:hover) .gender-column:not(:hover) .gender-bg {
        filter: grayscale(0.8) brightness(0.4) blur(8px);
    }

    .gender-container:has(.gender-column:hover) .gender-column:not(:hover) .gender-title {
        opacity: 0.3;
        transform: scale(0.8);
    }

    .gender-column:hover .gender-bg {
        filter: grayscale(0) brightness(0.9);
        transform: scale(1.05);
    }

    .gender-column:hover .gender-title {
        transform: translateY(-30px) scale(0.85);
    }

    .gender-column:hover .gender-title::after {
        width: 120px;
    }

    .gender-column:hover .gender-info {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
    }
}

/* Colores específicos */
.for-him .gender-title {
    background: linear-gradient(135deg, #e1be4d 0%, #e1be4d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.for-him .gender-title::after {
    background: #e1be4d;
}

.for-her .gender-title {
    background: linear-gradient(135deg, #e1be4d 0%, #c2185b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.for-her .gender-title::after {
    background: #e1be4d;
}

/* ==========================================
   RITUAL SECTION
   ========================================== */
.ritual-section {
    position: relative;
    width: 100%;
    min-height: 80vh;
    overflow: hidden;
}

.ritual-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.ritual-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ritual-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.ritual-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-xl) var(--spacing-lg);
}

.ritual-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.ritual-title {
    font-size: clamp(1.75rem, 6vw, 4.5rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.ritual-subtitle {
    font-size: clamp(0.875rem, 1.5vw, 1.125rem);
    font-weight: 300;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-xl);
    font-style: italic;
}

.ritual-text p {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
}

.aura-share-btn {
    display: block;
    width: 100%;
    padding: clamp(2rem, 5vw, 4rem) var(--spacing-lg);
    background: #f4e4c1;
    position: relative;
    z-index: 2;
    overflow: hidden;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}

.share-btn-text {
    position: relative;
    z-index: 2;
    font-size: clamp(1.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #2a2a2a;
    display: block;
    text-align: center;
    transition: var(--transition);
}

.aura-share-btn:hover {
    background: var(--color-gold);
}

.aura-share-btn:hover .share-btn-text {
    color: #0a0a0a;
    letter-spacing: 0.15em;
}

/* ==========================================
   QUIZ SECTION
   ========================================== */
.aura-quiz-section {
    min-height: 100vh;
    min-height: 100dvh;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    padding: var(--spacing-xl) var(--spacing-lg);
    position: relative;
    overflow: hidden;
}

.aura-quiz-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(244, 197, 66, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(244, 197, 66, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.quiz-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.quiz-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.quiz-title {
    font-size: clamp(1.75rem, 6vw, 4rem);
    font-weight: 900;
    letter-spacing: 0.1em;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.quiz-subtitle {
    font-size: clamp(0.875rem, 1.5vw, 1.125rem);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

.quiz-progress-wrapper {
    margin-bottom: var(--spacing-xl);
}

.quiz-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.quiz-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-dark));
    width: 16.66%;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.quiz-progress-text {
    display: block;
    text-align: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.quiz-progress-text .current-question {
    color: var(--color-gold);
    font-weight: 700;
}

.quiz-questions-container {
    position: relative;
    min-height: 350px;
}

.quiz-question {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(50px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.quiz-question.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    position: relative;
}

.quiz-question.exiting {
    opacity: 0;
    transform: translateX(-50px);
}

.question-title {
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin-bottom: var(--spacing-xl);
    line-height: 1.3;
}

.question-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.quiz-option {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 1rem;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    font-weight: 500;
    min-height: var(--touch-target-min);
}

.quiz-option svg {
    width: 36px;
    height: 36px;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.quiz-option:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(244, 197, 66, 0.5);
    transform: translateY(-3px);
}

.quiz-option:hover svg {
    color: var(--color-gold);
}

.quiz-option.selected {
    background: rgba(244, 197, 66, 0.1);
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.quiz-option.selected svg {
    color: var(--color-gold);
}

.price-tag {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--color-gold);
}

.quiz-navigation {
    margin-top: var(--spacing-xl);
    display: flex;
    justify-content: flex-start;
}

.quiz-nav-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    min-height: var(--touch-target-min);
}

.quiz-nav-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(244, 197, 66, 0.5);
    color: var(--color-gold);
}

.quiz-nav-btn.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Resultados del Quiz */
.quiz-results {
    text-align: center;
}

.quiz-results.hidden {
    display: none;
}

.crown-result-img {
    width: 100px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(244, 197, 66, 0.4));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.results-title {
    font-size: clamp(1.5rem, 5vw, 3rem);
    font-weight: 900;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    margin: var(--spacing-lg) 0;
}

.result-card {
    background: linear-gradient(135deg, rgba(244, 197, 66, 0.05) 0%, rgba(212, 168, 50, 0.02) 100%);
    border: 2px solid rgba(244, 197, 66, 0.2);
    border-radius: 16px;
    padding: var(--spacing-lg);
}

.result-product-name {
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.result-tagline {
    font-size: clamp(0.938rem, 1.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: var(--spacing-lg);
}

.result-details {
    text-align: left;
    margin-bottom: var(--spacing-lg);
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
}

.result-personality {
    font-size: 0.875rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1rem;
}

.result-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.result-tag {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: rgba(244, 197, 66, 0.1);
    border: 1px solid rgba(244, 197, 66, 0.3);
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--color-gold);
    font-weight: 600;
}

.result-scenarios {
    font-size: 0.813rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.result-scenarios strong {
    color: var(--color-gold);
}

.result-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: var(--spacing-lg);
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
}

.spec-item {
    text-align: center;
}

.spec-label {
    display: block;
    font-size: 0.688rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.spec-value {
    display: block;
    font-size: 1rem;
    color: var(--color-gold);
    font-weight: 700;
}

.intensity-bars {
    display: flex;
    justify-content: center;
    gap: 0.35rem;
}

.intensity-bar {
    width: 6px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.intensity-bar.filled {
    background: linear-gradient(180deg, var(--color-gold), var(--color-gold-dark));
}

.result-price {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.price-option {
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    flex: 1;
    min-width: 80px;
    max-width: 120px;
}

.price-option.highlighted {
    background: rgba(244, 197, 66, 0.1);
    border-color: var(--color-gold);
}

.price-option .size {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.35rem;
}

.price-option .price {
    display: block;
    font-size: 1.25rem;
    color: var(--color-gold);
    font-weight: 800;
}

.result-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.result-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    border: none;
    border-radius: 8px;
    color: #0a0a0a;
    font-size: 0.938rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    min-height: var(--touch-target-min);
}

.result-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(244, 197, 66, 0.4);
}

.result-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.813rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    min-height: var(--touch-target-min);
}

.result-btn-secondary:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: #000000;
    color: #ffffff;
    padding: var(--spacing-xl) var(--spacing-lg) var(--spacing-lg);
    padding-bottom: calc(var(--spacing-lg) + var(--safe-area-bottom));
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    max-width: 300px;
    width: 100%;
    height: auto;
}

.footer-title {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: var(--color-gold);
}

.footer-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-nav-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.938rem;
    transition: var(--transition);
    display: inline-block;
    min-height: var(--touch-target-min);
    display: flex;
    align-items: center;
}

.footer-nav-link:hover {
    color: var(--color-gold);
}

.footer-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.875rem 1rem;
    color: #ffffff;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    outline: none;
    min-height: var(--touch-target-min);
    border-radius: 4px;
}

.footer-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.footer-input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-gold);
}

.footer-textarea {
    min-height: 100px;
    resize: vertical;
}

.footer-submit {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    color: #000000;
    border: none;
    padding: 1rem 2rem;
    font-size: 0.938rem;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
    min-height: var(--touch-target-min);
    border-radius: 4px;
}

.footer-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(244, 197, 66, 0.4);
}

.footer-social {
    margin-top: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-link {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.938rem;
    text-decoration: none;
    transition: var(--transition);
    min-height: var(--touch-target-min);
    display: flex;
    align-items: center;
}

.social-link:hover {
    color: var(--color-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
}

.footer-copyright {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
}

/* ==========================================
   BOTÓN VOLVER ARRIBA
   ========================================== */
#btnArriba {
    position: fixed;
    top: 50%;
    right: calc(15px + var(--safe-area-right));
    transform: translateY(-50%) scale(0.7) rotate(90deg);
    width: 98px;
    height: 48px;
    min-width: var(--touch-target-min);
    min-height: var(--touch-target-min);
    border-radius: 5%;
    background: linear-gradient(135deg, #e53935, #ff7043);
    color: #fff;
    border: none;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 28px rgba(229, 57, 53, 0.45);
    transition: var(--transition);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
}

#btnArriba.show {
    opacity: 1;
    pointer-events: auto;
}

#btnArriba:hover {
    transform: translateY(-50%) scale(1.01) rotate(90deg);
    box-shadow: 0 18px 45px rgba(229, 57, 53, 0.55);
}

/* ==========================================
   RESPONSIVE - TABLET (max-width: 1024px)
   ========================================== */
@media (max-width: 1024px) {
    .nav-list {
        gap: 1.5rem;
    }
    
    .product-main-content {
        grid-template-columns: 1fr 1.2fr 1fr;
        gap: 1rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-lg);
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
}

/* ==========================================
   RESPONSIVE - MOBILE (max-width: 768px)
   ========================================== */
@media (max-width: 768px) {
    :root {
        --header-height: var(--header-height-mobile);
    }
    .product-right-column{
        display: none;
    }
    .catalog-progress {
    left: 50%;
        
    }
    
    /* Header Mobile */
    .header-container {
        padding: 0 1rem;
    }
    
    .logo-img {
        height: 32px;
    }
    
    .nav {
        position: fixed;
        top: calc(var(--header-height) + var(--safe-area-top));
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: var(--spacing-lg);
        transform: translateX(-100%);
        opacity: 0;
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav.active {
        transform: translateX(0);
        opacity: 1;
    }
    
    .nav-list {
        flex-direction: column;
        gap: var(--spacing-lg);
        align-items: flex-start;
    }
    
    .nav-link {
        font-size: 1.25rem;
        padding: 0.75rem 0;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .cart-btn-text {
        display: none;
    }
    
    .cart-btn-icon {
        display: block;
        font-size: 1.5rem;
    }
    
    /* Hero Mobile */
    .hero {
        padding-top: calc(var(--header-height) + var(--safe-area-top) + 20px);
    }
    
    .lottie-container {
        width: min(350px, 90vw);
        height: min(350px, 90vw);
    }
    
    /* About Mobile */
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .about-visual {
        order: -1;
        justify-content: center;
    }
    
    .visual-text {
        writing-mode: horizontal-tb;
        transform: none;
        font-size: clamp(2.5rem, 15vw, 5rem);
        opacity: 0.15;
    }
    
    .explore-btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Find Aura Mobile */
    .find-aura-intro {
        max-width: 100%;
        text-align: center;
    }
    
    .aura-visual-wrapper {
        min-height: min(400px, 50vh);
    }
    
    .crown-image {
        width: clamp(180px, 50vw, 250px);
    }
    
    .aura-text-top {
        font-size: clamp(2rem, 10vw, 4rem);
    }
    
    .aura-text-bottom {
        font-size: clamp(3rem, 15vw, 8rem);
    }
    
    .catalog-btn {
        width: 90%;
        max-width: 300px;
        padding: 1rem 2rem;
    }
    
    /* Catálogo Mobile */
    .catalog-slide {
        padding: 1rem;
    }
    
    .catalog-main-title {
        font-size: clamp(1.75rem, 10vw, 3rem);
    }
    
    .product-main-content {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
        align-items: center;
    }
    
    .product-center-column {
        order: -1;
    }
    
    .product-character-img {
        max-height: 35vh;
        max-width: 200px;
    }
    
    .product-left-column,
    .product-right-column {
        padding: 0;
        text-align: center;
        max-width: 100%;
    }
    
    .bg-text-line {
        font-size: clamp(1.5rem, 12vw, 3rem);
        opacity: 0.04;
    }
    
    .product-info-bar {
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }
    
    .info-bar-left {
        width: 100%;
        justify-content: center;
        gap: 1.5rem;
    }
    
    .order-now-btn {
        width: 100%;
        justify-content: center;
    }
    
    .product-size-bar {
        padding: 1rem;
    }
    
    .size-options-wrapper {
        gap: 0.75rem;
    }
    
    .bottle-icon {
        width: 24px;
        height: 38px;
    }
    
    .size-option-v2:nth-child(2) .bottle-icon {
        width: 28px;
        height: 45px;
    }
    
    .size-price {
        font-size: 0.813rem;
    }
    
    .catalog-progress {
        bottom: calc(1rem + var(--safe-area-bottom));
        padding: 0.5rem 1rem;
        gap: 0.75rem;
    }
    
    .progress-bar {
        width: 80px;
    }
    
    .progress-counter {
        font-size: 0.688rem;
    }
    
    .progress-btn {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    /* Gender Section Mobile */
    .gender-section {
        height: auto;
        min-height: 100vh;
        min-height: 100dvh;
    }
    
    .gender-container {
        flex-direction: column;
    }
    
    .gender-column {
        flex: none !important;
        min-height: 50vh;
        transition: min-height 0.5s ease;
    }
    
    .gender-column.mobile-active {
        min-height: 100vh;
        min-height: 100dvh;
    }
    
    .gender-column.mobile-active .gender-info {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
    }
    
    .gender-column.mobile-active .gender-title {
        transform: translateY(-20px) scale(0.9);
    }
    
    .gender-column.mobile-inactive {
        min-height: 0;
        max-height: 0;
        overflow: hidden;
    }
    
    .gender-title {
        font-size: clamp(1.75rem, 8vw, 3rem);
    }
    
    .info-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .gender-cta {
        padding: 0.875rem 1.5rem;
        font-size: 0.813rem;
    }
    
    /* Ritual Mobile */
    .ritual-container {
        padding: var(--spacing-xl) var(--spacing-sm);
    }
    
    .ritual-title {
        font-size: clamp(1.5rem, 8vw, 2.5rem);
    }
    
    .ritual-text p {
        font-size: 0.938rem;
    }
    
    .share-btn-text {
        font-size: clamp(1.25rem, 6vw, 2rem);
    }
    
    /* Quiz Mobile */
    .aura-quiz-section {
        padding: var(--spacing-xl) var(--spacing-sm);
    }
    
    .quiz-title {
        font-size: clamp(1.5rem, 8vw, 2.5rem);
    }
    
    .question-options {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
    
    .quiz-option {
        padding: 1rem 0.75rem;
        font-size: 0.75rem;
    }
    
    .quiz-option svg {
        width: 28px;
        height: 28px;
    }
    
    .price-tag {
        font-size: 1.5rem;
    }
    
    .result-specs {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .result-price {
        flex-direction: row;
    }
    
    .price-option {
        min-width: 70px;
        padding: 0.75rem;
    }
    
    .price-option .price {
        font-size: 1rem;
    }
    
    /* Footer Mobile */
    .footer {
        padding: var(--spacing-lg) var(--spacing-sm);
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .footer-logo {
        max-width: 200px;
    }
    
    .footer-input {
        font-size: 16px; /* Previene zoom en iOS */
    }
    
    /* FAQ Mobile */
    .faq-panel {
        bottom: calc(85px + var(--safe-area-bottom));
        right: 10px;
        left: 10px;
        width: auto;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        bottom: calc(20px + var(--safe-area-bottom));
        right: calc(20px + var(--safe-area-right));
    }
    
    #btnArriba {
        right: calc(10px + var(--safe-area-right));
        width: 44px;
        height: 44px;
    }
}

/* ==========================================
   RESPONSIVE - MOBILE SMALL (max-width: 480px)
   ========================================== */
@media (max-width: 480px) {
    .header-container {
        padding: 0 0.75rem;
    }
    
    .logo-img {
        height: 28px;
    }
    
    .lottie-container {
        width: min(280px, 85vw);
        height: min(280px, 85vw);
    }
    
    .about-section,
    .find-aura-section {
        padding: var(--spacing-lg) var(--spacing-sm);
    }
    
    .about-title {
        font-size: 1.25rem;
    }
    
    .about-description {
        font-size: 0.875rem;
    }
    
    .question-options {
        grid-template-columns: 1fr;
    }
    
    .quiz-option {
        flex-direction: row;
        justify-content: flex-start;
        padding: 1rem;
    }
    
    .quiz-option svg {
        width: 24px;
        height: 24px;
    }
    
    .result-card {
        padding: 1rem;
    }
    
    .result-details,
    .result-specs {
        padding: 1rem;
    }
    
    .footer-nav-list {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.75rem;
    }
}

/* ==========================================
   LANDSCAPE MOBILE
   ========================================== */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: calc(var(--header-height) + 20px) var(--spacing-lg) var(--spacing-lg);
    }
    
    .lottie-container {
        width: min(250px, 40vh);
        height: min(250px, 40vh);
    }
    
    .gender-column {
        min-height: 100vh;
        min-height: 100dvh;
    }
    
    .catalog-slide {
        padding: 0.5rem;
    }
    
    .product-character-img {
        max-height: 30vh;
    }
}

/* ==========================================
   ACCESIBILIDAD
   ========================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus visible */
:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

button:focus:not(:focus-visible),
a:focus:not(:focus-visible) {
    outline: none;
}

/* ==========================================
   PRINT STYLES
   ========================================== */
@media print {
    .header,
    .floating-btn,
    .faq-panel,
    #btnArriba,
    .custom-cursor,
    .catalog-progress {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
}