.menu-hero {
    padding: 150px 25px 70px;
    text-align: center;
    background:
        linear-gradient(#fcf8f7, #fcf8f7),
        radial-gradient(circle at top, #fcf8f7, #fcf8f7 70%);
}

.menu-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    color: #ffd166;
    font-size: 70px;
    margin-bottom: 18px;
}

.menu-hero p {
    color: #e0cfc4;
    font-size: 18px;
}

.menu-page {
    padding: 50px 60px;
}

.search-box {
    max-width: 650px;
    margin: 0 auto 30px;
}

.search-box input {
    width: 100%;
    padding: 18px 24px;
    border-radius: 40px;
    border: 1px solid rgba(255,255,255,0.12);
    background: #1a1412;
    color: white;
    font-size: 16px;
    outline: none;
}

.category-buttons {
    position: sticky;
    top: 82px;
    z-index: 900;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding: 18px 10px;
    margin-bottom: 45px;
    background: rgba(15, 12, 11, 0.94);
    backdrop-filter: blur(14px);
    scrollbar-width: none;
}

.category-buttons::-webkit-scrollbar {
    display: none;
}

.category-buttons button {
    white-space: nowrap;
    background: #1a1412;
    color: #f7eee7;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 11px 20px;
    border-radius: 30px;
    cursor: pointer;
}

.category-buttons .active-category,
.active-category {
    background: #ffd166 !important;
    color: #111 !important;
}

.menu-products {
    max-width: 1250px;
    margin: auto;
}

.menu-category-section {
    scroll-margin-top: 160px;
    padding: 45px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.menu-section-heading {
    text-align: center;
    margin-bottom: 30px;
}

.menu-section-heading h2 {
    font-family: 'Cormorant Garamond', serif;
    color: #ffd166;
    font-size: 52px;
}

.section-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.product-card {
    background: #1a1412;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    overflow: hidden;
}

.product-info {
    padding: 24px;
}

.product-info.no-photo {
    min-height: 190px;
    display: flex;
    flex-direction: column;
}

.product-category {
    color: #e16e96;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.product-info h3 {
    color: #ffd166;
    font-size: 24px;
    margin-bottom: 12px;
}

.product-info p {
    color: #d8c9c0;
    line-height: 1.6;
}

.product-bottom {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-bottom strong {
    color: #fff;
    font-size: 22px;
}

.product-bottom button {
    background: #ffd166;
    color: #111;
    border: none;
    padding: 11px 22px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
}

.cart-box {
    max-width: 750px;
    margin: 50px auto 90px;
    padding: 30px;
    background: #15100e;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.08);
}

.cart-box h3 {
    color: #ffd166;
    margin-bottom: 20px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 12px;
    color: #f7eee7;
}

.quantity-controls {
    display: flex;
    gap: 8px;
    align-items: center;
}

.quantity-controls button {
    background: #ffd166;
    color: #111;
    border: none;
    padding: 6px 12px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
}

.cart-total {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.12);
    color: #ffd166;
}

#whatsappCheckout {
    display: inline-block;
    margin-top: 20px;
    background: #ffd166;
    color: #111;
    padding: 14px 26px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
}

@media (max-width: 900px) {
    .menu-page {
        padding: 40px 22px;
    }

    .menu-hero h1 {
        font-size: 48px;
    }

    .section-products {
        grid-template-columns: 1fr;
    }

    .menu-section-heading h2 {
        font-size: 40px;
    }

    .cart-item {
        flex-direction: column;
    }
}

/* SAKURA MENU THEME */

.menu-hero {
    background:
        linear-gradient(rgba(252,248,247,0.88), rgba(252,248,247,0.96)),
        radial-gradient(circle at top, #ffe1eb, #fcf8f7 70%);
}

.menu-hero h1,
.menu-section-heading h2,
.product-info h3,
.cart-box h3,
.cart-total {
    color: var(--accent);
}

.menu-hero p,
.product-info p,
.cart-item {
    color: var(--muted);
}

.search-box input,
.category-buttons button,
.product-card,
.cart-box {
    background: white;
    color: var(--text);
    border: 1px solid var(--border);
    box-shadow: 0 14px 35px rgba(225, 110, 150, 0.07);
}

.category-buttons {
    background: rgba(252, 248, 247, 0.94);
    border-bottom: 1px solid var(--border);
}

.category-buttons button {
    color: var(--text);
}

.category-buttons .active-category,
.active-category,
.product-bottom button,
.quantity-controls button,
#whatsappCheckout {
    background: var(--accent) !important;
    color: white !important;
}

.product-bottom strong {
    color: var(--text);
}

.menu-category-section {
    border-bottom: 1px solid var(--border);
}

.sticky-order-button {
    position: fixed;
    right: 24px;
    bottom: 24px;
    background: var(--accent);
    color: white;
    padding: 15px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    z-index: 2500;
    box-shadow: 0 14px 35px rgba(225, 110, 150, 0.28);
}

.sticky-order-button:hover {
    transform: translateY(-2px);
}
.search-box {
    position: relative;
}

.search-results {
    display: none;
    position: absolute;
    top: 62px;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(225, 110, 150, 0.14);
    overflow: hidden;
    z-index: 1200;
}

.search-result-item {
    padding: 14px 20px;
    color: var(--text);
    cursor: pointer;
    border-bottom: 1px solid var(--border);
}

.search-result-item:hover {
    background: var(--bg-soft);
    color: var(--accent);
}

.floating-search-button {
    position: fixed;
    right: 24px;
    bottom: 90px;
    background: white;
    color: var(--accent);
    border: 1px solid var(--border);
    padding: 15px 24px;
    border-radius: 40px;
    font-weight: 700;
    z-index: 2500;
    box-shadow: 0 14px 35px rgba(225, 110, 150, 0.18);
    cursor: pointer;
}

.floating-search-button:hover {
    transform: translateY(-2px);
}

.cart-box {
    position: fixed;
    left: -420px;
    top: 0;
    width: 380px;
    height: 100vh;
    margin: 0;
    z-index: 4000;
    overflow-y: auto;
    transition: left 0.35s ease;
}

.cart-box.cart-open {
    left: 0;
}

.cart-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.25);
    z-index: 3500;
}

