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

:root {
  --black:   #07000f;
  --deep:    #0d0018;
  --surface: #120020;
  --border:  rgba(255,255,255,0.08);
  --purple:  #9b4dca;
  --glow:    #c77dff;
  --gold:    #c9a84c;
  --white:   #ffffff;
  --muted:   rgba(255,255,255,0.45);
  --text:    rgba(255,255,255,0.85);
  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Montserrat', sans-serif;
  --font-brand:   'Brittany Signature', cursive;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* ══════════════════════════════════════
   LANDING PAGE
══════════════════════════════════════ */
body.landing {
  overflow-x: hidden;
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(80, 0, 120, 0.55) 0%, transparent 65%),
    linear-gradient(to bottom, rgba(7,0,15,0.6) 0%, rgba(7,0,15,0.75) 100%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  padding: 0 1.5rem;
  margin-top: 3rem;
}

/* Brand name */
.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 0.95;
  gap: 0;
}

.brand-line1 {
  font-family: var(--font-brand);
  font-size: clamp(3.2rem, 9vw, 8rem);
  color: var(--white);
  text-shadow:
    0 0 12px rgba(199,125,255,0.9),
    0 0 35px rgba(155,77,202,0.7),
    0 0 80px rgba(155,77,202,0.4);
  display: block;
  letter-spacing: 1px;
}

.brand-line2 {
  font-family: var(--font-brand);
  font-size: clamp(4rem, 12vw, 11rem);
  color: var(--white);
  text-shadow:
    0 0 12px rgba(199,125,255,0.9),
    0 0 35px rgba(155,77,202,0.7),
    0 0 80px rgba(155,77,202,0.4);
  display: block;
  margin-top: 0.1em;
  letter-spacing: 2px;
}

.tagline {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 5rem;
}

/* Menu navigation */
.menu-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
  width: 100%;
  max-width: 580px;
}

.menu-nav__item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.3rem 1.5rem;
  text-decoration: none;
  color: var(--white);
  border: 1px solid rgba(199, 125, 255, 0.6);
  border-radius: 3px;
  background: rgba(30, 0, 50, 0.6);
  backdrop-filter: blur(14px);
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s, transform 0.2s;
}

.menu-nav__item:hover {
  background: rgba(155, 77, 202, 0.3);
  border-color: var(--glow);
  box-shadow: 0 0 30px rgba(155, 77, 202, 0.5), inset 0 0 15px rgba(155, 77, 202, 0.1);
  transform: translateY(-2px);
}

.nav-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.nav-arrow { display: none; }

.nav-divider { display: none; }

/* Age notice */
.age-notice {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.45rem 1.1rem;
  border-radius: 2px;
  margin-top: 0.5rem;
}

/* ══════════════════════════════════════
   MENU PAGES
══════════════════════════════════════ */
body.menu-page {
  background: var(--deep);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header */
.page-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1.2rem 2rem;
  background: rgba(7, 0, 15, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.back-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.back-link:hover { color: var(--glow); }

.page-brand {
  font-family: var(--font-brand);
  font-size: 1.6rem;
  color: var(--white);
  text-shadow:
    0 0 12px rgba(199,125,255,0.9),
    0 0 35px rgba(155,77,202,0.7),
    0 0 80px rgba(155,77,202,0.4);
  text-align: center;
}

/* Main */
.page-main {
  flex: 1;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 4rem 2rem 5rem;
}

/* Page title */
.page-title-block {
  text-align: center;
  margin-bottom: 4rem;
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 0.6rem;
}

.page-subtitle {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
}

.promo-text {
  color: var(--gold);
  letter-spacing: 2px;
}

/* Section rule */
.section-rule {
  border: none;
  border-top: 1px solid var(--border);
  margin: 3.5rem 0;
}

/* ── SHISHA TIERS ── */
.menu-tier { margin-bottom: 0; }

.tier-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.tier-info {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.tier-tag {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 1px;
  text-transform: none;
  color: var(--white);
  border: none;
  padding: 0;
  border-radius: 0;
  display: block;
}
.tier-tag.gold   { color: var(--gold); }
.tier-tag.purple { color: var(--glow); }

.tier-desc {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 1px;
}

.tier-price-tag {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  font-style: italic;
  color: var(--muted);
  line-height: 1;
}
.tier-price-tag.gold   { color: var(--gold); }
.tier-price-tag.purple { color: var(--glow); }

/* Flavour grid */
.flavour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.6rem;
}

.flavour-card {
  border: 1px solid var(--border);
  padding: 0.9rem 1.1rem;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--text);
  border-radius: 3px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  cursor: default;
}
.flavour-card:hover {
  border-color: rgba(155,77,202,0.5);
  color: var(--white);
  background: rgba(155,77,202,0.07);
}

/* Combos */
.combos-block {
  margin-top: 2rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 3px;
}

.combos-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.combo-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.5rem;
}

