.menu-page {
    margin: 0;
    padding-bottom: 4rem;
}

.menu-hero {
    padding: 2.4rem 0 1.25rem;
}

.menu-hero-shell {
    max-width: 52rem;
}

.menu-hero h1 {
    margin: 0;
    font-family: var(--font-archivo-black);
    font-size: clamp(2.5rem, 6vw, 4.6rem);
    line-height: 1;
    text-wrap: balance;
    text-transform: uppercase;
    color: var(--text-color-body);
}

.menu-hero-text {
    max-width: 42rem;
    margin: 1rem 0 0;
    font-size: 1.04rem;
    line-height: 1.75;
    color: var(--text-color-body-muted);
}

.menu-nav-band {
    padding: 1.25rem 0 2.2rem;
}

.menu-nav-shell {
    display: grid;
    gap: 1.1rem;
}

/* Menu category grid */
.menu-section-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 8.75rem), 1fr));
    gap: 0.9rem;
}

/* Menu category card */
.menu-section-btn {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 10.5rem;
    gap: 0.75rem;
    padding: 1.25rem 0.95rem 1rem;
    border: 1.5px solid rgba(185, 134, 47, 0.4);
    border-radius: 1.25rem;
    background: linear-gradient(180deg, rgba(255, 252, 246, 0.98), rgba(251, 244, 232, 0.98));
    box-shadow: 0 12px 28px rgba(7, 50, 56, 0.08);
    color: #073238;
    text-decoration: none;
    text-align: center;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background-color 0.22s ease, color 0.22s ease;
}

.menu-dropdown-nav summary,
.menu-dropdown-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(185, 134, 47, 0.35);
    border-radius: 1rem;
    padding: 0.9rem 1rem;
    background: rgba(255, 248, 236, 0.88);
    color: #073238;
    text-decoration: none;
    font-family: var(--font-gothic-a1);
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

/* Active card */
.menu-section-btn.is-active,
.menu-dropdown-links a.is-active {
    color: #f4c86a;
    background: linear-gradient(180deg, rgba(7, 50, 56, 0.98), rgba(8, 44, 49, 0.98));
    border-color: rgba(244, 200, 106, 0.78);
    box-shadow: 0 16px 34px rgba(7, 50, 56, 0.18);
}

.menu-section-btn:hover,
.menu-dropdown-links a:hover,
.menu-dropdown-nav summary:hover {
    color: #073238;
    border-color: rgba(185, 134, 47, 0.58);
    box-shadow: 0 16px 32px rgba(7, 50, 56, 0.12);
    transform: translateY(-2px);
}

.menu-section-btn.is-active:hover {
    color: #f4c86a;
}

/* Icon styling */
.menu-category-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 999px;
    color: #b9862f;
    background: rgba(244, 200, 106, 0.12);
}

.menu-category-icon svg {
    width: 1.9rem;
    height: 1.9rem;
}

.menu-section-btn.is-active .menu-category-icon {
    color: #f4c86a;
    background: rgba(244, 200, 106, 0.12);
}

.menu-category-label {
    display: block;
    max-width: 12ch;
    font-family: var(--font-archivo-black);
    font-size: clamp(0.95rem, 1.6vw, 1.1rem);
    line-height: 1.08;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-wrap: balance;
}

.menu-category-divider {
    display: block;
    width: min(4.6rem, 60%);
    margin-top: auto;
    padding-top: 0.85rem;
    border-top: 2px dotted rgba(185, 134, 47, 0.72);
}

.menu-section-btn.is-active .menu-category-divider {
    border-top-color: rgba(244, 200, 106, 0.72);
}

/* Dropdown nav fallback */
.menu-dropdown-nav {
    display: none;
}

.menu-dropdown-nav summary {
    width: 100%;
    list-style: none;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(7, 50, 56, 0.08);
}

.menu-dropdown-nav summary::-webkit-details-marker {
    display: none;
}

.menu-dropdown-nav[open] .menu-dropdown-links {
    display: grid;
}

.menu-dropdown-links {
    display: none;
    gap: 0.75rem;
    margin-top: 0.85rem;
}

