/* ============================================= */
/* RECIPE CARDS - HOME PAGE                     */
/* ============================================= */

.recipe-preview {
    padding: 80px 0;
    background: #fcf6f0;
}

.recipe-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(139, 69, 19, 0.06);
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.recipe-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 45px rgba(139, 69, 19, 0.1);
    border-color: #D4A574;
}

.recipe-card-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.recipe-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.recipe-card:hover .recipe-card-image img {
    transform: scale(1.05);
}

.recipe-card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #8B4513, #D4A574);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.recipe-card-content {
    padding: 20px;
    text-align: left;
}

.recipe-card-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 6px;
}

.recipe-card-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 12px;
}

.recipe-card-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 14px;
}

.recipe-card-meta span {
    font-size: 13px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 4px;
}

.recipe-card-meta i {
    color: #8B4513;
}

.recipe-card-content .btn-sm {
    padding: 6px 18px;
    font-size: 13px;
    border-radius: 50px;
}

/* Responsive */
@media (max-width: 768px) {
    .recipe-preview {
        padding: 50px 0;
    }
    
    .recipe-card-image {
        height: 180px;
    }
}

@media (max-width: 576px) {
    .recipe-card-image {
        height: 200px;
    }
}




/* ============================================= */
/* RECIPE PAGE - COMPLETE STYLES                */
/* Patisserie180 - Premium Eggless Bakery       */
/* FULL HEIGHT BANNER - RESPONSIVE              */
/* ============================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background: #fdf6f3;
    color: #2c1810;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================= */
/* FULL HEIGHT BANNER - 100vh on all devices     */
/* ============================================= */

.recipe-banner {
    position: relative;
    width: 100%;
    height: 100vh;                /* full viewport height */
    min-height: 500px;
    max-height: 900px;
    overflow: hidden;
    background: #1a1210;
}

.recipe-banner-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.recipe-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.recipe-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 11, 10, 0.55) 0%, rgba(44, 24, 16, 0.30) 50%, rgba(0, 0, 0, 0.15) 100%);
    z-index: 1;
}

.recipe-banner-content {
    position: absolute;
    top: 47%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 92%;
    max-width: 800px;
    padding: 20px 16px;
    animation: recipeFadeIn 0.9s ease forwards;
}

@keyframes recipeFadeIn {
    from { opacity: 0; transform: translate(-50%, -45%); }
    to { opacity: 1; transform: translate(-50%, -50%); }
}

