/* ============================================================================
   ALMA GASTRO E BAR — Cardápio Digital v3.1
   Layout : Cover banner + logo circular + chips de categoria
   Paleta : Branco / Preto / Bordô #661017
   Fontes : Brother 1816 (display) · Open Sans (corpo)
   ============================================================================ */

:root {
    --white       : #FFFFFF;
    --black       : #000000;
    --bordeaux    : #661017;
    --bordeaux-2  : #4d0c11;
    --gold        : #C9A227;
    --gray-100    : #F9F9F9;
    --gray-200    : #F0F0F0;
    --gray-300    : #E0E0E0;
    --gray-400    : #BDBDBD;
    --gray-text   : #444444;
    --gray-muted  : #666666;

    --font-display: 'Brother 1816', 'Montserrat', sans-serif;
    --font-body   : 'Open Sans', sans-serif;

    --content-max : 960px;
}

@font-face {
    font-family: 'Brother 1816';
    src: url('../fonts/brother-medium.otf') format('opentype');
    font-weight: 500;
    font-display: swap;
}
@font-face {
    font-family: 'Brother 1816';
    src: url('../fonts/brother-book.otf') format('opentype');
    font-weight: 400;
    font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    background: var(--white);
    color: var(--black);
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img { display: block; max-width: 100%; }
button { font-family: inherit; }
a { color: inherit; }

/* =====================================================================
   RESTAURANT HEADER — Cover + Logo circular + Info + Actions
   ===================================================================== */
.restaurant-header {
    position: relative;
    margin-bottom: 0;
}

/* Banner de capa — usa cor primária da unidade (bordô / preto) com grade branca */
.cover-banner {
    width: 100%;
    height: 220px;
    background: var(--bordeaux);
    position: relative;
    overflow: hidden;
}
.cover-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Grade decorativa branca quando sem foto */
.cover-banner.no-photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
    background-size: 40px 40px;
}
/* Vinheta sutil pra dar profundidade */
.cover-banner.no-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,.4) 100%);
    pointer-events: none;
}

/* Bloco logo + info, com o logo sobreposto à capa */
.restaurant-info {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-top: -52px;
    position: relative;
    z-index: 2;
}

/* Logo circular sobreposto ao banner */
.restaurant-logo {
    flex-shrink: 0;
    width: 104px;
    height: 104px;
    border-radius: 50%;
    background: var(--bordeaux);
    border: 4px solid var(--white);
    box-shadow: 0 4px 12px rgba(0,0,0,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.restaurant-logo img {
    width: 70%;
    height: auto;
    object-fit: contain;
}

/* Nome + ações */
.restaurant-meta {
    flex: 1;
    padding-top: 60px;
    min-width: 0;
}

.restaurant-name {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 500;
    letter-spacing: .015em;
    color: var(--black);
    line-height: 1.25;
    margin-bottom: 8px;
    text-transform: none;
}

/* Ícones de ação (home/maps, instagram, whatsapp, busca) */
.restaurant-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 6px;
}

.action-btn {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    background: transparent;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background .15s ease, color .15s ease, transform .15s ease;
    -webkit-tap-highlight-color: transparent;
}
.action-btn:hover,
.action-btn:active {
    background: var(--gray-100);
    color: var(--bordeaux);
}
.action-btn svg {
    width: 20px;
    height: 20px;
}

/* "Avaliar ★" link em dourado discreto */
.restaurant-rate {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
}
.restaurant-rate .star { color: var(--gold); }
.restaurant-rate:hover { text-decoration: underline; }


/* =====================================================================
   CATEGORIAS — Section sticky no topo; .cats-inner centraliza tudo.
   ===================================================================== */
.cats-section {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--white);
    margin: 28px 0 0;
    padding: 14px 0 12px;
    transition: box-shadow .2s ease, padding .2s ease;
}

.cats-section.is-stuck {
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    padding-top: 10px;
    padding-bottom: 10px;
}

/* Wrapper interno que CENTRALIZA conteúdo da seção (independente do sticky) */
.cats-inner {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 20px;
}

.cats-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 12px;
}

.cats-title {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 500;
    color: var(--bordeaux);
    letter-spacing: .01em;
}

.cats-show-all {
    background: none;
    border: none;
    color: var(--gray-muted);
    font-size: 12.5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    -webkit-tap-highlight-color: transparent;
    transition: color .15s ease;
}
.cats-show-all:hover { color: var(--bordeaux); }
.cats-show-all svg { width: 14px; height: 14px; }

