html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
    max-width: 100%;
}

/* HEADER */
.menu-header {
    height: 56px;
    background: linear-gradient(90deg, #1b7f2a, #2fa84f);
    color: white;
}

/* CATEGORY */
.category-card {
    width: 100%;
    min-height: 120px;
    background-size: cover;
    background-position: center;
    border-radius: 14px;
    position: relative;
    overflow: hidden;
}

.category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.category-card span {
    position: relative;
    z-index: 1;
    color: white;
    font-weight: 600;
    font-size: 17px;
}

/* MENU LIST IMAGE */
.menu-img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
}

/* PRODUCT */
.product-image {
    height: 220px;
    object-fit: cover;
}

/* TOUCH */
body {
    touch-action: manipulation;
    font-size: 16px;
    background-color: #f5f5f5;
}

/* HAMBURGER TOUCH AREA */
.menu-touch-area {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
}

/* OVERLAY */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: none;
    z-index: 999;
}

    .menu-overlay.active {
        display: block;
    }

/* MENU PANEL */
.menu-panel {
    background: white;
    border-radius: 0;
    animation: slideDown .25s ease;
}

/* PANEL HEADER */
.menu-panel-header {
    height: 56px;
    background: linear-gradient(90deg, #1b7f2a, #2fa84f);
    color: white;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 16px;
}

/* MENU LINKS */
.menu-panel a {
    display: block;
    padding: 16px;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

/* ANIMATION */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}
