/* Variables CSS - Paleta Cítrica */
:root {
    --orange-primary: #ff7f00;
    --orange-light: #ffaa4d;
    --lime-green: #32cd32;
    --lemon-yellow: #ffd700;
    --citrus-red: #ff6b35;
    --forest-green: #228b22;
    --cream: #fffdd0;
    --white: #ffffff;
    --black: #2c2c2c;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-600: #6c757d;
    --gray-800: #495057;
    --gray-900: #212529;
    --gradient-citrus: linear-gradient(135deg, var(--orange-primary), var(--lemon-yellow));
    --gradient-green: linear-gradient(135deg, var(--lime-green), var(--forest-green));
}

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

body {
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Tipografía mejorada */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    text-rendering: optimizeLegibility;
    line-height: 1.2;
}

p {
    font-weight: 400;
    margin-bottom: 1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 0.5rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--orange-primary);
    text-decoration: none;
}

.logo i {
    margin-right: 0.5rem;
    font-size: 2rem;
    color: var(--lime-green);
}

.logo-img {
    width: 40px;
    height: 40px;
    margin-right: 0.5rem;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -8px;
    left: 0;
    background: var(--gradient-citrus);
    border-radius: 2px;
    transition: width 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gray-600);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(255, 127, 0, 0.6), rgba(255, 215, 0, 0.5));
    z-index: 2;
}

/* Overlay adicional para mejor contraste */
.hero-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 5;
}

.hero-content {
    max-width: 600px;
    color: var(--white);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8), 2px 2px 8px rgba(0, 0, 0, 0.7), -1px -1px 2px rgba(0, 0, 0, 0.5);
    color: var(--white);
}

/* Highlight mejorado con mejor contraste */
.highlight {
    background: linear-gradient(45deg, #ffdd00, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    position: relative;
    display: inline-block;
}

/* Sombra para el highlight para mayor visibilidad */
.highlight::after {
    content: '100% Naturales';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    color: #ffdd00;
    text-shadow: 
        0 0 30px rgba(0, 0, 0, 0.9),
        2px 2px 10px rgba(0, 0, 0, 0.8),
        -1px -1px 5px rgba(0, 0, 0, 0.7),
        0 0 50px rgba(255, 221, 0, 0.3);
    -webkit-text-fill-color: #ffdd00;
    filter: brightness(1.1);
}

.highlight-green {
    background: linear-gradient(45deg, var(--lime-green), var(--forest-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 2rem;
    opacity: 1;
    line-height: 1.6;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.8), 2px 2px 6px rgba(0, 0, 0, 0.6);
    color: var(--white);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

/* Page Hero - Para páginas internas */
.page-hero {
    position: relative;
    min-height: 35vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 70px; /* Compensar header fijo */
}

.page-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.page-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 127, 0, 0.8), rgba(50, 205, 50, 0.7));
    z-index: 2;
}

.page-hero .container {
    position: relative;
    z-index: 3;
}

.page-hero .hero-content {
    max-width: 600px;
    color: var(--white);
    text-align: center;
}

.page-hero .hero-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-hero .hero-content p {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-shadow: none;
}

.btn-primary {
    background: var(--gradient-citrus);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 127, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 127, 0, 0.4);
}

.btn-secondary {
    background: rgba(0, 0, 0, 0.3);
    color: var(--white);
    border: 2px solid var(--white);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

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

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

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

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 16px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.feature-item i {
    color: var(--lemon-yellow);
    font-size: 1.2rem;
}

/* Benefits Section */
.benefits {
    padding: 5rem 0;
    background-color: var(--cream);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

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

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: var(--orange-light);
    box-shadow: 0 15px 40px rgba(255, 127, 0, 0.2);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-citrus);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    font-size: 2rem;
    color: var(--white);
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--gray-600);
    font-weight: 500;
    line-height: 1.6;
}

/* Featured Products */
.featured-products {
    padding: 5rem 0;
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 127, 0, 0.15);
}

.product-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

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

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

.product-content {
    padding: 2rem;
}

.product-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.product-content p {
    color: var(--gray-600);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.product-features {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: var(--gradient-green);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Process Section */
.process {
    padding: 5rem 0;
    background: var(--gray-100);
}

.process-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.process-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.process-description {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--gradient-citrus);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--gray-600);
    font-weight: 500;
}

.process-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

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

/* Sustainability Section */
.sustainability {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.sustainability-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.sustainability-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sustainability-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.8), rgba(50, 205, 50, 0.7));
    z-index: 2;
}

.sustainability-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
}

.sustainability-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.sustainability-content p {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.sustainability-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--lemon-yellow);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.9;
}

.sustainability-actions {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.action-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.action-item i {
    color: var(--lemon-yellow);
    font-size: 1.2rem;
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background: var(--gradient-citrus);
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-content p {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

.cta .btn-primary:hover {
    background: var(--cream);
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand p {
    margin-bottom: 1.5rem;
    color: var(--gray-300);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--gray-800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-300);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--orange-primary);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-links h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--orange-light);
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--gray-300);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--orange-light);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--gray-300);
}