.combo-item {
  font-size: 0.8rem;
  color: var(--text);
  padding: 0.6rem 0.8rem;
  border-left: 2px solid rgba(155,77,202,0.4);
  letter-spacing: 0.3px;
}

/* ── FOOD ── */
.food-section { margin-bottom: 0; }
.food-section.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.food-section-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.food-section-note {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.food-sub-heading {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.food-sub-note {
  font-weight: 300;
  font-style: italic;
  letter-spacing: 1px;
  text-transform: none;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.3);
}

.food-list { display: flex; flex-direction: column; }

.food-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  gap: 1rem;
}
.food-row:last-child { border-bottom: none; }

.food-name {
  font-size: 0.83rem;
  font-weight: 300;
  color: var(--text);
  letter-spacing: 0.3px;
}

.food-price {
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Ice cream table */
.scoop-table { width: 100%; }

.scoop-header, .scoop-row {
  display: grid;
  grid-template-columns: 1fr 80px 80px;
  padding: 0.65rem 0;
  font-size: 0.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  gap: 0.5rem;
  align-items: center;
}
.scoop-header {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.75rem;
}
.scoop-header span:not(:first-child),
.scoop-row span:not(:first-child) {
  text-align: center;
  color: var(--gold);
  font-weight: 500;
}
.scoop-row:last-child { border-bottom: none; }

/* ── COCKTAILS ── */
.cocktail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
}

.cocktail-card {
  padding: 1.5rem;
  background: var(--surface);
  transition: background 0.2s;
}
.cocktail-card:hover { background: rgba(155,77,202,0.07); }

.cocktail-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.cocktail-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--white);
  font-weight: 400;
}

.cocktail-desc {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
  letter-spacing: 0.2px;
}

/* Spirits table */
.spirits-table { width: 100%; }

.spirits-header, .spirits-row {
  display: grid;
  grid-template-columns: 1fr 60px 65px;
  padding: 0.6rem 0;
  font-size: 0.78rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  gap: 0.5rem;
  align-items: center;
}
.spirits-header {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.6rem;
}
.spirits-header span:not(:first-child),
.spirits-row span:not(:first-child) {
  text-align: center;
  color: var(--gold);
  font-weight: 500;
}
.spirits-row:last-child { border-bottom: none; }
.spirits-row span:first-child { color: var(--text); font-weight: 300; }
.premium-spirit span:first-child { color: var(--glow); }

/* Footer */
.page-footer {
  text-align: center;
  padding: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}

/* ── SOCIAL ICONS ── */
.social-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 1rem;
}

.social-icon {
  color: rgba(255,255,255,0.4);
  font-size: 1.8rem;
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
  line-height: 1;
}
.social-icon:hover {
  color: var(--glow);
  transform: translateY(-2px);
}

/* ── SCROLL HINT ── */
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  cursor: pointer;
  animation: scroll-bounce 2.5s ease-in-out infinite;
  opacity: 0.45;
}
.scroll-hint::after {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  border-right: 1.5px solid rgba(255,255,255,0.8);
  border-bottom: 1.5px solid rgba(255,255,255,0.8);
  transform: rotate(45deg);
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.35; }
  50%       { transform: translateX(-50%) translateY(7px); opacity: 0.7; }
}