.recipe-banner-badge {
    display: inline-block;
    background: linear-gradient(135deg, #8B4513, #D4A574);
    color: #fff;
    font-size: clamp(11px, 1.4vw, 14px);
    font-weight: 700;
    padding: 6px 22px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    border: 1px solid rgba(255, 215, 190, 0.15);
    margin-bottom: 12px;
    box-shadow: 0 4px 20px rgba(139, 69, 19, 0.3);
}

.recipe-banner-title {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: clamp(32px, 8vw, 58px);
    font-weight: 700;
    color: #f5ede5;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
    margin-bottom: 6px;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.recipe-banner-sub {
    font-size: clamp(16px, 2.5vw, 22px);
    color: #f5ede5;
    margin-bottom: 16px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

.recipe-banner-sub strong {
    color: #f5ede5;
    font-weight: 600;
}

.recipe-banner-host {
    font-size: clamp(16px, 2.5vw, 22px);
    color: #d4c5b8;
    margin-bottom: 16px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    letter-spacing: 1px;
}

.recipe-banner-host strong {
    color: #e8b88a;
    font-weight: 700;
    position: relative;
}
.recipe-banner-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 28px;
    margin-bottom: 18px;
}

.recipe-banner-info span {
    font-size: clamp(13px, 2vw, 16px);
    color: #f5ede5;
    display: flex;
    align-items: center;
    gap: 8px;
}

.recipe-banner-info i {
    color: #f5ede5;
    font-size: 1.1em;
}

.recipe-banner-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.recipe-banner-buttons .btn {
    padding: 12px 28px;
    font-size: clamp(14px, 1.8vw, 17px);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.recipe-btn-primary {
    background: linear-gradient(135deg, #8B4513, #D4A574);
    color: #fff;
    box-shadow: 0 4px 20px rgba(139, 69, 19, 0.35);
}

.recipe-btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(139, 69, 19, 0.45);
    background: linear-gradient(135deg, #a0522d, #e8b88a);
}

.recipe-btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.3);
}

.recipe-btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
}

/* ---------- recipe details ---------- */
.recipe-details {
    padding: 30px 0 24px;
    background: #fdf6f3;
    border-bottom: 1px solid rgba(139, 69, 19, 0.06);
}

.recipe-details-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.recipe-detail-item {
    text-align: center;
    background: #fff;
    padding: 16px 10px;
    border-radius: 16px;
    border: 1px solid rgba(139, 69, 19, 0.06);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: 0.2s;
}

.recipe-detail-item:hover {
    border-color: #D4A574;
    box-shadow: 0 6px 18px rgba(139, 69, 19, 0.06);
}

.recipe-detail-icon {
    font-size: 26px;
    color: #8B4513;
    display: block;
    margin-bottom: 4px;
}

.recipe-detail-item h5 {
    font-size: 12px;
    color: #999;
    margin-bottom: 2px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.recipe-detail-item p {
    font-size: 17px;
    font-weight: 600;
    color: #2c1810;
    margin: 0;
}

/* =========================================================
   INGREDIENTS SECTION - MODERN RECIPE DESIGN
========================================================= */

.recipe-ingredients {
    padding: 70px 0;
    background: #fffaf5;
}

.recipe-ingredients-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

/* =========================================================
   IMAGE
========================================================= */

.recipe-ingredients-image {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 18px 45px rgba(44, 24, 16, 0.12);
}

.recipe-zoom-image {
    width: 100%;
    height: 520px;
    overflow: hidden;
}

.recipe-zoom-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.recipe-ingredients-image:hover .recipe-zoom-image img {
    transform: scale(1.04);
}


/* =========================================================
   RIGHT SIDE CONTENT
========================================================= */

.recipe-ingredients-text {
    padding: 10px 0;
}

.recipe-ingredients-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    background: #f7eee5;
    color: #9a4f1c;

    font-size: 12px;
    font-weight: 700;

    padding: 8px 16px;
    border-radius: 50px;

    text-transform: uppercase;
    letter-spacing: 1px;

    margin-bottom: 15px;
}

/* Optional icon before INGREDIENTS */

.recipe-ingredients-tag::before {
    content: "";
    font-size: 16px;
    line-height: 1;
}


/* =========================================================
   MAIN HEADING
========================================================= */

.recipe-ingredients-text h2 {
    font-family: 'Playfair Display', 'Georgia', serif;

    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;

    color: #2c1810;

    margin: 0 0 28px;

    letter-spacing: -0.03em;
}


/* =========================================================
   INGREDIENT GROUP CARD
========================================================= */

.recipe-ingredient-group {
    position: relative;

    background: #ffffff;

    border: 1px solid rgba(139, 69, 19, 0.10);

    border-radius: 18px;

    padding: 22px 24px;

    margin-bottom: 16px;

    box-shadow: 0 8px 25px rgba(44, 24, 16, 0.04);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.recipe-ingredient-group:hover {
    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(44, 24, 16, 0.09);
}


/* =========================================================
   GROUP TITLE
========================================================= */

.recipe-ingredient-group h5 {
    font-family: 'Playfair Display', 'Georgia', serif;

    font-size: 20px;
    font-weight: 600;

    color: #8B4513;

    margin: 0 0 12px;

    letter-spacing: -0.01em;
}


/* =========================================================
   INGREDIENT LIST
========================================================= */

.recipe-ingredient-group ul {
    list-style: none;

    padding: 0;
    margin: 0;
}

.recipe-ingredient-group ul li {
    display: flex;
    align-items: center;

    gap: 11px;

    font-size: 15px;
    line-height: 1.5;

    color: #444;

    padding: 9px 0;

    border-bottom: 1px dashed rgba(139, 69, 19, 0.12);
}

.recipe-ingredient-group ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}


/* =========================================================
   GREEN CHECK ICON
========================================================= */

.recipe-ingredient-group ul li i {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    flex: 0 0 19px;

    width: 19px;
    height: 19px;

    border-radius: 50%;

    background: #27AE60;

    color: #ffffff;

    font-size: 10px;

    text-align: center;
}


/* =========================================================
   OPTIONAL TIP BOX
   Add this HTML if you want the tip section
========================================================= */

.recipe-ingredients-tip {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-top: 22px;

    padding: 15px 18px;

    background: #fffdf9;

    border: 1px solid rgba(139, 69, 19, 0.15);

    border-radius: 15px;

    color: #6d5548;

    font-family: 'Georgia', serif;

    font-size: 14px;

    font-style: italic;
}

.recipe-ingredients-tip i {
    font-size: 20px;
    color: #9a4f1c;
}


/* ---------- section header ---------- */
.recipe-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.recipe-section-badge {
    display: inline-block;
    background: rgba(139, 69, 19, 0.08);
    color: #8B4513;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 6px;
}

.recipe-section-header h2 {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: clamp(28px, 4vw, 38px);
    color: #2c1810;
    margin-bottom: 2px;
}

.recipe-section-header h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #8B4513, #D4A574);
    margin: 10px auto 0;
    border-radius: 4px;
}

