:root {
    --color-bg: #faf7f5;
    --color-primary: #3D2C2A;
    --color-gold: #C09F80;
    --color-silver: #E5E5E5;
    --color-text: #2D2D2D;
    --color-text-light: #666;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.shekinah-modern * { margin: 0; padding: 0; box-sizing: border-box; }
.shekinah-modern { font-family: var(--font-sans); background: var(--color-bg); color: var(--color-text); }

/* Arreglo para Hero de ancho completo - Elimina márgenes blancos laterales */
.front-page .site-content {
    width: 100% !important;
    max-width: none !important;
    margin-inline: 0 !important;
    padding-inline: 0 !important;
}


.modern-hero { min-height: 100dvh; display: flex; align-items: center; position: relative; overflow: hidden; background: #000; }

/* Modern Slider System */
.hero-slider { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.slide { 
    position: absolute; inset: 0; opacity: 0; z-index: 0;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1); 
    background-size: cover; background-position: center; 
    transform: scale(1.1); 
}
.slide.active { opacity: 1; z-index: 2; transform: scale(1); transition: opacity 1.5s ease-in-out, transform 8s linear; }
.slide.last-active { opacity: 1; z-index: 1; }

/* Ken Burns Effect Animation */
@keyframes kenburns {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

.hero-overlay { 
    position: absolute; inset: 0; 
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.7) 100%); 
    z-index: 2; 
}

.hero-content { 
    position: relative; z-index: 10; max-width: 1280px; margin: 0 auto; 
    padding: 60px 1.5rem 160px 1.5rem; /* Añadido más padding inferior para evitar colisión con stats */
    width: 100%; min-height: 100vh; display: flex; align-items: center; justify-content: center; 
}
.hero-text { 
    max-width: 1000px; 
    width: 90%;
    color: #ffffff !important; 
    padding: 2rem; 
    margin: 0 auto; 
    display: flex;
    flex-direction: column;
    align-items: center; /* Centra todo horizontalmente */
    justify-content: center;
    text-align: center;
    animation: fadeInUp 1.2s ease-out;
}

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

.hero-badge { 
    display: inline-block; 
    background: #C09F80; 
    color: #ffffff !important; 
    padding: 0.6rem 1.8rem; 
    border-radius: 50px; 
    font-size: 0.75rem; 
    font-weight: 700; 
    text-transform: uppercase; 
    letter-spacing: 0.25em; 
    margin-bottom: 2rem; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero-title { 
    font-family: var(--font-serif); 
    font-size: clamp(2.2rem, 7vw, 4.2rem); 
    line-height: 1.1; 
    margin-bottom: 2.5rem; 
    color: #ffffff !important; 
    text-shadow: 0 4px 20px rgba(0,0,0,0.4); 
    font-weight: 400;
    padding: 3rem 4rem;
    border: 3px solid rgba(255,255,255,0.9);
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(5px);
}

@media (max-width: 768px) {
    .hero-title {
        padding: 1.5rem;
        border-width: 2px;
        margin-bottom: 1.5rem;
    }
}
.hero-title .italic { font-style: italic; color: #C09F80; font-family: 'Playfair Display', serif; }

.hero-description { 
    font-size: 1.15rem; margin-bottom: 2.5rem; line-height: 1.6; 
    color: rgba(255,255,255,0.9) !important; 
    max-width: 600px; margin-left: auto; margin-right: auto;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.hero-buttons { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
.btn-primary { 
    background: linear-gradient(135deg, #C09F80 0%, #A98B74 100%); 
    color: white !important; padding: 1.1rem 2.8rem; border-radius: 50px; 
    text-decoration: none; font-weight: 600; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    border: none; cursor: pointer; display: inline-flex; align-items: center; gap: 0.75rem; 
    box-shadow: 0 10px 30px rgba(192,159,128,0.3); 
}
.btn-primary:hover { transform: translateY(-5px) scale(1.02); box-shadow: 0 15px 40px rgba(192,159,128,0.5); }

.btn-secondary { 
    background: rgba(255,255,255,0.1); 
    color: white !important; padding: 1.1rem 2.8rem; border-radius: 50px; 
    text-decoration: none; font-weight: 600; transition: all 0.3s; 
    border: 1px solid rgba(255,255,255,0.4); 
    display: inline-flex; align-items: center; gap: 0.75rem; 
    backdrop-filter: blur(10px);
}
.btn-secondary:hover { background: rgba(255,255,255,0.2); border-color: #fff; }

/* Premium Glassmorphism Stats Bar */
.hero-stats-bar { 
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); 
    display: flex; gap: 5rem; 
    background: rgba(255, 255, 255, 0.1); 
    backdrop-filter: blur(25px) saturate(200%); 
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    padding: 1.5rem 4rem; border-radius: 100px; 
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 25px 60px rgba(0,0,0,0.3); 
    z-index: 20; 
}
.stat-item-modern { text-align: center; }
.stat-number-modern { font-family: var(--font-serif); font-size: 2.2rem; font-weight: 400; color: #fff; display: block; }
.stat-label-modern { font-size: 0.7rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.2em; margin-top: 0.25rem; font-weight: 600; }

@media (max-width: 768px) {
    .hero-stats-bar {
        gap: 1.5rem;
        padding: 1rem 1.5rem;
        bottom: 20px;
        flex-wrap: wrap;
        border-radius: 20px;
        justify-content: center;
        width: 90%;
    }
    .stat-number-modern { font-size: 1.4rem; }
}


.categories-section { padding: 6rem 0; max-width: 1280px; margin: 0 auto; padding-left: 1.5rem; padding-right: 1.5rem; }
.section-header-modern { text-align: center; margin-bottom: 3.5rem; }
.section-subtitle { font-family: var(--font-serif); color: var(--color-primary); font-style: italic; font-size: 1.3rem; margin-bottom: 0.5rem; }
.section-title { font-family: var(--font-serif); font-size: 2.8rem; margin-bottom: 1rem; }
.section-divider-modern { width: 60px; height: 3px; background: var(--color-primary); margin: 1.5rem auto; position: relative; border-radius: 2px; }
.section-divider-modern::after { content: ''; position: absolute; width: 10px; height: 10px; background: var(--color-primary); transform: rotate(45deg); left: 50%; top: 50%; margin-left: -5px; margin-top: -5px; }

@media (max-width: 768px) {
    .categories-grid-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .category-card-modern {
        height: 350px;
    }
}
/* Categorías Principales (4 en una fila) */
.categories-main-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.category-card-main {
    position: relative;
    height: 450px;
    border-radius: 2rem;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.5s ease;
}

.category-card-main:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}

.category-card-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.category-card-main:hover img {
    transform: scale(1.12);
}

/* Subcategorías de MUJER (6 cuadros con imagen) */
.mujer-subcategories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.mujer-subcategory-card {
    position: relative;
    height: 250px;
    border-radius: 1.5rem;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: all 0.5s ease;
}

.mujer-subcategory-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.mujer-subcategory-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.mujer-subcategory-card:hover img {
    transform: scale(1.1);
}

.mujer-subcategory-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
}

.mujer-subcategory-info {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    color: white;
}

.mujer-subcategory-info h4 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.mujer-subcategory-count {
    font-size: 0.75rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Subcategorías (máximo 8 por fila) - fallback */
.subcategories-section {
    margin-bottom: 3.5rem;
}

.subcategories-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: #2D2D2D;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #B59461;
}

.subcategories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    max-width: 100%;
}

.subcategory-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: #FDFBF9;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-height: 120px;
}

.subcategory-item:hover {
    background: white;
    border-color: #B59461;
    box-shadow: 0 8px 20px rgba(181, 148, 97, 0.15);
    transform: translateY(-4px);
}

.subcat-name {
    font-weight: 600;
    color: #2D2D2D;
    font-size: 0.95rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.subcat-count {
    font-size: 0.8rem;
    color: #B59461;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Grid original (fallback) */
.categories-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-card-modern {
    position: relative;
    height: 450px;
    border-radius: 2rem;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.5s ease;
}

.category-card-modern:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}

.category-card-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.category-card-modern:hover img {
    transform: scale(1.12);
}

.category-overlay-modern {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
}

.category-info-modern {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    color: white;
}

.category-info-modern h3 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.category-count {
    font-size: 0.85rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.category-arrow {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255,255,255,0.25);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s;
    color: white;
}

.category-card-modern:hover .category-arrow {
    opacity: 1;
}

/* Responsive */
@media (max-width: 1200px) {
    .categories-main-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mujer-subcategories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .mujer-subcategory-card {
        height: 220px;
    }
    
    .subcategories-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
}

@media (max-width: 768px) {
    .categories-main-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .category-card-main {
        height: 350px;
    }
    
    .mujer-subcategories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .mujer-subcategory-card {
        height: 180px;
    }
    
    .mujer-subcategory-info h4 {
        font-size: 1.1rem;
    }
    
    .subcategories-title {
        font-size: 1.4rem;
    }
    
    .subcategories-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 1rem;
    }
    
    .subcategory-item {
        padding: 1rem;
        min-height: 100px;
    }
    
    .subcat-name {
        font-size: 0.85rem;
    }
}

.products-section-modern { padding: 6rem 0; background: var(--color-bg-alt); }
.products-container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.products-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; flex-wrap: wrap; gap: 1rem; }
.products-header h3 { font-family: var(--font-serif); font-size: 2.2rem; }
.btn-view-all { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--color-primary); text-decoration: none; font-weight: 600; border-bottom: 2px solid var(--color-primary); padding-bottom: 0.25rem; transition: all 0.3s; }
.products-grid-modern { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2.5rem; }
.product-card-modern {
            background: white;
            border-radius: 2rem;
            padding: 1.25rem;
            box-shadow: 0 8px 30px rgba(0,0,0,0.06), inset 0 0 0 1px rgba(192, 159, 128, 0.1);
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
        }

        /* Esquinas decorativas doradas */
        .product-card-modern::before,
        .product-card-modern::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 40px;
            border: 2px solid #C09F80;
            opacity: 0.4;
            transition: all 0.4s;
        }
        .product-card-modern::before {
            top: 10px;
            left: 10px;
            border-right: none;
            border-bottom: none;
            border-top-left-radius: 15px;
        }
        .product-card-modern::after {
            bottom: 10px;
            right: 10px;
            border-left: none;
            border-top: none;
            border-bottom-right-radius: 15px;
        }

        /* Línea decorativa superior */
        .product-card-modern .card-accent-line {
            position: absolute;
            top: 0;
            left: 20%;
            right: 20%;
            height: 3px;
            background: linear-gradient(90deg, transparent, #C09F80, #D4C4A8, #C09F80, transparent);
            opacity: 0.6;
            border-radius: 0 0 3px 3px;
        }

        /* Etiqueta decorativa de esquina */
        .product-card-modern .corner-ribbon {
            position: absolute;
            top: 15px;
            right: -30px;
            width: 120px;
            padding: 5px 0;
            background: linear-gradient(135deg, #C09F80 0%, #D4C4A8 100%);
            color: white;
            font-size: 10px;
            font-weight: 600;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 1px;
            transform: rotate(45deg);
            box-shadow: 0 2px 10px rgba(192, 159, 128, 0.3);
            z-index: 2;
        }

        /* Decoración de brillo en hover */
        .product-card-modern:hover {
            box-shadow: 0 20px 50px rgba(0,0,0,0.12), 0 0 30px rgba(192, 159, 128, 0.15);
            transform: translateY(-8px);
        }
        .product-card-modern:hover::before,
        .product-card-modern:hover::after {
            opacity: 0.8;
            width: 50px;
            height: 50px;
        }

        /* Pequeños detalles florales en esquinas */
        .product-card-modern .floral-detail {
            position: absolute;
            font-size: 12px;
            color: rgba(192, 159, 128, 0.3);
            pointer-events: none;
        }
        .product-card-modern .floral-detail.top-right {
            top: 8px;
            right: 8px;
        }
        .product-card-modern .floral-detail.bottom-left {
            bottom: 8px;
            left: 8px;
        }

        .product-image-modern {
            position: relative;
            aspect-ratio: 1;
            border-radius: 1.5rem;
            overflow: hidden;
            background: var(--color-bg-alt);
            margin-bottom: 1.5rem;
            border: 1px solid rgba(192, 159, 128, 0.1);
        }
        .product-image-modern::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(192, 159, 128, 0.05) 0%, transparent 50%, rgba(192, 192, 192, 0.05) 100%);
            z-index: 1;
            pointer-events: none;
        }
        .product-image-modern img { width: 100%; height: 100%; object-fit: cover; }
