/* style.css - Estilos Premium para Productos del Maipo */

/* Importar Fuentes desde Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Lora:ital,wght@0,400;0,500;0,600;1,400&display=swap');

/* Variables de Diseño (Tokens) */
:root {
    --color-bg-natural: #FAF7F2;
    --color-forest-deep: #12251D;
    --color-forest-medium: #1B382B;
    --color-forest-light: #2C5643;
    --color-gold-premium: #C5A059;
    --color-gold-dark: #A5803E;
    --color-gold-light: #F4EAD4;
    --color-text-dark: #2A332F;
    --color-text-muted: #6B7C75;
    --color-white: #FFFFFF;
    --color-card-bg: rgba(255, 255, 255, 0.9);
    --color-error: #D64545;
    --color-success: #2E7D32;
    --font-heading: 'Lora', Georgia, serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --box-shadow-soft: 0 8px 30px rgba(18, 37, 29, 0.04);
    --box-shadow-medium: 0 12px 40px rgba(18, 37, 29, 0.08);
}

/* Reset y Estilos Generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-natural);
    color: var(--color-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 500;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

button, input, select, textarea {
    font-family: inherit;
    outline: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Animaciones CSS --- */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRight {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

@keyframes pulseGold {
    0% { box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(197, 160, 89, 0); }
    100% { box-shadow: 0 0 0 0 rgba(197, 160, 89, 0); }
}

/* --- Contenedor Principal --- */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Header / Navegación --- */
.header {
    background-color: rgba(250, 247, 242, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    border-bottom: 1px solid rgba(27, 56, 43, 0.08);
    transition: var(--transition-smooth);
}

.header.scrolled {
    padding: 10px 0;
    box-shadow: var(--box-shadow-soft);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-forest-deep);
    letter-spacing: -0.5px;
}

.logo-sub {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gold-premium);
    font-weight: 500;
    margin-top: -3px;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 30px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-forest-deep);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--color-gold-premium);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--color-gold-premium);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Switch de Idioma */
.lang-switcher {
    display: flex;
    border: 1px solid rgba(27, 56, 43, 0.15);
    border-radius: 20px;
    overflow: hidden;
    background-color: var(--color-white);
}

.lang-btn {
    border: none;
    background: none;
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.lang-btn.active {
    background-color: var(--color-forest-medium);
    color: var(--color-white);
}

/* Icono Carrito */
.cart-trigger {
    background: var(--color-white);
    border: 1px solid rgba(27, 56, 43, 0.1);
    color: var(--color-forest-deep);
    padding: 10px 16px;
    border-radius: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    box-shadow: var(--box-shadow-soft);
    transition: var(--transition-smooth);
}

.cart-trigger:hover {
    background-color: var(--color-forest-deep);
    color: var(--color-white);
    transform: translateY(-2px);
}

.cart-badge {
    background-color: var(--color-gold-premium);
    color: var(--color-forest-deep);
    font-size: 0.75rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -5px;
    right: -5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Hamburger para móviles */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    width: 44px; /* WCAG touch target */
    height: 44px; /* WCAG touch target */
    padding: 0;
    margin-right: -10px; /* Compensa el espacio del contenedor */
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--color-forest-deep);
    transition: var(--transition-smooth);
}

/* --- Hero Section --- */
.hero {
    min-height: 90vh;
    padding-top: 100px;
    display: flex;
    align-items: center;
    background-color: var(--color-forest-deep);
    color: var(--color-bg-natural);
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(18, 37, 29, 0.95) 40%, rgba(18, 37, 29, 0.3) 100%);
    z-index: 1;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    opacity: 0.45;
    filter: scale(1.05);
    transition: transform 10s ease;
}

.hero:hover .hero-bg-image {
    transform: scale(1.1);
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.hero-content {
    animation: fadeIn 1s ease-out;
}

.hero-tag {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-gold-premium);
    margin-bottom: 20px;
    display: inline-block;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.15rem;
    font-weight: 300;
    color: rgba(250, 247, 242, 0.8);
    margin-bottom: 35px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* Botones Premium */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background-color: var(--color-gold-premium);
    color: var(--color-forest-deep);
}

