:root {
    --food-red: #b91c1c;
    --food-red-dark: #7f1d1d;
    --food-yellow: #facc15;
    --food-gold: #f59e0b;
    --food-ink: #21130c;
    --food-muted: #7c6255;
    --food-line: #f1d2a3;
    --food-paper: #fffaf0;
    --food-warm: #fff3cf;
    --food-cream: #fffef8;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #fff;
    color: var(--food-ink);
    font-family: roboto, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow-x: hidden;
}

.site-shell {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: clip;
}

.site-shell main {
    flex: 1 0 auto;
}

img,
iframe {
    max-width: 100%;
}

h1,
h2,
h3,
.food-brand,
.btn {
    font-family: futura-pt, roboto, ui-sans-serif, system-ui, sans-serif;
}

a {
    color: var(--food-red);
}

.btn {
    border-radius: 7px;
    font-weight: 800;
}

.btn i {
    margin-right: 0.35rem;
}

.btn-primary {
    background: var(--food-red);
    border-color: var(--food-red);
    color: #fff;
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--food-red-dark);
    border-color: var(--food-red-dark);
    color: #fff;
}

.btn-outline-primary {
    border-color: var(--food-red);
    color: var(--food-red);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background: var(--food-red);
    border-color: var(--food-red);
    color: #fff;
}

