body {
    margin: 0;
    padding: 0;
    background-color: #FAFAFA;
    font-family: 'Poppins', sans-serif;
    color: #333;
}

.menu-hero {
    text-align: center;
    padding: 60px 20px;
}

.menu-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 10px;
}

.menu-hero p {
    color: #777;
    font-size: 1.1rem;
}

.category-container {
    background: white;
    padding: 20px 60px;
    border-top: 1px solid #E5E5E5;
    border-bottom: 1px solid #E5E5E5;
}

.category-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 5px;
    scrollbar-width: none;
}

.category-scroll::-webkit-scrollbar {
    display: none;
}

.menu-tools {
    position: sticky;
    top: 70px;
    z-index: 20;
    background: #FAFAFA;
    padding: 22px 60px;
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #E5E5E5;
}

.menu-search-box {
    width: 100%;
    max-width: 520px;
    background: white;
    border: 1px solid #D9D9D9;
    border-radius: 14px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-search-box input {
    width: 100%;
    border: none;
    outline: none;
    padding: 15px 0;
    font-family: inherit;
}

.category-select {
    display: none;
    width: 100%;
    padding: 15px 16px;
    border-radius: 14px;
    border: 1px solid #D9D9D9;
    font-family: inherit;
    background: white;
}

.category-container {
    position: sticky;
    top: 135px;
    z-index: 19;
    background: white;
    padding: 18px 60px;
    border-top: 1px solid #E5E5E5;
    border-bottom: 1px solid #E5E5E5;
}

.category-scroll {
    max-width: 1300px;
    margin: 0 auto;
}

.cat-btn.active {
    background: #181818;
    color: white;
    border-color: #181818;
}

.no-results {
    display: none;
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.no-results h3 {
    font-family: 'Playfair Display', serif;
    color: #111;
    font-size: 2rem;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .menu-tools {
        top: 70px;
        padding: 18px 22px;
        flex-direction: column;
    }

    .category-container {
        display: none;
    }

    .category-select {
        display: block;
    }
}

.cat-btn {
    white-space: nowrap;
    padding: 10px 20px;
    border-radius: 10px;
    border: 1px solid #D9D9D9;
    background: white;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s;
}

.cat-btn:hover,
.cat-btn.active {
    background: #F3F3F3;
    border-color: #181818;
    color: #181818;
}

/* Menu Grid */
.menu-section {
    padding: 50px 60px;
    background: white;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.menu-card {
    border: 0.5px solid #D9D9D9;
    border-radius: 12px;
    overflow: hidden;
    background: #FFF;
    transition: transform 0.2s;
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.image-box {
    width: 100%;
    height: 250px;
    background: #f4f4f4;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-details {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.item-details h3 {
    font-size: 1rem;
    margin: 0;
}

.price {
    font-weight: 700;
    color: #181818;
}

/* Footer */
.footer {
    background: black;
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.footer-logo {
    width: 60px;
    margin-bottom: 15px;
}

.footer hr {
    border: 0.1px solid #333;
    margin: 30px auto;
    width: 80%;
}

.branch-select {
    width: 230px;
    padding: 15px 16px;
    border-radius: 14px;
    border: 1px solid #D9D9D9;
    font-family: inherit;
    background: white;
    cursor: pointer;
}

.popular-badge {
    display: inline-block;
    background: #F3F3F3;
    color: #181818;
    border: 1px solid #D9D9D9;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .branch-select {
        width: 100%;
    }
}