.restaurant-container {
    width: 92%;
    max-width: 1700px;
    margin: 0 auto;
}

.restaurant-hero {
    position: relative;
    min-height: 460px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: end;
}

.restaurant-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.72));
}

.restaurant-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 80px 15px 60px;
}

.restaurant-badge {
    display: inline-block;
    padding: 8px 14px;
    background: #f3c15d;
    color: #111;
    border-radius: 999px;
    font-weight: 700;
    margin-bottom: 15px;
}

.restaurant-hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 12px;
}

.restaurant-hero-content p {
    max-width: 700px;
    font-size: 18px;
    opacity: .95;
}

.restaurant-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 20px;
    font-size: 15px;
}

.restaurant-page {
    background: #f6f8fb;
}

.card-box {
    background: #fff;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 12px 35px rgba(16, 24, 40, .08);
}

.section-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.section-head h2 {
    margin: 0;
    font-size: 26px;
    font-weight: 800;
    color: #111827;
}

.section-head span {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, #f3c15d, transparent);
}

.menu-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.menu-category-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border: 1px solid #dcb35b;
    color: #9a6c0d;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    background: #fff9eb;
    transition: .25s ease;
}

.menu-category-btn:hover,
.menu-category-btn.active {
    background: #f3c15d;
    color: #111;
    text-decoration: none;
}

.menu-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.menu-card-image {
    height: 220px;
    overflow: hidden;
    background: #f2f4f7;
}

.menu-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.menu-card:hover .menu-card-image img {
    transform: scale(1.06);
}

.menu-card-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.menu-card-body h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 800;
    color: #111827;
}

.menu-card-body p {
    margin: 0;
    color: #667085;
    min-height: 48px;
}

.menu-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-price .old-price {
    color: #98a2b3;
    text-decoration: line-through;
    font-size: 15px;
}

.menu-price strong {
    color: #b77910;
    font-size: 24px;
    font-weight: 800;
}

.menu-add-form {
    margin-top: auto;
}

.menu-add-row {
    display: flex;
    gap: 10px;
}

.qty-input {
    width: 82px;
    border: 1px solid #d0d5dd;
    border-radius: 12px;
    padding: 10px 12px;
    font-weight: 700;
}

.menu-add-btn {
    flex: 1;
    border: none;
    background: #f3c15d;
    color: #111;
    font-weight: 800;
    border-radius: 12px;
    padding: 12px 14px;
    transition: .25s ease;
}

.menu-add-btn:hover {
    background: #e6b146;
}

.sticky-cart {
    position: sticky;
    top: 110px;
}

.cart-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.cart-head h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 800;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 20px;
}

.cart-item {
    display: flex;
    gap: 12px;
    padding-bottom: 14px;
    border-bottom: 1px solid #eef2f6;
}

.cart-item-image {
    width: 78px;
    height: 78px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-content {
    flex: 1;
}

.cart-item-content h4 {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 800;
}

.cart-item-meta {
    color: #667085;
    font-size: 14px;
}

.cart-item-total {
    margin-top: 6px;
    font-weight: 800;
    color: #111827;
}

.remove-btn {
    margin-top: 8px;
    border: none;
    background: transparent;
    color: #d92d20;
    padding: 0;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.cart-summary {
    padding: 16px 0;
    border-top: 1px solid #eef2f6;
    border-bottom: 1px solid #eef2f6;
    margin-bottom: 18px;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
}

.checkout-btn {
    border: none;
    background: #111827;
    color: #fff;
    border-radius: 14px;
    padding: 14px 18px;
    font-weight: 800;
}

.empty-box {
    padding: 18px;
    border-radius: 16px;
    background: #f8fafc;
    color: #475467;
    text-align: center;
}

@media (max-width: 1199px) {
    .sticky-cart {
        position: static;
        top: auto;
    }
}

@media (max-width: 768px) {
    .restaurant-hero {
        min-height: 360px;
    }

    .restaurant-hero-content h1 {
        font-size: 32px;
    }

    .menu-add-row {
        flex-direction: column;
    }

    .qty-input {
        width: 100%;
    }

    .restaurant-container {
        width: 96%;
    }

    .card-box {
        padding: 18px;
        border-radius: 18px;
    }
}