.menu-dropdown-links a {
    justify-content: flex-start;
    border-radius: 1rem;
}

/* ===== Mobile section hamburger nav start ===== */

.menu-mobile-section-nav {
    display: none;
    width: 100%;
    max-width: 520px;
    margin: 1.6rem auto 0;
    border: 1.5px solid rgba(185, 134, 47, 0.75);
    border-radius: 18px;
    background: rgba(255, 253, 246, 0.96);
    box-shadow: 0 14px 30px rgba(7, 50, 56, 0.1);
    overflow: hidden;
}

.menu-mobile-section-toggle {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 64px;
    padding: 0.9rem 1rem;
    color: #073238;
    font-family: var(--font-gothic-a1, "Gothic A1", sans-serif);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.menu-mobile-section-toggle::-webkit-details-marker {
    display: none;
}

.menu-mobile-section-label {
    display: inline-flex;
    align-items: center;
}

.menu-mobile-section-icon {
    width: 2.65rem;
    height: 2.65rem;
    border-radius: 14px;
    background: #073238;
    border: 1px solid rgba(244, 200, 106, 0.75);
    display: inline-flex;
    flex: 0 0 auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.28rem;
}

.menu-mobile-section-icon span {
    width: 1.15rem;
    height: 2px;
    border-radius: 999px;
    background: #f4c86a;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-mobile-section-nav[open] .menu-mobile-section-icon span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-mobile-section-nav[open] .menu-mobile-section-icon span:nth-child(2) {
    opacity: 0;
}

.menu-mobile-section-nav[open] .menu-mobile-section-icon span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.menu-mobile-section-links {
    display: none;
    gap: 0.45rem;
    padding: 0 1rem 1rem;
}

.menu-mobile-section-nav[open] .menu-mobile-section-links {
    display: grid;
}

.menu-mobile-section-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 44px;
    padding: 0.75rem 0.85rem;
    border-radius: 12px;
    background: rgba(248, 241, 223, 0.9);
    border: 1px solid rgba(185, 134, 47, 0.25);
    color: #073238;
    font-family: var(--font-gothic-a1, "Gothic A1", sans-serif);
    font-size: 0.88rem;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.menu-mobile-section-links a::after {
    content: "›";
    color: #b9862f;
    font-size: 1.35rem;
    line-height: 1;
}

.menu-mobile-section-links a:hover,
.menu-mobile-section-links a:focus-visible {
    background: #f4c86a;
    color: #073238;
}

/* ===== Mobile section hamburger nav end ===== */

.menu-content {
    padding-top: 0.25rem;
}

/* Responsive rules */
@media (min-width: 576px) {
    .menu-section-buttons {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1rem;
    }
}

@media (min-width: 992px) {
    .menu-section-buttons {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 1.1rem;
    }
}

.menu-layout {
    display: grid;
    gap: clamp(2rem, 4vw, 3rem);
    padding-bottom: 2px;
}

.menu-block {
    scroll-margin-top: 12rem;
    padding: clamp(1.5rem, 3vw, 2.25rem) 0;
    border-top: 1px solid var(--border-color-body);
}

.menu-block[hidden] {
    display: none !important;
}

.menu-block:first-child {
    border-top: 0;
}

.menu-block-heading {
    text-align: center;
    max-width: 40rem;
}

.menu-block-heading h2 {
    
    text-align: center;
    margin: 0;
    font-family: var(--font-archivo-black);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
    text-transform: uppercase;
    color: var(--text-color-body);
}

.menu-block-body {
    min-height: 11rem;
    margin-top: 1.25rem;
    padding: clamp(1rem, 2.5vw, 1.5rem) !important;
    border-radius: 1.35rem;
    border: 1px dashed rgba(7, 50, 56, 0.2);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.08)),
        rgba(255, 248, 236, 0.56);
    overflow: hidden;
}