/* Pills: sempre 1 linha com scroll horizontal. Em desktop, setas controlam o scroll. */
.cats-pills-wrap {
    position: relative;
}

.cats-pills {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-behavior: smooth;
    padding: 4px 0 6px;
    justify-content: flex-start;
}
.cats-pills::-webkit-scrollbar { display: none; }

/* Quando o conteúdo cabe inteiro, centraliza */
.cats-pills.fits {
    justify-content: center;
}

/* Setas de navegação (visíveis só quando há overflow + em desktop) */
.cats-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--gray-300);
    color: var(--bordeaux);
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    -webkit-tap-highlight-color: transparent;
    transition: background .15s ease, border-color .15s ease;
}
.cats-arrow:hover {
    background: var(--gray-100);
    border-color: var(--bordeaux);
}
.cats-arrow svg { width: 16px; height: 16px; }
.cats-arrow.visible { display: flex; }
.cats-arrow-left  { left: -12px; }
.cats-arrow-right { right: -12px; }

/* Em mobile, esconde as setas (usa swipe natural) */
@media (max-width: 679px) {
    .cats-arrow { display: none !important; }
}

.cat-pill {
    flex-shrink: 0;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    padding: 9px 18px;
    background: var(--white);
    color: var(--bordeaux);
    border: 1.5px solid var(--bordeaux);
    border-radius: 999px;
    cursor: pointer;
    white-space: nowrap;
    transition: background .15s ease, color .15s ease;
    -webkit-tap-highlight-color: transparent;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
}
.cat-pill:hover {
    background: rgba(102,16,23,.05);
}
.cat-pill.active {
    background: var(--bordeaux);
    color: var(--white);
}

/* Identidade visual por unidade:
   - Itapema  → bordô (cor primária default)
   - Gramado  → preto (sobriedade alpina)
   Sobrescreve o --bordeaux do body inteiro pra Gramado, atingindo logo,
   pills, preço, cover, FAB, links, etc. */
body[data-rest="gramado"] {
    --bordeaux: #000;
    --bordeaux-2: #222;
}


/* =====================================================================
   BOTTOM SHEET — "Ver todas" categorias / Busca
   ===================================================================== */
.sheet-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
}
.sheet-backdrop.open {
    opacity: 1;
    pointer-events: auto;
}

.sheet {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 201;
    background: var(--white);
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -8px 24px rgba(0,0,0,.15);
    transform: translateY(100%);
    transition: transform .3s cubic-bezier(.2,1,.3,1);
    max-height: 85vh;
    display: flex;
    flex-direction: column;
}
.sheet.open {
    transform: translateY(0);
}
.sheet-handle {
    width: 40px;
    height: 4px;
    background: var(--gray-300);
    border-radius: 2px;
    margin: 10px auto 8px;
}
.sheet-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 20px 12px;
    border-bottom: 1px solid var(--gray-200);
}
.sheet-title {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 500;
    color: var(--black);
}
.sheet-close {
    background: none;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
}
.sheet-close:hover { background: var(--gray-100); }

.sheet-body {
    overflow-y: auto;
    padding: 8px 0 24px;
    flex: 1;
}

.sheet-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 20px;
    background: none;
    border: none;
    border-bottom: 1px solid var(--gray-200);
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--black);
    text-align: left;
    -webkit-tap-highlight-color: transparent;
}
.sheet-list-item:hover {
    background: var(--gray-100);
}
.sheet-list-item .count {
    font-size: 12px;
    color: var(--gray-muted);
}

/* Campo de busca dentro do sheet */
.search-wrap {
    padding: 16px 20px;
    border-bottom: 1px solid var(--gray-200);
}
.search-input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--gray-300);
    border-radius: 8px;
    font-size: 15px;
    font-family: var(--font-body);
    transition: border-color .15s ease;
    -webkit-appearance: none;
}
.search-input:focus {
    outline: none;
    border-color: var(--bordeaux);
}

.search-results {
    padding: 8px 0;
}
.search-empty {
    text-align: center;
    color: var(--gray-muted);
    font-size: 13px;
    padding: 40px 20px;
    font-style: italic;
}
.search-result-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    border-bottom: 1px solid var(--gray-200);
    background: none;
    border-left: none;
    border-right: none;
    border-top: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.search-result-card:hover { background: var(--gray-100); }
