:root {
    --accent: #0e324a;
    --muted: rgb(42, 69, 87)
    --bg: #fafafa;
    --card: #fff;
    --shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    --radius: 14px;
    --max-width: 1100px;
    --gap: 16px;
    --veg-color: #28a745;
    /* green */
    --nonveg-color: #e53935;
    /* red */
    --pill-active-bg: var(--accent);
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%;
    margin: 0;
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    background: radial-gradient(#fff, #0e324a)
}

a {
    color: inherit
}

img {
    max-width: 100%;
    display: block
}

.container {
    max-width: var(--max-width);
    margin: 20px auto;
    padding: 16px
}

header.site-header {
    background: var(--card);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 14px;
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    gap: 12px;
    align-items: center
}

.brand img.logo {
    width: 84px;
    height: 84px;
    object-fit: cover;
    border-radius: 12px;
    background: #eee
}

.brand .title {
    display: flex;
    flex-direction: column;
    line-height: 1
}

.brand h1 {
    font-size: 18px;
    margin: 0
}

.brand small {
    font-size: 13px;
    color: var(--muted)
}

.header-actions {
    display: flex;
    gap: 12px;
    align-items: center
}

.contact-pill {
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid #f1f1f1;
    background: rgba(255, 255, 255, 0.8);
    font-size: 14px
}

.header-actions a {
    text-decoration: none;
    color: var(--accent);
    font-weight: 600
}

main {
    margin-top: 18px;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: var(--gap)
}

.menu-card {
    background: var(--card);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 16px
}

.menu-type {
    margin-bottom: 18px
}

.menu-type h2 {
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    border-bottom: 1px dashed #eee;
    padding-bottom: 8px
}

.subtype {
    margin: 10px 0;
    padding: 8px;
    border-radius: 10px;
    background: linear-gradient(180deg, #fff, #fff);
    border: 1px solid #faf0f0;
}

.subtype-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: default;
    user-select: none;
}

.subtype-left {
    display: flex;
    gap: 10px;
    align-items: center;
}

.subtype h3 {
    margin: 0;
    font-size: 15px;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 8px
}

.subtype .sub-meta {
    font-size: 13px;
    color: var(--muted)
}

/* small arrow on right for subtype toggle */
.sub-toggle {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    border: 1px solid #eee;
    cursor: pointer;
    transition: transform .18s;
    background: #fff;
}

.dish-list {
    margin-top: 8px
}

.dish {
    border-radius: 10px;
    overflow: hidden;
    margin: 8px 0;
    border: 1px solid #f3f3f3;
    background: linear-gradient(180deg, #fff, #fff)
}

.dish-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px;
    cursor: pointer;
    width: 100%;
    background: transparent;
    border: 0;
    font-size: 15px
}

.dish-button .left {
    display: flex;
    align-items: center;
    gap: 12px
}

.dish-indicator {
    width: 12px;
    height: 12px;
    border-radius: 2px;
    display: inline-block;
    margin-right: 6px;
    border: 1px solid rgba(0, 0, 0, 0.06)
}

.dish-button .dish-name {
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px
}

.dish-button .dish-meta {
    color: var(--muted);
    font-size: 13px
}

.arrow {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    border: 1px solid #eee;
    transition: transform .25s
}

.dish-panel {
    display: none;
    padding: 12px;
    border-top: 1px solid #f4f4f4;
    background: linear-gradient(180deg, #fbfbfb, #fff)
}

.dish-panel.active {
    display: block
}

.carousel {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: #eee;
    min-height: 160px
}

.carousel img {
    width: 100%;
    display: block;
    object-fit: cover;
    height: 220px
}

.carousel .dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 8px;
    display: flex;
    gap: 6px
}

.carousel .dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    background: #fff;
    opacity: .6
}

.carousel .price-badge {
    position: absolute;
    right: 10px;
    top: 10px;
    background: var(--card);
    border-radius: 10px;
    padding: 8px 10px;
    box-shadow: var(--shadow);
    font-weight: 700
}

.contact-list {
    font-size: 14px;
    color: var(--muted)
}

.contact-list div {
    margin-bottom: 6px
}

footer.site-footer {
    margin-top: 18px;
    background: #0e324ade;
    text-align: center;
    color: white;
    font-size: 13px;
    border-radius: 20px;
    padding: 10px
}

/* Half/Full pill */
.price-toggle {
    display: flex;
    gap: 8px;
    margin-top: 10px
}

.pill {
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid #eee;
    cursor: pointer;
    font-weight: 700;
    user-select: none;
    background: #fff
}

.pill.active {
    background: var(--pill-active-bg);
    color: #fff;
    border-color: var(--pill-active-bg)
}

.single-price {
    font-weight: 800;
    font-size: 18px;
    margin-top: 10px
}

/* Search bar styles (modern rounded) */
.menu-search-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 14px;
    gap: 10px
}

.menu-search {
    width: 100%;
    max-width: 820px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border-radius: 999px;
    padding: 10px 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f0f0;
}

.menu-search input {
    border: 0;
    outline: 0;
    font-size: 15px;
    width: 100%;
}

.menu-search .icon {
    width: 18px;
    height: 18px;
    opacity: .7
}

/* Filter buttons */
.filter-row {
    display: flex;
    gap: 8px;
    align-items: center
}

.filter-btn {
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid #eee;
    background: #fff;
    cursor: pointer;
    font-weight: 700;
}

.filter-btn.active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent)
}

.no-results {
    padding: 20px;
    text-align: center;
    color: var(--muted);
    font-weight: 600
}

/* responsive */
@media (max-width:980px) {
    main {
        grid-template-columns: 1fr
    }
}

@media (max-width:420px) {
    .brand img.logo {
        width: 64px;
        height: 64px
    }

    .arrow {
        width: 28px;
        height: 28px
    }

    .sub-toggle {
        width: 26px;
        height: 26px
    }
}