.menu-note {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.25rem 0.75rem;
    background: rgba(244, 200, 106, 0.8);
    color: var(--text-color-btn);
    font-family: var(--font-gothic-a1);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.menu-note-card{
    position: relative;
    left: 50px;
    top: -12px;
    background: rgba(244, 200, 106, 0.8);
    color: var(--text-color-btn);
    font-family: var(--font-gothic-a1);
    font-size: .80rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
}

.card {
    border: 1px solid var(--border-color-body);
    border-radius: 1.25rem;
    padding: 1rem;
    background: var(--surface-color-body);
    box-shadow: var(--shadow-color-body);
    overflow: hidden;
    height: 100%;
}

.card-title {
    margin: 0 0 0.85rem;
    font-family: var(--font-impact);
    font-size: clamp(1.7rem, 3vw, 2.25rem);
    text-align: start;
    letter-spacing: 0.1em;
    line-height: 1;
    text-transform: uppercase;
    color: var(--text-color-body);
}

.card-img-top {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 0rem;
    display: block;
    margin-bottom: 1rem;
}

.card-body {
    padding: 0;
}

.card .row {
    align-items: start;
    margin-bottom: 0.45rem;

}

.sub-title-card {
    display: block;
    font-family: var(--font-gothic-a1);
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--accent-color-body);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--text-color-body);
}

.price-card {
    display: block;
    text-align: left;
    font-family: var(--font-gothic-a1);
    font-size: 1rem;
    font-weight: 800;
    color: var(--accent-color-body);
    white-space: nowrap;
}

.special-panel{
    padding: 1rem;
    border-radius: 1.25rem;
    background: var(--surface-color-body);
    margin: 0;

}

.card-text {
    margin: 0 0 1rem;
    color: var(--text-color-body-muted);
    font-style: italic;
    line-height: 1.7;
    font-size: 0.98rem;
}

.card .row:last-of-type {
    margin-bottom: 0;
}

.special-price{
    color: var(--accent-color-body);
    font-weight: 800;
}

/* ================================
   Menu Card System Start
================================ */

/* Shared menu-card system start */
/* Base card */
.menu-card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(152, 108, 47, 0.4);
    border-radius: 1.05rem;
    background: linear-gradient(180deg, rgba(255, 251, 244, 0.99), rgba(251, 244, 231, 0.98));
    box-shadow: 0 12px 28px rgba(7, 50, 56, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.menu-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(7, 50, 56, 0.14);
    border-color: rgba(152, 108, 47, 0.5);
}

/* Image */
.menu-card-img,
.menu-card .card-img-top {
    width: 100%;
    height: clamp(220px, 60vw, 285px);
    object-fit: cover;
    object-position: center;
    background: #ead6b8;
    margin-bottom: 0;
    display: block;
    border-bottom: 1px solid rgba(152, 108, 47, 0.24);
}

/* Body/content */
.menu-card-body,
.menu-card .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1rem;
    gap: 0.45rem;
    background: transparent;
}

.menu-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 0.1rem;
}

.menu-card-top > :first-child {
    flex: 1 1 auto;
    min-width: 0;
}

/* Title and divider */
.menu-card-title,
.menu-card .card-title,
.menu-card .sub-title-card {
    margin: 0;
    font-family: var(--font-bebas-neue, "Bebas Neue", sans-serif);
    font-size: clamp(1.5rem, 4vw, 2rem);
    line-height: 0.95;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #073238;
    overflow-wrap: anywhere;
    text-wrap: balance;
}

.menu-card .sub-title-card.menu-card-title {
    display: block;
    font-size: clamp(1.1rem, 3vw, 1.3rem);
}

.menu-card-divider {
    width: min(60%, 11rem);
    margin: 0.25rem 0 0.65rem;
    position: relative;
}

.menu-card-divider::before {
    content: "";
    display: block;
    border-top: 2px dotted rgba(183, 127, 49, 0.75);
}

.menu-card-divider span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 50%;
    background: rgba(183, 127, 49, 0.95);
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 0.18rem rgba(251, 244, 231, 0.95);
}

.menu-card-text,
.menu-card .card-text {
    margin: 0;
    font-family: var(--font-Lato, "Lato", sans-serif);
    font-size: 0.98rem;
    line-height: 1.45;
    color: rgba(7, 50, 56, 0.82);
    font-style: italic;
}

