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

:root {
    --baby-blue: #99b3c3;
    --malva: #954455;
    --verde-hoja: #8e8449;
    --naranja-otoñal: #aa5f22;
    --blanco-hueso: #f1f0eb;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--blanco-hueso);
    color: #3a3a3a;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(241, 240, 235, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.8rem 5%;
    border-bottom: 1px solid rgba(153, 179, 195, 0.2);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    height: 45px;
    width: auto;
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
}

nav > ul > li {
    position: relative;
}

nav a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #3a3a3a;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    padding: 0.6rem 1rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

nav a:hover {
    color: var(--malva);
}

.menu-icon {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

/* Mobile menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--malva);
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
    z-index: 1002;
}

@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 44px;
        min-height: 44px;
    }
    
    header {
        padding: 0.6rem 4%;
    }
    
    .logo img {
        height: 38px;
    }

    nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background: white;
        box-shadow: 2px 0 20px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
        overflow-y: auto;
        padding: 1.5rem 0;
        z-index: 1001;
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        align-items: stretch;
    }

    nav a {
        padding: 0.8rem 1.5rem;
        border-bottom: 1px solid rgba(153, 179, 195, 0.1);
    }
}

/* Menu overlay */
.menu-overlay {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(0,0,0,0.5);
    z-index: 999;
}

.menu-overlay.active {
    display: block;
}

/* Hero Banner Slider - Full Width */
.hero-banner {
    margin-top: 70px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    aspect-ratio: 1920 / 600;
    position: relative;
    overflow: hidden;
    background: var(--blanco-hueso);
}

.banner-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.banner-slide.active {
    opacity: 1;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--baby-blue) 0%, var(--blanco-hueso) 100%);
}

.banner-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.banner-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    border: 2px solid white;
}

.banner-dot.active {
    background: var(--malva);
    border-color: var(--malva);
}

.hero-content {
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--malva);
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero-content p {
    font-size: 1.5rem;
    color: var(--malva);
    font-weight: 300;
}

/* Sections - Más compactas con diferentes tonalidades */
section {
    padding: 3rem 5%;
}

section .section-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Tonalidades alternadas para secciones */
.section-productos {
    background-color: var(--blanco-hueso);
}

.section-lecturas {
    background-color: #e9e8e3;
}

.section-eventos {
    background-color: rgba(153, 179, 195, 0.15);
}

.section-descargables {
    background-color: rgba(142, 132, 73, 0.08);
}

.section-instagram {
    background-color: rgba(149, 68, 85, 0.08);
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(153, 179, 195, 0.3);
}

