/* ═══════════════════════════════════════════
   APPETIZER RESTAURANT — Premium UI System
   ═══════════════════════════════════════════ */
:root {
  --orange: #FF6B35;
  --orange-dark: #E85A28;
  --gold: #F5A623;
  --dark: #0C0F14;
  --dark-2: #151A22;
  --dark-3: #1E2530;
  --text: #1A1F2E;
  --muted: #6B7280;
  --cream: #FAF8F5;
  --white: #FFFFFF;
  --green: #22C55E;
  --border: rgba(0,0,0,.08);
  --shadow: 0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.12);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --wrap: 1320px;
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  transition: transform .2s, box-shadow .2s, background .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(255,107,53,.35);
}
.btn--primary:hover { background: var(--orange-dark); }
.btn--ghost {
  border: 1.5px solid var(--border);
  color: var(--text);
  background: var(--white);
}
.btn--glass {
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255,255,255,.3);
  color: var(--white);
}
.btn--xl { padding: 16px 36px; font-size: 16px; }
.btn--block { width: 100%; }

/* ─── Header ─── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background .3s, box-shadow .3s;
}
.header.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}
.header__bar {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand__mark {
  width: 40px; height: 40px;
  background: var(--orange);
  color: var(--white);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
}
.brand__name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
}
.header__nav {
  display: flex;
  gap: 32px;
}
.header__nav a {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  transition: color .2s;
}
.header__nav a:hover { color: var(--white); }
.header.scrolled .header__nav a { color: var(--text); }
.header.scrolled .header__nav a:hover { color: var(--orange); }
.header:not(.scrolled) .brand__name { color: var(--white); }
.header:not(.scrolled) .btn--ghost {
  border-color: rgba(255,255,255,.3);
  color: var(--white);
  background: transparent;
}
.header:not(.scrolled) .menu-btn span { background: var(--white); }
.header__actions { display: flex; align-items: center; gap: 12px; }
.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.menu-btn span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: .3s;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px clamp(20px, 4vw, 48px) 24px;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(12,15,20,.88) 0%, rgba(12,15,20,.55) 50%, rgba(12,15,20,.3) 100%);
}
.hero__float {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(255,255,255,.2);
  box-shadow: var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
}
.hero__float img { width: 100%; height: 100%; object-fit: cover; }
.hero__float--1 { width: 140px; height: 140px; top: 18%; right: 8%; animation-delay: 0s; }
.hero__float--2 { width: 110px; height: 110px; bottom: 22%; right: 18%; animation-delay: 1.5s; }
.hero__float--3 { width: 90px; height: 90px; top: 30%; right: 28%; animation-delay: 3s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: calc(var(--header-h) + 48px) 0 80px;
  color: var(--white);
}
.hero__badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.pill {
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(8px);
}
.pill--gold { background: rgba(245,166,35,.2); border: 1px solid rgba(245,166,35,.4); color: #FFD88A; }
.pill--green { background: rgba(34,197,94,.15); border: 1px solid rgba(34,197,94,.3); color: #86EFAC; }
.hero__eyebrow {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero__title em { font-style: italic; color: var(--orange); }
.hero__sub {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,.75);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 16px; }
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  color: rgba(255,255,255,.5);
  z-index: 2;
}

/* ─── Sections ─── */
.section { padding: clamp(64px, 10vw, 120px) 0; }
.section--cream { background: var(--cream); }
.section-eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.section-eyebrow--light { color: #FFB088; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
}
.section-title--light { color: var(--white); }
.section-sub { font-size: 17px; color: var(--muted); margin-top: 12px; }
.section-sub--light { color: rgba(255,255,255,.65); }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 24px;
}
.section-head--center { flex-direction: column; align-items: center; text-align: center; }
.gold { color: var(--gold); }

/* ─── About ─── */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.about__media { position: relative; }
.about__media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
}
.about__stat {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--orange);
  color: var(--white);
  padding: 24px 28px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about__stat strong { display: block; font-size: 36px; font-family: var(--font-display); }
.about__stat span { font-size: 13px; opacity: .9; }
.about__text p { font-size: 17px; color: var(--muted); margin: 20px 0 28px; line-height: 1.8; }
.about__chips { display: flex; flex-wrap: wrap; gap: 10px; }
.about__chips span {
  padding: 10px 18px;
  background: var(--cream);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
}