.btn-primary:hover {
    background-color: var(--color-gold-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(197, 160, 89, 0.2);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid rgba(250, 247, 242, 0.3);
    color: var(--color-bg-natural);
}

.btn-secondary:hover {
    border-color: var(--color-bg-natural);
    background-color: rgba(250, 247, 242, 0.1);
    transform: translateY(-3px);
}

.hero-badge-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    width: 100%;
    animation: fadeIn 1.2s ease-out;
}

.hero-seal-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 10px;
    animation: floatAnimation 6s ease-in-out infinite;
}

.hero-seal-img {
    width: 130px;
    height: auto;
    filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.4));
    transition: var(--transition-smooth);
    cursor: pointer;
}

.hero-seal-img:hover {
    transform: scale(1.08) rotate(5deg);
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.5));
}

@keyframes floatAnimation {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Tarjeta Destacada Hero */
.hero-badge-card {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 30px;
    animation: fadeIn 1.2s ease-out;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.badge-item:last-child {
    margin-bottom: 0;
}

.badge-icon {
    font-size: 1.5rem;
    background-color: rgba(197, 160, 89, 0.2);
    color: var(--color-gold-premium);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-text h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-white);
}

.badge-text p {
    font-size: 0.85rem;
    color: rgba(250, 247, 242, 0.7);
}

/* --- Secciones Comunes --- */
.section {
    padding: 100px 0;
}

.section-dark {
    background-color: var(--color-forest-deep);
    color: var(--color-bg-natural);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-tag {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gold-premium);
    margin-bottom: 15px;
    display: inline-block;
}

.section-title {
    font-size: 2.5rem;
    color: var(--color-forest-deep);
    margin-bottom: 20px;
}

.section-dark .section-title {
    color: var(--color-bg-natural);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--color-text-muted);
}

.section-dark .section-subtitle {
    color: rgba(250, 247, 242, 0.7);
}

/* --- Sección Origen / Historia --- */
.origin-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.origin-image-container {
    position: relative;
}

.origin-img {
    border-radius: 24px;
    box-shadow: var(--box-shadow-medium);
    transition: var(--transition-smooth);
}

.origin-floating-badge {
    position: absolute;
    bottom: -25px;
    right: -25px;
    background-color: var(--color-white);
    border: 1px solid rgba(27, 56, 43, 0.08);
    border-radius: 16px;
    padding: 20px 25px;
    box-shadow: var(--box-shadow-medium);
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 250px;
}

.prochile-logo-text {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-forest-deep);
    font-weight: bold;
}

.prochile-logo-text span {
    color: var(--color-gold-premium);
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.origin-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--color-forest-deep);
}

.origin-content p {
    color: var(--color-text-muted);
    margin-bottom: 25px;
}

/* Timeline Ferias */
.fairs-timeline {
    margin-top: 40px;
    border-left: 2px solid rgba(197, 160, 89, 0.3);
    padding-left: 25px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.timeline-item {
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -32.5px;
    top: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--color-gold-premium);
    border: 2px solid var(--color-bg-natural);
    transition: var(--transition-smooth);
}

.timeline-item:hover::before {
    background-color: var(--color-forest-deep);
    transform: scale(1.3);
}

.timeline-date {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-gold-premium);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-forest-deep);
    margin-bottom: 4px;
}

.timeline-desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* --- Sección Productos --- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.product-card {
    background-color: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--box-shadow-soft);
    border: 1px solid rgba(27, 56, 43, 0.05);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-medium);
    border-color: rgba(197, 160, 89, 0.3);
}

.product-img-wrapper {
    position: relative;
    background-color: #F6F3ED;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 280px;
    overflow: hidden;
}

.product-img-wrapper img {
    max-height: 100%;
    object-fit: contain;
    transition: var(--transition-smooth);
}

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

.product-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--color-forest-deep);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-size: 1.35rem;
    color: var(--color-forest-deep);
    margin-bottom: 10px;
}