/* ── INFO SECTION ── */
.info-section {
  background: var(--deep);
  padding: 6rem 2rem;
  border-top: 1px solid var(--border);
}

.info-inner {
  max-width: 900px;
  margin: 0 auto;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.info-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-heading {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  letter-spacing: 1px;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.info-text {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1.9;
  letter-spacing: 0.3px;
}

.info-link {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--glow);
  text-decoration: none;
  border-bottom: 1px solid rgba(199,125,255,0.3);
  padding-bottom: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.info-link:hover { border-color: var(--glow); }

.info-note {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.7;
  letter-spacing: 0.2px;
}

.hours-list { display: flex; flex-direction: column; gap: 0.6rem; }

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.78rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-day  { color: var(--text); font-weight: 300; }
.hours-time { color: var(--gold); font-weight: 500; white-space: nowrap; }

.enquiry-links { display: flex; flex-direction: column; gap: 0.5rem; }

/* Landing footer */
.landing-footer {
  background: var(--black);
  text-align: center;
  padding: 2rem 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}

.footer-admin-link {
  color: rgba(255,255,255,0.15);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-admin-link:hover { color: rgba(255,255,255,0.45); }

.footer-credit-link {
  display: inline-block;
  margin-top: 0.6rem;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s;
}
.footer-credit-link:hover { opacity: 0.7; }

/* ── ORDER BUTTON (landing) ── */
.order-now-btn {
  display: none;
  text-align: center;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  border: 1px solid rgba(201,168,76,0.55);
  color: var(--gold);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  border-radius: 3px;
  width: 100%;
  max-width: 320px;
  transition: background 0.25s, border-color 0.25s;
  margin-top: 0.25rem;
}
.order-now-btn:hover {
  background: rgba(201,168,76,0.25);
  border-color: var(--gold);
}
.order-now-btn.visible { display: block; }

/* ── ORDER PAGE ── */
body.order-page { background: var(--deep); }

.order-layout {
  display: flex;
  min-height: calc(100vh - 57px);
}

.order-main {
  flex: 1;
  padding: 2rem;
  min-width: 0;
}

.order-disabled {
  display: none;
  text-align: center;
  padding: 5rem 2rem;
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 1px;
}

/* Tabs */
.order-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.order-tabs::-webkit-scrollbar { display: none; }

.order-tab {
  padding: 0.8rem 1.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}
.order-tab:hover { color: var(--text); }
.order-tab.active { color: var(--glow); border-bottom-color: var(--glow); }

.cat-panel { display: none; }
.cat-panel.active { display: block; }

/* Shisha tier cards */
.order-section {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.25rem;
  margin-bottom: 0.75rem;
  background: var(--surface);
}

.order-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  gap: 1rem;
}

.order-section-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  display: block;
  margin-bottom: 0.2rem;
}

.order-section-desc {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.3px;
}

.order-price-tag {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  flex-shrink: 0;
}

.shisha-add-row {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.flavour-hint {
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0.6rem 0 0.5rem;
  letter-spacing: 0.5px;
}

.flavour-chips {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.5rem;
  margin-bottom: 0.85rem;
  padding: 0.15rem;
  border-radius: 6px;
  transition: outline 0.2s;
}

.flavour-chip {
  padding: 0.85rem 1rem;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 3px;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  line-height: 1.4;
}
.flavour-chip:hover {
  background: rgba(155,77,202,0.07);
  border-color: rgba(155,77,202,0.5);
  color: var(--white);
}
.flavour-chip.selected {
  background: rgba(155,77,202,0.16);
  border-color: var(--purple);
  color: var(--white);
  font-weight: 500;
}

@keyframes chip-shake {
  0%, 100% { transform: translateX(0); }
  20%       { transform: translateX(-5px); }
  40%       { transform: translateX(5px); }
  60%       { transform: translateX(-3px); }
  80%       { transform: translateX(3px); }
}
.flavour-chips.chip-shake { animation: chip-shake 0.35s ease; }
.flavour-chips.chip-error { outline: 1px solid var(--red, #e05555); }

/* Order success screen */
.order-success {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
  gap: 1rem;
  min-height: 60vh;
}
.order-success .success-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(37,211,102,0.2);
  border: 2px solid rgba(37,211,102,0.5);
  color: #25d366;
  font-size: 2rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.5rem;
}
.order-success h2 { font-size: 1.5rem; font-family: var(--font-display); font-weight: 400; color: var(--white); }
.order-success p  { font-size: 0.85rem; color: var(--muted); max-width: 300px; }
.order-success .back-btn {
  margin-top: 1rem;
  padding: 0.65rem 1.5rem;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 4px;
  text-decoration: none;
  font-family: inherit;
  transition: border-color 0.2s, color 0.2s;
}
.order-success .back-btn:hover { border-color: var(--glow); color: var(--glow); }

/* WhatsApp fallback notice */
.wa-fallback-notice {
  background: rgba(255,180,0,0.08);
  border: 1px solid rgba(255,180,0,0.25);
  border-radius: 6px;
  padding: 0.85rem 1rem;
  font-size: 0.8rem;
  color: var(--text);
  margin-bottom: 1rem;
}
.wa-fallback-notice strong { color: var(--gold); }
.wa-fallback-btn {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.45rem 1rem;
  background: rgba(37,211,102,0.12);
  border: 1px solid rgba(37,211,102,0.4);
  border-radius: 20px;
  color: #25d366;
  font-size: 0.75rem;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.wa-fallback-btn:hover { background: rgba(37,211,102,0.22); }

/* Food/drink item rows */
.order-cat-section { margin-bottom: 2.5rem; }

.order-cat-heading {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0.25rem;
}

.order-item-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.order-item-row:last-child { border-bottom: none; }

.order-item-name {
  flex: 1;
  font-size: 0.83rem;
  font-weight: 300;
  color: var(--text);
}

.order-item-price {
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--gold);
  white-space: nowrap;
}

.add-item-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(155,77,202,0.5);
  background: rgba(155,77,202,0.1);
  color: var(--glow);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.15s;
  flex-shrink: 0;
  font-family: inherit;
  line-height: 1;
}
.add-item-btn:hover { background: rgba(155,77,202,0.25); transform: scale(1.1); }
.add-item-btn.wide {
  width: auto;
  border-radius: 4px;
  padding: 0 1rem;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  height: 40px;
}

/* ── BASKET SIDEBAR ── */
.basket-panel {
  width: 320px;
  flex-shrink: 0;
  background: rgba(7,0,15,0.98);
  border-left: 1px solid var(--border);
  position: sticky;
  top: 57px;
  height: calc(100vh - 57px);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}

.basket-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1rem;
}

.basket-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--glow);
}