/* ─── Featured Slider ─── */
.slider-nav { display: flex; gap: 10px; }
.slider-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  font-size: 18px;
  display: grid;
  place-items: center;
  transition: .2s;
  background: var(--white);
}
.slider-btn:hover { border-color: var(--orange); color: var(--orange); }
.slider-track-wrap { overflow: hidden; margin: 0 -12px; }
.slider-track {
  display: flex;
  gap: 24px;
  padding: 12px;
  transition: transform .5s cubic-bezier(.25,.8,.25,1);
}
.feat-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 300px;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
}
.feat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.feat-card__img { height: 220px; overflow: hidden; position: relative; }
.feat-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.feat-card:hover .feat-card__img img { transform: scale(1.06); }
.feat-card__tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}
.feat-card__body { padding: 24px; }
.feat-card__body h3 { font-family: var(--font-display); font-size: 22px; margin-bottom: 6px; }
.feat-card__body p { font-size: 14px; color: var(--muted); margin-bottom: 14px; }
.feat-card__price { font-size: 20px; font-weight: 700; color: var(--orange); }

/* ─── Menu Section ─── */
.menu-section { background: var(--dark); color: var(--white); }
.menu-section .section-title { color: var(--white); }
.menu-section .section-sub { color: rgba(255,255,255,.55); }
.menu-section .section-eyebrow { color: #FFB088; }

.menu-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
  align-items: center;
  justify-content: space-between;
}
.menu-search {
  flex: 1;
  min-width: 260px;
  max-width: 480px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-pill);
  padding: 0 20px;
  height: 52px;
}
.menu-search svg { color: rgba(255,255,255,.4); flex-shrink: 0; }
.menu-search input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--white);
  font-size: 15px;
  font-family: inherit;
}
.menu-search input::placeholder { color: rgba(255,255,255,.35); }
.menu-filters { display: flex; gap: 8px; }
.filter-chip {
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.12);
  transition: .2s;
}
.filter-chip:hover { border-color: rgba(255,255,255,.3); color: var(--white); }
.filter-chip.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.category-pills {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: 32px;
  scrollbar-width: none;
}
.category-pills::-webkit-scrollbar { display: none; }
.cat-pill {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,.08);
  transition: .25s;
  cursor: pointer;
}
.cat-pill:hover { border-color: rgba(255,255,255,.2); color: var(--white); }
.cat-pill.active {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}
.cat-pill__count {
  font-size: 11px;
  background: rgba(0,0,0,.15);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}
.cat-pill.active .cat-pill__count { background: var(--cream); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.menu-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  display: flex;
  flex-direction: column;
}
.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.4);
  border-color: rgba(255,107,53,.3);
}
.menu-card__img {
  height: 160px;
  overflow: hidden;
  position: relative;
}
.menu-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
  background: var(--dark-3);
}
.menu-card:hover .menu-card__img img { transform: scale(1.08); }
.menu-card__badge {
  position: absolute;
  top: 10px; left: 10px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: var(--orange);
  color: var(--white);
}
.menu-card__type {
  position: absolute;
  top: 10px; right: 10px;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(4px);
}
.menu-card__body {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.menu-category-note {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #FFB088;
  margin: 0 0 24px;
  padding: 12px 20px;
  background: rgba(255,107,53,.1);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,107,53,.2);
}

.menu-pricing-banner {
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,.75);
  margin: 0 0 28px;
  padding: 14px 22px;
  background: rgba(255,255,255,.06);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.1);
}

.menu-pricing-banner a,
.price-call-link {
  color: var(--orange);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.menu-pricing-banner a:hover,
.price-call-link:hover {
  color: #FFB088;
}

.menu-grid--grouped {
  display: block;
}

.menu-subgroup {
  margin-bottom: 40px;
}

.menu-subgroup__title {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(255,107,53,.4);
}

.menu-grid--inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.menu-card__cat {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 6px;
}

.menu-card__body h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 10px;
  color: var(--white);
}

.menu-card__stars { display: none; }

