/* ════════════════════════════════════════════
   TANIDIK Yemek — noir / gold premium
   ════════════════════════════════════════════ */

/* ── Page base ─────────────────────────────── */
.food-page-body {
  background: #050505;
}

.food-page {
  padding-bottom: 1.5rem;
}

/* ── Top bar ───────────────────────────────── */
.food-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: calc(0.85rem + env(safe-area-inset-top, 0px)) 1rem 0.5rem;
}

.food-topbar__brand {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}

.food-topbar__name {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #fff;
}

.food-topbar__tag {
  font-size: 0.66rem;
  color: #c9a227;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.food-topbar__btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.08);
  border: 1px solid rgba(201, 162, 39, 0.22);
  color: #c9a227;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s;
  flex-shrink: 0;
}

/* ── Search row + filter button ────────────── */
.food-search-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0 0.75rem 0.6rem;
}

.food-search {
  position: relative;
  flex: 1;
  min-width: 0;
}

.food-search__ico {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

.food-search__input {
  width: 100%;
  box-sizing: border-box;
  padding: 0.78rem 1rem 0.78rem 2.75rem;
  border-radius: 12px;
  border: 1.5px solid rgba(201, 162, 39, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color 0.18s, background 0.18s, box-shadow 0.18s;
}

.food-search__input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.food-search__input:focus {
  outline: none;
  border-color: #c9a227;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}

/* Filter button — 44×44, gold border */
.food-filter-btn {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: rgba(201, 162, 39, 0.06);
  border: 1.5px solid rgba(201, 162, 39, 0.4);
  color: #c9a227;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: background 0.15s, border-color 0.15s;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}

.food-filter-btn:hover,
.food-filter-btn:active {
  background: rgba(201, 162, 39, 0.16);
  border-color: #c9a227;
}

/* ── Category icons ────────────────────────── */
.food-cats-wrap {
  overflow: hidden;
}

.food-cats {
  display: flex;
  overflow-x: auto;
  padding: 0.1rem 0.5rem 0.55rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  gap: 0.05rem;
}

.food-cats::-webkit-scrollbar {
  display: none;
}

.food-cat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.28rem;
  min-width: 60px;
  padding: 0.25rem 0.15rem;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}

.food-cat:active { opacity: 0.7; }

.food-cat__ico {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: background 0.18s, border-color 0.18s, box-shadow 0.18s;
}

.food-cat.is-active .food-cat__ico {
  background: rgba(201, 162, 39, 0.13);
  border-color: rgba(201, 162, 39, 0.42);
  box-shadow: 0 0 10px rgba(201, 162, 39, 0.14);
}

.food-cat__lbl {
  font-size: 0.59rem;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  white-space: nowrap;
  line-height: 1;
  letter-spacing: 0.02em;
}

.food-cat.is-active .food-cat__lbl {
  color: #c9a227;
  font-weight: 600;
}

/* ── Hidden chip groups (JS ihtiyacı için DOM'da) */
.food-chips-hidden {
  display: none !important;
}

/* ── Chip base (JS tarafından render edilir) ── */
.food-chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.32rem;
}

.food-chip-group--scroll {
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.food-chip-group--scroll::-webkit-scrollbar { display: none; }

.food-chip {
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  padding: 0.3rem 0.78rem;
  font-size: 0.75rem;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
  font-family: inherit;
  line-height: 1.4;
}

.food-chip:hover { border-color: rgba(201, 162, 39, 0.3); }

.food-chip.is-active {
  border-color: #c9a227;
  background: rgba(201, 162, 39, 0.12);
  color: #f5e6b8;
}

/* ── Section titles ────────────────────────── */
.food-campaign {
  padding: 0.3rem 0 0.4rem;
}

.food-section {
  padding: 0.3rem 0 0.4rem;
}

.food-section__title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 0.5rem;
  padding: 0 0.75rem;
}

/* ── Horizontal restaurant rows ────────────── */
.food-restaurant-row {
  display: flex;
  overflow-x: auto;
  gap: 0.55rem;
  padding: 0.1rem 0.75rem 0.55rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}

.food-restaurant-row::-webkit-scrollbar { display: none; }

.food-restaurant-row .food-restaurant-card {
  min-width: 158px;
  max-width: 158px;
  flex-shrink: 0;
  scroll-snap-align: start;
}

/* ── Restaurant card ───────────────────────── */
.food-restaurant-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: #0d0d10;
  cursor: pointer;
  transition: transform 0.18s, border-color 0.18s, box-shadow 0.18s;
  position: relative;
}

.food-restaurant-card:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 162, 39, 0.35);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.55);
}