.basket-close {
  display: none;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
  padding: 0;
}

.basket-items { flex: 1; overflow-y: auto; }

.basket-empty {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
  padding: 2rem 0;
  letter-spacing: 0.5px;
}

.basket-item-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.basket-item-row:last-child { border-bottom: none; }

.basket-item-name {
  flex: 1;
  font-size: 0.76rem;
  color: var(--text);
  line-height: 1.35;
}

.basket-item-subtotal {
  font-size: 0.76rem;
  color: var(--gold);
  white-space: nowrap;
  min-width: 48px;
  text-align: right;
}

.qty-controls { display: flex; align-items: center; gap: 0.2rem; }

.qty-btn {
  width: 26px;
  height: 26px;
  border: 1px solid var(--border);
  background: none;
  color: var(--text);
  border-radius: 3px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-family: inherit;
  line-height: 1;
  transition: border-color 0.2s, color 0.2s;
}
.qty-btn:hover { border-color: var(--glow); color: var(--glow); }

.qty-value {
  font-size: 0.82rem;
  min-width: 22px;
  text-align: center;
  color: var(--white);
}

.basket-footer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.basket-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

.basket-total {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
}

.table-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 0.4rem;
}

#table-number {
  width: 100%;
  padding: 0.75rem 0.9rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--white);
  font-family: inherit;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 500;
  letter-spacing: 2px;
}
#table-number:focus { outline: none; border-color: var(--purple); }