.product-desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-specs {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.spec-chip {
    background-color: var(--color-bg-natural);
    color: var(--color-forest-light);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 12px;
    border: 1px solid rgba(27, 56, 43, 0.05);
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(27, 56, 43, 0.05);
    padding-top: 20px;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-forest-deep);
}

.product-price span {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 400;
    margin-left: 2px;
}

.btn-add-to-cart {
    background-color: var(--color-forest-medium);
    color: var(--color-white);
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-add-to-cart:hover {
    background-color: var(--color-gold-premium);
    color: var(--color-forest-deep);
    transform: scale(1.05);
}

/* --- Sección Comparador e Información Nutricional --- */
.comparator-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-card {
    display: flex;
    gap: 20px;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(27, 56, 43, 0.03);
    transition: var(--transition-smooth);
}

.benefit-card:hover {
    background-color: var(--color-white);
    box-shadow: var(--box-shadow-soft);
    transform: translateY(-2px);
}

.benefit-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-gold-premium);
    font-weight: 600;
    line-height: 1;
}

.benefit-body h4 {
    font-size: 1.1rem;
    color: var(--color-forest-deep);
    margin-bottom: 5px;
    font-weight: 600;
}

.benefit-body p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Interfaz del Comparador */
.comparator-box {
    background-color: var(--color-white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--box-shadow-medium);
    border: 1px solid rgba(27, 56, 43, 0.05);
}

.comparator-title {
    font-size: 1.4rem;
    color: var(--color-forest-deep);
    margin-bottom: 25px;
    text-align: center;
    font-weight: 600;
}

.comparator-selects {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 35px;
}

.comparator-select-btn {
    background-color: var(--color-bg-natural);
    border: 1px solid rgba(27, 56, 43, 0.1);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-forest-deep);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.comparator-select-btn.active {
    background-color: var(--color-gold-premium);
    color: var(--color-forest-deep);
    border-color: var(--color-gold-premium);
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.2);
}

.comparator-chart {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.chart-bar-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bar-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-forest-deep);
}

.bar-info span.bar-label {
    font-weight: 500;
    color: var(--color-text-muted);
}

.bar-track {
    height: 12px;
    background-color: var(--color-bg-natural);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.bar-fill {
    height: 100%;
    border-radius: 6px;
    background-color: var(--color-gold-premium);
    width: 0%; /* Animado por JS */
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.bar-fill.fill-omega3 {
    background-color: var(--color-gold-premium);
}

.bar-fill.fill-mono {
    background-color: var(--color-forest-light);
}

.bar-fill.fill-sat {
    background-color: var(--color-text-muted);
}

.comparator-note {
    margin-top: 30px;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-align: center;
    font-style: italic;
    border-top: 1px solid rgba(27, 56, 43, 0.05);
    padding-top: 20px;
}

/* --- Centro de Recetas Gourmet --- */
.recipes-container {
    max-width: 900px;
    margin: 0 auto;
}

.recipes-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(27, 56, 43, 0.08);
    padding-bottom: 20px;
}

.recipe-tab-btn {
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--color-text-muted);
    cursor: pointer;
    padding: 5px 15px;
    position: relative;
    transition: var(--transition-smooth);
}

.recipe-tab-btn::after {
    content: '';
    position: absolute;
    bottom: -22px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--color-gold-premium);
    transition: var(--transition-smooth);
}

.recipe-tab-btn.active {
    color: var(--color-forest-deep);
    font-weight: 600;
}

.recipe-tab-btn.active::after {
    width: 100%;
}

.recipe-content {
    background-color: var(--color-white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--box-shadow-soft);
    border: 1px solid rgba(27, 56, 43, 0.04);
    display: none; /* Animado por JS */
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.recipe-content.active {
    display: grid;
    animation: fadeIn 0.5s ease-out;
}

.recipe-img {
    width: 100%;
    height: 320px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--box-shadow-soft);
    border: 1px solid rgba(27, 56, 43, 0.05);
}

.recipe-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.recipe-content:hover .recipe-img img {
    transform: scale(1.05);
}

