/* ===================================
   AURA LUCERO - SISTEMA DE DISEÑO
   Elegante, Luminoso, Artesanal
   =================================== */

/* IMPORTAR TIPOGRAFÍAS */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Lato:wght@300;400;600;700&display=swap');

/* ===================================
   VARIABLES CSS - PALETA DE COLORES
   =================================== */
:root {
    /* Colores Principales - Tonos Cálidos */
    --color-cream: #FAF7F2;
    --color-beige: #E8DFD0;
    --color-nude: #D4C4B0;
    --color-pink-pale: #F2E4E8;
    --color-pink-soft: #E8CFD8;

    /* Colores Premium */
    --color-gold-soft: #D4AF37;
    --color-gold-light: #F4E5C3;
    --color-ivory: #FFFFF0;
    --color-lavender: #E6E1F5;
    --color-lavender-light: #F3F1FA;
    --color-navy-deep: #1A2332;

    /* Colores de Acento */
    --color-white: #FFFFFF;
    --color-black-soft: #2A2A2A;
    --color-gray-light: #F5F5F5;
    --color-gray-medium: #CCCCCC;

    /* Gradientes */
    --gradient-hero: linear-gradient(135deg, var(--color-ivory) 0%, var(--color-pink-pale) 50%, var(--color-lavender-light) 100%);
    --gradient-gold: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold-soft) 100%);
    --gradient-warm: linear-gradient(to bottom, var(--color-cream) 0%, var(--color-beige) 100%);

    /* Sombras */
    --shadow-soft: 0 4px 16px rgba(212, 175, 55, 0.08);
    --shadow-medium: 0 8px 24px rgba(212, 175, 55, 0.12);
    --shadow-strong: 0 12px 32px rgba(212, 175, 55, 0.16);
    --shadow-hover: 0 16px 40px rgba(212, 175, 55, 0.2);

    /* Tipografías */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;

    /* Espaciado */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;

    /* Transiciones */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    /* Bordes */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
}

/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-black-soft);
    background-color: var(--color-ivory);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

/* ===================================
   TIPOGRAFÍA
   =================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-navy-deep);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-black-soft);
}

.text-gold {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-center {
    text-align: center;
}

/* ===================================
   LAYOUT & CONTAINERS
   =================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-xl) 0;
}

.section-small {
    padding: var(--spacing-lg) 0;
}

/* Grid System */
.grid {
    display: grid;
    gap: var(--spacing-md);
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Flex Utilities */
.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-soft);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-medium);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative; /* 🔥 FIX CLAVE */
}



.logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-navy-deep);
    letter-spacing: 0.05em;
}

.logo span {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}


.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-navy-deep);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: var(--transition-smooth);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link:hover {
    color: var(--color-gold-soft);
}

/* Cart Icon */
.cart-icon {
    position: relative;
    cursor: pointer;
    padding: 0.5rem;
    transition: var(--transition-smooth);
}

.cart-icon:hover {
    transform: scale(1.1);
}

.cart-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--color-gold-soft);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-navy-deep);
    transition: var(--transition-fast);
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--color-navy-deep);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: var(--color-navy-deep);
    color: var(--color-white);
}

.btn-secondary:hover {
    background: #2d3b52;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    background: transparent;
    color: var(--color-navy-deep);
    border: 2px solid var(--color-navy-deep);
}

.btn-outline:hover {
    background: var(--color-navy-deep);
    color: var(--color-white);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

.btn-small {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

/* ===================================
   CARDS
   =================================== */
.card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.card-image {
    width: 100%;
    height: 260px; /* 👈 más balanceado en desktop */
    object-fit: cover;
    transition: var(--transition-slow);
    flex-shrink: 0;
}



.card:hover .card-image {
    transform: scale(1.05);
}

.card-content {
    padding: var(--spacing-md);
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xs);
    color: var(--color-navy-deep);
}

.card-description {
    font-size: 0.95rem;
    color: var(--color-black-soft);
    opacity: 0.8;
    margin-bottom: var(--spacing-sm);
}

.card-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gold-soft);
    font-family: var(--font-heading);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    min-height: 100vh;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-md);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(212,175,55,0.1)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-lg);
    color: var(--color-navy-deep);
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero .btn {
    animation: fadeInUp 1s ease 0.4s backwards;
}

/* ===================================
   FORMS
   =================================== */
.form-group {
    margin-bottom: var(--spacing-md);
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--color-navy-deep);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 2px solid var(--color-gray-medium);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    background: var(--color-white);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--color-gold-soft);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--color-navy-deep);
    color: var(--color-cream);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-section h4 {
    color: var(--color-gold-light);
    margin-bottom: var(--spacing-sm);
}

.footer-section a {
    display: block;
    margin-bottom: var(--spacing-xs);
    opacity: 0.8;
    transition: var(--transition-fast);
}

