/* ============================================
   FRUTA DEL MONJE - E-COMMERCE
   Estilos completos - CSS Vanilla
   Paleta: Verde tradicional #2d5016
   ============================================ */

/* Reset y base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-primary: #2d5016;
    --color-primary-hover: #3a5f1f;
    --color-primary-light: #4a7c2a;
    --color-bg: #f4f7f2;
    --color-bg-white: #ffffff;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-text-muted: #888888;
    --color-border: #e0e5dc;
    --color-accent: #c9a227;
    --color-error: #c62828;
    --color-success: #2e7d32;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-primary);
}

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

a:hover {
    color: var(--color-primary-hover);
}

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

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    background-color: var(--color-bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo svg {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-primary);
    line-height: 1.2;
}

.logo-text span {
    display: block;
    font-size: 0.75rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: var(--color-text-light);
    letter-spacing: 1px;
}

/* Navegación */
.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition);
}

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

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

/* Carrito icono */
.cart-icon {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: var(--color-primary);
    color: white;
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: var(--transition);
}

.cart-icon:hover {
    background-color: var(--color-primary-hover);
    color: white;
}

.cart-count {
    background-color: var(--color-accent);
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 20px;
    text-align: center;
}

/* Menú móvil */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 60px 0;
    color: white;
}

.hero h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* ============================================
   BOTONES
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--color-primary);
}

.btn-accent {
    background-color: var(--color-accent);
    color: var(--color-primary);
}

.btn-accent:hover {
    background-color: #b8941f;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* ============================================
   SECCIONES GENERALES
   ============================================ */
.section {
    padding: 80px 0;
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--color-text-light);
}

.section-bg {
    background-color: var(--color-bg-white);
}

/* ============================================
   FEATURES / BENEFICIOS
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--color-bg-white);
    padding: 35px 25px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: var(--color-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 35px;
    height: 35px;
    stroke: var(--color-primary);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* ============================================
   PRODUCTO DESTACADO
   ============================================ */
.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.product-image {
    position: relative;
    background-color: var(--color-bg-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.product-image img {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
}

.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--color-accent);
    color: var(--color-primary);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.85rem;
}

.product-info h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.product-brand {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.product-price {
    margin-bottom: 20px;
}

.price-current {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.price-original {
    font-size: 1.5rem;
    color: var(--color-text-muted);
    text-decoration: line-through;
    margin-left: 15px;
}

.price-note {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-top: 5px;
}

.product-description {
    color: var(--color-text-light);
    margin-bottom: 25px;
    line-height: 1.7;
}

.product-features-list {
    list-style: none;
    margin-bottom: 30px;
}

.product-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--color-text);
}

.product-features-list li::before {
    content: '✓';
    color: var(--color-success);
    font-weight: 700;
}

/* ============================================
   CANTIDAD SELECTOR
   ============================================ */
