/* Menu
   Tab strip, dish cards and allergen pills. */

/* Custom scrollbar for tab strip */
.no-scrollbar::-webkit-scrollbar { display:none; }
.no-scrollbar { -ms-overflow-style:none; scrollbar-width:none; }

/* Dish cards: lift the image, not the whole card, so the grid stays calm */
.dish-card { transition: transform .5s cubic-bezier(.22,1,.36,1), box-shadow .5s ease, border-color .4s ease; }
.dish-card:hover { transform: translateY(-6px); border-color: rgba(200,136,44,.45); }

/* A hairline of ember light along the top edge of a hovered card */
.dish-card::before {
  content:''; position:absolute; inset:0 0 auto 0; height:2px; opacity:0;
  background:linear-gradient(90deg,transparent,rgba(217,162,68,.9),transparent);
  transition:opacity .4s ease; z-index:2;
}
.dish-card:hover::before { opacity:1; }

/* Allergen block */
.allergen-pill { transition: transform .2s ease; }
.allergen-pill:hover { transform: translateY(-1px); }