/* ---------- method ---------- */
.recipe-method {
    padding: 60px 0 50px;
    background: #fcf6f0;
}

.recipe-method-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.recipe-method-step {
    display: flex;
    gap: 18px;
    background: #fff;
    padding: 22px 20px;
    border-radius: 16px;
    border: 1px solid rgba(139, 69, 19, 0.05);
    transition: all 0.25s ease;
}

.recipe-method-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(139, 69, 19, 0.07);
    border-color: #D4A574;
}

.recipe-method-number {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 32px;
    font-weight: 700;
    color: #D4A574;
    line-height: 1;
    min-width: 44px;
}

.recipe-method-content h5 {
    font-size: 17px;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 2px;
}

.recipe-method-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* ---------- tips ---------- */
.recipe-tips {
    padding: 60px 0 50px;
    background: #fff;
}

.recipe-tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.recipe-tip-card {
    background: #fcf6f0;
    padding: 24px 16px;
    border-radius: 16px;
    border: 1px solid rgba(139, 69, 19, 0.05);
    text-align: center;
    transition: 0.25s ease;
}

.recipe-tip-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(139, 69, 19, 0.07);
    border-color: #D4A574;
}

.recipe-tip-icon {
    font-size: 32px;
    color: #8B4513;
    display: block;
    margin-bottom: 10px;
    transition: transform 0.2s;
}

.recipe-tip-card h5 {
    font-size: 16px;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 4px;
}

.recipe-tip-card p {
    font-size: 14px;
    color: #555;
    margin: 0;
    line-height: 1.5;
}

/* ---------- nutrition ---------- */
.recipe-nutrition {
    padding: 60px 0 50px;
    background: #fcf6f0;
}

.recipe-nutrition-box {
    background: #fff;
    border-radius: 24px;
    padding: 40px 30px;
    border: 1px solid rgba(139, 69, 19, 0.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
    max-width: 800px;
    margin: 0 auto;
}

.recipe-nutrition-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.recipe-nutrition-item {
    text-align: center;
}

.recipe-nutrition-value {
    display: block;
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 26px;
    font-weight: 700;
    color: #8B4513;
    line-height: 1;
}

.recipe-nutrition-label {
    display: block;
    font-size: 12px;
    color: #999;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* ---------- final CTA ---------- */
.recipe-final-cta {
    padding: 60px 0 50px;
    background: #fdf6f3;
    border-top: 2px solid #D4A574;
    border-bottom: 2px solid #D4A574;
}

.recipe-final-box {
    background: linear-gradient(135deg, #2c1810 0%, #8B4513 50%, #a0522d 100%);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(212, 165, 116, 0.2);
    border-radius: 32px;
    padding: 48px 32px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 36px rgba(44, 24, 16, 0.12);
}

.recipe-final-box:hover {
    border-color: rgba(212, 165, 116, 0.35);
    background: linear-gradient(135deg, #3d1f0f 0%, #a0522d 50%, #b8653a 100%);
    box-shadow: 0 14px 44px rgba(44, 24, 16, 0.18);
}

.recipe-final-badge {
    display: inline-block;
    background: rgba(255, 193, 7, 0.12);
    color: #F4B400;
    font-size: 13px;
    font-weight: 700;
    padding: 5px 18px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    border: 1px solid rgba(255, 193, 7, 0.08);
    margin-bottom: 12px;
}

.recipe-final-content h2 {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: clamp(28px, 5vw, 44px);
    color: #f5ede5;
    margin-bottom: 6px;
}

.recipe-final-content p {
    color: #d4c5b8;
    font-size: clamp(15px, 2vw, 19px);
    max-width: 600px;
    margin: 6px auto 24px;
}

.recipe-final-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.recipe-final-buttons .btn {
    padding: 12px 32px;
    font-size: clamp(15px, 1.8vw, 18px);
    border-radius: 50px;
    font-weight: 600;
    transition: 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.recipe-final-buttons .recipe-btn-primary {
    background: linear-gradient(135deg, #D4A574, #e8b88a);
    color: #2c1810;
    box-shadow: 0 4px 20px rgba(212, 165, 116, 0.3);
}

.recipe-final-buttons .recipe-btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(212, 165, 116, 0.4);
    background: linear-gradient(135deg, #e8b88a, #f5d4b8);
}

.recipe-final-buttons .recipe-btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.25);
}

.recipe-final-buttons .recipe-btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
}

.recipe-final-seats {
    margin-top: 20px;
    color: #d4c5b8;
    font-size: 15px;
}

.recipe-final-seats i {
    color: #F4B400;
    margin-right: 6px;
    animation: recipePulse 2s infinite;
}

@keyframes recipePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.12); }
}