.recipe-info h3 {
    font-size: 1.8rem;
    color: var(--color-forest-deep);
    margin-bottom: 15px;
}

.recipe-meta {
    display: flex;
    gap: 20px;
    font-size: 0.8rem;
    color: var(--color-gold-premium);
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.recipe-ingredients h4, .recipe-steps h4 {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-forest-light);
    margin-bottom: 15px;
    font-weight: 600;
    font-family: var(--font-body);
}

.ingredients-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ingredients-list li {
    font-size: 0.85rem;
    color: var(--color-text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.ingredients-list li::before {
    content: '•';
    color: var(--color-gold-premium);
    font-weight: bold;
}

.recipe-steps-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.recipe-steps-list li {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    position: relative;
    padding-left: 30px;
}

.recipe-steps-list li span.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background-color: var(--color-gold-light);
    color: var(--color-gold-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

/* CTA Compra desde Receta */
.recipe-cta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    background-color: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.25);
    padding: 20px 25px;
    border-radius: 16px;
    margin-top: 30px;
    transition: var(--transition-smooth);
}

.recipe-cta-box:hover {
    background-color: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.4);
}

.recipe-cta-info {
    flex: 1;
}

.recipe-cta-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-forest-deep);
    margin-bottom: 5px;
}

.recipe-cta-text {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.45;
}

.btn-add-recipe-product {
    flex-shrink: 0;
}

/* --- Sección Exportación y Sostenibilidad --- */
.export-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: center;
}

.export-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.export-content p {
    color: rgba(250, 247, 242, 0.8);
    margin-bottom: 30px;
}

.export-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.export-feature-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 16px;
    transition: var(--transition-smooth);
}

.export-feature-card:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--color-gold-premium);
}

.export-feature-icon {
    font-size: 1.5rem;
    color: var(--color-gold-premium);
    margin-bottom: 15px;
}

.export-feature-title {
    font-size: 1.1rem;
    color: var(--color-white);
    margin-bottom: 8px;
    font-weight: 600;
}

.export-feature-desc {
    font-size: 0.8rem;
    color: rgba(250, 247, 242, 0.65);
}

.export-sustainability-box {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
}

.sust-icon {
    font-size: 2.5rem;
    color: var(--color-gold-premium);
    margin-bottom: 20px;
    display: inline-block;
}

.sust-title {
    font-size: 1.35rem;
    color: var(--color-white);
    margin-bottom: 15px;
}

.sust-desc {
    font-size: 0.85rem;
    color: rgba(250, 247, 242, 0.7);
    margin-bottom: 25px;
}

.sust-chips {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.sust-chip {
    background-color: rgba(197, 160, 89, 0.15);
    color: var(--color-gold-premium);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(197, 160, 89, 0.2);
}

/* --- Formulario de Contacto / Mayoristas --- */
.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 70px;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.2rem;
    color: var(--color-gold-premium);
    margin-top: 3px;
}

.contact-text h4 {
    font-size: 1rem;
    color: var(--color-forest-deep);
    margin-bottom: 4px;
    font-weight: 600;
}

.contact-text p, .contact-text a {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.contact-text a:hover {
    color: var(--color-gold-premium);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    background-color: var(--color-white);
    border: 1px solid rgba(27, 56, 43, 0.08);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-forest-deep);
    font-size: 1.1rem;
    box-shadow: var(--box-shadow-soft);
}

.social-link:hover {
    background-color: var(--color-gold-premium);
    color: var(--color-forest-deep);
    border-color: var(--color-gold-premium);
    transform: translateY(-3px);
}

/* Formulario Glassmorphism */
.contact-form-container {
    background-color: var(--color-white);
    border-radius: 24px;
    padding: 45px;
    box-shadow: var(--box-shadow-medium);
    border: 1px solid rgba(27, 56, 43, 0.05);
}

.contact-form h3 {
    font-size: 1.6rem;
    color: var(--color-forest-deep);
    margin-bottom: 25px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-full {
    grid-column: span 2;
}

.form-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-forest-deep);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control {
    background-color: var(--color-bg-natural);
    border: 1px solid rgba(27, 56, 43, 0.08);
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 0.9rem;
    color: var(--color-text-dark);
    transition: var(--transition-smooth);
}