.product-stars { position: absolute; top: 1rem; left: 1rem; display: flex; gap: 0.25rem; }
.product-stars svg { width: 18px; height: 18px; fill: #fbbf24; }
.product-name-modern { font-size: 1.3rem; font-weight: 700; margin-bottom: 1.25rem; }
.product-pricing-modern { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.product-price-total .label { font-size: 0.75rem; color: var(--color-text-light); text-transform: uppercase; letter-spacing: 0.1em; }
.product-price-total .price { font-size: 1rem; color: #888; text-decoration: line-through; }
.product-price-reserva .label { font-size: 0.75rem; color: var(--color-primary); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }
.product-price-reserva .price { font-size: 1.9rem; font-weight: 700; color: var(--color-primary); }
.btn-reservar-modern { width: 100%; padding: 1.1rem; background: var(--color-text); color: white; border: none; border-radius: 1.2rem; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 0.75rem; transition: all 0.3s; }
.btn-reservar-modern:hover { background: #000; }

/* Home Product Actions */
.product-actions-home {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.btn-direct-buy-home {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #3D2C2A;
    color: #C09F80 !important;
    text-decoration: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(192, 159, 128, 0.3);
    position: relative;
    overflow: hidden;
}
.btn-direct-buy-home:hover {
    background: #000;
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.btn-direct-buy-home i {
    font-size: 1.1rem;
    transition: transform 0.3s;
}
.btn-direct-buy-home:hover i {
    transform: scale(1.2) rotate(-10deg);
}
.btn-direct-buy-home::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255,255,255,0.1);
    transform: rotate(30deg);
    transition: all 0.6s;
}
.btn-direct-buy-home:hover::after {
    left: 120%;
}

.trust-section-modern { 
    padding: 4rem 0; 
    background: linear-gradient(180deg, #ffffff 0%, #fdf9f6 100%);
    position: relative;
    overflow: hidden;
}

.trust-section-modern.has-bg-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.trust-container {
    max-width: 1280px; 
    margin: 0 auto; 
    padding: 0 2rem;
}
.trust-grid-modern { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 4rem; 
    text-align: center; 
}
.trust-item-modern { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    padding: 3rem 2rem;
    background: #ffffff;
    border-radius: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(192, 159, 128, 0.1);
}
.trust-item-modern:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 70px rgba(192, 159, 128, 0.15);
    border-color: rgba(192, 159, 128, 0.4);
}
.trust-icon-modern { 
    width: 90px; 
    height: 90px; 
    background: linear-gradient(135deg, #fdf9f6 0%, #f5eadd 100%);
    border-radius: 2rem; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin-bottom: 2rem; 
    color: var(--color-primary); 
    font-size: 2rem;
    transition: all 0.5s;
    position: relative;
}
.trust-item-modern:hover .trust-icon-modern {
    background: var(--color-primary);
    color: #ffffff;
    transform: rotate(10deg);
}
.trust-item-modern h5 { 
    font-family: var(--font-serif); 
    font-size: 1.6rem; 
    margin-bottom: 1.25rem; 
    color: #333;
    font-weight: 500;
}
.trust-item-modern p { 
    color: #888; 
    line-height: 1.8; 
    font-size: 1.05rem;
    max-width: 320px; 
}

@media (max-width: 992px) {
    .trust-grid-modern { grid-template-columns: 1fr; gap: 2rem; }
    .trust-section-modern { padding: 5rem 0; }
    .trust-item-modern { padding: 2.5rem 1.5rem; }
}

/* Floating CTA gestionado por premium.css */

.modern-footer { background: var(--color-text); color: white; padding: 4rem 0 2rem; }
.footer-container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
.footer-brand img { max-height: 60px; margin-bottom: 1.25rem; opacity: 0.95; }
.footer-brand p { color: rgba(255,255,255,0.65); line-height: 1.7; max-width: 300px; }
.footer-column h6 { color: var(--color-primary); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 1.5rem; font-weight: 700; }
.footer-column ul { list-style: none; }
.footer-column li { margin-bottom: 0.9rem; }
.footer-column a { color: rgba(255,255,255,0.7); text-decoration: none; transition: all 0.3s; display: inline-block; }
.footer-column a:hover { color: white; transform: translateX(3px); }
.footer-newsletter { display: flex; border-bottom: 2px solid rgba(255,255,255,0.15); padding-bottom: 0.5rem; margin-top: 0.5rem; }
.footer-newsletter input { background: transparent; border: none; outline: none; color: white; flex-grow: 1; padding: 0.5rem 0; font-size: 0.95rem; }
.footer-newsletter button { background: linear-gradient(135deg, #C09F80 0%, #a38352 100%); border: none; color: #2D2D2D; font-weight: 700; cursor: pointer; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.1em; padding: 0.5rem 1rem; border-radius: 4px; transition: all 0.3s ease; }
.footer-newsletter button:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(192, 159, 128, 0.4); background: linear-gradient(135deg, #a38352 0%, #C09F80 100%); }
.footer-bottom { text-align: center; padding-top: 2.5rem; margin-top: 2.5rem; border-top: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.45); font-size: 0.9rem; }

@media (max-width: 1024px) { 
    .hero-stats-bar { gap: 2rem; padding: 1.25rem 2rem; }
    .footer-container { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
    .navbar-menu { display: none; }
    .hero-content { padding: 40px 1rem 140px 1rem; min-height: 100vh; }
    .hero-text { padding: 1rem; width: 100%; max-width: 100%; }
    .hero-badge { font-size: 0.65rem; padding: 0.5rem 1.2rem; margin-bottom: 1.5rem; }
    .hero-title { font-size: 1.8rem; padding: 2rem 1.5rem; border-width: 2px; width: 100%; }
    .hero-description { font-size: 1rem; line-height: 1.6; margin-bottom: 2.5rem; }
    .hero-buttons { flex-direction: column; gap: 1rem; width: 100%; }
    .btn-primary, .btn-secondary { padding: 1rem; font-size: 0.95rem; width: 100%; justify-content: center; }
    .hero-stats-bar { gap: 1rem; padding: 1.2rem; bottom: 20px; left: 1rem; right: 1rem; transform: none; width: calc(100% - 2rem); border-radius: 20px; }
    .stat-number-modern { font-size: 1.4rem; }
    .stat-label-modern { font-size: 0.6rem; }
}

/* ============================================
   ANIMACIONES FLORALES - ROSAS CON MOVIMIENTO
   ============================================ */

/* Keyframes de animación */
@keyframes floral-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(2deg); }
    50% { transform: translateY(-8px) rotate(0deg); }
    75% { transform: translateY(-20px) rotate(-2deg); }
}

@keyframes floral-sway {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(8deg); }
    50% { transform: rotate(0deg); }
    75% { transform: rotate(-8deg); }
}

@keyframes floral-float-diagonal {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(10px, -15px) rotate(5deg); }
    66% { transform: translate(-5px, -10px) rotate(-3deg); }
}

/* Clases de animación para las rosas */
.floral-top-left {
    animation: floral-float-diagonal 8s ease-in-out infinite;
}

.floral-top-right {
    animation: floral-float 7s ease-in-out infinite;
    animation-delay: 1s;
}

.floral-bottom-left {
    animation: floral-sway 6s ease-in-out infinite;
    animation-delay: 0.5s;
    transform-origin: bottom center;
}

.floral-bottom-right {
    animation: floral-float-diagonal 9s ease-in-out infinite;
    animation-delay: 1.5s;
    animation-direction: reverse;
}

/* Efecto hover en las flores */
.floral-decoration:hover {
    animation-play-state: paused;
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Responsive - reducir animación en móvil */
@media (max-width: 768px) {
    .floral-decoration {
        width: 50px !important;
        height: 50px !important;
        opacity: 0.7;
    }
    
    .floral-top-left { animation-duration: 12s; }
    .floral-top-right { animation-duration: 10s; }
    .floral-bottom-left { animation-duration: 9s; }
    .floral-bottom-right { animation-duration: 11s; }
}

/* Movimiento reducido para accesibilidad */
@media (prefers-reduced-motion: reduce) {
    .floral-decoration {
        animation: none !important;
    }
}

/* ============================================
   DECORACIÓN BOLSOS - TRUST SECTION
   ============================================ */

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

@keyframes bag-float-reverse {
    0%, 100% { transform: translateY(0) rotate(5deg); }
    50% { transform: translateY(-15px) rotate(-5deg); }
}

@keyframes bag-gentle-swing {
    0%, 100% { transform: rotate(-8deg); }
    50% { transform: rotate(8deg); }
}

.handbag-decoration {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    filter: drop-shadow(0 8px 20px rgba(192, 159, 128, 0.4));
    transition: all 0.3s ease;
}

.handbag-left {
    top: -30px;
    left: 5%;
    width: 80px;
    height: 80px;
    animation: bag-float 6s ease-in-out infinite;
}

.handbag-right {
    top: -25px;
    right: 8%;
    width: 70px;
    height: 70px;
    animation: bag-float-reverse 7s ease-in-out infinite;
    animation-delay: 1s;
}

.handbag-center {
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    animation: bag-gentle-swing 5s ease-in-out infinite;
    animation-delay: 0.5s;
}

.handbag-decoration:hover {
    animation-play-state: paused;
    filter: drop-shadow(0 12px 30px rgba(192, 159, 128, 0.6));
}

/* Responsive bolsos */
@media (max-width: 768px) {
    .handbag-left { width: 50px; height: 50px; top: -20px; left: 3%; }
    .handbag-right { width: 45px; height: 45px; top: -15px; right: 5%; }
    .handbag-center { width: 40px; height: 40px; top: -10px; }
}

@media (max-width: 480px) {
    .handbag-left, .handbag-right, .handbag-center {
        display: none;
    }
/* ============================================
   DECORACIONES DE FONDO
   ============================================ */

/* Esquinas ornamentales */
.corner-ornament {
    position: fixed;
    width: 150px;
    height: 150px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.3;
}

.corner-ornament::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    border-image: linear-gradient(135deg, #C09F80 0%, #D4C4A8 50%, #C0C0C0 100%);
    border-image-slice: 1;
}

.corner-ornament.top-left {
    top: 80px;
    left: 0;
    border-right: none;
    border-bottom: none;
    border-top-left-radius: 0;
}

.corner-ornament.top-right {
    top: 80px;
    right: 0;
    border-left: none;
    border-bottom: none;
}

.corner-ornament.bottom-left {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
}

.corner-ornament.bottom-right {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

/* Líneas decorativas diagonales sutiles */
.diagonal-line {
    position: fixed;
    width: 1px;
    height: 300px;
    background: linear-gradient(to bottom, transparent, rgba(192, 159, 128, 0.2), transparent);
    pointer-events: none;
    z-index: 0;
    transform: rotate(45deg);
}

.diagonal-line.left { top: 20%; left: 10%; }
.diagonal-line.right { top: 40%; right: 15%; }
.diagonal-line.center { top: 60%; left: 50%; }

/* Círculos decorativos sutiles */
.decorative-circle {
    position: fixed;
    border-radius: 50%;
    border: 1px solid rgba(192, 159, 128, 0.15);
    pointer-events: none;
    z-index: 0;
}

.decorative-circle.small {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 5%;
}

.decorative-circle.medium {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 3%;
}

.decorative-circle.large {
    width: 300px;
    height: 300px;
    top: 50%;
    right: -100px;
    border-color: rgba(192, 192, 192, 0.1);
}

/* Puntos decorativos */
.dots-pattern {
    position: fixed;
    width: 100px;
    height: 100px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.2;
}

.dots-pattern::before {
    content: '• • •';
    font-size: 20px;
    color: #C09F80;
    letter-spacing: 15px;
    line-height: 2;
}

.dots-pattern.top { top: 15%; left: 8%; }
.dots-pattern.bottom { bottom: 30%; right: 10%; }

/* Animación Floral de Fondo */
.flower-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.flower-petal {
    position: absolute;
    width: auto;
    height: auto;
    opacity: 0.6;
    animation: fall linear infinite;
    pointer-events: none;
    user-select: none;
    line-height: 1;
}

@keyframes fall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Variaciones de velocidad */
.flower-petal:nth-child(1) { left: 5%; animation-duration: 15s; animation-delay: 0s; }
.flower-petal:nth-child(2) { left: 15%; animation-duration: 12s; animation-delay: 2s; }
.flower-petal:nth-child(3) { left: 25%; animation-duration: 18s; animation-delay: 4s; }
.flower-petal:nth-child(4) { left: 35%; animation-duration: 14s; animation-delay: 1s; }
.flower-petal:nth-child(5) { left: 45%; animation-duration: 16s; animation-delay: 3s; }
.flower-petal:nth-child(6) { left: 55%; animation-duration: 13s; animation-delay: 5s; }
.flower-petal:nth-child(7) { left: 65%; animation-duration: 17s; animation-delay: 2.5s; }
.flower-petal:nth-child(8) { left: 75%; animation-duration: 11s; animation-delay: 4.5s; }
.flower-petal:nth-child(9) { left: 85%; animation-duration: 19s; animation-delay: 1.5s; }
.flower-petal:nth-child(10) { left: 95%; animation-duration: 15s; animation-delay: 3.5s; }

/* Responsive decoraciones */
@media (max-width: 768px) {
    .corner-ornament { width: 80px; height: 80px; }
    .decorative-circle { display: none; }
    .diagonal-line { display: none; }
}

/* Full-width en front-page */
.front-page .site-content, .front-page .content-area, .front-page .site-main, .front-page main { max-width: none !important; width: 100% !important; }

/* ============================================
   SUBCATEGORÍAS MINI — "Explora por estilo"
   ============================================ */
.subcategories-mini-section {
    padding: 4rem 0;
    background: var(--color-bg, #faf7f5);
}

.subcategories-mini-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.subcategories-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.subcategories-label {
    font-family: var(--font-serif, 'Playfair Display', serif);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--color-primary, #3D2C2A);
    white-space: nowrap;
}

.subcategories-line {
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(to right, rgba(192, 159, 128, 0.5), transparent);
}

.subcategories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.25rem;
}

.subcategory-card-mini {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(192, 159, 128, 0.1);
}

.subcategory-card-mini:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(192, 159, 128, 0.18);
    border-color: rgba(192, 159, 128, 0.4);
}

.subcategory-image-mini {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: #fdf9f6;
}

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

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

.subcategory-overlay-mini {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(61, 44, 42, 0.3), transparent 50%);
}

.subcategory-content-mini {
    padding: 0.85rem 1rem;
    text-align: center;
}

.subcategory-name-mini {
    display: block;
    font-family: var(--font-sans, 'Montserrat', sans-serif);
    font-size: 0.875rem;
    font-weight: 600;
    color: #3D2C2A;
    margin-bottom: 0.25rem;
}

.subcategory-count-mini {
    font-size: 0.75rem;
    color: #8D7B79;
    font-weight: 400;
}

/* Floral divider */
.floral-divider {
    height: 4px;
    background: linear-gradient(90deg, transparent, #C09F80, #D4C4A8, #C09F80, transparent);
    margin: 3rem auto;
    max-width: 300px;
    border-radius: 2px;
    opacity: 0.6;
}

@media (max-width: 768px) {
    .subcategories-mini-section {
        padding: 2.5rem 0;
    }
    .subcategories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .subcategories-label {
        font-size: 1.2rem;
    }
}

/* ============================================
   PROMO MODAL — Oculto por defecto
   ============================================ */
.promo-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}
.promo-modal.active {
    display: flex;
}
.promo-modal-content {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 440px;
    width: 90%;
    position: relative;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}
.promo-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #8D7B79;
}
.promo-modal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #3D2C2A;
    margin-bottom: 0.5rem;
}
.promo-modal-content p {
    font-size: 0.9rem;
    color: #8D7B79;
    margin-bottom: 1.5rem;
}
.promo-modal-content input {
    width: 100%;
    padding: 12px;
    border: 2px solid #efdfe4;
    border-radius: 10px;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}
.promo-modal-content .btn-primary {
    width: 100%;
    padding: 12px;
    background: #3D2C2A;
    color: #C09F80;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 0.5rem;
}