.footer-section a:hover {
    opacity: 1;
    color: var(--color-gold-light);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

.social-icons {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.social-icon:hover {
    background: var(--color-gold-soft);
    transform: translateY(-3px);
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   UTILITIES
   =================================== */
.mt-sm {
    margin-top: var(--spacing-sm);
}

.mt-md {
    margin-top: var(--spacing-md);
}

.mt-lg {
    margin-top: var(--spacing-lg);
}

.mb-sm {
    margin-bottom: var(--spacing-sm);
}

.mb-md {
    margin-bottom: var(--spacing-md);
}

.mb-lg {
    margin-bottom: var(--spacing-lg);
}

.py-sm {
    padding-top: var(--spacing-sm);
    padding-bottom: var(--spacing-sm);
}

.py-md {
    padding-top: var(--spacing-md);
    padding-bottom: var(--spacing-md);
}

.py-lg {
    padding-top: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
}

.text-small {
    font-size: 0.875rem;
}

.text-large {
    font-size: 1.25rem;
}

.fw-light {
    font-weight: 300;
}

.fw-normal {
    font-weight: 400;
}

.fw-bold {
    font-weight: 700;
}


.fw-light .highlight-phrase {
    font-weight: 700 !important;
    font-size: 1.25rem;
    color: var(--color-navy-deep);
}


/* ===================================
   IMPACTO SOCIAL
   =================================== */
.section-impact {
    background: linear-gradient(
        180deg,
        #fffaf0 0%,
        #f7efd8 100%
    );
    text-align: center;
}


.impact-box {
    background: linear-gradient(135deg, #f4e5c3, #d4af37);
    padding: 3rem 2.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-medium);
    max-width: 900px;
    margin: 0 auto;
}

.impact-main {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-navy-deep);
    margin-bottom: 1rem;
}

.impact-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-navy-deep);
    opacity: 0.9;
}

/* Responsive */

@media (max-width: 768px) {
    .impact-quote {
        font-size: 1rem;
    }
}


/* ===================================
   RESPONSIVE
   =================================== */


@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .container,
    .container-wide {
        padding: 0 var(--spacing-sm);
    }
}

.highlight-phrase {
    font-weight: 700;
}

/* ================================
   HEADER ACTIONS (GLOBAL)
   ================================ */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* ================================
   HEADER MOBILE DEFINITIVO
   ================================ */
@media (max-width: 768px) {

    .nav-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    /* Logo izquierda */
    .logo {
        font-size: 1.6rem;
        z-index: 1001;
    }

    /* Acciones derecha (carrito + menú) */
    .header-actions {
        margin-left: auto;
        z-index: 1001;
    }

    /* Menú hamburguesa */
    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
    }

    .menu-toggle span {
        width: 26px;
        height: 2px;
        background: var(--color-navy-deep);
    }

    /* Carrito */
    .cart-icon {
        font-size: 1.4rem;
        cursor: pointer;
    }

    /* Menú desplegable */
    .nav-menu {
        position: fixed;
        top: 72px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 72px);
        background: var(--color-ivory);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 3rem 2rem;
        gap: 2rem;
        transition: var(--transition-smooth);
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-link {
        width: 100%;
        font-size: 1.4rem;
        padding: 0;
        text-align: left;
        font-family: var(--font-heading);
    }
}


/* ================================
   HEADER DESKTOP - ORDEN CORRECTO
   ================================ */
@media (min-width: 769px) {

    .nav-container {
        display: flex;
        align-items: center;
    }

    /* LOGO primero */
    .logo {
        order: 1;
    }

    /* MENÚ al centro */
    nav {
        order: 2;
        margin-left: auto;
    }

    /* CARRITO al final */
    .header-actions {
        order: 3;
        margin-left: 1.5rem;
    }
}

/* PRECIO PREMIUM – ALINEADO Y ELEGANTE */
.card-price {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 600;
    color: var(--color-gold-soft);

    display: flex;
    align-items: baseline; /* 🔥 CLAVE */

    gap: 0.25rem;

    letter-spacing: 0.05em;

    /* números rectos y alineados */
    font-variant-numeric: lining-nums tabular-nums;

    margin: 0.5rem 0 1rem;
}



/* BOTÓN AÑADIR AL CARRITO - PREMIUM */
.btn-cart {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--color-navy-deep);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;

    padding: 0.7rem 1.8rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;

    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.btn-cart:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* ================================
   NEWSLETTER PREMIUM
   ================================ */

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.2rem;
    border-radius: 12px;
    border: 2px solid #ddd;
    font-size: 1rem;
    outline: none;
}

.newsletter-form input:focus {
    border-color: var(--color-gold-soft);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
}

.newsletter-form button {
    background: #1A2332;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 999px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(26,35,50,0.25);
}

/* MENSAJE DE CONFIRMACIÓN (CLAVE) */
.newsletter-message {
    margin-top: 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    color: #1A2332;
    text-align: center;
}

/* ÉXITO */
.newsletter-message.success {
    color: #1A2332;
}

/* ERROR */
.newsletter-message.error {
    color: #8B0000;
}