.menu-card__price {
  font-size: 15px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 14px;
  margin-top: auto;
}
.menu-card__price span { color: rgba(255,255,255,.45); font-weight: 400; font-size: 13px; }
.menu-card__btn {
  width: 100%;
  padding: 11px;
  border-radius: var(--radius-sm);
  background: rgba(255,107,53,.15);
  border: 1px solid rgba(255,107,53,.3);
  color: var(--orange);
  font-size: 14px;
  font-weight: 600;
  transition: .2s;
}
.menu-card__btn:hover { background: var(--orange); color: var(--white); }
.menu-empty {
  text-align: center;
  padding: 60px 20px;
  color: rgba(255,255,255,.45);
  font-size: 17px;
}

/* ─── Popular ─── */
.popular-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pop-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
}
.pop-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pop-card__img { height: 240px; position: relative; overflow: hidden; }
.pop-card__img img { width: 100%; height: 100%; object-fit: cover; }
.pop-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 60%);
}
.pop-card__tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}
.pop-card__body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  color: var(--white);
}
.pop-card__body h3 { font-family: var(--font-display); font-size: 24px; margin-bottom: 4px; }
.pop-card__stars { color: var(--gold); font-size: 14px; letter-spacing: 3px; margin-bottom: 8px; }
.pop-card__price { font-size: 18px; font-weight: 700; color: #FFB088; }

/* ─── Parties ─── */
.parties { background: linear-gradient(160deg, var(--dark) 0%, var(--dark-3) 100%); }
.party-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.party-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  transition: transform .3s, background .3s;
}
.party-card:hover { transform: translateY(-6px); background: rgba(255,107,53,.1); border-color: rgba(255,107,53,.3); }
.party-card__emoji { font-size: 48px; display: block; margin-bottom: 16px; }
.party-card h3 { font-family: var(--font-display); font-size: 22px; color: var(--white); margin-bottom: 8px; }
.party-card p { font-size: 14px; color: rgba(255,255,255,.55); margin-bottom: 20px; }
.party-card__link { font-size: 14px; font-weight: 600; color: var(--orange); }

/* ─── Reviews ─── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: transform .3s;
}
.review-card:hover { transform: translateY(-4px); }
.review-card__stars { color: var(--gold); font-size: 18px; letter-spacing: 3px; margin-bottom: 16px; }
.review-card p { font-size: 16px; color: var(--muted); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.review-card footer strong { display: block; font-size: 15px; color: var(--text); }
.review-card footer span { font-size: 13px; color: var(--muted); }

/* ─── Masonry Gallery ─── */
.masonry {
  columns: 3;
  column-gap: 16px;
}
.masonry img {
  width: 100%;
  border-radius: var(--radius);
  margin-bottom: 16px;
  break-inside: avoid;
  box-shadow: var(--shadow);
  transition: transform .3s;
}
.masonry img:hover { transform: scale(1.02); }

/* ─── Location ─── */
.location__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: stretch;
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-list { margin: 28px 0 32px; }
.contact-list li {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.contact-list li span { font-size: 22px; flex-shrink: 0; }
.contact-list strong { display: block; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 4px; }
.contact-list p { font-size: 15px; color: var(--text); line-height: 1.6; }
.contact-list a { color: var(--orange); font-weight: 600; }
.map-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 400px;
}
.map-card iframe { width: 100%; height: 100%; min-height: 400px; border: 0; }

/* ─── Premium Footer ─── */
.footer-premium {
  position: relative;
  background: #111111;
  color: rgba(245, 245, 247, 0.75);
  padding: 80px 0 0;
  overflow: hidden;
}

.footer-premium__glow {
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(255, 212, 0, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.glass-footer {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
}

.footer-premium__main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.1fr 1.3fr;
  gap: 1.25rem;
  padding-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.footer-premium__brand {
  padding: 2rem;
}

.brand--footer .brand__name {
  color: #f5f5f7;
  font-size: 1.15rem;
}

.footer-premium__tagline {
  margin-top: 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: #FFD400;
}

.footer-premium__desc {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(245, 245, 247, 0.55);
}

.footer-premium__col {
  padding: 1.75rem;
}

.footer-premium__col h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #FFD400;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.footer-premium__col nav a {
  display: block;
  font-size: 0.9rem;
  color: rgba(245, 245, 247, 0.6);
  margin-bottom: 0.65rem;
  transition: color 0.25s, transform 0.25s;
}

.footer-premium__col nav a:hover {
  color: #FFD400;
  transform: translateX(4px);
}

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

.footer-contact li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(245, 245, 247, 0.65);
}