.cart-overlay.overlay-open {
    display: block;
}

@media (max-width: 500px) {
    .cart-box {
        width: 88%;
        left: -90%;
    }

    .cart-box.cart-open {
        left: 0;
    }
}
/* =========================
   MOBILE MENU OPTIMIZATION
   ========================= */

@media (max-width: 768px) {

    .menu-hero {
        padding: 125px 18px 45px;
    }

    .menu-hero h1 {
        font-size: 44px;
        margin-bottom: 12px;
    }

    .menu-hero p {
        font-size: 15px;
        line-height: 1.5;
    }

    .menu-page {
        padding: 28px 14px;
    }

    .search-box {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .search-box input {
        padding: 15px 18px;
        font-size: 16px;
    }

    .category-buttons {
        top: 82px;
        margin: 0 -14px 28px;
        padding: 12px 14px;
        gap: 8px;
    }

    .category-buttons button {
        padding: 9px 15px;
        font-size: 13px;
        flex-shrink: 0;
    }

    .menu-category-section {
        padding: 30px 0;
        scroll-margin-top: 145px;
    }

    .menu-section-heading {
        margin-bottom: 22px;
    }

    .menu-section-heading h2 {
        font-size: 36px;
    }

    .section-products {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .product-card {
        border-radius: 18px;
    }

    .product-info {
        padding: 18px;
    }

    .product-info.no-photo {
        min-height: 0;
    }

    .product-info h3 {
        font-size: 21px;
        margin-bottom: 8px;
    }

    .product-info p {
        font-size: 14px;
        line-height: 1.5;
    }

    .product-category {
        font-size: 10px;
        margin-bottom: 6px;
    }

    .product-bottom {
        margin-top: 18px;
    }

    .product-bottom strong {
        font-size: 20px;
    }

    .product-bottom button {
        padding: 10px 18px;
        font-size: 14px;
    }

    .sticky-order-button,
    .floating-search-button {
        right: 14px;
        padding: 12px 17px;
        font-size: 13px;
    }

    .sticky-order-button {
        bottom: 14px;
    }

    .floating-search-button {
        bottom: 70px;
    }

    .cart-box {
        width: 92%;
        left: -95%;
        padding: 22px;
    }

    .cart-box.cart-open {
        left: 0;
    }

    .cart-item {
        flex-direction: column;
        gap: 10px;
    }

    .quantity-controls {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .search-drawer {
        width: 94%;
        padding: 16px;
    }

    .search-drawer.search-drawer-open {
        top: 82px;
    }
}