.food-restaurant-card:active { transform: scale(0.97); }

/* Cover — 16:10 */
.food-restaurant-card__cover-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #111;
  overflow: hidden;
}

.food-restaurant-card__cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.food-restaurant-card:hover .food-restaurant-card__cover {
  transform: scale(1.06);
}

.food-restaurant-card__cover-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 13, 16, 0.78) 0%, transparent 52%);
  pointer-events: none;
}

/* Status badge */
.food-restaurant-card__badge {
  position: absolute;
  top: 0.45rem;
  left: 0.45rem;
  font-size: 0.6rem;
  padding: 0.17rem 0.44rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  backdrop-filter: blur(8px);
  z-index: 2;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.food-restaurant-card__badge--open {
  border: 1px solid rgba(80, 200, 120, 0.5);
  color: #8fe8b0;
}

.food-restaurant-card__badge--closed {
  border: 1px solid rgba(255, 100, 100, 0.4);
  color: #ffb0b0;
}

.food-restaurant-card__badge--promo {
  left: auto;
  right: 2.4rem;
  border: 1px solid rgba(201, 162, 39, 0.5);
  color: #f5e6b8;
}

/* Favorite button */
.food-restaurant-card__fav {
  position: absolute;
  top: 0.42rem;
  right: 0.42rem;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
  color: rgba(255, 255, 255, 0.62);
  padding: 0;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}

.food-restaurant-card__fav:hover {
  background: rgba(201, 162, 39, 0.2);
  border-color: rgba(201, 162, 39, 0.5);
  color: #c9a227;
}

.food-restaurant-card__fav.is-faved {
  background: rgba(201, 162, 39, 0.2);
  border-color: rgba(201, 162, 39, 0.5);
  color: #c9a227;
}

.food-restaurant-card__fav.is-faved svg {
  fill: #c9a227;
  stroke: #c9a227;
}

/* Card body — kompakt */
.food-restaurant-card__body {
  padding: 0.5rem 0.6rem 0.6rem;
}

.food-restaurant-card__title {
  margin: 0 0 0.18rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}

.food-restaurant-card__rating {
  font-size: 0.72rem;
  color: #c9a227;
  margin-bottom: 0.28rem;
  font-weight: 500;
}

.food-restaurant-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.12rem 0.35rem;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.47);
  line-height: 1.4;
}

.food-restaurant-card__meta span::before {
  content: "·";
  margin-right: 0.28rem;
  opacity: 0.4;
}

.food-restaurant-card__meta span:first-child::before {
  content: none;
}

/* Free delivery highlight */
.food-rc-meta__free {
  color: #6ee89a !important;
  font-weight: 600;
}

.food-rc-meta__free::before {
  content: none !important;
}

/* ── Grid fallback (kullanılmıyor ama korundu) ─ */
.food-restaurant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 158px), 1fr));
  gap: 0.55rem;
  padding: 0 0.75rem;
}

/* ════════════════════════════════════════════
   FILTER MODAL (bottom sheet)
   ════════════════════════════════════════════ */

.food-fmodal {
  position: fixed;
  inset: 0;
  z-index: 900;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
}

.food-fmodal.is-open {
  pointer-events: auto;
  opacity: 1;
}

.food-fmodal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.food-fmodal__sheet {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0e0e13;
  border-radius: 20px 20px 0 0;
  border-top: 1px solid rgba(201, 162, 39, 0.22);
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  max-height: 88vh;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding-bottom: env(safe-area-inset-bottom, 16px);
}

.food-fmodal.is-open .food-fmodal__sheet {
  transform: translateY(0);
}

/* Drag indicator */
.food-fmodal__sheet::before {
  content: "";
  display: block;
  width: 36px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.16);
  margin: 10px auto 0;
}

/* Header */
.food-fmodal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1rem 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.food-fmodal__title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  margin: 0;
}

.food-fmodal__close {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: background 0.15s;
  flex-shrink: 0;
}

.food-fmodal__close:hover {
  background: rgba(255, 255, 255, 0.14);
}

/* Section */
.food-fmodal__section {
  padding: 0.85rem 1rem 0.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.food-fmodal__section-title {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 700;
  margin: 0 0 0.6rem;
}

/* Chip rows inside modal */
.food-fmodal__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.38rem;
}

.food-fmodal__chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.38rem;
}