/* Price badge */
.price-card,
.menu-card-section-price,
.menu-card .price-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: max-content;
    flex-shrink: 0;
    padding: 0.48rem 0.82rem;
    border-radius: 0.8rem;
    background: #073238;
    color: #fffaf1;
    font-family: var(--font-gothic-a1, "Gothic A1", sans-serif);
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    letter-spacing: 0.02em;
    text-align: center;
    box-shadow: 0 8px 18px rgba(7, 50, 56, 0.15);
}

.price-card-small {
    padding: 0.38rem 0.68rem;
    font-size: 0.82rem;
    letter-spacing: 0.03em;
}

.menu-card-top .price-card,
.menu-card-top .menu-card-section-price {
    margin-left: auto;
    flex: 0 0 auto;
}

.menu-card-body > .price-card,
.menu-card-body > .menu-card-section-price,
.menu-card .card-body > .price-card,
.menu-card .card-body > .menu-card-section-price {
    margin-top: auto;
    align-self: flex-end;
}

/* Modifiers */
.menu-card-modifiers {
    display: grid;
    gap: 0.4rem;
    margin: auto 0 0;
    padding: 0.75rem 0 0;
    list-style: none;
    border-top: 1px dotted rgba(152, 108, 47, 0.35);
}

.menu-card-modifiers li {
    position: relative;
    padding-left: 0;
    font-size: 0.84rem;
    line-height: 1.48;
    color: rgba(7, 50, 56, 0.68);
}

.menu-card-modifiers li::before {
    content: none;
}

/* Special multi-price card support start */
/* Multi-price cards */
.menu-card-price-list {
    display: grid;
    gap: 0.55rem;
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px dotted rgba(152, 108, 47, 0.35);
}

.menu-card-price-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
}

.menu-card-price-label {
    flex: 1 1 auto;
    min-width: 0;
    font-family: var(--font-gothic-a1, "Gothic A1", sans-serif);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(7, 50, 56, 0.82);
    overflow-wrap: anywhere;
}

.menu-card-price-list .price-card,
.menu-card-multi-price .price-card {
    margin-top: 0;
    align-self: auto;
    font-size: 0.92rem;
}
/* Special multi-price card support end */

/* Featured card support */
.menu-card-featured {
    border-color: rgba(152, 108, 47, 0.58);
    box-shadow: 0 16px 34px rgba(7, 50, 56, 0.12);
}

.menu-card-featured .menu-card-body,
.menu-card-featured .card-body {
    padding-bottom: 1.15rem;
}

.menu-card-featured .menu-card-price-list {
    border-top-color: rgba(183, 127, 49, 0.48);
    gap: 0.6rem;
}



/* Responsive behavior */
@media (min-width: 768px) {
    .menu-card-img,
    .menu-card .card-img-top {
        height: clamp(220px, 22vw, 300px);
    }

    .menu-card-body,
    .menu-card .card-body {
        padding: 1.05rem 1.05rem 1.1rem;
    }
}

@media (max-width: 575.98px) {
    .menu-card-title,
    .menu-card .card-title,
    .menu-card .sub-title-card {
        font-size: clamp(1.28rem, 8vw, 1.7rem);
    }

    .menu-card-top {
        gap: 0.55rem;
    }

    .menu-card-price-row {
        gap: 0rem;
    }

    .menu-note-card{
        left: 35px;
    }
}

/* Shared menu-card system end */

/* ================================
   Menu Card System End
================================ */

.menu-section-divider
{
    width: 85%;
    margin: 0 auto;
}

.tacobtn{
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color-body);
    padding: 0.78rem 1.05rem;
    background: rgba(255, 248, 236, 0.88);
    color: var(--text-color-body);
    text-decoration: none;
    font-family: var(--font-gothic-a1);
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
    border-radius: 999px;
}
.tacobtn:hover{
    color: var(--text-color-btn);
    background: var(--bg-color-btn);
    border-color: rgba(244, 200, 106, 0.8);
    transform: translateY(-1px);
}

.btn-container {
    display: flex;
}

.jump-btn {
    width: 100%;
}

.menu-block-body > .row,
.menu-block-body .row.g-4,
.menu-block-body .row.g-3,
.menu-block-body .row.g-2 {
    row-gap: 1.5rem;
}