.footer-contact li span:first-child {
  flex-shrink: 0;
  font-size: 1rem;
}

.footer-contact a {
  color: #f5f5f7;
  transition: color 0.25s;
}

.footer-contact a:hover {
  color: #FFD400;
}

.footer-premium__available {
  font-size: 0.8rem;
  color: rgba(245, 245, 247, 0.45);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.order-platforms {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.order-platform {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  text-decoration: none;
  color: #f5f5f7;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              border-color 0.35s,
              box-shadow 0.35s,
              background 0.35s;
}

.order-platform:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: rgba(255, 212, 0, 0.4);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 212, 0, 0.1);
  background: rgba(255, 255, 255, 0.07);
}

.order-platform span {
  flex: 1;
  font-size: 0.85rem;
  font-weight: 600;
}

.order-platform svg {
  opacity: 0.4;
  transition: opacity 0.25s, transform 0.25s;
  flex-shrink: 0;
}

.order-platform:hover svg {
  opacity: 1;
  color: #FFD400;
  transform: translate(2px, -2px);
}

.order-platform__logo {
  height: 28px;
  width: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.order-platform__logo--swiggy {
  height: 32px;
}

.order-platform:hover .order-platform__logo {
  transform: scale(1.08);
  animation: logo-pulse 1.5s ease-in-out infinite;
}

.order-platform__logo--zomato {
  filter: brightness(1.1);
}

@keyframes logo-pulse {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.15); }
}

.footer-premium__mid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 1.25rem;
  padding-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.footer-premium__social,
.footer-premium__trust {
  padding: 1.75rem;
}

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

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.1rem;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(245, 245, 247, 0.75);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  border-color: #FFD400;
  color: #FFD400;
  background: rgba(255, 212, 0, 0.1);
  transform: translateY(-2px);
}

.social-link--whatsapp:hover {
  border-color: #25D366;
  color: #25D366;
  background: rgba(37, 211, 102, 0.1);
}

.trust-badges {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}

.trust-badges li {
  font-size: 0.85rem;
  color: rgba(245, 245, 247, 0.6);
  transition: color 0.25s;
}

.trust-badges li:hover {
  color: #FFD400;
}

.footer-premium__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  position: relative;
  z-index: 1;
}

.footer-premium__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: rgba(245, 245, 247, 0.4);
}

.footer-premium__made {
  color: rgba(245, 245, 247, 0.5);
}

.footer-heart {
  display: inline-block;
  animation: heart-beat 1.5s ease-in-out infinite;
}

@keyframes heart-beat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

/* Legacy footer (unused) */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding: 80px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}
.brand--footer .brand__name { color: var(--white); }
.footer__brand p { margin-top: 16px; font-size: 15px; }
.footer__muted { display: block; font-size: 14px; color: rgba(255,255,255,.4); margin-top: 8px; }
.footer__col h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  margin-bottom: 20px;
}
.footer__col a, .footer__col span {
  display: block;
  font-size: 15px;
  color: rgba(255,255,255,.55);
  margin-bottom: 12px;
  transition: color .2s;
}
.footer__col a:hover { color: var(--orange); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
  text-align: center;
  font-size: 14px;
  color: rgba(255,255,255,.35);
}

/* ─── Cart ─── */
.cart-toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text);
  transition: .2s;
}
.cart-toggle:hover { border-color: var(--orange); color: var(--orange); }
.header:not(.scrolled) .cart-toggle {
  border-color: rgba(255,255,255,.3);
  background: rgba(255,255,255,.1);
  color: var(--white);
}
.cart-toggle__badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  display: grid;
  place-items: center;
}
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
}
.cart-overlay.open { opacity: 1; visibility: visible; }
body.cart-open { overflow: hidden; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 100vw);
  height: 100%;
  background: var(--white);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.25,.8,.25,1);
  box-shadow: -8px 0 40px rgba(0,0,0,.15);
}
.cart-drawer.open { transform: translateX(0); }

.cart-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid var(--border);
}
.cart-drawer__head h2 {
  font-family: var(--font-display);
  font-size: 24px;
}
.cart-drawer__close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  display: grid;
  place-items: center;
  transition: background .2s;
}
.cart-drawer__close:hover { background: var(--cream); }

