/*====================================================
MASALAKRAFT MENU-INNER.CSS (UPDATED TO BRAND PALETTE)
====================================================*/

:root {
    --bg-white: #FFFFFF;
    --bg-light-warm: #FCF8F5;
    --brand-brown: #8B3A12;
    --brand-dark: #5C250A;
    --text-main: #3D2920;
}

/*====================================================
MENU WRAPPER & CARD
====================================================*/
.menu-container {
    max-width: 1200px;
    margin: 70px auto;
    padding: 0 20px;
}

.menu-card {
    background: var(--bg-white);
    border: 1px solid rgba(139, 58, 18, 0.15);
    border-radius: 18px;
    padding: 45px;
    box-shadow: 0 10px 30px rgba(139, 58, 18, 0.05);
}

/*====================================================
CATEGORY TITLE
====================================================*/
.menu-section { margin-bottom: 70px; }

.menu-category-title {
    font-family: 'Playfair Display', serif;
    font-size: 35px;
    color: var(--brand-brown);
    text-align: center;
    margin: 0 0 45px;
    position: relative;
    letter-spacing: 1px;
}

.menu-category-title::after {
    content: "";
    width: 90px;
    height: 2px;
    background: var(--brand-brown);
    display: block;
    margin: 18px auto 0;
    opacity: 0.45;
}

/*====================================================
MENU ITEMS GRID
====================================================*/
.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 60px;
}

.menu-item {
    padding-bottom: 22px;
    border-bottom: 1px dashed rgba(139, 58, 18, 0.2);
}

.menu-item:last-child { border-bottom: none; }

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 10px;
}

.menu-item-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.4;
}

.menu-item-price {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--brand-brown);
    white-space: nowrap;
    text-align: right;
}

.menu-item-desc {
    margin-top: 8px;
    color: var(--text-main);
    font-size: 15px;
    line-height: 1.8;
}

/*====================================================
ALLERGEN BADGE & SIDES
====================================================*/
.allergen-badge {
    display: inline-block;
    margin-left: 10px;
    padding: 3px 8px;
    font-size: 11px;
    font-weight: 600;
    color: var(--brand-brown);
    border: 1px solid rgba(139, 58, 18, 0.35);
    border-radius: 30px;
    background: rgba(139, 58, 18, 0.08);
}

.side-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(139, 58, 18, 0.1);
}

.side-title { font-size: 17px; color: var(--text-main); font-weight: 500; }
.side-price { font-size: 17px; font-weight: 700; color: var(--brand-brown); }

/*====================================================
ALLERGEN & DISCLAIMER
====================================================*/
.allergen-key-container {
    margin-top: 60px;
    padding: 30px;
    background: var(--bg-light-warm);
    border: 1px solid rgba(139, 58, 18, 0.1);
    border-radius: 15px;
    color: var(--text-main);
}

.allergen-key-container strong { color: var(--brand-brown); }

.menu-disclaimer {
    margin-top: 30px;
    padding: 25px;
    background: var(--bg-light-warm);
    border-left: 4px solid var(--brand-brown);
    border-radius: 10px;
    color: var(--text-main);
}

/*====================================================
PAGE HERO
====================================================*/
.page-hero {
    background: url("../images/back-img-mk-n.png") center center no-repeat;
    background-size: cover;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 45px;
    color: var(--brand-brown);
    margin: 0;
}

.page-hero a {
    margin-top: 25px;
    padding: 12px 30px;
    background: var(--brand-brown);
    color: #FFFFFF;
    border-radius: 5px;
    transition: .3s;
    font-weight: 600;
}

.page-hero a:hover { background: var(--brand-dark); transform: translateY(-2px); }