.filter-emotional {
    background: linear-gradient(180deg, #fffaf0, #f4e5c3);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
}

.filter-emotional h3 {
    margin-bottom: 1rem;
}

.filter-emotional .filter-group {
    margin-bottom: 1.5rem;
}

/* ===================================
   SHOP HEADER – FIX VISIBILIDAD H1
   =================================== */

.shop-header {
    padding-top: 8.5rem; /* espacio para navbar fixed */
    padding-bottom: 0.5rem;
    text-align: center;
}

/* Desktop */
@media (min-width: 769px) {
    .shop-header h1 {
        font-size: 4rem;
        margin-bottom: 2rem;
    }
}

/* ===================================
   SHOP HEADER – SUBTÍTULO AURA LUCERO
   =================================== */

.shop-subtitle {
    font-family: var(--font-heading); /* Playfair = lujo */
    font-size: 1rem;
    font-weight: 500;
    max-width: 820px;
    margin: 0 auto;
    color: var(--color-navy-deep);
    opacity: 0.9;
    letter-spacing: 0.05em;
    line-height: 1.9;
    text-align: center;
}

/* Mobile */
@media (max-width: 768px) {
    .shop-subtitle {
        font-size: 0.9rem;
        padding: 0 1rem;
    }
}

/* ===================================
   AJUSTE FINO – ESPACIADO HEADER → FILTROS
   =================================== */

/* Reducir espacio inferior del header */
.shop-header {
    padding-bottom: 0.5rem; /* antes estaba muy alto */
}

/* Reducir espacio superior de la sección que contiene filtros */
.section {
    padding-top: 0.5rem; /* antes era var(--spacing-xl) */
}

/* Afinar separación exacta del toolbar */
.shop-toolbar {
    margin-top: 0.5rem;
}

/* ===================================
   MOBILE FILTER PANEL – AURA LUCERO
   =================================== */

.mobile-filter-bar {
    display: none;
}

@media (max-width: 768px) {

    /* Barra superior tipo Iluminata */
    .mobile-filter-bar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.2rem 1.2rem;
        background: linear-gradient(180deg, #fffaf0, #f4e5c3);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-soft);
        margin-bottom: 1.8rem;
    }

    .mobile-filter-btn {
        background: transparent;
        border: none;
        font-family: var(--font-heading);
        font-size: 1rem;
        font-weight: 600;
        color: var(--color-navy-deep);
        cursor: pointer;
    }

    .mobile-product-count {
        font-size: 0.85rem;
        opacity: 0.7;
        letter-spacing: 0.03em;
    }


    /* Overlay oscuro */
    .shop-toolbar-wrapper {
        position: fixed;
        inset: 0;
        background: rgba(26,35,50,0.45);
        z-index: 9999;

        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .shop-toolbar-wrapper.active {
        opacity: 1;
        visibility: visible;
    }

    /* Bottom sheet */
    .shop-toolbar {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        max-height: 80vh;

        background: linear-gradient(
            180deg,
            #fffaf0 0%,
            #f4e5c3 100%
        );

        border-radius: 24px 24px 0 0;
        padding: 2rem 1.5rem;
        overflow-y: auto;

        transform: translateY(100%);
        transition: transform 0.35s ease;
    }

    .shop-toolbar-wrapper.active .shop-toolbar {
        transform: translateY(0);
    }
    
    
}

@media (max-width: 768px) {
    .filter-content {
        max-height: 0;
        overflow: hidden;
        padding: 0;
    }

    .filter-dropdown.active .filter-content {
        max-height: 2000px;
        padding: 1.5rem;
    }

}
@media (max-width: 768px) {
    .mobile-sheet-handle {
        width: 48px;
        height: 5px;
        background: rgba(26,35,50,0.25);
        border-radius: 999px;
        margin: 0 auto 1.2rem;
    }
}


/* ===================================
   FIX CONTADOR PRODUCTOS – AURA LUCERO
   =================================== */

.shop-order .product-count {
    font-family: var(--font-heading); /* Playfair */
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-navy-deep);

    opacity: 0.85;
    letter-spacing: 0.02em;

    margin: 0;
}

/* ===================================
   MOBILE – OCULTAR CONTADOR INTERNO
   =================================== */

@media (max-width: 768px) {
    .shop-toolbar .product-count {
        display: none;
    }
}
/* ===================================
   NUESTROS VALORES – GRID PREMIUM
   =================================== */

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    padding: 2.5rem 2rem;
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
}
@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 600px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
/* ===================================
   VALORES – FIX DEFINITIVO
   =================================== */

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.value-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.value-card p {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}
/* ===================================
   MOBILE – FILTROS TEXTO PREMIUM
   =================================== */
@media (max-width: 768px) {

    .shop-toolbar .filter-toggle {
        width: 100%;
        background: transparent;
        border: none;

        font-family: var(--font-heading);
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--color-navy-deep);

        padding: 0.9rem 0;
        text-align: left;

        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* Quitar look de input */
    .shop-toolbar .filter-dropdown {
        background: transparent;
        border: none;
        box-shadow: none;
    }

    /* Separador sutil entre filtros */
    .shop-toolbar .filter-dropdown + .filter-dropdown {
        border-top: 1px solid rgba(26,35,50,0.08);
    }

    /* Flecha */
    .shop-toolbar .chevron {
        font-size: 0.75rem;
        opacity: 0.7;
    }
}
@media (min-width: 769px) {
    .shop-subtitle {
        font-size: 1.25rem;   /* ⬇️ más pequeño solo desktop */
        line-height: 0.3;
        letter-spacing: 0.03em;
    }
}

/* =====================================================
   FIX FINAL DESKTOP – RESTAURAR DISEÑO CORRECTO
   (NO AFECTA MOBILE)
   ===================================================== */

@media (min-width: 769px) {

    /* TOOLBAR vuelve a layout horizontal elegante */
    .shop-toolbar {
        position: relative;
        display: flex;
        align-items: center;
        gap: 2.5rem;

        background: linear-gradient(180deg, #fffaf0 0%, #f4e5c3 100%);
        padding: 1.8rem 2.2rem;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-soft);
    }

    /* Filtros en línea, no como inputs */
    .shop-filters {
        display: flex;
        align-items: center;
        gap: 2.5rem;
        flex-direction: row;
    }

    /* Ordenar + contador alineados a la derecha */
    .shop-order {
        display: flex;
        align-items: center;
        gap: 1.8rem;
        margin-left: auto;
        position: relative;
    }

    /* FORZAR texto premium (evita look input/select) */
    .filter-dropdown,
    .filter-toggle {
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }

    .filter-toggle {
        padding: 0 !important;
        font-family: var(--font-heading) !important;
        font-size: 1.05rem !important;
        font-weight: 600 !important;
        color: var(--color-navy-deep) !important;

        display: flex;
        align-items: center;
        gap: 0.4rem;
        cursor: pointer;
    }

    .filter-toggle:hover {
        color: var(--color-gold-soft) !important;
    }

    /* Subrayado dorado elegante */
    .shop-filters .filter-toggle::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -6px;
        width: 100%;
        height: 2px;
        background: var(--gradient-gold);
        opacity: 0;
        transform: scaleX(0);
        transform-origin: left;
        transition: all 0.3s ease;
    }

    .shop-filters .filter-toggle:hover::after,
    .shop-filters .filter-dropdown.active .filter-toggle::after {
        opacity: 1;
        transform: scaleX(1);
    }

    /* Asegurar que NO se vean como selects */
    .shop-toolbar select,
    .shop-toolbar input {
        all: unset;
    }
}