/* ============================================= */
/* RESPONSIVE - PERFECT FOR ALL DEVICES          */
/* ============================================= */

/* Large tablets & small laptops */
@media (max-width: 992px) {
    .recipe-banner {
        height: 100vh;
        min-height: 450px;
        max-height: 800px;
    }
    
    .recipe-ingredients-grid {
        gap: 30px;
    }
    
    .recipe-zoom-image {
        height: 300px;
    }
    
    .recipe-method-grid {
        gap: 20px;
    }
}

/* Tablets & mobile landscape */
@media (max-width: 768px) {
    .container {
        padding: 0 18px;
    }
    
    .recipe-banner {
        height: 100vh;
        min-height: 450px;
        max-height: 750px;
    }
    
    .recipe-banner-content {
        top: 50%;
        padding: 16px 12px;
    }
    
    .recipe-banner-title {
        font-size: clamp(28px, 7vw, 40px);
    }
    
    .recipe-banner-sub {
        font-size: 15px;
    }
    
    .recipe-banner-info {
        gap: 10px 20px;
    }
    
    .recipe-banner-info span {
        font-size: 13px;
    }
    
    .recipe-details-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .recipe-detail-item {
        padding: 14px 8px;
    }
    
    .recipe-detail-item p {
        font-size: 15px;
    }
    
    .recipe-ingredients-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
    .recipe-zoom-image {
        height: 240px;
    }
    
    .recipe-ingredients-text h2 {
        font-size: clamp(26px, 5vw, 32px);
    }
    
    .recipe-method-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .recipe-method-step {
        padding: 18px 16px;
    }
    
    .recipe-tips-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
    
    .recipe-nutrition-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }
    
    .recipe-nutrition-box {
        padding: 30px 20px;
    }
    
    .recipe-nutrition-value {
        font-size: 22px;
    }
    
    .recipe-final-box {
        padding: 32px 20px;
    }
    
    .recipe-final-content h2 {
        font-size: clamp(26px, 5vw, 34px);
    }
    
    .recipe-section-header h2 {
        font-size: clamp(26px, 5vw, 32px);
    }
}