.section-title {
    font-size: 2.2rem;
    color: var(--malva);
    margin-bottom: 0.5rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.section-title .section-icon {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.section-subtitle {
    color: #7a7a7a;
    font-size: 1rem;
    font-style: italic;
}

/* Products Carousel */
.products-carousel-wrapper {
    position: relative;
    overflow: hidden;
    padding: 10px 50px 20px;
}

.products-carousel-wrapper .products-grid {
    padding-bottom: 10px;
}

.products-carousel {
    display: flex;
    transition: transform 0.5s ease;
    gap: 1.5rem;
}

.products-grid {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease;
}

.product-card-link {
    text-decoration: none;
    color: inherit;
    flex: 0 0 280px;
    display: flex;
}

.product-card {
    background: white;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    height: 617px;
    width: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(149, 68, 85, 0.15);
}

.product-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
    background: #f5f5f5;
    flex-shrink: 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--malva);
    color: white;
    padding: 0.3rem 0.8rem;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.product-info {
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info h3 {
    font-size: 1.3rem;
    color: var(--malva);
    margin-bottom: 0.4rem;
    font-weight: 500;
    line-height: 1.2;
}

.product-tagline {
    font-style: italic;
    color: var(--verde-hoja);
    font-size: 0.85rem;
    display: block;
    margin-bottom: 0.8rem;
    height: 3.5em;
    overflow: hidden;
}

.product-details {
    font-size: 0.8rem;
    line-height: 1.6;
    color: #6a6a6a;
    flex-grow: 1;
}

.product-details strong {
    color: var(--malva);
}

.product-colors {
    display: flex;
    gap: 6px;
    margin-bottom: 8px;
}

.color-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid rgba(0,0,0,0.1);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.product-price {
    font-size: 1.3rem;
    color: var(--naranja-otoñal);
    font-weight: 600;
    margin-top: auto;
    font-family: 'Cormorant Garamond', serif;
}

.product-divider {
    width: 30px;
    height: 2px;
    background: var(--baby-blue);
    margin: 0.8rem 0;
}

/* Carousel Controls */
.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    left: 0;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 5px;
    z-index: 10;
}

.carousel-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--malva);
    color: var(--malva);
    font-size: 1.2rem;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.carousel-btn:hover {
    background: var(--malva);
    color: white;
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Carousel Dots */
.carousel-dots-products {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.5rem;
}

.carousel-dot-product {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--baby-blue);
    opacity: 0.4;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.carousel-dot-product.active {
    opacity: 1;
    background: var(--malva);
    transform: scale(1.2);
}

/* Blog/Lecturas Carousel */
.lecturas-carousel-wrapper {
    position: relative;
    overflow: hidden;
    padding: 0 50px;
}

.lecturas-grid {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease;
}

.lectura-card-link {
    text-decoration: none;
    color: inherit;
    flex: 0 0 340px;
    display: flex;
}

.lectura-card {
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 380px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.lectura-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(149, 68, 85, 0.15);
}

.lectura-card-header {
    background: linear-gradient(135deg, var(--malva) 0%, #7a3745 100%);
    padding: 1.5rem;
    position: relative;
    min-height: 100px;
}

.lectura-card-header::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 5rem;
    font-family: 'Cormorant Garamond', serif;
    color: rgba(255,255,255,0.15);
    line-height: 1;
}

.lectura-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.lectura-meta span {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 0.25rem 0.8rem;
    font-size: 0.75rem;
    border-radius: 20px;
    font-weight: 500;
}

.lectura-card-header h3 {
    font-size: 1.3rem;
    color: white;
    font-weight: 500;
    line-height: 1.3;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.lectura-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.lectura-card .excerpt {
    color: #5a5a5a;
    font-size: 0.9rem;
    line-height: 1.6;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1rem;
}

.lectura-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(153, 179, 195, 0.2);
    margin-top: auto;
}

.read-more {
    color: var(--malva);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--verde-hoja);
    gap: 0.8rem;
}

.read-more svg {
    transition: transform 0.3s ease;
}

.lectura-card:hover .read-more svg {
    transform: translateX(4px);
}

.lectura-icon {
    width: 35px;
    height: 35px;
    background: rgba(153, 179, 195, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--baby-blue);
}

/* Blog Carousel Controls */
.lecturas-carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    left: 0;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 5px;
    z-index: 10;
}

.carousel-dots-blog {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.5rem;
}

.carousel-dot-blog {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--baby-blue);
    opacity: 0.4;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.carousel-dot-blog.active {
    opacity: 1;
    background: var(--malva);
    transform: scale(1.2);
}

/* Descargables Carousel - Home */
.descargables-carousel-wrapper {
    position: relative;
    overflow: hidden;
    padding: 0 50px;
}

.descargables-grid-carousel {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease;
}

.descargable-card-home {
    flex: 0 0 300px;
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.descargable-card-home:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(142, 132, 73, 0.15);
}

.descargable-card-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.badge-destacado-home {
    background: var(--verde-hoja);
    color: white;
    padding: 0.3rem 0.7rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 500;
}

.badge-tipo-home {
    padding: 0.3rem 0.7rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 500;
}

.badge-tipo-home.gratis {
    background: #d4edda;
    color: #155724;
}

.badge-tipo-home.premium {
    background: var(--malva);
    color: white;
}