/* ================================
   INTERIOR FILTROS – ORDEN VISUAL
   ================================ */

.filter-group {
    margin-bottom: 2rem;
}

.filter-group h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: var(--color-navy-deep);
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.4;
}
/* =====================================================
   FIX LIMPIO – SHOP TOOLBAR DESKTOP (AURA LUCERO)
   ===================================================== */

@media (min-width: 769px) {

  .shop-toolbar {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 2.5rem;

    background: linear-gradient(180deg, #fffaf0 0%, #f4e5c3 100%);
    padding: 1.6rem 2.2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
  }

  /* Filtros alineados y agrupados */
  .shop-filters {
    display: flex;
    align-items: center;
    gap: 2.2rem;
  }

  /* Ordenar + contador alineados a la derecha */
  .shop-order {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
  }
}
@media (min-width: 769px) {

  .filter-dropdown {
    position: relative;
  }

  .filter-content {
    position: absolute;
    top: calc(100% + 0.8rem);
    left: 0;

    min-width: 320px;
    background: #fffaf0;
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
    padding: 1.8rem;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 50;
  }

  .filter-dropdown.active .filter-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  /* Ordenar alineado a la derecha */
  .filter-sort .filter-content {
    right: 0;
    left: auto;
    min-width: 260px;
  }
}
/* =====================================================
   FIX FINAL – ALINEACIÓN TOOLBAR DESKTOP
   ===================================================== */

@media (min-width: 769px) {

  /* Reducir altura innecesaria del contenedor */
  .shop-toolbar {
    display: flex;
    align-items: center;              /* 🔥 CLAVE */
    justify-content: space-between;
    padding: 1.4rem 2.2rem;           /* ⬇️ menos alto */
    min-height: auto;                 /* 🔥 elimina altura fantasma */
  }

  /* Filtros perfectamente centrados */
  .shop-filters {
    display: flex;
    align-items: center;              /* 🔥 CLAVE */
    gap: 2.2rem;
  }

  /* Ordenar + contador en la misma línea */
  .shop-order {
    display: flex;
    align-items: center;              /* 🔥 CLAVE */
    gap: 1.5rem;
    margin-left: auto;
  }

  /* Elimina márgenes que empujan hacia abajo */
  .filter-dropdown {
    margin: 1;
  }

  .filter-toggle {
    margin: 0;
    line-height: 1;
  }
}

/* =====================================================
   OVERRIDE DEFINITIVO – TAMAÑO TEXTO FILTROS
   ===================================================== */


@media (min-width: 769px) {

  /* Todos los textos de filtros (incluye Ordenar) */
  .shop-toolbar .filter-toggle {
    font-size: 1.16rem !important;
    font-weight: 700;
  }

  /* Contador de productos */
  .shop-toolbar .product-count {
    font-size: 1.16rem !important;   /* mismo tamaño */
    font-weight: 700;
  }
}

/* =====================================================
   FIX DEFINITIVO – ORDENAR SIEMPRE EN UNA LÍNEA
   ===================================================== */

@media (min-width: 769px) {

  /* Evita saltos de línea en ordenar */
  .shop-order .filter-toggle {
    white-space: nowrap;          /* 🔥 CLAVE */
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
  }

  /* Asegura espacio suficiente para textos largos */
  .shop-order .filter-dropdown {
    min-width: 0px;             /* 🔥 CLAVE */
  }

  /* Texto dinámico */
  .shop-order #currentSort {
    white-space: nowrap;
  }

  /* Contador también en una línea */
  .shop-order .product-count {
    white-space: nowrap;
  }
}

/* =====================================================
   DROPDOWNS UNIFICADOS – AURA LUCERO (DESKTOP)
   ===================================================== */