/* Mobile phones */
@media (max-width: 576px) {
    .container {
        padding: 0 14px;
    }
    
    .recipe-banner {
        height: 100vh;
        min-height: 500px;
        max-height: 700px;
    }
    
    .recipe-banner-content {
        top: 50%;
        width: 95%;
        padding: 12px 10px;
    }
    
    .recipe-banner-title {
        font-size: clamp(26px, 7vw, 34px);
    }
    
    .recipe-banner-badge {
        font-size: 10px;
        padding: 4px 16px;
        letter-spacing: 1.2px;
        margin-bottom: 8px;
    }
    
    .recipe-banner-sub {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .recipe-banner-info {
        gap: 8px 14px;
        margin-bottom: 14px;
    }
    
    .recipe-banner-info span {
        font-size: 12px;
    }
    
    .recipe-banner-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 10px;
    }
    
    .recipe-banner-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 12px 16px;
        font-size: 14px;
        border-radius: 50px;
    }
    
    .recipe-details {
        padding: 24px 0 18px;
    }
    
    .recipe-details-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .recipe-detail-item {
        padding: 12px 6px;
        border-radius: 12px;
    }
    
    .recipe-detail-item p {
        font-size: 14px;
    }
    
    .recipe-detail-icon {
        font-size: 22px;
    }
    
    .recipe-detail-item h5 {
        font-size: 10px;
    }
    
    .recipe-ingredients {
        padding: 40px 0 30px;
    }
    
    .recipe-ingredients-text h2 {
        font-size: 24px;
    }
    
    .recipe-ingredients-tag {
        font-size: 10px;
        padding: 3px 12px;
    }
    
    .recipe-zoom-image {
        height: 200px;
    }
    
    .recipe-ingredient-group h5 {
        font-size: 15px;
    }
    
    .recipe-ingredient-group ul li {
        font-size: 14px;
        padding: 3px 0;
    }
    
    .recipe-ingredient-group ul li i {
        font-size: 13px;
        width: 16px;
    }
    
    .recipe-method {
        padding: 40px 0 30px;
    }
    
    .recipe-method-step {
        padding: 14px 12px;
        gap: 14px;
        border-radius: 12px;
    }
    
    .recipe-method-number {
        font-size: 26px;
        min-width: 36px;
    }
    
    .recipe-method-content h5 {
        font-size: 15px;
    }
    
    .recipe-method-content p {
        font-size: 14px;
    }
    
    .recipe-tips {
        padding: 40px 0 30px;
    }
    
    .recipe-tips-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .recipe-tip-card {
        padding: 18px 14px;
        border-radius: 12px;
    }
    
    .recipe-tip-card h5 {
        font-size: 15px;
    }
    
    .recipe-tip-card p {
        font-size: 13px;
    }
    
    .recipe-tip-icon {
        font-size: 28px;
    }
    
    .recipe-nutrition {
        padding: 40px 0 30px;
    }
    
    .recipe-nutrition-box {
        padding: 24px 16px;
        border-radius: 16px;
    }
    
    .recipe-nutrition-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .recipe-nutrition-value {
        font-size: 20px;
    }
    
    .recipe-nutrition-label {
        font-size: 10px;
    }
    
    .recipe-final-cta {
        padding: 40px 0 30px;
    }
    
    .recipe-final-box {
        padding: 24px 16px;
        border-radius: 20px;
    }
    
    .recipe-final-content h2 {
        font-size: clamp(22px, 5vw, 28px);
    }
    
    .recipe-final-content p {
        font-size: 14px;
        margin: 4px auto 18px;
    }
    
    .recipe-final-buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    
    .recipe-final-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
        border-radius: 50px;
    }
    
    .recipe-final-badge {
        font-size: 10px;
        padding: 4px 14px;
        letter-spacing: 1.2px;
    }
    
    .recipe-final-seats {
        font-size: 13px;
        margin-top: 14px;
    }
    
    .recipe-section-header {
        margin-bottom: 28px;
    }
    
    .recipe-section-header h2 {
        font-size: clamp(24px, 5vw, 28px);
    }
    
    .recipe-section-badge {
        font-size: 10px;
        padding: 3px 12px;
    }
}

/* Extra small devices */
@media (max-width: 400px) {
    .container {
        padding: 0 10px;
    }
    
    .recipe-banner {
        height: 100vh;
        min-height: 480px;
        max-height: 650px;
    }
    
    .recipe-banner-title {
        font-size: clamp(22px, 6vw, 28px);
    }
    
    .recipe-banner-sub {
        font-size: 13px;
    }
    
    .recipe-banner-info span {
        font-size: 11px;
    }
    
    .recipe-details-grid {
        gap: 8px;
    }
    
    .recipe-detail-item {
        padding: 10px 4px;
        border-radius: 10px;
    }
    
    .recipe-detail-item p {
        font-size: 13px;
    }
    
    .recipe-detail-icon {
        font-size: 18px;
    }
    
    .recipe-detail-item h5 {
        font-size: 9px;
    }
    
    .recipe-ingredients-text h2 {
        font-size: 22px;
    }
    
    .recipe-zoom-image {
        height: 180px;
    }
    
    .recipe-ingredient-group ul li {
        font-size: 13px;
    }
    
    .recipe-method-number {
        font-size: 22px;
        min-width: 30px;
    }
    
    .recipe-method-content h5 {
        font-size: 14px;
    }
    
    .recipe-method-content p {
        font-size: 13px;
    }
    
    .recipe-nutrition-value {
        font-size: 18px;
    }
    
    .recipe-nutrition-label {
        font-size: 9px;
    }
    
    .recipe-final-content h2 {
        font-size: 20px;
    }
    
    .recipe-final-content p {
        font-size: 13px;
    }
    
    .recipe-final-buttons .btn {
        font-size: 13px;
        padding: 10px 16px;
    }
}