.menu-block-body.m-2 {
    margin-inline: 0 !important;
    margin-bottom: 0 !important;
}

.menu-block-body.p-2 {
    padding: clamp(1rem, 2.5vw, 1.5rem) !important;
}

.menu-classification-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color-body);
    border-radius: 0;
    padding: 0.78rem 1.05rem;
    background: rgba(255, 248, 236, 0.88);
    color: var(--text-color-body);
    text-decoration: none;
    font-family: var(--font-gothic-a1);
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.menu-classification-nav {
    margin-top: 1rem;
}

.menu-classification-toggle {
    display: none;
}

.menu-classification-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.menu-classification-nav:not([open]) .menu-classification-links {
    display: flex;
}

.menu-classification-btn:hover {
    color: var(--text-color-btn);
    background: var(--bg-color-btn);
    border-color: rgba(244, 200, 106, 0.8);
    transform: translateY(-1px);
}

.menu-classification-btn:active {
    color: var(--text-color-btn);
    background: var(--bg-color-btn);
    border-color: rgba(244, 200, 106, 0.8);
}

.menu-block-title{
    font-family: var(--font-archivo-black);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
    text-transform: uppercase;

    color: var(--text-color-body);
}

/* ===== Menu title decoration start ===== */

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    width: min(180px, 55vw);
    margin: 0.65rem auto 0;
    color: #b9862f;
}

.title-decoration::before,
.title-decoration::after {
    content: "";
    flex: 1;
    border-top: 2px dotted rgba(185, 134, 47, 0.75);
}

.title-decoration span {
    width: 0.45rem;
    height: 0.45rem;
    flex: 0 0 0.45rem;
    border-radius: 999px;
    background: #b9862f;
    box-shadow:
        -0.55rem 0 0 rgba(185, 134, 47, 0.45),
        0.55rem 0 0 rgba(185, 134, 47, 0.45);
}
.menu-card-titlee{
    text-align: center;
}

.taco-price-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 0.75rem 0;
  padding-top: 0.75rem;
  border-top: 1px dotted rgba(185, 134, 47, 0.7);
}

.taco-price-options .menu-card-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
  padding: 0.55rem 0.65rem;
  border: 1px solid rgba(185, 134, 47, 0.28);
  border-radius: 12px;
  background: rgba(248, 241, 223, 0.7);
  color: #073238;
  font-weight: 800;
}

.taco-price-options .price-card {
  padding: 0.35rem 0.55rem;
  font-size: 0.82rem;
}

