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;
}