.form-control:focus {
    border-color: var(--color-gold-premium);
    background-color: var(--color-white);
    box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.1);
}

textarea.form-control {
    resize: none;
    height: 120px;
}

.btn-submit {
    background-color: var(--color-forest-medium);
    color: var(--color-white);
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.btn-submit:hover {
    background-color: var(--color-gold-premium);
    color: var(--color-forest-deep);
    box-shadow: 0 8px 20px rgba(197, 160, 89, 0.15);
}

/* --- Footer --- */
.footer {
    background-color: var(--color-forest-deep);
    color: var(--color-bg-natural);
    padding: 80px 0 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 1.1rem;
    color: var(--color-white);
    margin-bottom: 25px;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col p {
    font-size: 0.85rem;
    color: rgba(250, 247, 242, 0.65);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.85rem;
    color: rgba(250, 247, 242, 0.65);
}

.footer-links a:hover {
    color: var(--color-gold-premium);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(250, 247, 242, 0.5);
}

/* --- PANEL LATERAL DEL CARRITO --- */
.cart-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 450px;
    height: 100%;
    background-color: var(--color-white);
    box-shadow: -10px 0 40px rgba(18, 37, 29, 0.15);
    z-index: 200;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.cart-header {
    padding: 25px 30px;
    border-bottom: 1px solid rgba(27, 56, 43, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--color-bg-natural);
}

.cart-header h3 {
    font-size: 1.3rem;
    color: var(--color-forest-deep);
    font-weight: 600;
}

.btn-close-cart {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-forest-deep);
    cursor: pointer;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.btn-close-cart:hover {
    background-color: rgba(27, 56, 43, 0.05);
}

.cart-items-container {
    flex-grow: 1;
    overflow-y: auto;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-empty-message {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-top: 50px;
}

.cart-item {
    display: flex;
    gap: 15px;
    align-items: center;
    border-bottom: 1px solid rgba(27, 56, 43, 0.05);
    padding-bottom: 15px;
}

.cart-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cart-item-img {
    width: 60px;
    height: 60px;
    background-color: var(--color-bg-natural);
    border-radius: 10px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-img img {
    max-height: 100%;
    object-fit: contain;
}

.cart-item-details {
    flex-grow: 1;
}

.cart-item-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-forest-deep);
    margin-bottom: 4px;
}

.cart-item-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-gold-dark);
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.qty-btn {
    border: 1px solid rgba(27, 56, 43, 0.15);
    background-color: var(--color-white);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: bold;
    color: var(--color-forest-deep);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.qty-btn:hover {
    background-color: var(--color-forest-medium);
    color: var(--color-white);
}

.qty-val {
    font-size: 0.85rem;
    font-weight: 600;
    width: 20px;
    text-align: center;
}

.btn-remove-item {
    background: none;
    border: none;
    color: var(--color-error);
    cursor: pointer;
    font-size: 0.9rem;
    padding: 5px;
    transition: var(--transition-smooth);
}

.btn-remove-item:hover {
    transform: scale(1.1);
}

.cart-footer {
    padding: 30px;
    border-top: 1px solid rgba(27, 56, 43, 0.08);
    background-color: var(--color-bg-natural);
}

.cart-summary-line {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-forest-deep);
    margin-bottom: 12px;
}

.cart-summary-line.total {
    font-size: 1.25rem;
    font-weight: 700;
    border-top: 1px solid rgba(27, 56, 43, 0.08);
    padding-top: 12px;
    margin-bottom: 25px;
}

.btn-checkout {
    background-color: var(--color-forest-deep);
    color: var(--color-white);
    width: 100%;
    padding: 15px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.btn-checkout:hover {
    background-color: var(--color-gold-premium);
    color: var(--color-forest-deep);
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.15);
}

/* Oscurecimiento de fondo (Overlay) */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 37, 29, 0.5);
    backdrop-filter: blur(4px);
    z-index: 150;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.overlay.open {
    opacity: 1;
    visibility: visible;
}

