.ingredient-page{
    max-width:900px;
    margin:0 auto;
    padding:20px;
    font-family:Inter, Arial, sans-serif;
    font-size:19px;
    line-height:1.9;
    color:#374151;
}

.ingredient-page h1{
    font-size:clamp(40px,6vw,54px);
    line-height:1.15;
    margin-bottom:20px;
    color:#111827;
    font-weight:700;
}

.ingredient-page h2{
    font-size:clamp(30px,5vw,40px);
    margin-top:50px;
    margin-bottom:15px;
    color:#111827;
    border-bottom:2px solid #f3f4f6;
    padding-bottom:10px;
}

.ingredient-page h3{
    font-size:clamp(24px,4vw,30px);
    margin-top:30px;
    margin-bottom:12px;
    color:#1f2937;
}

.ingredient-page p{
    margin-bottom:20px;
}

.ingredient-page ul{
    margin:20px 0;
    padding-left:28px;
}

.ingredient-page li{
    margin-bottom:10px;
}

.info-box{
    background:#f8fafc;
    border-left:5px solid #2563eb;
    padding:22px;
    border-radius:10px;
    margin:25px 0;
}

.fact-box{
    background:#fff8e8;
    border-left:5px solid #f59e0b;
    padding:22px;
    border-radius:10px;
    margin:25px 0;
}

.faq-item{
    padding:18px 0;
    border-bottom:1px solid #e5e7eb;
}

.related-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:20px;
    margin-top:20px;
}

.card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:12px;
    padding:20px;
}

.card h3{
    margin-top:0;
}

.btn{
    display:inline-block;
    margin-top:10px;
    background:#2563eb;
    color:#fff;
    text-decoration:none;
    padding:12px 18px;
    border-radius:8px;
    font-weight:600;
}

.ingredient-links{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:12px;
    margin-top:20px;
}

.ingredient-links a{
    text-decoration:none;
    text-align:center;
    padding:14px;
    background:#f8fafc;
    border:1px solid #e5e7eb;
    border-radius:8px;
    color:#111827;
    font-weight:600;
}
    
    
.ingredient-links a{
    text-decoration:none;
    text-align:center;
    padding:14px;
    background:#f8fafc;
    border:1px solid #e5e7eb;
    border-radius:8px;
    color:#111827;
    font-weight:600;
}

/* ADD HERE */

.breadcrumb{
    font-size:14px;
    margin-bottom:20px;
    color:#6b7280;
}

.breadcrumb a{
    color:#2563eb;
    text-decoration:none;
}

.page-header{
    margin-bottom:30px;
}

.category-label{
    display:inline-block;
    background:#eff6ff;
    color:#2563eb;
    padding:6px 12px;
    border-radius:20px;
    font-size:14px;
    font-weight:600;
    margin-bottom:12px;
}

.header-description{
    font-size:20px;
    color:#4b5563;
    margin-top:15px;
}    

@media(max-width:768px){

    .ingredient-page{
        padding:15px;
        font-size:18px;
    }

    .ingredient-page h1{
        margin-bottom:15px;
    }

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