@media (min-width: 769px) {

  .filter-dropdown {
    position: relative;
  }

  .filter-content {
    position: absolute;
    top: calc(100% + 0.9rem);
    left: 0;

    min-width: 320px;
    background: linear-gradient(180deg, #fffaf0, #f4e5c3);
    border-radius: 28px;
    box-shadow: var(--shadow-medium);

    padding: 2.4rem 2.6rem;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 50;
  }

  .filter-dropdown.active .filter-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  /* Ordenar alineado a la derecha */
  .filter-sort .filter-content {
    right: 0;
    left: auto;
    min-width: 320px;
  }
}

@media (min-width: 769px) {
  .filter-content {
    min-height: 420px;
  }
}

/* =====================================================
   DOBLE CAPA VISUAL – TODOS LOS FILTROS (DESKTOP)
   ===================================================== */

@media (min-width: 769px) {

  /* Fondo grande (ya existe, lo dejamos) */
  .filter-content {
    padding: 2.4rem;
    display: flex;
    align-items: stretch;
  }

  /* TARJETA INTERNA (como el filtro emocional) */
  .filter-content .filters {
    background: linear-gradient(180deg, #fffaf0, #f4e5c3);
    border-radius: 22px;
    box-shadow: var(--shadow-medium);

    padding: 2.2rem 2.4rem;

    display: flex;
    flex-direction: column;
    gap: 1.4rem;

    width: 100%;
  }

  /* Botones al fondo (limpiar filtros, etc.) */
  .filter-content button {
    margin-top: auto;
  }
}
/* =====================================================
   FIX FINAL – ORDENAR IGUAL QUE LOS DEMÁS
   ===================================================== */

@media (min-width: 769px) {

  /* ORDENAR usa exactamente la misma estructura */
  .filter-sort .filter-content {
    padding: 2.4rem;
    background: linear-gradient(180deg, #fffaf0, #f4e5c3);
    border-radius: 28px;
    box-shadow: var(--shadow-medium);

    display: flex;
    align-items: stretch;
  }

  .filter-sort .filters {
    background: linear-gradient(180deg, #fffaf0, #f4e5c3);
    border-radius: 22px;
    box-shadow: var(--shadow-soft);

    padding: 2.2rem 2.4rem;

    display: flex;
    flex-direction: column;
    gap: 1.4rem;

    width: 100%;
  }
}
/* =====================================================
   RESTAURAR INPUTS VISIBLES EN FILTROS
   ===================================================== */

@media (min-width: 769px) {

  /* Reactivar radios y checkboxes */
  .filter-content input[type="checkbox"],
  .filter-content input[type="radio"] {
    all: revert;                  /* 🔥 CLAVE */
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: var(--color-gold-soft);
  }

  /* Área clicable completa */
  .filter-option {
    cursor: pointer;
  }

  .filter-option span {
    cursor: pointer;
  }
}

/* =====================================================
   INPUTS PREMIUM – CHECKED FUNCIONAL (DESKTOP)
   ===================================================== */

@media (min-width: 769px) {

  /* Ocultar input real */
  .filter-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }

  /* Label como contenedor */
  .filter-option {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    line-height: 1.5;
  }

  /* Caja visual */
  .filter-option::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);

    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 2px solid var(--color-gold-soft);
    background: transparent;

    transition: all 0.2s ease;
  }

  /* 🔥 ESTADO ACTIVO REAL */
  .filter-option:has(input:checked)::before {
    background: var(--gradient-gold);
    box-shadow: inset 0 0 0 3px #fffaf0;
  }

  /* Hover */
  .filter-option:hover::before {
    box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
  }
}


/* =====================================================
   OCULTAR INPUTS NATIVOS – SOLO CHECKBOX DORADO
   ===================================================== */

@media (min-width: 769px) {

  /* Oculta el checkbox nativo */
  .filter-option input[type="checkbox"],
  .filter-option input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    position: absolute;
    opacity: 0;
    pointer-events: none;
  }
}
/* =====================================================
   MOBILE – INPUTS PREMIUM IGUAL A DESKTOP
   ===================================================== */

@media (max-width: 768px) {

  /* OCULTAR INPUT NATIVO (ANDROID / IOS) */
  .filter-option input[type="checkbox"],
  .filter-option input[type="radio"] {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;

    position: absolute;
    opacity: 0;
    pointer-events: none;
  }

  /* CONTENEDOR CLICABLE */
  .filter-option {
    position: relative;
    padding-left: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    line-height: 1.6;
    font-size: 1rem;
  }

  /* CAJA DORADA */
  .filter-option::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);

    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 2px solid var(--color-gold-soft);
    background: transparent;

    transition: all 0.2s ease;
  }

  /* ESTADO ACTIVO */
  .filter-option:has(input:checked)::before {
    background: var(--gradient-gold);
    box-shadow: inset 0 0 0 3px #fffaf0;
  }

  /* HOVER / TAP */
  .filter-option:active::before {
    box-shadow: 0 0 0 4px rgba(212,175,55,0.18);
  }
}
/* =====================================================
   BOTÓN "VER MI VELA IDEAL" – FILTROS
   ===================================================== */

.btn-ideal {
  margin-top: auto;

  background: var(--gradient-gold);
  color: var(--color-navy-deep);

  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;

  padding: 0.9rem 2.2rem;
  border-radius: 999px;
  border: none;

  cursor: pointer;
  align-self: center;

  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.btn-ideal:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* ============================= */
/* AURA LUCERO – CART MODAL */
/* ============================= */

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 24, 32, 0.65);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-modal {
  background: #fff8eb;
  border-radius: 28px;
  padding: 2.5rem;
  width: 90%;
  max-width: 620px;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}

/* Título */
.cart-modal h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: #1b2430;
}

/* Productos */
#cartItems > div {
  border-bottom: 1px solid #e6e6e6;
  padding: 1.4rem 0;
}

/* Precio */
#cartItems p {
  color: #d4af37;
  font-weight: 600;
}

/* Cantidad */
#cartItems input {
  border: 1.5px solid #e8d28b;
  border-radius: 14px;
  text-align: center;
}

/* Eliminar elegante */
#cartItems button {
  background: transparent;
  border: 1.5px solid #cfcfcf;
  color: #777;
  border-radius: 14px;
  font-size: 0.85rem;
  padding: 0.4rem 1.1rem;
}

#cartItems button:hover {
  border-color: #b33;
  color: #b33;
}

/* Total */
.cart-modal h3:last-child {
  color: #d4af37;
  font-family: 'Playfair Display', serif;
}