.cart-empty {
  padding: 48px 24px;
  text-align: center;
  color: var(--muted);
  font-size: 15px;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
  list-style: none;
}

.cart-drawer .cart-items {
  flex: 0 1 auto;
}

.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item__img {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}
.cart-item__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cart-item__info strong { font-size: 15px; line-height: 1.3; }
.cart-item__portion {
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
}
.cart-item__price { font-size: 13px; color: var(--muted); }
.cart-item__actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.qty-control {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  border-radius: var(--radius-pill);
  padding: 4px;
}
.qty-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--white);
  font-size: 18px;
  font-weight: 600;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
}
.qty-value {
  min-width: 24px;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
}
.cart-item__remove {
  font-size: 13px;
  color: var(--muted);
  text-decoration: underline;
}
.cart-item__remove:hover { color: #e53e3e; }

.cart-drawer__footer {
  padding: 20px 24px 28px;
  border-top: 1px solid var(--border);
  background: var(--cream);
}
.cart-min-note { font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.cart-min-warn {
  font-size: 13px;
  color: #c05621;
  background: #fffaf0;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  margin-bottom: 8px;
}
.cart-total strong { font-size: 22px; color: var(--orange); }
.cart-footer-note {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.5;
}
.cart-checkout { display: flex; flex-direction: column; gap: 10px; }

.btn--whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(37,211,102,.3);
}
.btn--whatsapp:hover { background: #1ebe57; }

.feat-card__add,
.pop-card__add {
  margin-top: 12px;
  width: 100%;
  padding: 10px;
  border-radius: var(--radius-sm);
  background: rgba(255,107,53,.12);
  border: 1px solid rgba(255,107,53,.35);
  color: var(--orange);
  font-size: 14px;
  font-weight: 600;
  transition: .2s;
}
.feat-card__add:hover,
.pop-card__add:hover {
  background: var(--orange);
  color: var(--white);
}
.pop-card__add {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.4);
  color: var(--white);
}
.pop-card__add:hover {
  background: var(--orange);
  border-color: var(--orange);
}

/* Portion modal */
.portion-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0,0,0,.55);
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: .25s;
}
.portion-modal.open { opacity: 1; visibility: visible; }
.portion-modal__box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  width: min(360px, 100%);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.portion-modal__box h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 8px;
}
.portion-modal__box p { color: var(--muted); margin-bottom: 24px; font-size: 14px; }
.portion-modal__btns { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.portion-modal__cancel {
  font-size: 14px;
  color: var(--muted);
  text-decoration: underline;
}

/* ─── Toast ─── */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--dark);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  opacity: 0;
  transition: transform .4s, opacity .4s;
  pointer-events: none;
}
body.cart-open .toast { bottom: 24px; z-index: 2100; }
.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ─── Responsive ─── */
@media (max-width: 1200px) {
  .menu-grid,
  .menu-grid--inner { grid-template-columns: repeat(3, 1fr); }
  .popular-grid { grid-template-columns: repeat(2, 1fr); }
  .party-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-card { flex: 0 0 calc(50% - 12px); }
}

@media (max-width: 900px) {
  .header__nav, .header__actions .btn--ghost { display: none; }
  .menu-btn { display: flex; }
  .about__grid { grid-template-columns: 1fr; }
  .about__stat { right: 10px; bottom: -10px; }
  .menu-grid,
  .menu-grid--inner { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .location__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer-premium__main { grid-template-columns: 1fr 1fr; }
  .footer-premium__mid { grid-template-columns: 1fr; }
  .masonry { columns: 2; }
  .hero__float { display: none; }
}

@media (max-width: 600px) {
  .menu-grid,
  .menu-grid--inner { grid-template-columns: 1fr; }
  .popular-grid { grid-template-columns: 1fr; }
  .party-grid { grid-template-columns: 1fr; }
  .feat-card { flex: 0 0 calc(100% - 0px); min-width: 0; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer-premium__main { grid-template-columns: 1fr; }
  .footer-premium__bottom-inner { flex-direction: column; text-align: center; }
  .social-links { justify-content: center; }
  .trust-badges { justify-content: center; }
  .masonry { columns: 1; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
  .menu-toolbar { flex-direction: column; align-items: stretch; }
  .menu-search { max-width: none; }
}