/* Filter chips (modal) */
.food-fchip {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  padding: 0.36rem 0.85rem;
  font-size: 0.8rem;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
  line-height: 1.4;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.food-fchip:hover {
  border-color: rgba(201, 162, 39, 0.35);
}

.food-fchip.is-active {
  border-color: #c9a227;
  background: rgba(201, 162, 39, 0.13);
  color: #f5e6b8;
}

/* Footer apply button */
.food-fmodal__footer {
  padding: 0.9rem 1rem;
  position: sticky;
  bottom: 0;
  background: #0e0e13;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.food-fmodal__apply {
  display: block;
  width: 100%;
  padding: 0.88rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #b8911f 0%, #f0c84a 50%, #c9a227 100%);
  color: #0a0600;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.15s, transform 0.1s;
  box-shadow: 0 4px 20px rgba(201, 162, 39, 0.3);
}

.food-fmodal__apply:hover { opacity: 0.92; }
.food-fmodal__apply:active { opacity: 0.78; transform: scale(0.99); }

/* ════════════════════════════════════════════
   VENUE DETAIL PAGE v2 — fvp / fvh
   ════════════════════════════════════════════ */

/* JS tarafından set edilen class'lar — değiştirilmez */
.food-venue-hero__status {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.7rem;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.food-venue-hero__status.is-open {
  background: rgba(80, 200, 120, 0.12);
  color: #8fe8b0;
  border: 1px solid rgba(80, 200, 120, 0.35);
}

.food-venue-hero__status.is-closed {
  background: rgba(255, 80, 80, 0.1);
  color: #ffb0b0;
  border: 1px solid rgba(255, 100, 100, 0.35);
}

.food-venue-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.38rem;
}

.food-venue-chip {
  font-size: 0.72rem;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 162, 39, 0.3);
  color: #f0dfa0;
  background: rgba(201, 162, 39, 0.07);
  white-space: nowrap;
}

/* ── Page wrapper ──────────────────────────── */
.fvp {
  padding-bottom: 0;
  min-height: 100vh;
}

/* ── Hero cover ────────────────────────────── */
.fvh__media {
  position: relative;
  height: 270px;
  overflow: hidden;
  background: #0d0d10;
}

.fvh__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fvh__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.42) 0%,
    transparent 40%,
    rgba(5, 5, 5, 0.8) 100%
  );
}

/* Back + Fav over cover */
.fvh__media-actions {
  position: absolute;
  top: calc(0.8rem + env(safe-area-inset-top, 0px));
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0.85rem;
  z-index: 5;
}

.fvh__action-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  padding: 0;
  transition: background 0.15s;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}

.fvh__action-btn:hover {
  background: rgba(0, 0, 0, 0.72);
}

.fvh__action-btn--fav.is-faved {
  background: rgba(201, 162, 39, 0.25);
  border-color: rgba(201, 162, 39, 0.5);
  color: #c9a227;
}

.fvh__action-btn--fav.is-faved svg {
  fill: #c9a227;
  stroke: #c9a227;
}

/* ── Venue info below cover ────────────────── */
.fvh__info {
  padding: 0.9rem 1rem 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: #050505;
}