/* Botones */
.cart-modal .btn-primary {
  background: linear-gradient(135deg, #d4af37, #e8d28b);
  color: #1b2430;
  border-radius: 999px;
}

.cart-modal .btn-secondary {
  background: #1b2430;
  color: white;
  border-radius: 999px;
}

.cart-modal .btn-outline {
  border: 1.5px solid #1b2430;
  color: #1b2430;
  border-radius: 999px;
}
/* ============================= */
/* AURA LUCERO – CART MODAL */
/* ============================= */

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 24, 32, 0.65);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-modal {
  background: #fff8eb;
  border-radius: 28px;
  padding: 2.5rem;
  width: 90%;
  max-width: 620px;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}

/* Título */
.cart-modal h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: #1b2430;
}

/* Productos */
#cartItems > div {
  border-bottom: 1px solid #e6e6e6;
  padding: 1.4rem 0;
}

/* Precio */
#cartItems p {
  color: #d4af37;
  font-weight: 600;
}

/* Cantidad */
#cartItems input {
  border: 1.5px solid #e8d28b;
  border-radius: 14px;
  text-align: center;
}

/* Eliminar elegante */
#cartItems button {
  background: transparent;
  border: 1.5px solid #cfcfcf;
  color: #777;
  border-radius: 14px;
  font-size: 0.85rem;
  padding: 0.4rem 1.1rem;
}

#cartItems button:hover {
  border-color: #b33;
  color: #b33;
}

/* Total */
.cart-modal h3:last-child {
  color: #d4af37;
  font-family: 'Playfair Display', serif;
}

/* Botones */
.cart-modal .btn-primary {
  background: linear-gradient(135deg, #d4af37, #e8d28b);
  color: #1b2430;
  border-radius: 999px;
}

.cart-modal .btn-secondary {
  background: #1b2430;
  color: white;
  border-radius: 999px;
}

.cart-modal .btn-outline {
  border: 1.5px solid #1b2430;
  color: #1b2430;
  border-radius: 999px;
}


/* ============================= */
/* AURA LUCERO – CART MODAL FINAL */
/* ============================= */

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 24, 32, 0.65);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-modal {
  background: #fff8eb;
  border-radius: 28px;
  padding: 2.5rem;
  width: 92%;
  max-width: 620px;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}

/* ---------- HEADER ---------- */

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.cart-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: #1b2430;
}

.cart-close {
  background: transparent;
  border: none;
  font-size: 2.4rem;
  cursor: pointer;
  color: #1b2430;
  opacity: 0.4;
}

.cart-close:hover {
  opacity: 1;
}

/* ---------- ITEMS ---------- */

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 0;
  border-bottom: 1px solid #e6e6e6;
}

.cart-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: #1b2430;
}

.cart-info p {
  color: #d4af37;
  font-weight: 600;
}

/* ---------- ACTIONS ---------- */

.cart-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.cart-actions input {
  width: 55px;
  padding: 0.35rem;
  text-align: center;
  border-radius: 14px;
  border: 1.5px solid #e8d28b;
}

.cart-actions button {
  background: transparent;
  border: 1.5px solid #cfcfcf;
  border-radius: 14px;
  padding: 0.35rem 1rem;
  font-size: 0.85rem;
  cursor: pointer;
  color: #777;
}

.cart-actions button:hover {
  border-color: #b33;
  color: #b33;
}

/* ---------- DIVIDER ---------- */

.cart-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, #d4af37, transparent);
  margin: 1.8rem 0;
}

/* ---------- TOTAL ---------- */

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.6rem;
}

.cart-total h3 {
  font-family: 'Playfair Display', serif;
}

.cart-total h3:last-child {
  color: #d4af37;
}

/* ---------- BUTTONS ---------- */

.cart-modal .btn {
  width: 100%;
  margin-bottom: 0.9rem;
}

.cart-modal .btn-primary {
  background: linear-gradient(135deg, #d4af37, #e8d28b);
  color: #1b2430;
  border-radius: 999px;
}

.cart-modal .btn-secondary {
  background: #1b2430;
  color: white;
  border-radius: 999px;
}

.cart-modal .btn-outline {
  border: 1.5px solid #1b2430;
  color: #1b2430;
  border-radius: 999px;
}

/* =====================================================
   FIX VISUAL – CENTRADO SIN CAMBIAR ALTURAS
   ===================================================== */

/* Impacto Social */
.section-impact {
  margin-top: 4rem;
}

/* Colección Luz Interior */
.section[style*="--color-lavender-light"] {
  margin-top: 4rem;
}

/* Newsletter */
.section .container > div[style*="--gradient-gold"] {
  margin-top: 4rem;
}
/* =====================================================
   FIX NEWSLETTER MOBILE – AURA LUCERO
   NO afecta desktop ni funcionalidad
   ===================================================== */

@media (max-width: 768px) {

  .newsletter-form {
    flex-direction: column;   /* 🔥 uno debajo del otro */
    gap: 1rem;
  }

  .newsletter-form input {
    width: 100%;
  }

  .newsletter-form button {
    width: 100%;
    text-align: center;
  }

}

/* ===============================
   REDES SOCIALES – AURA LUCERO
=============================== */

.social-section {
  text-align: center;
  margin-top: 2.5rem;
}

.social-icons {
  display: flex;
  justify-content: center;   /* 👈 CENTRAR */
  align-items: center;
  gap: 22px;                 /* 👈 separación elegante */
  margin-top: 1.5rem;
}

.social-icons a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ffffff;
  color: #1A2332;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;           /* 👈 TAMAÑO ICONO */
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  transition: all 0.3s ease;
  text-decoration: none;
}