.send-order-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(37,211,102,0.15), rgba(37,211,102,0.05));
  border: 1px solid rgba(37,211,102,0.45);
  color: #25D366;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.send-order-btn:hover {
  background: rgba(37,211,102,0.22);
  border-color: rgba(37,211,102,0.7);
}

.order-note {
  font-size: 0.65rem;
  color: var(--muted);
  text-align: center;
  margin-top: 0.75rem;
  line-height: 1.5;
  letter-spacing: 0.3px;
}

/* Floating basket button — mobile only */
.basket-float-btn {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 150;
  background: var(--purple);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.85rem 1.4rem;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(155,77,202,0.5);
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.2s;
}

.basket-badge {
  background: var(--gold);
  color: #000;
  border-radius: 10px;
  padding: 0.1em 0.45em;
  font-size: 0.8em;
  font-weight: 700;
  min-width: 1.2em;
  text-align: center;
}

.basket-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 149;
}
.basket-overlay.show { display: block; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {

  /* Landing */
  body.landing { overflow-y: auto; height: auto; min-height: 100vh; }

  .hero {
    height: 100svh;
    min-height: 100svh;
    padding-bottom: 5rem;
  }

  .hero-inner {
    margin-top: 0;
    padding: 0 1.25rem;
    gap: 1.25rem;
  }

  .brand-line1 { font-size: clamp(2.4rem, 11vw, 4rem); }
  .brand-line2 { font-size: clamp(3rem, 14vw, 5.5rem); margin-top: 0.05em; }

  .tagline {
    font-size: 0.62rem;
    letter-spacing: 3px;
    margin-top: 1rem;
  }

  /* Nav buttons — full width, stacked, equal size */
  .menu-nav {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
    gap: 0.65rem;
    margin-top: 1.5rem;
  }

  .menu-nav__item {
    width: 100%;
    padding: 1.1rem 1.5rem;
    height: 58px;
    min-height: 58px;
    justify-content: center;
  }

  .nav-label { font-size: 0.8rem; letter-spacing: 4px; }

  /* Page header */
  .page-header {
    padding: 0.9rem 1rem;
    grid-template-columns: auto 1fr auto;
    gap: 0.5rem;
  }

  .page-brand {
    font-size: 1.2rem;
    text-align: center;
  }

  .back-link { font-size: 0.68rem; white-space: nowrap; }

  /* Page main */
  .page-main { padding: 2rem 1.1rem 4rem; }

  .page-title-block { margin-bottom: 2.5rem; }

  .page-title { font-size: clamp(1.8rem, 8vw, 3rem); }

  .section-rule { margin: 2.5rem 0; }

  /* Shisha */
  .tier-header { align-items: flex-start; }
  .tier-price-tag { font-size: 2rem; }

  .flavour-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .flavour-card {
    padding: 0.85rem 0.75rem;
    font-size: 0.78rem;
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .combo-list { grid-template-columns: 1fr; }

  /* Food — collapse two-col */
  .food-section.two-col {
    display: block;
  }

  .food-section.two-col > div + div { margin-top: 2.5rem; }

  .food-section-title { font-size: 1.25rem; }

  .food-row { padding: 0.8rem 0; min-height: 48px; align-items: center; }

  .food-name { font-size: 0.85rem; }
  .food-price { font-size: 0.85rem; }

  /* Ice cream table — wider price cols, no wrapping on headers */
  .scoop-header, .scoop-row {
    grid-template-columns: 1fr 70px 70px;
    font-size: 0.78rem;
  }
  .scoop-header { letter-spacing: 0px; }
  .scoop-header span { white-space: nowrap; }

  /* Cocktails */
  .cocktail-grid { grid-template-columns: 1fr; }
  .cocktail-card { padding: 1.1rem; }
  .cocktail-name { font-size: 1rem; }

  /* Spirits — no-wrap headers, slightly wider price cols */
  .spirits-table { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .spirits-header, .spirits-row {
    grid-template-columns: 1fr 62px 66px;
    font-size: 0.76rem;
  }
  .spirits-header { letter-spacing: 0px; }
  .spirits-header span { white-space: nowrap; }

  /* Show arrow on mobile nav buttons */
  .nav-arrow { display: inline; opacity: 0.5; }

  /* Info section */
  .info-section { padding: 4rem 1.25rem; }
  .info-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .info-block { padding-bottom: 2.5rem; border-bottom: 1px solid var(--border); }
  .info-block:last-child { border-bottom: none; padding-bottom: 0; }
  .info-heading { font-size: 1.4rem; }

  /* Tagline on mobile - less margin since vertical space is limited */
  .tagline { margin-top: 2rem; }

  /* Order page mobile */
  .order-main { padding: 1.25rem 1rem; }

  .order-tab { padding: 0.75rem 1rem; font-size: 0.68rem; letter-spacing: 2px; }

  .shisha-add-row { flex-direction: column; align-items: stretch; }
  .shisha-add-row .add-item-btn.wide { width: 100%; height: 44px; }
  .flavour-chips { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
  .flavour-chip  { font-size: 0.78rem; padding: 0.8rem 0.75rem; min-height: 48px; display: flex; align-items: center; }

  .basket-panel {
    position: fixed;
    right: -100%;
    top: 0; bottom: 0;
    height: 100vh;
    width: 88%;
    max-width: 360px;
    z-index: 150;
    transition: right 0.3s ease;
  }
  .basket-panel.open { right: 0; }
  .basket-close { display: block; }
  .basket-float-btn { display: flex; }

  .order-now-btn { max-width: 100%; }
}

/* ════════════════════════════════════════════════════════════════════════════
   ADDITIONS — popular strip, discounts, restricted notes, shisha builder,
   mixer & acknowledgement modals (customer order page + menu pages)
   ════════════════════════════════════════════════════════════════════════════ */

.muted-hint { color: var(--muted); font-size: 0.92em; }

/* Discount / offer badge */
.disc-badge {
  display: inline-block; vertical-align: middle;
  background: rgba(76,175,122,0.16); color: #6fd6a0;
  border: 1px solid rgba(76,175,122,0.4); border-radius: 20px;
  padding: 0.1rem 0.55rem; font-size: 0.6rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
}

/* Restricted (alcohol / bottled) cues */
.restricted-note {
  font-size: 0.68rem; color: #e88; letter-spacing: 0.3px;
  margin: 0.2rem 0 0.6rem;
}
.restricted-dot { color: var(--red, #e05555); font-size: 0.7em; vertical-align: middle; }

/* Popular strip */
.popular-strip {
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: 8px; padding: 0.8rem 0.95rem; margin-bottom: 1rem;
}
.popular-title {
  font-size: 0.66rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.55rem;
}
.popular-sub {
  font-size: 0.6rem; letter-spacing: 1px; text-transform: uppercase;
  color: var(--muted); margin: 0.6rem 0 0.4rem;
}
.popular-row { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.popular-chip {
  background: rgba(155,77,202,0.1); border: 1px solid rgba(201,168,76,0.32);
  color: var(--text); border-radius: 20px; padding: 0.4rem 0.85rem;
  font-family: inherit; font-size: 0.76rem; cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.popular-chip:hover { background: rgba(201,168,76,0.18); border-color: var(--gold); }
.popular-chip.mix { border-style: dashed; }

/* Shisha cross-tier builder */
.tier-chip-group { margin-bottom: 0.9rem; }
.tier-chip-label {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 0.5rem; margin-bottom: 0.45rem;
  font-size: 0.78rem; color: var(--text); letter-spacing: 0.3px;
}
.tier-chip-price { color: var(--gold); font-weight: 600; white-space: nowrap; }
.tier-chip-price s { color: var(--muted); font-weight: 400; margin-right: 0.2rem; }
.shisha-build-bar {
  position: sticky; bottom: 0; margin-top: 1rem;
  display: flex; align-items: center; gap: 0.8rem;
  background: var(--surface); border: 1px solid var(--purple);
  border-radius: 8px; padding: 0.7rem 0.9rem;
}
.shisha-build-info { flex: 1; font-size: 0.8rem; color: var(--glow, #c77dff); }
.add-item-btn.wide:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

/* Generic shake for the builder card */
.order-section.chip-shake { animation: chip-shake 0.35s ease; }

/* Shared modal (mixer + acknowledgement) */
.hbb-modal-bg {
  display: none; position: fixed; inset: 0; z-index: 300;
  background: rgba(0,0,0,0.72); align-items: center; justify-content: center; padding: 1rem;
}
.hbb-modal-bg.open { display: flex; }
.hbb-modal {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 10px; width: 100%; max-width: 420px;
  max-height: 88vh; overflow-y: auto;
}
.hbb-modal-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.1rem 1.3rem; border-bottom: 1px solid var(--border);
}
.hbb-modal-head h3 { font-size: 1rem; font-weight: 400; color: var(--white); }
.hbb-modal-close { background: none; border: none; color: var(--muted); font-size: 1.6rem; cursor: pointer; line-height: 1; }
.hbb-modal-body { padding: 1.1rem 1.3rem; }
.hbb-modal-foot { padding: 1rem 1.3rem; border-top: 1px solid var(--border); }

.mixer-label {
  font-size: 0.64rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); margin: 0.8rem 0 0.5rem;
}
.mixer-label:first-child { margin-top: 0; }
.mixer-opts { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.mixer-opt {
  background: rgba(155,77,202,0.08); border: 1px solid rgba(155,77,202,0.28);
  color: var(--text); border-radius: 8px; padding: 0.55rem 0.85rem;
  font-family: inherit; font-size: 0.82rem; cursor: pointer;
}
.mixer-opt.selected { background: var(--purple); border-color: var(--purple); color: #fff; }
.mixer-plus { color: var(--gold); font-size: 0.9em; }
.mixer-opt.selected .mixer-plus { color: #fff; }

.ack-text { font-size: 0.85rem; line-height: 1.55; margin-bottom: 0.9rem; color: var(--text); }
.ack-items { font-size: 0.8rem; color: var(--muted); margin-bottom: 0.9rem; line-height: 1.7; }
.ack-check { display: flex; align-items: center; gap: 0.6rem; font-size: 0.85rem; color: var(--text); cursor: pointer; }
.ack-check input { width: 20px; height: 20px; }

/* Order-item price strikethrough (discounts) */
.order-item-price s { color: var(--muted); margin-right: 0.25rem; }

/* Menu-page (shisha/drinks) offer + restricted cues */
.tier-offer { margin-left: 0.5rem; }
.menu-section-restricted {
  font-size: 0.7rem; color: #e88; letter-spacing: 0.3px; margin: 0.15rem 0 0.6rem;
}

/* Upcoming events (landing page) */
.events-section {
  background: var(--deep);
  padding: 5rem 2rem;
  border-top: 1px solid var(--border);
}
.events-inner { max-width: 1000px; margin: 0 auto; }
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.event-card { display: flex; flex-direction: column; gap: 0.6rem; }
.event-card img {
  width: 100%; aspect-ratio: 3 / 4; object-fit: cover;
  border-radius: 10px; border: 1px solid var(--border);
}
.event-title {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 500;
  color: var(--white); letter-spacing: 0.3px;
}
.event-date { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.3px; }
@media (max-width: 640px) {
  .events-section { padding: 3.5rem 1.25rem; }
}