.contact-item i {
    color: var(--orange-light);
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 2rem;
    text-align: center;
    color: var(--gray-400);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .hero-features {
        justify-content: center;
        gap: 1rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .process-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .sustainability-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .sustainability-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .process-text h2,
    .sustainability-content h2,
    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .benefit-card,
    .product-content {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

/* === ESTILOS PARA PÁGINA DE RECETAS === */

/* Introducción a las recetas */
.recipes-intro {
    padding: 3rem 0;
    background: var(--cream);
}

.recipes-intro .section-subtitle {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
}

/* Filtros de recetas */
.recipe-filters {
    margin-bottom: 3rem;
    text-align: center;
}

.filter-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid var(--orange-primary);
    background: transparent;
    color: var(--orange-primary);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--orange-primary);
    color: var(--white);
    transform: translateY(-2px);
}

.results-count {
    color: var(--gray-600);
    font-weight: 500;
}

/* Grid de recetas */
.recipes-grid {
    padding: 4rem 0;
    background: var(--white);
}

.recipes-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Tarjetas de recetas */
.recipe-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.recipe-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 127, 0, 0.15);
    border-color: var(--orange-light);
}

/* Imagen de receta */
.recipe-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

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

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

.recipe-difficulty {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}

.difficulty-badge {
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
    backdrop-filter: blur(10px);
}

.difficulty-badge.easy {
    background: rgba(50, 205, 50, 0.9);
}

.difficulty-badge.medium {
    background: rgba(255, 193, 7, 0.9);
}

.difficulty-badge.hard {
    background: rgba(220, 53, 69, 0.9);
}

/* Contenido de receta */
.recipe-content {
    padding: 2rem;
}

.recipe-header {
    margin-bottom: 1.5rem;
}

.recipe-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.recipe-meta {
    display: flex;
    gap: 1.5rem;
    color: var(--gray-600);
    font-size: 0.9rem;
    font-weight: 500;
}

.recipe-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.recipe-meta i {
    color: var(--orange-primary);
}

/* Producto principal */
.recipe-product {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--lime-green), var(--forest-green));
    color: var(--white);
    padding: 10px 15px;
    border-radius: 25px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.recipe-product i {
    font-size: 1rem;
}

/* Ingredientes */
.recipe-ingredients {
    margin-bottom: 1.5rem;
}

.recipe-ingredients h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.recipe-ingredients h4::before {
    content: '🥗';
    font-size: 1.2rem;
}

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

.recipe-ingredients li {
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray-700);
    font-weight: 500;
}

.recipe-ingredients li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--lime-green);
    font-weight: 700;
}

/* Instrucciones */
.recipe-instructions {
    margin-bottom: 1.5rem;
}

.recipe-instructions h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.recipe-instructions h4::before {
    content: '👨‍🍳';
    font-size: 1.2rem;
}

.recipe-instructions ol {
    padding-left: 1.5rem;
}

.recipe-instructions li {
    padding: 0.5rem 0;
    color: var(--gray-700);
    font-weight: 500;
    line-height: 1.5;
}

.recipe-instructions li::marker {
    color: var(--orange-primary);
    font-weight: 700;
}

/* Tip del chef */
.recipe-tip {
    background: linear-gradient(135deg, var(--cream), #fff8e7);
    border: 2px solid var(--lemon-yellow);
    border-radius: 15px;
    padding: 1rem;
    margin-top: 1.5rem;
}

.recipe-tip i {
    color: var(--lemon-yellow);
    margin-right: 0.5rem;
}

.recipe-tip strong {
    color: var(--orange-primary);
}

/* Productos recomendados */
.recommended-products {
    padding: 4rem 0;
    background: var(--gray-100);
}

.recommended-products .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.product-quick-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.product-quick-card:hover {
    transform: translateY(-5px);
    border-color: var(--orange-primary);
    box-shadow: 0 15px 35px rgba(255, 127, 0, 0.2);
    color: inherit;
    text-decoration: none;
}

.product-quick-card i {
    font-size: 2.5rem;
    color: var(--orange-primary);
    margin-bottom: 1rem;
    display: block;
}

.product-quick-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.product-quick-card p {
    color: var(--gray-600);
    font-weight: 500;
    font-size: 0.9rem;
}

/* Responsive para recetas */
@media (max-width: 768px) {
    .recipes-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .recipe-content {
        padding: 1.5rem;
    }
    
    .recipe-header h3 {
        font-size: 1.3rem;
    }
    
    .recipe-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .filter-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .filter-btn {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .recipes-container {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }
    
    .recipe-image {
        height: 200px;
    }
    
    .recipe-content {
        padding: 1rem;
    }
    
    .recipe-header h3 {
        font-size: 1.1rem;
    }
}