/* --- MODAL DE CHECKOUT (PAGO Y DESPACHO) --- */
.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 650px;
    max-height: 90vh;
    overflow-y: auto;
    background-color: var(--color-white);
    border-radius: 24px;
    box-shadow: var(--box-shadow-medium);
    z-index: 300;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    border: 1px solid rgba(27, 56, 43, 0.05);
}

.modal.open {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.modal-header {
    padding: 25px 35px;
    background-color: var(--color-bg-natural);
    border-bottom: 1px solid rgba(27, 56, 43, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-size: 1.35rem;
    color: var(--color-forest-deep);
    font-weight: 600;
}

.btn-close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-forest-deep);
    cursor: pointer;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.btn-close-modal:hover {
    background-color: rgba(27, 56, 43, 0.05);
}

.modal-body {
    padding: 35px;
}

/* Opciones de Despacho */
.delivery-options-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.delivery-tab-btn {
    background-color: var(--color-bg-natural);
    border: 1px solid rgba(27, 56, 43, 0.1);
    border-radius: 16px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.delivery-tab-btn.active {
    border-color: var(--color-gold-premium);
    background-color: var(--color-gold-light);
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.1);
}

.delivery-tab-btn h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-forest-deep);
    margin-bottom: 5px;
}

.delivery-tab-btn p {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.delivery-tab-btn.active h4 {
    color: var(--color-gold-dark);
}

/* Paneles de Despacho */
.delivery-panel {
    display: none;
}

.delivery-panel.active {
    display: block;
    animation: fadeIn 0.4s ease-out;
}

/* --- Pantalla de Éxito --- */
.success-screen {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    font-size: 3.5rem;
    color: var(--color-success);
    margin-bottom: 20px;
}

.success-screen h3 {
    font-size: 1.7rem;
    color: var(--color-forest-deep);
    margin-bottom: 15px;
}

.success-screen p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 30px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* Logo Imagen Estilos */
.logo-wrapper {
    display: flex;
    align-items: center;
    height: 48px;
    transition: var(--transition-smooth);
}

.logo-img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.header.scrolled .logo-wrapper {
    height: 40px;
}

/* Invertir logo negro en el footer oscuro */
.footer .logo-img {
    filter: invert(1) brightness(100);
}

/* Carrusel de Exposiciones */
.fairs-section {
    background-color: var(--color-white);
    padding: 100px 0;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    margin-top: 40px;
    padding: 10px 0;
}

.carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: max-content;
}

.carousel-card {
    width: 280px;
    background-color: var(--color-bg-natural);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--box-shadow-soft);
    border: 1px solid rgba(27, 56, 43, 0.05);
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.carousel-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-medium);
    border-color: var(--color-gold-premium);
}