@media (max-width: 360px) {
  .taco-price-options {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 575.98px) {
    .title-decoration {
        width: min(150px, 48vw);
        margin-top: 0.5rem;
    }
}

/* ===== Menu title decoration end ===== */

@media (max-width: 991.98px) {
    .menu-nav-band {
        top: 5.85rem;
    }
    .menu-note-card{
        left: 25px;
    }
}

@media (min-width: 576px) {
    .price-card {
        text-align: right;
    }
}

@media (max-width: 767.98px) {
    .menu-block-title{
        text-align: center;
    }
    .menu-page {
        padding-bottom: 3rem;
    }

    .menu-hero {
        padding: 2rem 0 1rem;
    }

    .menu-hero h1 {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .menu-nav-band {
        position: static;
        padding: 0.35rem 0 1rem;
        backdrop-filter: none;
    }

    .menu-section-buttons {
        display: none;
    }

    .menu-mobile-section-nav {
        display: block;
    }

    .menu-classification-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        list-style: none;
        cursor: pointer;
        border: 1px solid var(--border-color-body);
        border-radius: 999px;
        padding: 0.78rem 1.05rem;
        background: rgba(255, 248, 236, 0.88);
        color: var(--text-color-body);
        font-family: var(--font-gothic-a1);
        font-size: 0.86rem;
        font-weight: 800;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        transition: background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
    }

    .menu-classification-toggle::-webkit-details-marker {
        display: none;
    }

    .menu-classification-toggle::after {
        content: "";
        width: 1.15rem;
        height: 0.85rem;
        flex: 0 0 auto;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 14'%3E%3Cpath d='M1 1h16M1 7h16M1 13h16' stroke='%23073238' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
    }

    .menu-classification-nav[open] .menu-classification-toggle,
    .menu-classification-toggle:hover {
        color: var(--text-color-btn);
        background: var(--bg-color-btn);
        border-color: rgba(244, 200, 106, 0.8);
    }

    .menu-classification-links {
        display: none;
        margin-top: 0.85rem;
        flex-direction: column;
        gap: 0.75rem;
    }

    .menu-classification-nav[open] .menu-classification-links {
        display: flex;
    }

    .menu-classification-btn {
        width: 100%;
        border-radius: 1rem;
    }

    .menu-block {
        scroll-margin-top: 2rem;
        padding: 1.25rem 0 1.45rem;
    }

    .menu-block-body {
        min-height: 8rem;
        border-radius: 1rem;
    }


    .card {
        padding: 0.9rem;
        border-radius: 1rem;
    }

    .card-title {
        font-size: 1.5rem;
    }

    .card-img-top {
        border-radius: 0rem;
    }

    .sub-title-card,
    .price-card {
        font-size: 0.9rem;
    }

    .card-text {
        font-size: 0.95rem;
    }

    .btn-container,
    .tacobtn {
        width: 100%;
    }

    .tacobtn {
        justify-content: center;
    }
}

@media (min-width: 768px) {
    .menu-section-buttons {
        display: grid;
    }

    .menu-mobile-section-nav {
        display: none;
    }

    .menu-dropdown-nav {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .menu-card-img,
    .menu-card .card-img-top {
        aspect-ratio: auto;
        height: clamp(220px, 60vw, 285px);
    }

    .menu-card-body,
    .menu-card .card-body {
        padding: 0.95rem;
    }

    .menu-card-top {
        align-items: flex-start;
    }

    .menu-block-body .row > [class*="col-6"] {
        width: 100%;
        flex: 0 0 100%;
    }

    .menu-block-body .row > [class*="col-md-6"] {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .card .row {
        row-gap: 0.5rem;
    }
}


/* ===== Menu Float Widget Start ===== */

.food-menu-float {
  position: fixed !important;
  left: 1rem !important;
  bottom: 1rem !important;
  z-index: 999999 !important;
  display: none;
  margin: 0 !important;
  padding: 0 !important;
}

.food-menu-float-btn {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 3.75rem;
  height: 3.75rem;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(7, 50, 56, 0.18);
  background: #f4c86a;
  color: #073238;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  list-style: none;
}

.food-menu-float-btn::-webkit-details-marker {
  display: none;
}

.food-menu-float-btn::marker {
  content: "";
}

.food-menu-plate-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
}

.food-menu-plate-icon svg {
  width: 1.85rem;
  height: 1.85rem;
  display: block;
}

.food-menu-float-icon span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.food-menu-float[open] .food-menu-float-icon span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.food-menu-float[open] .food-menu-float-icon span:nth-child(2) {
  opacity: 0;
}

.food-menu-float[open] .food-menu-float-icon span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.food-menu-float-panel {
  position: absolute;
  left: 0;
  bottom: calc(100% + 0.85rem);
  width: min(82vw, 310px);
  max-height: 60vh;
  overflow-y: auto;
  padding: 0.75rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(7, 50, 56, 0.14);
  background: #fffaf0;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);

  opacity: 0;
  transform: translateY(1rem) scale(0.96);
  transform-origin: bottom left;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.food-menu-float[open] .food-menu-float-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.food-menu-float-panel a {
  display: block;
  width: 100%;
  margin-bottom: 0.45rem;
  padding: 0.78rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(7, 50, 56, 0.12);
  background: #ffffff;
  color: #073238;
  font-family: var(--font-gothic-a1, "Gothic A1", sans-serif);
  font-weight: 800;
  text-decoration: none;
}

.food-menu-float-panel a:last-child {
  margin-bottom: 0;
}

.food-menu-float-panel a:hover,
.food-menu-float-panel a:focus {
  background: #073238;
  color: #fffaf0;
}

@media (max-width: 768px) {
  .menu-nav-band {
    display: none !important;
  }

  .food-menu-float {
    display: block !important;
  }
}

/* ===== Menu Float Widget End ===== */