/* Hover elegante dorado */
.social-icons a:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, #D4AF37, #E8C766);
  color: #fff;
  box-shadow: 0 12px 28px rgba(212,175,55,0.45);
}
/* ===============================
   FOOTER GLOBAL – TEXTO LEGIBLE
=============================== */

.footer,
.footer h2,
.footer h3,
.footer h4,
.footer p,
.footer a {
  color: #F5F5F5 !important; /* Blanco suave legible */
}
.footer .social-section h2 {
  color: #FFFFFF !important;
}

.footer .social-section p {
  color: #E0E0E0 !important;
}
.footer .social-icons a {
  color: #1A2332 !important;
  font-size: 22px;
  margin: 0 10px;
  transition: all 0.3s ease;
}

.footer .social-icons a:hover {
  color: #D4AF37 !important; /* Dorado Aura Lucero */
  transform: translateY(-3px);
}

/* ICONOS REDES CIRCULARES */
.social-icons-circle {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 20px;
}

.social-icons-circle a {
  width: 48px;
  height: 48px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111111;
  font-size: 20px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  transition: all 0.3s ease;
}

/* Hover elegante */
.social-icons-circle a:hover {
  transform: translateY(-4px);
  color: #D4AF37; /* dorado Aura Lucero */
  box-shadow: 0 12px 28px rgba(212,175,55,0.35);
}

/* FIX BLOG VISIBILIDAD */
.blog-card {
  opacity: 1 !important;
  transform: none !important;
}

.reveal {
  opacity: 1 !important;
  transform: none !important;
}
.blog-container h1 {
  max-width: 800px;
  margin: 3rem auto 0rem;
  text-align: center;
}
.blog-steps {
  margin: 1.5rem 0 2.5rem;
  padding-left: 1.5rem;
}

.blog-steps li {
  margin-bottom: 0.8rem;
  line-height: 1.6;
  padding-left: 0.5rem;
}

/* ================================
   CONTENEDOR GENERAL DEL ARTÍCULO
================================ */
.blog-aura-lucero {
  font-family: 'Lato', sans-serif;
  line-height: 1.8;
  font-size: 1.05rem;
  color: var(--color-navy-deep);
  max-width: 760px;
  margin: 0 auto;
}

/* ================================
   TÍTULO PRINCIPAL
================================ */
.blog-aura-lucero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 2.8rem;
  letter-spacing: -0.5px;
}

/* ================================
   SUBTÍTULOS
================================ */
.blog-aura-lucero h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-top: 3.5rem;
  margin-bottom: 1.2rem;
  line-height: 1.25;
}

.blog-aura-lucero h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  margin-top: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #2C3E50;
}

/* ================================
   PÁRRAFOS
================================ */
.blog-aura-lucero p {
  margin-bottom: 1.6rem;
}

/* ================================
   FRASE PUENTE (Nada místico…)
================================ */
.blog-aura-lucero p strong {
  display: inline-block;
  margin-top: 1.2rem;
  font-weight: 600;
}

.blog-aura-lucero p:has(strong) {
  margin-bottom: 3.5rem;
}

/* ================================
   LISTAS (UL / OL)
================================ */
.blog-aura-lucero ul,
.blog-aura-lucero ol {
  margin: 1.2rem 0 2.2rem;
  padding-left: 0;
}

.blog-aura-lucero li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.7rem;
  line-height: 1.5;
}

/* Bullet elegante */
.blog-aura-lucero li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: var(--color-gold-soft);
  font-size: 1.3rem;
  line-height: 1;
}

/* ================================
   SEPARADORES
================================ */
.blog-aura-lucero hr {
  margin: 3rem 0;
  border: none;
  border-top: 1px solid rgba(0,0,0,0.08);
}

/* ================================
   IMÁGENES
================================ */
.blog-aura-lucero img {
  display: block;
  margin: 3rem auto;
  max-width: 100%;
  border-radius: 20px;
}

/* ================================
   MÓVIL – AIRE EXTRA
================================ */
@media (max-width: 768px) {
  .blog-aura-lucero {
    font-size: 0.98rem;
    padding: 0 1rem;
  }

  .blog-aura-lucero h2 {
    margin-top: 3.8rem;
  }
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  z-index: 9999;
}

/* Desktop */
@media (min-width: 768px) {
  .mobile-menu {
    display: none;
  }
}

/* Mobile overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, #FBF7EC, #F5EEDC);
  z-index: 9999;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.45s ease;
}

.mobile-menu.active {
  transform: translateX(0);
}

.close-menu {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  font-size: 1.6rem;
}

.menu-label {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold-soft);
  margin-bottom: 2.5rem;
}

.mobile-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 1.8rem;
  text-decoration: none;
  color: var(--color-navy-deep);
}
/* ================================
   MOBILE DRAWER – AURA LUCERO
================================ */

/* Fondo oscuro detrás */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 82%;
  max-width: 340px;
  height: 100vh;

  background: linear-gradient(
    180deg,
    #FBF7EC,
    #F5EEDC
  );

  box-shadow: -10px 0 40px rgba(0,0,0,0.15);

  z-index: 9999;

  transform: translateX(100%);
  transition: transform 0.45s ease;
}

/* Activo */
.mobile-drawer.active {
  transform: translateX(0);
}

/* Header */
.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 1.8rem 1.8rem 1rem;
}

.drawer-label {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold-soft);
}

.drawer-close {
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
}

/* Links */
.drawer-nav {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
}

.drawer-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  padding: 1.2rem 1.8rem;
  text-decoration: none;
  color: var(--color-navy-deep);

  border-bottom: 1px solid rgba(0,0,0,0.05);

  transition: all 0.3s ease;
}