.fvh__name {
  margin: 0.28rem 0 0.2rem;
  font-size: clamp(1.15rem, 5vw, 1.55rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.fvh__meta {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.4;
}

.fvh__chips {
  margin-top: 0.5rem;
}

/* ── Sticky category tabs ──────────────────── */
.fvh__tabs-sticky {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(5, 5, 5, 0.96);
  backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.fvh__tabs {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 0.5rem 0.75rem;
  gap: 0.38rem;
  margin: 0;
}

.fvh__tabs::-webkit-scrollbar { display: none; }

/* Tab button (JS renders with food-menu-tab class) */
.fvh__tabs .food-menu-tab,
.food-menu-tab {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  padding: 0.38rem 0.9rem;
  font-size: 0.78rem;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
  flex-shrink: 0;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.fvh__tabs .food-menu-tab.is-active,
.food-menu-tab.is-active {
  border-color: #c9a227;
  background: rgba(201, 162, 39, 0.12);
  color: #f5e6b8;
}

/* ── Menu items ────────────────────────────── */
.fvh__menu-wrap {
  padding: 0.75rem;
  padding-bottom: 0.5rem;
}

.fvh__menu {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Override food-menu-grid grid */
.fvh__menu.food-menu-grid {
  display: flex;
  flex-direction: column;
}

/* Card: left info, right + button as image area */
.food-menu-item {
  position: relative;
  padding: 0.82rem;
  padding-right: calc(88px + 1rem);
  min-height: 86px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: #0d0d10;
  transition: border-color 0.18s;
}

.food-menu-item:hover {
  border-color: rgba(201, 162, 39, 0.22);
}

/* Title + price stacked vertically */
.food-menu-item__head {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 0;
}

.food-menu-item__head h3 {
  margin: 0 0 0.12rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.3;
}

.food-menu-item__price {
  color: #c9a227;
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
  margin-top: 0.18rem;
}

.food-menu-item__desc {
  margin: 0.28rem 0 0;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* "Sepete Ekle" button → styled as image area + gold + button */
.food-menu-item .btn.btn--small {
  position: absolute;
  right: 0.55rem;
  top: 0.55rem;
  bottom: 0.55rem;
  width: 86px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 0 0.42rem;
  font-size: 0;
  color: transparent;
  transition: border-color 0.15s, background 0.15s;
  overflow: hidden;
}

/* Gold tinted placeholder background */
.food-menu-item .btn.btn--small::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    145deg,
    rgba(201, 162, 39, 0.08) 0%,
    rgba(255, 255, 255, 0.015) 100%
  );
  pointer-events: none;
}

/* Gold + badge */
.food-menu-item .btn.btn--small::after {
  content: "+";
  position: relative;
  z-index: 1;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b8911f 0%, #f0c84a 100%);
  color: #050505;
  font-size: 1.15rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  letter-spacing: 0;
  box-shadow: 0 2px 10px rgba(201, 162, 39, 0.45);
  transition: transform 0.12s;
}

.food-menu-item .btn.btn--small:hover {
  border-color: rgba(201, 162, 39, 0.38);
  background: rgba(201, 162, 39, 0.05);
}

.food-menu-item .btn.btn--small:hover::after {
  transform: scale(1.08);
}

.food-menu-item .btn.btn--small:active::after {
  transform: scale(0.95);
}

/* ── Cart bottom bar ───────────────────────── */
.fvh__cart {
  position: fixed !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 500 !important;
  margin: 0 !important;
  background: #0e0e13;
  border-top: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: 20px 20px 0 0 !important;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.7);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  max-height: none !important;
  overflow: visible !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Summary bar — always visible */
.fvh__cart-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.72rem 1rem;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.fvh__cart-summary-left {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.fvh__cart-icon { color: #c9a227; display: flex; }

.fvh__cart-total-lbl {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.fvh__cart-total-lbl strong {
  color: #c9a227;
  font-weight: 700;
}

.fvh__cart-chevron {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.48);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: transform 0.25s, background 0.15s;
  flex-shrink: 0;
}

.fvh__cart.is-expanded .fvh__cart-chevron {
  transform: rotate(180deg);
  background: rgba(201, 162, 39, 0.1);
  border-color: rgba(201, 162, 39, 0.3);
  color: #c9a227;
}

/* Cart detail (expanded) */
.fvh__cart-detail {
  display: none;
  padding: 0.5rem 1rem 0.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  max-height: 38vh;
  overflow-y: auto;
}

.fvh__cart.is-expanded .fvh__cart-detail {
  display: block;
}

.fvh__cart-items {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.65rem;
}

.fvh__cart-items .order-cart-lines {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.fvh__cart-items .order-cart-lines li {
  padding: 0.38rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.72);
}

/* Order type fieldset */
.fvh__order-type {
  border: none;
  padding: 0;
  margin: 0 0 0.6rem;
}

.fvh__order-type legend {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.38);
  font-weight: 700;
  margin-bottom: 0.38rem;
}

.fvh__order-type label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-right: 1.2rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
}

.fvh__textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 0.62rem 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 0.8rem;
  font-family: inherit;
  resize: none;
  margin-bottom: 0.5rem;
  min-height: 52px;
}

.fvh__textarea:focus {
  outline: none;
  border-color: rgba(201, 162, 39, 0.4);
}

/* Submit button */
.fvh__order-btn {
  display: block;
  width: calc(100% - 2rem);
  margin: 0.25rem 1rem 0.8rem;
  padding: 0.85rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #b8911f 0%, #f0c84a 50%, #c9a227 100%);
  color: #0a0700;
  font-size: 0.87rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.15s, transform 0.1s;
  box-shadow: 0 4px 18px rgba(201, 162, 39, 0.32);
}

.fvh__order-btn:hover { opacity: 0.9; }
.fvh__order-btn:active { opacity: 0.75; transform: scale(0.99); }

/* Page bottom padding — cart bar için alan */
.fvp { padding-bottom: 80px; }

/* Drag handle indicator on cart sheet */
.fvh__cart::before {
  content: "";
  display: block;
  width: 36px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.14);
  margin: 8px auto 0;
}

/* Old food-cart-panel/food-venue-* overrides — safely nullified on fvp */
.fvp .food-venue-page,
.fvp .food-venue-hero,
.fvp .food-venue-layout,
.fvp .food-menu-tabs { all: unset; }