.search-result-thumb {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: var(--gray-200);
    border-radius: 6px;
    overflow: hidden;
}
.search-result-thumb img { width: 100%; height: 100%; object-fit: cover; }
.search-result-info { flex: 1; min-width: 0; }
.search-result-name {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 2px;
}
.search-result-cat {
    font-size: 11px;
    color: var(--gray-muted);
}


/* =====================================================================
   MENU PRINCIPAL
   ===================================================================== */
.menu {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 20px;
}

.category-section {
    padding: 40px 0 32px;
    border-bottom: 1px solid var(--gray-200);
    scroll-margin-top: 80px;
}
.category-section:last-child {
    border-bottom: none;
}

.category-header {
    margin-bottom: 24px;
}

.category-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    color: var(--bordeaux);
    letter-spacing: .02em;
    line-height: 1.2;
}

.category-subtitle {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gray-muted);
    margin-top: 4px;
}

.items-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}


/* =====================================================================
   CARD DO PRATO
   ===================================================================== */
.dish-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--gray-200);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .5s ease, transform .5s ease, background .15s ease;
    -webkit-tap-highlight-color: transparent;
}
.dish-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.dish-card:last-child {
    border-bottom: none;
}
.dish-card[data-has-photo="1"] { cursor: pointer; }
.dish-card[data-has-photo="1"]:hover { background: rgba(102,16,23,.025); }
.dish-card[data-has-photo="1"]:active { background: rgba(102,16,23,.05); }

.dish-photo-wrap {
    flex-shrink: 0;
    width: 88px;
    height: 88px;
    overflow: hidden;
    background: var(--gray-100);
    border-radius: 8px;
}
.dish-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.dish-photo-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
}
.dish-photo-placeholder span {
    font-family: var(--font-display);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: .3em;
    color: var(--gray-300);
}
.dish-card.no-photo .dish-photo-wrap {
    display: none;
}

.dish-body {
    flex: 1;
    min-width: 0;
}

.dish-name {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .02em;
    color: var(--black);
    line-height: 1.3;
    margin-bottom: 4px;
}

.dish-desc {
    font-family: var(--font-body);
    font-size: 12.5px;
    color: var(--gray-text);
    line-height: 1.5;
    margin-bottom: 8px;
}

.dish-price {
    font-family: var(--font-display);
    font-size: 14.5px;
    font-weight: 500;
    color: var(--bordeaux);
}
.price-currency {
    font-size: 11px;
    opacity: .85;
    margin-right: 2px;
}
.price-cents {
    font-size: 11px;
    opacity: .75;
}


/* =====================================================================
   HIERARQUIA BEBIDAS (país / região / volume)
   ===================================================================== */
.volume-header {
    grid-column: 1 / -1;
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: .35em;
    text-transform: uppercase;
    text-align: center;
    color: var(--bordeaux);
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gray-200);
}

.country-block {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 36px 0 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--bordeaux);
}
.country-flag {
    width: 28px;
    height: 21px;
    object-fit: contain;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,.15);
    flex-shrink: 0;
}
.country-name {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 17px;
    color: var(--bordeaux);
}

.region-block {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 22px 0 4px;
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--gray-muted);
}
.region-block::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--gray-200);
}
.region-pin {
    width: 11px;
    height: 14px;
    object-fit: contain;
    opacity: .75;
}

.dish-score {
    font-size: 10px;
    letter-spacing: 1px;
    color: var(--gray-muted);
    margin-left: 6px;
    font-weight: 400;
}

.vol-badge {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 8px;
    background: var(--bordeaux);
    color: #fff;
    font-size: 9px;
    letter-spacing: 1.5px;
    font-weight: 600;
    border-radius: 10px;
    vertical-align: middle;
}


/* =====================================================================
   LOADING & ERROR STATES + SKELETON
   ===================================================================== */
.menu-skeleton {
    padding: 8px 0 0;
}
.skel-section {
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-200);
}
.skel-title {
    width: 140px;
    height: 16px;
    margin: 12px 0 20px;
    background: var(--gray-200);
    border-radius: 4px;
    animation: skelPulse 1.4s ease-in-out infinite;
}
.skel-card {
    display: flex;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-200);
}
.skel-card:last-child { border-bottom: none; }
.skel-photo {
    flex-shrink: 0;
    width: 88px;
    height: 88px;
    background: var(--gray-200);
    border-radius: 8px;
    animation: skelPulse 1.4s ease-in-out infinite;
}
.skel-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}
.skel-line {
    height: 10px;
    background: var(--gray-200);
    border-radius: 4px;
    animation: skelPulse 1.4s ease-in-out infinite;
}
.skel-line.w30 { width: 30%; }
.skel-line.w70 { width: 70%; }
.skel-line.w90 { width: 90%; }
@keyframes skelPulse {
    0%, 100% { opacity: 1; }
    50%      { opacity: .55; }
}