/* Large desktop screens */
@media (min-width: 1400px) {
    .recipe-banner {
        max-height: 900px;
    }
    
    .recipe-zoom-image {
        height: 420px;
    }
    
    .recipe-banner-title {
        font-size: 58px;
    }
}

/* Landscape phone support */
@media (max-height: 500px) and (orientation: landscape) {
    .recipe-banner {
        height: 100vh;
        min-height: 400px;
        max-height: 600px;
    }
    
    .recipe-banner-content {
        top: 50%;
        padding: 10px 12px;
    }
    
    .recipe-banner-title {
        font-size: clamp(22px, 5vh, 36px);
    }
    
    .recipe-banner-sub {
        font-size: 13px;
        margin-bottom: 8px;
    }
    
    .recipe-banner-badge {
        font-size: 9px;
        padding: 3px 14px;
        margin-bottom: 6px;
    }
    
    .recipe-banner-info {
        gap: 6px 14px;
        margin-bottom: 10px;
    }
    
    .recipe-banner-info span {
        font-size: 11px;
    }
    
    .recipe-banner-buttons .btn {
        padding: 8px 18px;
        font-size: 12px;
    }
}

/* Print styles */
@media print {
    .recipe-banner {
        height: auto;
        min-height: auto;
        max-height: none;
        border-radius: 0;
    }
    
    .recipe-banner-content {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        padding: 30px 20px;
        background: #f5ede5;
        color: #2c1810;
    }
    
    .recipe-banner-title {
        color: #2c1810;
        text-shadow: none;
    }
    
    .recipe-banner-sub,
    .recipe-banner-info span {
        color: #555;
    }
    
    .recipe-banner-overlay {
        display: none;
    }
    
    .recipe-banner-buttons .btn,
    .recipe-final-buttons .btn {
        display: none;
    }
    
    .recipe-final-cta {
        border: 1px solid #ccc;
    }
}



/* ============================================= */
/* RECIPE SINGLE - IMAGE LEFT, TEXT RIGHT      */
/* ============================================= */

.recipe-single {
    padding: 40px 0;
    background: #fff;
    border-bottom: 1px solid rgba(139, 69, 19, 0.06);
}

.recipe-single:last-of-type {
    border-bottom: none;
}

.recipe-single-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #D4A574;
}

.recipe-single-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #2c1810;
    margin: 0;
}

.recipe-single-header h2 i {
    color: #8B4513;
    margin-right: 10px;
}

.recipe-single-badge {
    background: linear-gradient(135deg, #8B4513, #D4A574);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.recipe-single-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.recipe-single-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(44, 24, 16, 0.08);
}

.recipe-zoom-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.recipe-zoom-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.recipe-zoom-image:hover img {
    transform: scale(1.05);
}

.recipe-single-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 14px;
}

.ingredient-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ingredient-list li {
    padding: 6px 0;
    font-size: 14px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(139, 69, 19, 0.04);
}

.ingredient-list li:last-child {
    border-bottom: none;
}

.ingredient-list li i {
    color: #27AE60;
    font-size: 14px;
    width: 18px;
}

/* Responsive */
@media (max-width: 768px) {
    .recipe-single-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .recipe-zoom-image {
        height: 220px;
    }

    .recipe-single-header h2 {
        font-size: 20px;
    }

    .recipe-single {
        padding: 30px 0;
    }
}

@media (max-width: 576px) {
    .recipe-single-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .recipe-single-header h2 {
        font-size: 18px;
    }

    .recipe-zoom-image {
        height: 180px;
    }

    .ingredient-list li {
        font-size: 13px;
        padding: 4px 0;
    }

    .recipe-single {
        padding: 20px 0;
    }
}