.descargable-card-home h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--malva);
    margin-bottom: 0.8rem;
    line-height: 1.3;
    font-weight: 500;
}

.descargable-excerpt {
    color: #5a5a5a;
    font-size: 0.9rem;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 1rem;
}

.descargable-card-footer-home {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(153, 179, 195, 0.2);
    margin-top: auto;
}

.descargable-precio-home {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--naranja-otoñal);
    font-weight: 500;
}

.descargable-precio-home.gratis {
    color: #28a745;
}

.descargable-link-home {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--malva);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.descargable-link-home:hover {
    color: var(--verde-hoja);
    gap: 0.6rem;
}

.descargables-carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    left: 0;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 5px;
    z-index: 10;
}

.carousel-dots-descargables {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.5rem;
}

.carousel-dot-descargable {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--verde-hoja);
    opacity: 0.4;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.carousel-dot-descargable.active {
    opacity: 1;
    background: var(--malva);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .descargables-carousel-wrapper {
        padding: 0 40px;
    }
    
    .descargable-card-home {
        flex: 0 0 260px;
        min-height: 250px;
    }
}

/* Eventos - Cards Compactas */
.eventos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.evento-card-link {
    text-decoration: none;
    color: inherit;
}

.evento-card {
    background: white;
    border-radius: 10px;
    padding: 1rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border-left: 3px solid var(--naranja-otoñal);
}

.evento-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(149, 68, 85, 0.12);
}