.quantity-selector {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.quantity-label {
    font-weight: 500;
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    background-color: var(--color-bg);
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.quantity-btn:hover {
    background-color: var(--color-border);
}

.quantity-input {
    width: 60px;
    height: 40px;
    border: none;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
}

/* ============================================
   TARJETAS PRODUCTO (Tienda)
   ============================================ */
.product-card {
    background-color: var(--color-bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.product-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.product-card-image {
    position: relative;
    padding: 30px;
    background-color: var(--color-bg);
    text-align: center;
}

.product-card-image img {
    max-height: 200px;
    margin: 0 auto;
}

.product-card-content {
    padding: 25px;
}

.product-card-title {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.product-card-brand {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.product-card-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.product-card-price .current {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-primary);
}

.product-card-price .original {
    font-size: 1rem;
    color: var(--color-text-muted);
    text-decoration: line-through;
}

/* ============================================
   TABLA NUTRICIONAL
   ============================================ */
.nutrition-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 0.9rem;
}

.nutrition-table th,
.nutrition-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.nutrition-table th {
    background-color: var(--color-bg);
    font-weight: 600;
    color: var(--color-primary);
}

.nutrition-table tr:hover {
    background-color: var(--color-bg);
}

/* ============================================
   TABLA COMPARATIVA
   ============================================ */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background-color: var(--color-bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.comparison-table th,
.comparison-table td {
    padding: 15px 20px;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
}

.comparison-table th {
    background-color: var(--color-primary);
    color: white;
    font-weight: 600;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table .winner {
    background-color: rgba(45, 80, 22, 0.1);
    color: var(--color-primary);
    font-weight: 600;
}

.comparison-table .check {
    color: var(--color-success);
    font-weight: 700;
}

.comparison-table .cross {
    color: var(--color-error);
}

/* ============================================
   RECETAS
   ============================================ */
.recipes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.recipe-card {
    background-color: var(--color-bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.recipe-image {
    height: 220px;
    background-color: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.recipe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recipe-content {
    padding: 30px;
}

.recipe-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.recipe-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.recipe-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.recipe-ingredients {
    margin: 20px 0;
}

.recipe-ingredients h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--color-text);
}

.recipe-ingredients ul {
    list-style: none;
    padding-left: 0;
}

.recipe-ingredients li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
    color: var(--color-text-light);
}

.recipe-ingredients li::before {
    content: '•';
    position: absolute;
    left: 5px;
    color: var(--color-primary);
}

.recipe-steps {
    counter-reset: step;
}

.recipe-steps h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--color-text);
}

.recipe-steps ol {
    padding-left: 0;
    list-style: none;
}

.recipe-steps li {
    counter-increment: step;
    padding: 10px 0;
    padding-left: 40px;
    position: relative;
    color: var(--color-text-light);
    border-bottom: 1px dashed var(--color-border);
}

.recipe-steps li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    width: 28px;
    height: 28px;
    background-color: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
}

/* ============================================
   CARRITO
   ============================================ */
.cart-section {
    padding: 60px 0;
}

.cart-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.cart-items {
    background-color: var(--color-bg-white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table th,
.cart-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.cart-table th {
    font-weight: 600;
    color: var(--color-primary);
    font-size: 0.9rem;
}

.cart-product {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-product img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background-color: var(--color-bg);
    border-radius: var(--radius-sm);
}

.cart-product-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.cart-product-info p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.cart-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-qty-btn {
    width: 30px;
    height: 30px;
    border: 1px solid var(--color-border);
    background: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.cart-qty-btn:hover {
    background-color: var(--color-bg);
}

.cart-qty-value {
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.cart-remove {
    color: var(--color-error);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.85rem;
    transition: var(--transition);
}

.cart-remove:hover {
    text-decoration: underline;
}

.cart-empty {
    text-align: center;
    padding: 60px 20px;
}

.cart-empty svg {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    stroke: var(--color-border);
}

.cart-empty h3 {
    margin-bottom: 15px;
}

/* Resumen del carrito */
.cart-summary {
    background-color: var(--color-bg-white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    height: fit-content;
}

.cart-summary h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--color-border);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.summary-row.total {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-primary);
    padding-top: 15px;
    border-top: 2px solid var(--color-border);
    margin-top: 15px;
}

.shipping-calculator {
    margin: 25px 0;
    padding: 20px;
    background-color: var(--color-bg);
    border-radius: var(--radius-md);
}

.shipping-calculator label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.shipping-calculator input {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    margin-bottom: 10px;
}

.shipping-calculator input:focus {
    outline: none;
    border-color: var(--color-primary);
}

.shipping-message {
    font-size: 0.85rem;
    padding: 10px;
    border-radius: var(--radius-sm);
    margin-top: 10px;
}

.shipping-message.free {
    background-color: rgba(46, 125, 50, 0.1);
    color: var(--color-success);
}

.shipping-message.paid {
    background-color: rgba(201, 162, 39, 0.1);
    color: var(--color-accent);
}

.shipping-message.error {
    background-color: rgba(198, 40, 40, 0.1);
    color: var(--color-error);
}

.payment-methods {
    margin: 25px 0;
}

.payment-methods h4 {
    font-size: 1rem;
    margin-bottom: 15px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.payment-option:hover,
.payment-option.selected {
    border-color: var(--color-primary);
    background-color: rgba(45, 80, 22, 0.05);
}

.payment-option input {
    width: 18px;
    height: 18px;
    accent-color: var(--color-primary);
}

.payment-option label {
    flex: 1;
    cursor: pointer;
    font-size: 0.95rem;
}

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

/* ============================================
   CHECKOUT
   ============================================ */
.checkout-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
}

.checkout-form {
    background-color: var(--color-bg-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.checkout-form h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--color-border);
}

.form-group {
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--color-text);
}

.form-group label .required {
    color: var(--color-error);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
}

.form-group input.error,
.form-group textarea.error {
    border-color: var(--color-error);
}

.error-message {
    font-size: 0.85rem;
    color: var(--color-error);
    margin-top: 5px;
    display: none;
}

.error-message.visible {
    display: block;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkout-summary {
    background-color: var(--color-bg-white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    height: fit-content;
}

.checkout-summary h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.checkout-product {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--color-border);
}

.checkout-product img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    background-color: var(--color-bg);
    border-radius: var(--radius-sm);
}

.checkout-product-info h4 {
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.checkout-product-info p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* ============================================
   PÁGINA GRACIAS
   ============================================ */
.thanks-section {
    padding: 80px 0;
    text-align: center;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--color-bg-white);
    padding: 60px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.thanks-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background-color: var(--color-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-icon svg {
    width: 50px;
    height: 50px;
    stroke: white;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.thanks-content > p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 30px;
}

.payment-instructions {
    background-color: var(--color-bg);
    padding: 30px;
    border-radius: var(--radius-md);
    text-align: left;
    margin: 30px 0;
}

.payment-instructions h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-align: center;
}

.payment-instructions p {
    margin-bottom: 10px;
}

.payment-instructions strong {
    color: var(--color-primary);
}

.bank-details {
    background-color: var(--color-bg-white);
    padding: 20px;
    border-radius: var(--radius-sm);
    margin: 20px 0;
    font-family: monospace;
    font-size: 1rem;
}

.bank-details p {
    margin-bottom: 8px;
}

.order-details {
    margin: 30px 0;
    padding: 20px;
    background-color: var(--color-bg);
    border-radius: var(--radius-md);
}

.order-details p {
    margin-bottom: 8px;
}

/* ============================================
   FAQ - ACORDEÓN
   ============================================ */
.faq-section {
    padding: 60px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--color-bg-white);
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: var(--color-bg);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
    transition: var(--transition);
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 25px 25px;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ============================================
   CONTACTO
   ============================================ */
.contact-section {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-card {
    background-color: var(--color-bg-white);
    padding: 35px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: var(--color-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--color-primary);
}

.contact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.contact-card p {
    color: var(--color-text-light);
    margin-bottom: 5px;
}

.contact-card a {
    color: var(--color-primary);
    font-weight: 500;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* ============================================
   BLOG
   ============================================ */
.blog-section {
    padding: 60px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.blog-card {
    background-color: var(--color-bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.blog-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.blog-card-image {
    height: 200px;
    background-color: var(--color-bg);
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.blog-card-content {
    padding: 25px;
}

.blog-date {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 10px;
}

.blog-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 15px;
    font-weight: 500;
    font-size: 0.95rem;
}

/* Artículo individual */
.article-section {
    padding: 60px 0;
}

.article-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--color-bg-white);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.article-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--color-border);
}

.article-header h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.article-meta {
    display: flex;
    gap: 20px;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.article-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: 40px;
}

.article-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text);
}

.article-content h2 {
    font-size: 1.6rem;
    margin: 40px 0 20px;
}

.article-content h3 {
    font-size: 1.3rem;
    margin: 30px 0 15px;
}

.article-content p {
    margin-bottom: 20px;
}

.article-content ul,
.article-content ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.article-content li {
    margin-bottom: 10px;
}

/* ============================================
   PÁGINAS LEGALES
   ============================================ */
.legal-section {
    padding: 60px 0;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--color-bg-white);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.legal-container h1 {
    font-size: 2rem;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--color-border);
}

.legal-container h2 {
    font-size: 1.4rem;
    margin: 40px 0 20px;
    color: var(--color-primary);
}

.legal-container h3 {
    font-size: 1.2rem;
    margin: 30px 0 15px;
}

.legal-container p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: var(--color-text-light);
}

.legal-container ul,
.legal-container ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-container li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: var(--color-text-light);
}

.legal-container strong {
    color: var(--color-text);
}

.legal-date {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 30px;
    font-style: italic;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background-color: var(--color-primary);
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-col p,
.footer-col a {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    line-height: 1.7;
}

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

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
}

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

/* ============================================
   COOKIES BANNER
   ============================================ */
.cookies-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-bg-white);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    padding: 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookies-banner.visible {
    transform: translateY(0);
}

.cookies-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookies-content p {
    flex: 1;
    font-size: 0.9rem;
    color: var(--color-text-light);
    min-width: 280px;
}

.cookies-content a {
    color: var(--color-primary);
    text-decoration: underline;
}

.cookies-buttons {
    display: flex;
    gap: 10px;
}

.cookies-buttons .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* ============================================
   UTILIDADES
   ============================================ */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }

.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }

.hidden {
    display: none !important;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .product-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cart-container,
    .checkout-container {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background-color: var(--color-bg-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-md);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
    }
    
    .nav.active {
        transform: translateY(0);
    }
    
    .nav-list {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .hero {
        min-height: 500px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .features-grid,
    .recipes-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        font-size: 0.85rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 10px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .article-container,
    .legal-container {
        padding: 30px 20px;
    }
    
    .article-header h1 {
        font-size: 1.6rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .cookies-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.1rem;
    }
    
    .hero h1 {
        font-size: 1.7rem;
    }
    
    .price-current {
        font-size: 2rem;
    }
    
    .cart-product {
        flex-direction: column;
        text-align: center;
    }
    
    .thanks-content {
        padding: 30px 20px;
    }
    
    .thanks-content h1 {
        font-size: 1.8rem;
    }
}