.menu-error {
    text-align: center;
    padding: 80px 24px;
}
.menu-error p {
    font-size: 13px;
    color: var(--gray-text);
    margin-bottom: 20px;
}
.btn-retry {
    font-family: var(--font-display);
    font-size: 10px;
    letter-spacing: .25em;
    text-transform: uppercase;
    padding: 12px 24px;
    background: var(--bordeaux);
    color: var(--white);
    border: none;
    cursor: pointer;
    border-radius: 4px;
}
.empty-msg {
    text-align: center;
    padding: 32px 0;
    font-size: 12px;
    color: var(--gray-muted);
    font-style: italic;
}


/* =====================================================================
   LIGHTBOX
   ===================================================================== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(0,0,0,.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
    cursor: pointer;
}
.lightbox.open {
    opacity: 1;
    visibility: visible;
}
.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
}
.lightbox-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255,255,255,.1);
    border: none;
    color: var(--white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.lightbox-close:hover { background: rgba(255,255,255,.2); }
.lightbox-caption {
    position: absolute;
    bottom: 32px;
    left: 0;
    right: 0;
    text-align: center;
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: rgba(255,255,255,.7);
    padding: 0 24px;
}


/* =====================================================================
   FAB voltar ao topo
   ===================================================================== */
.back-to-top {
    position: fixed;
    right: 16px;
    bottom: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: var(--bordeaux);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(0,0,0,.25);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: opacity .3s ease, transform .3s ease, background .15s ease;
    z-index: 90;
    -webkit-tap-highlight-color: transparent;
}
.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.back-to-top:hover,
.back-to-top:active {
    background: var(--bordeaux-2);
}
@supports (padding: max(0px)) {
    .back-to-top {
        bottom: max(20px, env(safe-area-inset-bottom));
    }
}


/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer {
    margin-top: 40px;
    padding: 0 24px 60px;
    border-top: 1px solid var(--gray-200);
    padding-top: 40px;
}
.footer-inner {
    max-width: var(--content-max);
    margin: 0 auto;
    text-align: center;
}
.footer-rule {
    width: 32px;
    height: 1px;
    background: var(--gray-300);
    margin: 0 auto 28px;
}
.footer-service {
    font-family: var(--font-display);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--bordeaux);
    margin-bottom: 24px;
}
.footer-details { margin-bottom: 28px; }
.footer-details p {
    font-size: 12px;
    color: var(--gray-muted);
    line-height: 1.9;
}
.footer-brand-mark {
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .5em;
    text-transform: uppercase;
    color: var(--gray-300);
}


/* =====================================================================
   RESPONSIVO
   ===================================================================== */
@media (min-width: 680px) {
    .cover-banner { height: 280px; }
    .restaurant-info { gap: 20px; margin-top: -60px; }
    .restaurant-logo { width: 120px; height: 120px; }
    .restaurant-meta { padding-top: 68px; }
    .restaurant-name { font-size: 22px; }

    .items-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0 32px;
    }
    .dish-card { padding: 22px 0; }
    .dish-photo-wrap { width: 100px; height: 100px; }
}

@media (min-width: 1100px) {
    .cover-banner { height: 320px; }
    .menu { max-width: 1080px; }
    /* Expande max-width interno em telas largas — atinge restaurant-info E cats-inner */
    .restaurant-info,
    .cats-inner { max-width: 1080px; }
}

/* Mobile pequeno: ajustes finos pra caber */
@media (max-width: 380px) {
    .restaurant-logo { width: 92px; height: 92px; }
    .restaurant-info { margin-top: -46px; gap: 12px; padding: 0 16px; }
    .restaurant-meta { padding-top: 54px; }
    .restaurant-name { font-size: 17px; }
    .cats-inner { padding-left: 16px; padding-right: 16px; }
    .cat-pill { font-size: 12.5px; padding: 8px 14px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
    .dish-card { opacity: 1 !important; transform: none !important; }
}