.evento-card-fecha {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    padding: 0.5rem;
    background: linear-gradient(135deg, var(--malva) 0%, #7a3745 100%);
    border-radius: 8px;
    color: white;
}

.evento-dia {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    font-family: 'Cormorant Garamond', serif;
}

.evento-mes {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.evento-card-content {
    flex: 1;
    min-width: 0;
}

.evento-card-content h3 {
    font-size: 1.1rem;
    color: var(--malva);
    margin-bottom: 0.3rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.evento-desc {
    font-size: 0.8rem;
    color: #6a6a6a;
    margin-bottom: 0.4rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.evento-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    font-size: 0.75rem;
    color: #888;
}

.evento-lugar,
.evento-hora {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.evento-lugar svg,
.evento-hora svg {
    color: var(--baby-blue);
}

.evento-card-arrow {
    color: var(--baby-blue);
    opacity: 0.5;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.evento-card:hover .evento-card-arrow {
    opacity: 1;
    color: var(--malva);
    transform: translateX(3px);
}

.evento-btn {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: var(--verde-hoja);
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    transition: background 0.3s;
    border-radius: 4px;
}

.evento-btn:hover {
    background: var(--malva);
}

@media (max-width: 768px) {
    .eventos-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .evento-card {
        padding: 0.8rem 1rem;
    }
    
    .evento-card-content h3 {
        font-size: 1rem;
    }
}

/* Footer */
footer {
    background: linear-gradient(180deg, #2d3a42 0%, #1e272e 100%);
    color: white;
    margin-top: 3rem;
}

.footer-main {
    padding: 4rem 5% 3rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
}

/* Footer Brand */
.footer-brand {
    padding-right: 2rem;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--baby-blue);
    margin-bottom: 0.8rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.8rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--malva);
    transform: translateY(-3px);
}

/* Footer Sections */
.footer-section h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--malva);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 0.2rem 0;
}

.footer-nav a:hover {
    color: white;
    padding-left: 5px;
}

/* Footer Contact */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: white;
}

.contact-item svg {
    flex-shrink: 0;
    opacity: 0.8;
}

/* Newsletter */
.footer-newsletter p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    gap: 0;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.newsletter-form input {
    flex: 1;
    padding: 0.9rem 1rem;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.9rem;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
    padding: 0.9rem 1.2rem;
    background: var(--malva);
    border: none;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-form button:hover {
    background: #7a3745;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 5%;
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: white;
}

.footer-legal .separator {
    color: rgba(255, 255, 255, 0.3);
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    
    .footer-brand {
        grid-column: span 2;
        padding-right: 0;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-nav a:hover {
        padding-left: 0;
    }
    
    .footer-contact {
        align-items: center;
    }
}

@media (max-width: 640px) {
    .footer-main {
        padding: 3rem 5% 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        padding: 1rem;
    }
}

/* Product Detail Page */
.product-detail {
    max-width: 1400px;
    margin: 100px auto 3rem;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.carousel-container {
    position: sticky;
    top: 100px;
}

.carousel {
    position: relative;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.carousel-main {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--malva);
    z-index: 10;
}

.carousel-button.prev { left: 15px; }
.carousel-button.next { right: 15px; }

.carousel-thumbnails {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
    overflow-x: auto;
}

.thumbnail {
    min-width: 60px;
    height: 60px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
}

.thumbnail.active { border-color: var(--malva); }
.thumbnail img { width: 100%; height: 100%; object-fit: cover; }

.product-info-detail { padding: 1rem 0; }

.product-category {
    color: var(--verde-hoja);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
}

.product-title {
    font-size: 2.5rem;
    color: var(--malva);
    margin-bottom: 0.8rem;
    font-weight: 300;
}

.product-price-large {
    font-size: 2rem;
    color: var(--naranja-otoñal);
    font-weight: 600;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 1.5rem;
}

.product-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #5a5a5a;
    margin-bottom: 1.5rem;
}

.manifiesto-section {
    background: rgba(153, 179, 195, 0.1);
    padding: 1.2rem;
    margin-bottom: 1.5rem;
    border-left: 3px solid var(--malva);
}

.manifiesto-section h4 {
    color: var(--malva);
    font-size: 1rem;
    margin-bottom: 0.4rem;
    letter-spacing: 2px;
}

.selection-group { margin-bottom: 1.5rem; }

.selection-label {
    font-size: 0.9rem;
    color: var(--malva);
    font-weight: 500;
    margin-bottom: 0.8rem;
    display: block;
}

.color-options, .size-options {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.color-option {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
}

.color-option.selected {
    border-color: var(--malva);
    box-shadow: 0 0 0 2px white, 0 0 0 4px var(--malva);
}

.size-option {
    padding: 0.6rem 1.2rem;
    border: 1px solid var(--baby-blue);
    cursor: pointer;
    font-size: 0.9rem;
    color: #5a5a5a;
}

.size-option.selected {
    border-color: var(--malva);
    background: var(--malva);
    color: white;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.btn {
    padding: 1rem 1.5rem;
    border: none;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #128C7E;
}

.detail-item {
    border-bottom: 1px solid rgba(153, 179, 195, 0.2);
    padding: 1rem 0;
}

.detail-header {
    font-size: 1rem;
    color: var(--malva);
    font-weight: 500;
}

.back-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--malva);
    font-size: 0.9rem;
}

/* Instagram */
.instagram-container { text-align: center; }
.instagram-feed {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* Mobile */
@media (max-width: 968px) {
    .product-detail {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 90px;
    }

    .carousel-container {
        position: relative;
        top: 0;
    }

    .product-title { font-size: 2rem; }
    .carousel-main { height: 350px; }
}

@media (max-width: 768px) {
    .hero-banner {
        margin-top: 60px;
        aspect-ratio: 16 / 9;
    }
    
    .hero-content h1 { font-size: 2rem; }
    .hero-content p { font-size: 1rem; }
    
    section { padding: 2rem 5%; }
    .section-title { font-size: 1.8rem; }
    
    .product-image { aspect-ratio: 3 / 4; }
    
    .products-carousel-wrapper,
    .lecturas-carousel-wrapper {
        padding: 0 40px;
    }
    
    .product-card-link {
        flex: 0 0 260px;
    }
    
    .product-card {
        min-height: 420px;
        height: auto;
    }
    
    .lectura-card-link {
        flex: 0 0 280px;
    }
    
    .lectura-card {
        height: 350px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}


/* Tienda Page */
.tienda-page {
    max-width: 1400px;
    margin: 100px auto 3rem;
    padding: 0 5%;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(153, 179, 195, 0.3);
}

.page-title {
    font-size: 2.5rem;
    color: var(--malva);
    margin-bottom: 0.8rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.page-title .section-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.page-subtitle {
    color: #7a7a7a;
    font-size: 1.1rem;
    font-style: italic;
}

.tienda-container {
    width: 100%;
}

.tienda-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.tienda-grid .product-card-link {
    flex: none;
}

.tienda-grid .product-card {
    height: 100%;
    min-height: 480px;
}

.product-placeholder {
    background: #ddd;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .tienda-page {
        margin-top: 80px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .tienda-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .tienda-grid .product-card {
        min-height: 420px;
    }
}

@media (max-width: 480px) {
    .tienda-grid {
        grid-template-columns: 1fr;
    }
}


/* Instagram Carousel */
.instagram-carousel-wrapper {
    position: relative;
    overflow: hidden;
    padding: 0 50px;
}

.instagram-grid {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease;
}

.instagram-card-link {
    text-decoration: none;
    color: inherit;
    flex: 0 0 280px;
    display: flex;
}

.instagram-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.instagram-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(149, 68, 85, 0.2);
}

.instagram-card-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
    background: #f5f5f5;
}

.instagram-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.instagram-card:hover .instagram-card-image img {
    transform: scale(1.05);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(149, 68, 85, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-card:hover .instagram-overlay {
    opacity: 1;
}

.instagram-card-caption {
    padding: 1rem;
    min-height: 60px;
    display: flex;
    align-items: center;
}

.instagram-card-caption p {
    font-size: 0.85rem;
    color: #5a5a5a;
    line-height: 1.4;
    margin: 0;
}

.instagram-carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    left: 0;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 5px;
    z-index: 10;
}

.carousel-dots-instagram {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.5rem;
}

.carousel-dot-instagram {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--malva);
    opacity: 0.4;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.carousel-dot-instagram.active {
    opacity: 1;
    background: var(--malva);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .instagram-carousel-wrapper {
        padding: 0 40px;
    }
    
    .instagram-card-link {
        flex: 0 0 220px;
    }
    
    .instagram-card-caption {
        padding: 0.8rem;
        min-height: 50px;
    }
    
    .instagram-card-caption p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .instagram-card-link {
        flex: 0 0 200px;
    }
}


/* Eventos Cards Home - Estilo similar a experiencias-eventos.php */
.eventos-grid-home {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.evento-card-home {
    background: white;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
    min-height: 480px;
}

.evento-card-home:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(149, 68, 85, 0.15);
}

.evento-card-imagen-home {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f5f5f5;
    flex-shrink: 0;
}

.evento-card-imagen-home img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.evento-card-home:hover .evento-card-imagen-home img {
    transform: scale(1.05);
}

.evento-card-imagen-placeholder-home {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--baby-blue) 0%, var(--malva) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.evento-card-content-home {
    padding: 1.3rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.evento-card-header-home {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.evento-fecha-inline-home {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.evento-fecha-inline-home .dia {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--malva);
}

.evento-precio-inline-home {
    padding: 0.25rem 0.6rem;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 3px;
}

.evento-precio-inline-home.gratuito {
    background: var(--verde-hoja);
    color: white;
}

.evento-precio-inline-home.pago {
    background: var(--malva);
    color: white;
}

.evento-card-content-home h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--malva);
    margin-bottom: 0.5rem;
    line-height: 1.25;
    font-weight: 500;
}

.evento-divider-home {
    width: 30px;
    height: 2px;
    background: var(--baby-blue);
    margin: 0.6rem 0 0.8rem;
}

.evento-card-desc-home {
    font-size: 0.9rem;
    color: #5a5a5a;
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.evento-card-meta-home {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #6a6a6a;
    margin-bottom: 1rem;
}

.evento-card-meta-home span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.evento-card-meta-home svg {
    width: 16px;
    height: 16px;
    color: var(--baby-blue);
    flex-shrink: 0;
}

.evento-card-footer-home {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(153, 179, 195, 0.2);
    margin-top: auto;
}

.evento-precio-home {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--naranja-otoñal);
    font-weight: 600;
}

.evento-precio-home.gratis {
    color: var(--verde-hoja);
}

.evento-card-btn-home {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--malva);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.evento-card-btn-home:hover {
    color: var(--verde-hoja);
    gap: 0.6rem;
}

.evento-card-btn-home svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.evento-card-home:hover .evento-card-btn-home svg {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .eventos-grid-home {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .evento-card-home {
        min-height: 420px;
    }
    
    .evento-card-content-home h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .eventos-grid-home {
        grid-template-columns: 1fr;
    }
}


/* =====================================================
   PRODUCTO DETAIL - MOBILE RESPONSIVE FIXES
   ===================================================== */

/* Product Detail Mobile Styles */
@media (max-width: 768px) {
    .product-detail {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 70px;
        padding: 1rem 4%;
    }
    
    .carousel-container {
        position: relative;
        top: 0;
    }
    
    .carousel-main {
        height: 300px;
    }
    
    .carousel-button {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .carousel-button.prev { left: 10px; }
    .carousel-button.next { right: 10px; }
    
    .carousel-thumbnails {
        gap: 0.4rem;
    }
    
    .thumbnail {
        min-width: 50px;
        height: 50px;
    }
    
    .product-info-detail {
        padding: 0.5rem 0;
    }
    
    .product-title {
        font-size: 1.6rem;
        line-height: 1.2;
    }
    
    .product-price-large {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    
    .manifiesto-section {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .manifiesto-section h4 {
        font-size: 0.9rem;
        letter-spacing: 1.5px;
    }
    
    .product-description {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .selection-group {
        margin-bottom: 1rem;
    }
    
    .color-option {
        width: 35px;
        height: 35px;
    }
    
    .size-option {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .action-buttons {
        margin-top: 1rem;
        gap: 0.6rem;
    }
    
    .btn {
        padding: 0.9rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .btn svg {
        width: 20px;
        height: 20px;
    }
    
    .detail-item {
        padding: 0.8rem 0;
    }
    
    .detail-header {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .product-detail {
        margin-top: 65px;
        padding: 0.8rem 3%;
    }
    
    .carousel-main {
        height: 280px;
    }
    
    .product-title {
        font-size: 1.4rem;
    }
    
    .product-price-large {
        font-size: 1.4rem;
    }
    
    .color-options, .size-options {
        gap: 0.6rem;
    }
    
    .color-option {
        width: 32px;
        height: 32px;
    }
    
    .size-option {
        padding: 0.45rem 0.9rem;
        font-size: 0.8rem;
    }
    
    .btn {
        padding: 0.85rem 1rem;
        font-size: 0.85rem;
    }
}

/* Modal Pedido - Mobile Responsive */
@media (max-width: 768px) {
    .modal-overlay {
        padding: 0.5rem;
        align-items: flex-start;
        padding-top: 2rem;
    }
    
    .modal-pedido {
        padding: 1.5rem;
        border-radius: 15px;
        max-height: 85vh;
    }
    
    .modal-pedido h2 {
        font-size: 1.4rem;
    }
    
    .modal-producto {
        font-size: 0.9rem;
    }
    
    .form-group input {
        padding: 0.7rem;
        font-size: 0.95rem;
    }
    
    .form-check {
        padding: 0.8rem;
    }
    
    .resumen-pedido {
        padding: 0.8rem;
    }
    
    .linea-resumen.total {
        font-size: 1rem;
    }
    
    .btn-confirmar {
        padding: 0.9rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .modal-pedido {
        padding: 1.2rem;
    }
    
    .modal-close {
        top: 0.8rem;
        right: 0.8rem;
        font-size: 1.5rem;
    }
    
    .modal-pedido h2 {
        font-size: 1.2rem;
        padding-right: 2rem;
    }
}