.carousel-img-wrapper {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.carousel-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.carousel-card:hover .carousel-img-wrapper img {
    transform: scale(1.05);
}

.carousel-tag {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background-color: var(--color-gold-premium);
    color: var(--color-forest-deep);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.carousel-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.carousel-card-title {
    font-size: 1.05rem;
    color: var(--color-forest-deep);
    margin-bottom: 8px;
    font-weight: 600;
}

.carousel-card-desc {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    flex-grow: 1;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.carousel-control-btn {
    background-color: var(--color-bg-natural);
    border: 1px solid rgba(27, 56, 43, 0.1);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-forest-deep);
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.carousel-control-btn:hover {
    background-color: var(--color-forest-medium);
    color: var(--color-white);
    border-color: var(--color-forest-medium);
}

/* Centrar carrusel en pantallas grandes cuando todas las fichas caben */
@media (min-width: 1250px) {
    .carousel-container {
        display: flex;
        justify-content: center;
    }
    .carousel-track {
        justify-content: center;
        width: auto;
        transform: none !important;
        gap: 20px;
    }
    .carousel-card {
        width: 270px;
    }
    .carousel-controls {
        display: none !important;
    }
}

/* --- Media Queries (Responsividad Móvil) --- */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .hero-bg-image {
        opacity: 0.3;
    }
    .hero-actions {
        justify-content: center;
    }
    .origin-grid, .comparator-grid, .export-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-actions {
        gap: 12px;
    }
    .logo-wrapper {
        height: 38px;
    }
    .cart-trigger span[data-i18n="cart-btn-text"] {
        display: none;
    }
    .cart-trigger {
        padding: 10px;
    }
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-bg-natural);
        border-bottom: 1px solid rgba(27, 56, 43, 0.08);
        padding: 20px 0;
        box-shadow: var(--box-shadow-medium);
        gap: 15px;
        align-items: center;
        z-index: 90;
    }
    .nav-menu.active {
        display: flex;
        animation: fadeIn 0.3s ease-out;
    }
    .menu-toggle {
        display: flex;
    }
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
    .recipe-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .recipes-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 12px;
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .recipes-tabs::-webkit-scrollbar {
        display: none;
    }
    .recipe-tab-btn {
        flex-shrink: 0;
        white-space: nowrap;
        font-size: 1rem;
    }
    .recipe-tab-btn::after {
        bottom: -14px;
    }
    .recipe-cta-box {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }
    .btn-add-recipe-product {
        width: 100%;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .form-group-full {
        grid-column: span 1;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .cart-panel {
        width: 100%;
    }
}

/* --- SECCIÓN REELS DE INSTAGRAM --- */
.reels-section {
    padding: 100px 0;
}

.reels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.reel-card {
    background-color: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--box-shadow-soft);
    border: 1px solid rgba(27, 56, 43, 0.05);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

.reel-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-medium);
    border-color: var(--color-gold-premium);
}

.reel-img-wrapper {
    height: 320px;
    overflow: hidden;
    position: relative;
    background-color: var(--color-forest-deep);
}

.reel-img-wrapper img, .reel-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.reel-video {
    pointer-events: none; /* Evita interferencia de toques en dispositivos móviles */
}

.reel-card:hover .reel-img-wrapper img, .reel-card:hover .reel-video {
    transform: scale(1.05);
    opacity: 0.85;
}

.reel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 50%, rgba(27,56,43,0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: var(--transition-smooth);
}

.reel-play-btn {
    width: 60px;
    height: 60px;
    background-color: rgba(253, 251, 247, 0.9);
    color: var(--color-forest-deep);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    padding-left: 5px;
    box-shadow: var(--box-shadow-medium);
    transition: var(--transition-smooth);
}

.reel-card:hover .reel-play-btn {
    transform: scale(1.1);
    background-color: var(--color-gold-premium);
    color: var(--color-forest-deep);
}

.reel-stats {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: space-between;
    color: var(--color-white);
    font-size: 0.8rem;
    font-weight: 500;
}

.reel-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.reel-info h4 {
    font-size: 1.05rem;
    color: var(--color-forest-deep);
    margin-bottom: 8px;
    font-weight: 600;
}

.reel-info p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin: 0;
}

/* Responsividad para la grilla de Reels */
@media (max-width: 1024px) {
    .reels-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .reels-grid {
        grid-template-columns: 1fr;
    }
    .reel-img-wrapper {
        height: 280px;
    }
}

/* --- Banner de Consentimiento de Cookies (GDPR) --- */
.cookie-banner {
    position: fixed;
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    background-color: var(--color-bg-natural);
    border: 1px solid rgba(191, 149, 63, 0.3);
    box-shadow: 0 15px 35px rgba(27, 56, 43, 0.15);
    border-radius: 16px;
    padding: 20px 30px;
    z-index: 2000;
    transition: bottom 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
    opacity: 0;
}

.cookie-banner.show {
    bottom: 30px;
    opacity: 1;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content p {
    font-size: 0.85rem;
    color: var(--color-text-dark);
    margin: 0;
    line-height: 1.5;
}

.cookie-content .btn-primary {
    padding: 10px 24px;
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* Responsividad para Banner de Cookies */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .cookie-banner {
        padding: 20px;
        bottom: -200px;
    }
    .cookie-banner.show {
        bottom: 20px;
    }
    .cookie-content .btn-primary {
        width: 100%;
    }
}