.food-topbar {
    background: linear-gradient(90deg, var(--food-red-dark), #a11818);
    color: #fff8df;
    font-size: 0.9rem;
}

.food-topbar-inner {
    align-items: center;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    min-height: 40px;
}

.topbar-contact,
.topbar-social,
.footer-social {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.topbar-contact {
    flex: 1 1 auto;
    min-width: 0;
}

.topbar-contact span {
    align-items: center;
    display: inline-flex;
}

.topbar-social {
    flex: 0 0 auto;
    justify-content: flex-end;
    margin-left: auto;
}

.topbar-social a,
.footer-social a {
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    height: 32px;
    justify-content: center;
    text-decoration: none;
    width: 32px;
}

.topbar-social a i,
.footer-social a i {
    color: inherit;
    margin-right: 0;
}

.topbar-social a:hover,
.footer-social a:hover {
    background: var(--food-yellow);
    border-color: var(--food-yellow);
    color: var(--food-red-dark);
}

.food-topbar i {
    color: var(--food-yellow);
    margin-right: 0.35rem;
}

.food-header {
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(250, 204, 21, 0.9);
    box-shadow: 0 18px 38px rgba(127, 29, 29, 0.13);
    backdrop-filter: blur(14px);
}

.food-header .navbar {
    min-height: 82px;
}

.food-brand {
    align-items: center;
    color: var(--food-red);
    display: inline-flex;
    gap: 0.7rem;
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: 0;
    min-width: 0;
}

.food-brand:hover {
    color: var(--food-red-dark);
}

.brand-mark {
    align-items: center;
    background: var(--food-red);
    border: 3px solid var(--food-yellow);
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    height: 42px;
    justify-content: center;
    width: 42px;
}

.brand-logo {
    border-radius: 50%;
    height: 58px;
    object-fit: contain;
    width: 58px;
}

.navbar-nav .nav-link {
    color: var(--food-ink);
    font-family: futura-pt, roboto, sans-serif;
    font-weight: 700;
    padding-left: 0.95rem;
    padding-right: 0.95rem;
    position: relative;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: var(--food-red);
}

.navbar-nav .nav-link.active::after,
.navbar-nav .nav-link:hover::after {
    background: var(--food-yellow);
    border-radius: 999px;
    bottom: 0.2rem;
    content: "";
    height: 4px;
    left: 0.95rem;
    position: absolute;
    right: 0.95rem;
}

.food-actions {
    margin-left: 1rem;
}

.food-hero,
.page-hero {
    background:
        radial-gradient(circle at 82% 18%, rgba(250, 204, 21, 0.32), transparent 21rem),
        linear-gradient(90deg, rgba(70, 14, 9, 0.96), rgba(185, 28, 28, 0.68), rgba(250, 204, 21, 0.08)),
        url("../images/alpha-biryani-hero.png") center / cover no-repeat;
    color: #fff;
}

.food-hero {
    min-height: 620px;
}

.hero-inner {
    align-items: center;
    display: flex;
    min-height: 620px;
    padding: 4rem 0;
}

.food-home-slider {
    background: var(--food-red-dark);
}

.food-home-slider .carousel-item {
    min-height: 620px;
    position: relative;
}

.food-home-slider .carousel-item > img {
    display: block;
    height: 620px;
    object-fit: cover;
    width: 100%;
}

.hero-overlay {
    align-items: center;
    background: linear-gradient(90deg, rgba(91, 19, 13, 0.95), rgba(185, 28, 28, 0.55), rgba(250, 204, 21, 0.03));
    bottom: 0;
    color: #fff;
    display: flex;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.hero-copy {
    max-width: 720px;
}

.eyebrow {
    color: var(--food-yellow);
    display: inline-block;
    font-size: 0.78rem;
    font-family: futura-pt, roboto, sans-serif;
    font-weight: 800;
    letter-spacing: 0;
    margin-bottom: 0.65rem;
    text-transform: uppercase;
}

.hero-copy h1,
.page-hero h1 {
    font-size: 5.2rem;
    font-family: futura-pt, roboto, sans-serif;
    font-weight: 800;
    line-height: 0.96;
    margin-bottom: 1rem;
}

.hero-copy p,
.page-hero p {
    color: #fff6df;
    font-size: 1.2rem;
    max-width: 620px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.page-hero {
    padding: 5.5rem 0 6.5rem;
}

.page-hero h1 {
    font-size: 4.1rem;
}

.food-strip {
    background: var(--food-yellow);
    color: var(--food-red-dark);
}

.food-strip-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, 1fr);
    padding: 1rem 0;
}

.food-strip-grid div {
    align-items: center;
    display: flex;
    font-weight: 900;
    gap: 0.65rem;
}

.food-strip-grid i {
    font-size: 1.4rem;
}

.section-band {
    padding: 4.75rem 0;
}

.bg-warm {
    background: #fff8e5;
}

.section-heading {
    align-items: flex-end;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.section-heading.compact {
    margin-bottom: 1rem;
}

.section-heading h2,
.about-preview h2,
.about-page h2,
.contact-panel h2 {
    color: var(--food-ink);
    font-size: 2.1rem;
    font-weight: 950;
    margin: 0;
}

.menu-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.menu-notes {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 1.25rem;
}

.menu-notes .price-note {
    font-size: 0.9rem;
    margin-bottom: 0;
    padding: 0.75rem 0.9rem;
}

.menu-notes .menu-effective-note {
    grid-column: 1 / -1;
}

.menu-effective-note {
    align-items: center;
    background: #fff;
    border: 1px solid var(--food-line);
    border-left: 5px solid var(--food-gold);
    border-radius: 8px;
    color: var(--food-ink);
    display: flex;
    flex-wrap: wrap;
    font-size: 0.95rem;
    font-weight: 500;
    gap: 0.65rem;
    margin: 0;
    padding: 0.85rem 1rem;
}

.menu-effective-note i {
    color: var(--food-red);
    flex: 0 0 auto;
    font-size: 1.15rem;
}

.menu-effective-note .formatted-date {
    color: var(--food-red-dark);
    font-weight: 650;
}

.home-menu-effective {
    margin-top: 0.75rem;
    max-width: 760px;
}

.menu-layout {
    align-items: flex-start;
}

.menu-sidebar {
    align-self: flex-start;
    z-index: 4;
}

.menu-category-panel {
    background: #fff;
    border: 1px solid var(--food-line);
    border-radius: 8px;
    box-shadow: 0 16px 34px rgba(127, 29, 29, 0.08);
    max-height: calc(100vh - 112px);
    overflow-y: auto;
    padding: 0.75rem;
    position: sticky;
    top: 92px;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.menu-category-panel.is-fixed {
    left: var(--menu-category-left, auto);
    position: fixed;
    top: var(--menu-category-top, 92px);
    width: var(--menu-category-width, auto);
}

.menu-category-panel.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    visibility: hidden;
}

.menu-category-heading {
    color: var(--food-red-dark);
    display: block;
    font-family: futura-pt, roboto, sans-serif;
    font-size: 0.82rem;
    font-weight: 900;
    margin: 0 0 0.65rem;
    text-transform: uppercase;
}

.menu-category-list {
    display: grid;
    gap: 0.45rem;
}

.menu-category-link {
    align-items: center;
    appearance: none;
    background: #fffaf0;
    border: 1px solid transparent;
    border-radius: 7px;
    color: var(--food-ink);
    cursor: pointer;
    display: flex;
    font: inherit;
    gap: 0.65rem;
    min-height: 56px;
    padding: 0.48rem 0.55rem;
    text-align: left;
    text-decoration: none;
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
    width: 100%;
}

.menu-category-link:hover,
.menu-category-link:focus,
.menu-category-link.is-active {
    background: #fff3cf;
    border-color: rgba(185, 28, 28, 0.18);
    color: var(--food-red-dark);
    text-decoration: none;
}

.menu-category-link:hover,
.menu-category-link:focus {
    transform: translateX(3px);
}

.menu-category-thumb {
    align-items: center;
    background:
        linear-gradient(135deg, #fff3cf, #ffd966);
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 8px 18px rgba(127, 29, 29, 0.12);
    color: var(--food-red);
    display: inline-flex;
    flex: 0 0 42px;
    height: 42px;
    justify-content: center;
    overflow: hidden;
    width: 42px;
}

.menu-category-thumb img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.menu-category-copy {
    display: grid;
    gap: 0.12rem;
    min-width: 0;
}

.menu-category-copy strong {
    font-size: 0.9rem;
    font-weight: 900;
    line-height: 1.15;
}

.menu-content {
    min-width: 0;
}

.menu-category-section {
    margin-bottom: 2.1rem;
    scroll-margin-top: 100px;
}

.menu-category-section:last-child {
    margin-bottom: 0;
}

.menu-category-header {
    align-items: flex-end;
    border-bottom: 1px solid rgba(241, 210, 163, 0.85);
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-bottom: 0.95rem;
    padding-bottom: 0.65rem;
}

.menu-category-header .eyebrow {
    margin-bottom: 0.35rem;
}

.menu-category-header h2 {
    color: var(--food-ink);
    font-size: 1.55rem;
    font-weight: 950;
    line-height: 1.1;
    margin: 0;
}

.featured-badge {
    background: var(--food-red);
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1;
    padding: 0.45rem 0.7rem;
    white-space: nowrap;
}

.menu-content .menu-grid {
    gap: 1rem;
}

.menu-content .food-card {
    box-shadow: 0 12px 26px rgba(127, 29, 29, 0.08);
}

.menu-content .food-card:hover {
    box-shadow: 0 16px 32px rgba(127, 29, 29, 0.14);
}

.menu-content .food-card-media {
    aspect-ratio: 16 / 9;
}

.menu-content .food-card-body {
    padding: 0.78rem;
}

.menu-content .food-card-body span {
    font-size: 0.72rem;
    margin-bottom: 0.5rem;
    padding: 0.28rem 0.5rem;
}

.menu-content .food-card-body h3 {
    font-size: 1.02rem;
    line-height: 1.2;
    margin-bottom: 0.65rem;
}

.menu-content .food-included-items {
    font-size: 0.78rem;
    margin-bottom: 0.6rem;
}

.menu-content .food-card-body strong,
.menu-content .new-price {
    font-size: 0.98rem;
    padding: 0.45rem 0.68rem;
}

.menu-content .old-price {
    font-size: 0.86rem;
    padding: 0.38rem 0.56rem;
}

.menu-content .price-stack {
    gap: 0.35rem;
}

.category-tabs {
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(241, 210, 163, 0.9);
    border-radius: 8px;
    box-shadow: 0 20px 42px rgba(127, 29, 29, 0.08);
    display: flex;
    gap: 0.85rem;
    justify-content: center;
    margin: 0 0 2rem;
    overflow-x: auto;
    padding: 1rem;
    scrollbar-width: thin;
}

.category-tab {
    align-items: center;
    background: transparent;
    border: 0;
    color: var(--food-ink);
    display: inline-flex;
    flex: 0 0 auto;
    flex-direction: column;
    font-family: futura-pt, roboto, sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    gap: 0.65rem;
    min-width: 112px;
    padding: 0.35rem 0.35rem 0.45rem;
    position: relative;
    text-align: center;
}

.category-tab-photo {
    align-items: center;
    background: #fff;
    border: 5px solid #fff;
    border-radius: 50%;
    box-shadow:
        0 16px 34px rgba(127, 29, 29, 0.16),
        inset 0 0 0 1px rgba(250, 204, 21, 0.35);
    color: var(--food-red);
    display: inline-flex;
    height: 104px;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    width: 104px;
}

.category-tab-photo img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.category-tab-photo i {
    font-size: 2.35rem;
}

.all-tab-photo {
    background:
        radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.25), transparent 1.8rem),
        linear-gradient(135deg, var(--food-red), var(--food-gold));
    color: #fff;
}

.category-tab.active .category-tab-photo,
.category-tab:hover .category-tab-photo,
.category-tab:focus .category-tab-photo {
    border-color: var(--food-yellow);
    box-shadow:
        0 20px 40px rgba(185, 28, 28, 0.24),
        0 0 0 4px rgba(250, 204, 21, 0.24);
    transform: translateY(-4px) scale(1.02);
}

.category-tab.active > span:last-child {
    background: var(--food-red);
    border-radius: 999px;
    color: #fff;
    padding: 0.18rem 0.65rem;
}

.menu-tab-content {
    min-height: 320px;
}

.food-card {
    background:
        linear-gradient(180deg, #fff 0%, #fffdf7 100%);
    border: 1px solid rgba(241, 210, 163, 0.95);
    border-radius: 8px;
    box-shadow: 0 18px 38px rgba(127, 29, 29, 0.08);
    overflow: hidden;
    position: relative;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    min-width: 0;
}

.food-card::before {
    background: linear-gradient(90deg, var(--food-red), var(--food-yellow));
    content: "";
    height: 4px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
}

.food-card:hover {
    box-shadow: 0 22px 46px rgba(127, 29, 29, 0.15);
    transform: translateY(-4px);
}

.food-card-media {
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, #fff3cf, #ffd966);
    overflow: hidden;
}

.food-card-media img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.food-placeholder {
    align-items: center;
    color: var(--food-red);
    display: flex;
    font-size: 3rem;
    height: 100%;
    justify-content: center;
}

.food-card-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.05rem;
}

.food-card-body span {
    background: #fff3cf;
    border: 1px solid rgba(250, 204, 21, 0.65);
    border-radius: 999px;
    color: var(--food-red-dark);
    display: inline-flex;
    font-size: 0.84rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.7rem;
    padding: 0.35rem 0.6rem;
}

.food-card-body h3 {
    color: var(--food-ink);
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 0.85rem;
}

.food-included-items {
    color: var(--food-muted);
    font-size: 0.9rem;
    font-weight: 800;
    list-style: none;
    margin: -0.25rem 0 0.8rem;
    padding: 0;
}

.food-included-items li + li {
    margin-top: 0.25rem;
}

.food-included-items li::before {
    color: var(--food-red);
    content: "+";
    font-weight: 950;
    margin-right: 0.35rem;
}

.food-card-body strong {
    align-items: center;
    background: var(--food-red);
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(185, 28, 28, 0.2);
    color: #fff;
    display: inline-flex;
    font-size: 1.18rem;
    font-weight: 900;
    line-height: 1;
    padding: 0.55rem 0.85rem;
}

.price-stack {
    align-items: baseline;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.old-price {
    background: #f6ead8;
    border-radius: 999px;
    color: #8a6a5a;
    display: inline-flex;
    font-weight: 800;
    line-height: 1;
    padding: 0.45rem 0.7rem;
    text-decoration: line-through;
}

.new-price {
    background: var(--food-red);
    color: #fff;
    box-shadow: 0 10px 24px rgba(185, 28, 28, 0.2);
}

.price-note {
    align-items: center;
    background: #fff;
    border: 1px solid var(--food-line);
    border-left: 5px solid var(--food-red);
    border-radius: 8px;
    color: var(--food-muted);
    display: flex;
    font-weight: 850;
    gap: 0.65rem;
    margin-bottom: 2rem;
    padding: 0.9rem 1rem;
}

.price-note i {
    color: var(--food-red);
    font-size: 1.15rem;
}

.formatted-date {
    display: inline-block;
}

.date-ordinal {
    font-size: 0.62em;
    line-height: 0;
    margin-left: 0.04em;
    position: relative;
    top: -0.42em;
}

.footer-credit .formatted-date {
    font-weight: inherit;
}

.about-preview,
.about-page,
.contact-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
}

.about-preview p,
.about-page p,
.contact-panel p {
    color: var(--food-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 1rem 0 1.35rem;
}

.info-panel,
.contact-panel,
.map-panel,
.empty-state {
    background: #fff;
    border: 1px solid var(--food-line);
    border-radius: 8px;
    box-shadow: 0 16px 36px rgba(127, 29, 29, 0.08);
}

.info-panel {
    align-self: start;
    display: grid;
    gap: 0.7rem;
    padding: 1.5rem;
}

.info-panel strong {
    color: var(--food-red);
    font-size: 1.45rem;
}

.info-panel span {
    color: var(--food-muted);
    font-weight: 750;
}

.menu-category + .menu-category {
    margin-top: 3rem;
}

.contact-panel {
    padding: 2rem;
}

.contact-form-panel .form-control,
.contact-form-panel .form-select {
    border-color: var(--food-line);
    border-radius: 7px;
}

.contact-form-panel .form-label {
    color: var(--food-ink);
    font-weight: 850;
}

.captcha-card {
    align-items: center;
    background:
        linear-gradient(135deg, rgba(250, 204, 21, 0.32), rgba(185, 28, 28, 0.08)),
        #fff;
    border: 1px dashed var(--food-red);
    border-radius: 8px;
    display: flex;
    height: 58px;
    justify-content: center;
    overflow: hidden;
    user-select: none;
}

.captcha-refresh-btn {
    align-items: center;
    background: transparent;
    border: 0;
    color: var(--food-red);
    display: inline-flex;
    font-weight: 850;
    gap: 0.45rem;
    margin-top: 0.55rem;
    padding: 0;
    text-decoration: none;
}

.captcha-refresh-btn:hover,
.captcha-refresh-btn:focus {
    color: var(--food-red-dark);
    text-decoration: none;
}

.captcha-refresh-btn i {
    font-size: 1.15rem;
    margin-right: 0;
}

.captcha-image {
    display: block;
    height: 72px;
    pointer-events: none;
    user-select: none;
    width: 190px;
}

.contact-list {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.contact-list div {
    align-items: flex-start;
    display: flex;
    gap: 0.85rem;
}

.contact-list i {
    color: var(--food-red);
    font-size: 1.35rem;
}

.contact-list span,
.contact-list a {
    color: var(--food-ink);
    font-weight: 800;
}

.contact-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.35rem;
}

.contact-social a {
    align-items: center;
    background: #fff8e5;
    border: 1px solid var(--food-line);
    border-radius: 7px;
    color: var(--food-red);
    display: inline-flex;
    font-family: futura-pt, roboto, ui-sans-serif, system-ui, sans-serif;
    font-size: 0.9rem;
    font-weight: 900;
    gap: 0.45rem;
    min-height: 38px;
    padding: 0.45rem 0.7rem;
    text-decoration: none;
}

.contact-social a:hover,
.contact-social a:focus {
    background: var(--food-red);
    border-color: var(--food-red);
    color: #fff;
}

.contact-social i {
    font-size: 1.1rem;
}

.map-panel {
    min-height: 360px;
    overflow: hidden;
    position: relative;
}

.contact-map-panel {
    min-height: 320px;
}

.map-panel iframe,
.mapbox-map {
    border: 0;
    height: 100%;
    min-height: 360px;
    width: 100%;
}

.mapbox-map {
    background: #fff8e5;
    position: relative;
}

.mapbox-map .map-placeholder {
    border: 0;
    box-shadow: none;
}

.mapboxgl-canvas {
    outline: 0;
}

.mapbox-logo-marker {
    align-items: center;
    appearance: none;
    background: #fff;
    border: 3px solid var(--food-yellow);
    border-radius: 50%;
    box-shadow:
        0 14px 30px rgba(127, 29, 29, 0.28),
        0 0 0 5px rgba(255, 255, 255, 0.76);
    color: var(--food-red);
    cursor: pointer;
    display: flex;
    height: 58px;
    justify-content: center;
    overflow: hidden;
    padding: 4px;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    width: 58px;
}

.mapbox-logo-marker:hover,
.mapbox-logo-marker:focus {
    box-shadow:
        0 18px 36px rgba(127, 29, 29, 0.34),
        0 0 0 6px rgba(250, 204, 21, 0.28);
    outline: 0;
    transform: scale(1.06);
}

.mapbox-logo-marker img {
    border-radius: 50%;
    display: block;
    height: 100%;
    object-fit: contain;
    width: 100%;
}

.mapbox-logo-marker span {
    font-family: futura-pt, roboto, sans-serif;
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1;
}

.mapboxgl-popup-content {
    border-radius: 8px;
    color: var(--food-ink);
    font: 600 0.88rem/1.35 roboto, ui-sans-serif, system-ui, sans-serif;
    padding: 0.75rem 0.85rem;
}

.mapboxgl-popup-close-button,
.mapboxgl-popup-close-button:hover,
.mapboxgl-popup-close-button:focus,
.mapboxgl-popup-close-button:active,
.mapboxgl-popup-close-button:focus-visible {
    appearance: none;
    background: transparent;
    border: 0;
    box-shadow: none;
    color: var(--food-muted);
    outline: 0;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

.mapbox-popup-card {
    display: grid;
    gap: 0.5rem;
    min-width: 210px;
    max-width: 260px;
    user-select: text;
}

.mapbox-popup-title {
    color: var(--food-ink);
    display: block;
    font-size: 0.98rem;
    font-weight: 900;
}

.mapbox-popup-line {
    align-items: flex-start;
    color: var(--food-muted);
    display: flex;
    gap: 0.45rem;
}

.mapbox-popup-line i {
    color: var(--food-red);
    flex: 0 0 auto;
    font-size: 0.95rem;
    margin-top: 0.08rem;
}

.mapbox-popup-line a {
    background: transparent;
    border: 0;
    box-shadow: none;
    color: var(--food-red);
    font-weight: 850;
    outline: 0;
    padding: 0;
    text-decoration: none;
    user-select: text;
}

.mapbox-popup-line a:hover,
.mapbox-popup-line a:focus {
    text-decoration: underline;
}

.mapbox-popup-whatsapp-number {
    background: transparent;
    border: 0;
    box-shadow: none;
    color: var(--food-red);
    cursor: text;
    display: inline;
    font-weight: 850;
    outline: 0;
    padding: 0;
    user-select: text;
    -webkit-user-select: text;
}

.mapbox-popup-address {
    white-space: pre-line;
}

.map-placeholder {
    align-items: center;
    color: var(--food-muted);
    display: flex;
    flex-direction: column;
    font-weight: 850;
    gap: 0.8rem;
    height: 100%;
    justify-content: center;
    min-height: 360px;
    padding: 2rem;
    text-align: center;
}

.map-placeholder i {
    color: var(--food-red);
    font-size: 3rem;
}

.empty-state {
    color: var(--food-muted);
    font-weight: 850;
    grid-column: 1 / -1;
    padding: 2rem;
    text-align: center;
}

.food-footer {
    background: var(--food-red-dark);
    color: #ffe9bd;
    padding: 3rem 0 1.5rem;
}

.food-footer h2,
.food-footer h3 {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 950;
}

.food-footer a {
    color: #fff;
    text-decoration: none;
}

.food-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.food-footer li + li {
    margin-top: 0.4rem;
}

.footer-contact-list {
    display: grid;
    gap: 0.75rem;
}

.footer-contact-item {
    align-items: flex-start;
    color: #ffe9bd;
    display: flex;
    gap: 0.7rem;
    min-width: 0;
}

.footer-contact-item > i {
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(250, 204, 21, 0.28);
    border-radius: 50%;
    color: var(--food-yellow);
    display: inline-flex;
    flex: 0 0 34px;
    height: 34px;
    justify-content: center;
    margin-top: 0.05rem;
    width: 34px;
}

.footer-contact-copy {
    display: grid;
    gap: 0.08rem;
    min-width: 0;
}

.footer-contact-label {
    color: #ffd76a;
    font-family: futura-pt, roboto, ui-sans-serif, system-ui, sans-serif;
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.2;
    text-transform: uppercase;
}

.footer-contact-value {
    color: #fff;
    font-weight: 800;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.food-footer a.footer-contact-value:hover,
.food-footer a.footer-contact-value:focus {
    color: var(--food-yellow);
}

.footer-social {
    gap: 0.5rem;
    margin-top: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    padding-top: 1.25rem;
    text-align: center;
}

.footer-credit {
    color: #ffe9bd;
    font-weight: 400;
    line-height: 1.6;
}

.food-footer .footer-maintainer {
    color: #fde68a;
    font-weight: 400;
}

.food-footer .footer-maintainer:hover,
.food-footer .footer-maintainer:focus {
    color: #fff7d6;
    text-decoration: underline;
}

.whatsapp-float {
    align-items: center;
    background: #25d366;
    border: 0;
    border-radius: 50%;
    bottom: 22px;
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.32);
    color: #fff;
    display: inline-flex;
    font-size: 1.6rem;
    height: 56px;
    justify-content: center;
    position: fixed;
    right: 22px;
    text-decoration: none;
    width: 56px;
    z-index: 1040;
}

.whatsapp-float:hover,
.whatsapp-float:focus {
    color: #fff;
    transform: translateY(-1px);
}

.whatsapp-chat-panel {
    background: #fff;
    border: 1px solid var(--food-line);
    border-radius: 8px;
    bottom: 90px;
    box-shadow: 0 24px 56px rgba(33, 19, 12, 0.22);
    padding: 1rem;
    position: fixed;
    right: 22px;
    width: min(320px, calc(100vw - 44px));
    z-index: 1041;
}

.whatsapp-chat-header {
    align-items: center;
    color: var(--food-ink);
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.whatsapp-chat-header strong {
    font-family: futura-pt, roboto, sans-serif;
}

.whatsapp-chat-header button {
    align-items: center;
    background: #fff3cf;
    border: 0;
    border-radius: 50%;
    color: var(--food-red);
    display: inline-flex;
    height: 32px;
    justify-content: center;
    width: 32px;
}

.whatsapp-chat-panel textarea {
    border: 1px solid var(--food-line);
    border-radius: 7px;
    display: block;
    margin-bottom: 0.75rem;
    min-height: 96px;
    padding: 0.75rem;
    resize: vertical;
    width: 100%;
}

@media (max-width: 991.98px) {
    .food-header .navbar {
        min-height: 70px;
    }

    .navbar-collapse {
        padding: 0.65rem 0 1rem;
    }

    .navbar-nav .nav-link {
        padding: 0.7rem 0;
    }

    .navbar-nav .nav-link.active::after,
    .navbar-nav .nav-link:hover::after {
        left: 0;
        right: auto;
        width: 48px;
    }

    .food-actions {
        margin: 1rem 0 0;
    }

    .food-hero,
    .hero-inner,
    .food-home-slider .carousel-item,
    .food-home-slider .carousel-item > img {
        min-height: 520px;
        height: 520px;
    }

    .food-strip-grid,
    .about-preview,
    .about-page,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .menu-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .menu-category-panel {
        max-height: calc(100vh - 102px);
        top: 82px;
    }

    .category-tabs {
        justify-content: flex-start;
    }
}

@media (max-width: 767.98px) {
    .food-topbar {
        display: none;
    }

    .food-topbar-inner,
    .topbar-contact,
    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .section-band {
        padding: 3rem 0;
    }

    .food-home-slider .carousel-item,
    .food-home-slider .carousel-item > img,
    .food-hero,
    .hero-inner {
        height: 460px;
        min-height: 460px;
    }

    .hero-overlay {
        background: linear-gradient(90deg, rgba(91, 19, 13, 0.96), rgba(185, 28, 28, 0.68));
    }

    .page-hero {
        padding: 4rem 0 4.5rem;
    }

    .hero-copy h1,
    .page-hero h1 {
        font-size: 2.55rem;
    }

    .hero-copy p,
    .page-hero p {
        font-size: 1.05rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .menu-notes {
        grid-template-columns: 1fr;
    }

    .menu-category-panel {
        max-height: none;
        overflow-y: visible;
        top: 70px;
    }

    .menu-category-panel {
        padding: 0.65rem;
    }

    .menu-category-heading {
        display: none;
    }

    .menu-category-list {
        display: flex;
        gap: 0.5rem;
        overflow-x: auto;
        padding-bottom: 0.1rem;
        scrollbar-width: thin;
    }

    .menu-category-link {
        flex: 0 0 172px;
        min-height: 54px;
    }

    .menu-category-link:hover,
    .menu-category-link:focus {
        transform: none;
    }

    .menu-category-section {
        margin-bottom: 1.55rem;
        scroll-margin-top: 148px;
    }

    .menu-category-header {
        align-items: flex-start;
        margin-bottom: 0.75rem;
    }

    .menu-category-header h2 {
        font-size: 1.35rem;
    }

    .menu-content .food-card {
        display: grid;
        grid-template-columns: 112px minmax(0, 1fr);
    }

    .menu-content .food-card-media {
        aspect-ratio: auto;
        height: 100%;
        min-height: 122px;
    }

    .menu-content .food-card-body {
        justify-content: center;
        min-width: 0;
    }

    .category-tabs {
        gap: 0.65rem;
        margin-left: -0.75rem;
        margin-right: -0.75rem;
        padding: 0.85rem 0.75rem;
    }

    .category-tab {
        min-width: 92px;
    }

    .category-tab-photo {
        height: 82px;
        width: 82px;
    }

    .section-heading h2,
    .about-preview h2,
    .about-page h2,
    .contact-panel h2 {
        font-size: 1.75rem;
    }

    .contact-panel {
        padding: 1.35rem;
    }

    .map-panel,
    .map-panel iframe,
    .mapbox-map,
    .map-placeholder {
        min-height: 300px;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 575.98px) {
    .food-topbar {
        font-size: 0.82rem;
    }

    .food-topbar-inner {
        gap: 0.65rem;
        padding-bottom: 0.65rem;
        padding-top: 0.65rem;
    }

    .topbar-contact,
    .topbar-social {
        gap: 0.55rem;
    }

    .topbar-social {
        margin-left: 0;
    }

    .food-brand {
        font-size: 1.15rem;
        gap: 0.5rem;
    }

    .brand-logo,
    .brand-mark {
        height: 46px;
        width: 46px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions .btn,
    .food-actions .btn {
        width: 100%;
    }

    .price-note {
        align-items: flex-start;
        font-size: 0.92rem;
    }

    .food-card-body h3 {
        font-size: 1.1rem;
    }

    .menu-content .food-card {
        grid-template-columns: 96px minmax(0, 1fr);
    }

    .menu-content .food-card-media {
        min-height: 116px;
    }

    .menu-content .food-card-body h3 {
        font-size: 0.98rem;
    }

    .menu-category-link {
        flex-basis: 156px;
    }

    .whatsapp-float {
        bottom: 16px;
        height: 52px;
        right: 16px;
        width: 52px;
    }

    .whatsapp-chat-panel {
        bottom: 78px;
        right: 12px;
        width: calc(100vw - 24px);
    }
}