.drawer-nav a:hover {
  background: rgba(201,162,77,0.08);
  padding-left: 2.2rem;
}
/* ===== CONTEXTO GENERAL ===== */

body.pagina-producto{
  background:#faf8f4;
  color:#2c2c2c;
  font-family:'Segoe UI', sans-serif;
}

/* Wrapper */

.pagina-producto .producto-wrapper{
  max-width:1200px;
  margin:auto;
  padding:60px 20px;
}

/* Layout principal */

.pagina-producto .producto-container{
  display:flex;
  gap:50px;
  align-items:flex-start;
}

/* ===== GALERÍA ===== */

.pagina-producto .galeria{
  display:flex;
  flex-direction:column;
  gap:15px;
}

.pagina-producto .thumb{
  width:75px;
  border-radius:12px;
  cursor:pointer;
  opacity:.7;
  transition:.3s;
}

.pagina-producto .thumb:hover,
.pagina-producto .thumb.active{
  opacity:1;
  transform:scale(1.05);
}

/* ===== IMAGEN PRINCIPAL ===== */

.pagina-producto .imagen-principal img{
  width:420px;
  border-radius:18px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}

/* ===== INFO PRODUCTO ===== */

.pagina-producto .info-producto{
  max-width:420px;
}

.pagina-producto .info-producto h2{
  font-size:32px;
  font-weight:400;
  margin-bottom:15px;
}

/* Precio */

.pagina-producto .precio{
  font-size:26px;
  color:#c6a96b;
  margin-bottom:10px;
}

.pagina-producto .precio-antiguo{
  text-decoration:line-through;
  color:#999;
  font-size:18px;
  margin-right:10px;
}

.pagina-producto .impuestos{
  font-size:13px;
  color:#777;
  margin-bottom:25px;
}

/* ===== BOTONES ===== */

.pagina-producto .botones{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-bottom:30px;
}

.pagina-producto button{
  padding:14px;
  border-radius:10px;
  font-size:15px;
  cursor:pointer;
  transition:.3s;
}

/* Carrito */

.pagina-producto .btn-carrito{
  background:white;
  border:1px solid #d6c5a0;
}

.pagina-producto .btn-carrito:hover{
  background:#f4efe6;
}

/* Comprar */

.pagina-producto .btn-comprar{
  background:#c6a96b;
  color:white;
  border:none;
}

.pagina-producto .btn-comprar:hover{
  background:#b8964f;
}

/* ===== DESCRIPCIÓN ===== */

.pagina-producto .descripcion h3{
  margin-top:15px;
  font-weight:500;
}

.pagina-producto .descripcion p{
  line-height:1.6;
  margin-top:10px;
}

.pagina-producto .frase{
  font-style:italic;
  color:#8a7a58;
}

/* ===== RESPONSIVE ===== */

@media(max-width:900px){

  .pagina-producto .producto-container{
    flex-direction:column;
  }

  .pagina-producto .imagen-principal img{
    width:100%;
  }

}
.card-link{
  text-decoration:none;
  color:inherit;
  display:block;
}
.card-link:hover .card-image{
  transform:scale(1.03);
  transition:.4s;
}
body.pagina-producto{
  background:#faf8f4;
}

/* WRAPPER */

.pagina-producto .producto-wrapper{
  max-width:1200px;
  margin:auto;
  padding:60px 20px;
}

/* LAYOUT */

.pagina-producto .producto-container{
  display:flex;
  gap:30px;
  align-items:flex-start;
}

/* GALERÍA */

.pagina-producto .galeria{
  display:flex;
  flex-direction:column;
  gap:15px;
  margin-right:0px;
}

.pagina-producto .thumb{
  width:80px;
  border-radius:12px;
  cursor:pointer;
  opacity:.7;
  transition:.3s;
  box-shadow:0 4px 10px rgba(0,0,0,.08);
}

.pagina-producto .thumb.active,
.pagina-producto .thumb:hover{
  opacity:1;
  transform:scale(1.05);
}

/* IMAGEN PRINCIPAL */

.pagina-producto .imagen-principal img{
  width:460px;
  border-radius:20px;
  box-shadow:0 20px 50px rgba(0,0,0,.12);
}

/* INFO */

.pagina-producto .info-producto{
  max-width:420px;
}

.pagina-producto .info-producto h2{
  font-size:32px;
  margin-bottom:15px;
}

/* PRECIO */

.pagina-producto .precio{
  font-size:30px;
  color:#c6a96b;
  font-weight:500;
  margin-bottom:5px;
}


/* META */

.pagina-producto .producto-meta{
  font-size:14px;
  color:#777;
  margin-bottom:10px;
}

/* BOTONES */

.pagina-producto .botones{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-bottom:30px;
}

.pagina-producto .btn-cart{
  padding:16px;
  border:1px solid #c6a96b;
  background:white;
  font-weight:500;
}

.pagina-producto .btn-comprar{
  padding:16px;
  background:#c6a96b;
  color:white;
  font-weight:500;
}


/* DESCRIPCIÓN */

.pagina-producto .descripcion h3{
  margin-bottom:10px;
}

.pagina-producto .descripcion p{
  line-height:1.6;
  margin-bottom:20px;
}

/* RESPONSIVE */

@media(max-width:900px){

  .pagina-producto .producto-container{
    flex-direction:column;
  }

  .pagina-producto .imagen-principal img{
    width:100%;
  }

}
body.pagina-producto{
  padding-top:85px; /* ajustable */
}
