/* ============================================================
   Turkmen Al Bukhari — Brand CSS  (Bulma 1.0.2 override layer)
   ============================================================ */

/* ── Tokens ──────────────────────────────────────────────────── */
:root {
  --brand-dark:   #1a0e05;
  --brand-brown:  #5C3D1E;
  --brand-mid:    #3d2312;
  --brand-gold:   #C9A84C;
  --brand-gold2:  #d4a83a;
  --brand-cream:  #FDF6EC;
  --brand-light:  #F5E6D0;
  --brand-border: #e8ddd0;
  --nav-h:        72px;   /* desktop navbar height */
  --mob-h:        64px;   /* mobile header height  */

  /* Force light color scheme — prevents Bulma/browser dark-mode inputs */
  color-scheme: light;

  /* Bulma primary → brand brown */
  --bulma-primary-h: 25deg;
  --bulma-primary-s: 53%;
  --bulma-primary-l: 24%;
}

/* ── Base ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--brand-cream);
  color: #333;
  overscroll-behavior-y: contain;
  padding-bottom: calc(64px + env(safe-area-inset-bottom));
}
@media (min-width: 769px) { body { padding-bottom: 0; } }

* { -webkit-tap-highlight-color: transparent; }

h1, h2, h3, h4, h5, h6,
.title, .subtitle { font-family: 'Playfair Display', serif; }

/* iOS zoom fix */
.input, .textarea, .select select { font-size: 16px !important; }

/* Tap targets */
.button, .navbar-item, .bottom-nav-item,
input[type="submit"], input[type="button"] { min-height: 44px; }

:focus-visible { outline: 3px solid var(--brand-gold); outline-offset: 2px; }

/* ══════════════════════════════════════════════════════════════
   TEXT LOGO  —  .brand  (used in header + footer)
   ══════════════════════════════════════════════════════════════ */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-badge {
  width: 46px;
  height: 46px;
  background: linear-gradient(145deg, var(--brand-gold2) 0%, var(--brand-gold) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-dark);
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(201,168,76,.4);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1;
}

.brand-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: .98rem;
  color: #fff;
  letter-spacing: .02em;
}

.brand-sub {
  font-family: 'Lato', sans-serif;
  font-size: .58rem;
  color: var(--brand-gold);
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 400;
}

.brand-tagline {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: .72rem;
  color: rgba(201,168,76,.85);
  font-style: italic;
  font-weight: 400;
  letter-spacing: .02em;
  margin-top: .2rem;
}

/* Hide redundant "RESTAURANT" sub-label everywhere — name already includes it */
.brand-sub { display: none; }

/* Footer variant */
.brand.is-footer .brand-name { color: rgba(255,255,255,.85); }

/* ══════════════════════════════════════════════════════════════
   MOBILE HEADER  (< 769px only)
   ══════════════════════════════════════════════════════════════ */
.site-mobile-header {
  background: var(--brand-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--mob-h);
  padding: 0 1rem;
  padding-top: env(safe-area-inset-top);
  position: sticky;
  top: 0;
  z-index: 300;
  box-shadow: none;
}

/* Mobile header: brand name slightly smaller to fit alongside buttons */
.site-mobile-header .brand-name { font-size: .88rem; }

/* ── Mobile header action buttons ────────────────────────── */
.mob-header-actions {
  display: flex;
  align-items: center;
  gap: .45rem;
  flex-shrink: 0;
}

/* "Order" pill button */
.mob-btn-order {
  background: var(--brand-gold);
  color: var(--brand-dark) !important;
  font-family: 'Lato', sans-serif;
  font-weight: 800;
  font-size: .72rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  border-radius: 6px;
  padding: 0 .85rem;
  height: 36px;
  min-height: 36px;
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: background .15s;
  white-space: nowrap;
}
.mob-btn-order:hover, .mob-btn-order:active {
  background: var(--brand-gold2);
  color: var(--brand-dark) !important;
}

/* Call icon button */
.mob-btn-call {
  width: 36px;
  height: 36px;
  min-height: 36px;
  border-radius: 6px;
  border: 1px solid rgba(201,168,76,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-gold);
  text-decoration: none;
  transition: background .15s, border-color .15s;
  flex-shrink: 0;
}
.mob-btn-call:hover, .mob-btn-call:active {
  background: rgba(201,168,76,.12);
  border-color: var(--brand-gold);
}
.mob-btn-call svg { display: block; }

/* ══════════════════════════════════════════════════════════════
   DESKTOP NAVBAR  (≥ 769px only)
   ══════════════════════════════════════════════════════════════ */
.site-navbar {
  background: var(--brand-dark) !important;
  height: var(--nav-h);
  border-bottom: none;
  position: sticky;
  top: 0;
  z-index: 300;
  box-shadow: none;
}

.site-navbar .navbar-brand { align-items: center; padding: 0; }
.site-navbar .navbar-item,
.site-navbar .navbar-link {
  color: rgba(255,255,255,.75) !important;
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  position: relative;
  transition: color .18s;
  padding-top: 0;
  padding-bottom: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
}
.site-navbar .navbar-item:hover,
.site-navbar .navbar-item:focus {
  color: var(--brand-gold) !important;
  background: transparent !important;
}
.site-navbar .navbar-item.is-active-nav { color: var(--brand-gold) !important; }
.site-navbar .navbar-item.is-active-nav::after {
  content: '';
  position: absolute;
  bottom: 0; left: 14px; right: 14px;
  height: 2px;
  background: var(--brand-gold);
  border-radius: 2px 2px 0 0;
}
.site-navbar .navbar-menu.is-active { background: transparent; box-shadow: none; }
.navbar-btn-reserve {
  background: var(--brand-gold) !important;
  color: var(--brand-dark) !important;
  border: none !important;
  font-weight: 700 !important;
  font-size: .82rem !important;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 6px !important;
  padding: 0 1.4rem !important;
  height: 40px;
  min-height: 40px;
  transition: background .18s, transform .1s;
}
.navbar-btn-reserve:hover {
  background: var(--brand-gold2) !important;
  transform: translateY(-1px);
}

/* ══════════════════════════════════════════════════════════════
   GOLD BUTTON (global)
   ══════════════════════════════════════════════════════════════ */
.button.is-warning {
  background: linear-gradient(135deg, var(--brand-gold2), var(--brand-gold));
  border-color: transparent;
  color: #fff;
  font-weight: 700;
  letter-spacing: .03em;
  transition: filter .18s, transform .12s;
}
.button.is-warning:hover, .button.is-warning:focus {
  filter: brightness(1.1);
  color: #fff;
  transform: translateY(-1px);
}

/* Ghost button */
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.4);
  font-weight: 600;
  border-radius: 6px;
  transition: background .18s, border-color .18s;
}
.btn-ghost:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.75);
  color: #fff;
}

/* ══════════════════════════════════════════════════════════════
   HERO  (homepage) — two-column, compact
   ══════════════════════════════════════════════════════════════ */
.site-hero {
  background:
    radial-gradient(ellipse at 15% 60%, rgba(201,168,76,.15) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 20%, rgba(201,168,76,.08) 0%, transparent 45%),
    #000;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  padding: 2rem 1.5rem;
  gap: 2rem;
}
@media (min-width: 900px) {
  .site-hero {
    grid-template-columns: 1fr 380px;
    padding: 3rem 5% 3rem 8%;
    gap: 4rem;
  }
}

/* ── Left: text content ── */
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}
@media (max-width: 899px) {
  .hero-content { align-items: center; text-align: center; }
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--brand-gold);
  opacity: .85;
  margin: 0;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.12;
  letter-spacing: -.02em;
  margin: 0;
}
@media (max-width: 768px) {
  .hero-headline { font-size: 1.75rem; line-height: 1.18; }
}
.hero-headline-accent {
  color: var(--brand-gold);
  font-style: italic;
}
.hero-headline-sm {
  font-size: .7em;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  font-style: normal;
}

/* ── Divider bar with text ── */
.hero-divider-bar {
  display: flex;
  align-items: center;
  gap: .6rem;
  width: 100%;
  max-width: 260px;
  margin: -.2rem 0 .2rem;
}
.hdb-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(201,168,76,.5), rgba(201,168,76,.1));
}
.hdb-line:last-child {
  background: linear-gradient(to left, rgba(201,168,76,.5), rgba(201,168,76,.1));
}
.hdb-text {
  font-size: .6rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(201,168,76,.9);
  white-space: nowrap;
}

/* ── Fact list ── */
.hero-facts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.hero-facts li {
  font-size: .83rem;
  color: rgba(255,255,255,.55);
  display: flex;
  align-items: center;
  gap: .5rem;
  letter-spacing: .02em;
}
.hf-icon { font-size: .9rem; }
@media (max-width: 899px) {
  .hero-facts { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: .35rem .9rem; }
}

/* ── CTA buttons ── */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: .5rem;
}
@media (max-width: 899px) { .hero-ctas { justify-content: center; } }
@media (max-width: 768px) {
  .hero-btn-primary,
  .hero-btn-ghost {
    min-height: 36px !important;
    height: 36px;
    padding: 0 .85rem !important;
    font-size: .62rem !important;
    letter-spacing: .05em;
    border-radius: 5px;
  }
}

.hero-btn-primary,
.hero-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  min-height: 50px;
  padding: 0 2rem;
  border-radius: 6px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .18s, box-shadow .18s, background .18s, border-color .18s;
}
.hero-btn-primary:hover,
.hero-btn-ghost:hover { transform: translateY(-2px); }

.hero-btn-primary {
  background: var(--brand-gold);
  color: #1a0e05;
  box-shadow: 0 4px 20px rgba(201,168,76,.4);
}
.hero-btn-primary:hover {
  background: #d9b94f;
  box-shadow: 0 7px 28px rgba(201,168,76,.55);
  color: #1a0e05;
}
.hero-btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.35);
}
.hero-btn-ghost:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.65);
  color: #fff;
}

/* ── Right: decorative badge ── */
.hero-deco {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (max-width: 899px) { .hero-deco { display: none; } }

.hero-badge {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-badge-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,.3);
  animation: spin-slow 30s linear infinite;
}
.hero-badge-ring-outer {
  width: 280px;
  height: 280px;
  border-style: dashed;
  border-color: rgba(201,168,76,.2);
}
.hero-badge-ring-inner {
  width: 210px;
  height: 210px;
  border-color: rgba(201,168,76,.4);
  animation-direction: reverse;
  animation-duration: 20s;
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.hero-badge-core {
  width: 160px;
  height: 160px;
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.45);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .2rem;
  text-align: center;
}
.hero-badge-tab {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--brand-gold);
  line-height: 1;
}
.hero-badge-name {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  line-height: 1.5;
}
.hero-badge-sub {
  font-size: .52rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(201,168,76,.6);
}

/* ── Floating dish labels ── */
.hero-float {
  position: absolute;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  white-space: nowrap;
}
.hf1 { top: 18px;  left: 50%; transform: translateX(-50%); }
.hf2 { right: 0;   top: 50%; transform: translateY(-50%); }
.hf3 { bottom: 18px; left: 50%; transform: translateX(-50%); }
.hf4 { left: 0;    top: 50%; transform: translateY(-50%); }

.scroll-hint {
  color: rgba(255,255,255,.25);
  font-size: 1.3rem;
  text-decoration: none;
  display: inline-block;
  animation: bob 2.5s ease-in-out infinite;
}
@keyframes bob {
  0%,100% { transform: translateY(0);    opacity: .25; }
  50%      { transform: translateY(8px); opacity: .6;  }
}

/* ══════════════════════════════════════════════════════════════
   INNER PAGE HERO BANNER
   ══════════════════════════════════════════════════════════════ */
.page-banner {
  background:
    radial-gradient(ellipse at 80% 50%, rgba(201,168,76,.1) 0%, transparent 60%),
    linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-mid) 60%, var(--brand-brown) 100%);
  padding: 3.5rem 1.5rem 3rem;
  text-align: center;
}
/* When banner holds confirmation content, needs slightly more room */
.page-banner .oc-check-wrap { margin-left: auto; margin-right: auto; }
.page-banner .oc-ref-box    { justify-content: center; }

.page-banner-eyebrow {
  display: block;
  font-size: .7rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--brand-gold);
  opacity: .8;
  margin-bottom: .85rem;
}

.page-banner-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: #fff;
  font-weight: 700;
  margin-bottom: .5rem;
}

.page-banner-sub {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  letter-spacing: .04em;
}

/* ══════════════════════════════════════════════════════════════
   SECTION UTILITIES
   ══════════════════════════════════════════════════════════════ */
.section-label {
  display: block;
  font-size: .68rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--brand-gold);
  margin-bottom: .6rem;
  font-family: 'Lato', sans-serif;
}

.section-title {
  font-family: 'Playfair Display', serif;
  color: var(--brand-brown);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
}

.section-sub {
  font-size: .9rem;
  color: #888;
  margin-top: .5rem;
}

.gold-line {
  width: 40px;
  height: 2px;
  background: var(--brand-gold);
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* ══════════════════════════════════════════════════════════════
   MENU SHOWCASE — unified Signature Dishes + Platter Deals
   ══════════════════════════════════════════════════════════════ */

/* section wrapper */
.menu-showcase {
  background: var(--brand-cream);
  padding: 2.5rem 1.5rem 4rem;
}
.menu-showcase-title {
  font-family: 'Playfair Display', serif;
  color: var(--brand-brown);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  line-height: 1.25;
  margin: .4rem 0 .5rem;
}
.menu-showcase-sub {
  font-size: .88rem;
  color: #999;
  margin-top: .4rem;
}

/* ── Dish card (v2) ─────────────────────────────────────────── */
.dish-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--brand-border);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 16px rgba(92,61,30,.06);
  transition: box-shadow .22s, transform .22s;
}
.dish-card:hover {
  box-shadow: 0 10px 32px rgba(92,61,30,.13);
  transform: translateY(-3px);
}
/* gold accent bar at top of each card */
.dish-card-accent {
  height: 3px;
  background: linear-gradient(90deg, var(--brand-gold) 0%, transparent 100%);
  flex-shrink: 0;
}
.dish-card-body {
  padding: 1.1rem 1.3rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .45rem;
  flex: 1;
}
.dish-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: .6rem;
}
.dish-card-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.01rem;
  color: #1a0e05;
  line-height: 1.35;
  flex: 1;
}
.dish-card-name-ur {
  display: inline;
  font-family: 'Noto Nastaliq Urdu', 'Jameel Noori Nastaleeq', serif;
  font-size: .8rem;
  color: var(--brand-gold);
  font-weight: 400;
}
.dish-card-price {
  font-family: 'Lato', sans-serif;
  font-weight: 800;
  font-size: .85rem;
  color: var(--brand-brown);
  white-space: nowrap;
  flex-shrink: 0;
  background: rgba(201,168,76,.12);
  padding: .18rem .45rem;
  border-radius: 5px;
}
.dish-card-desc {
  font-size: .8rem;
  color: #888;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.dish-card-tag {
  display: block;
  margin-top: auto;
  padding-top: .55rem;
  font-size: .65rem;
  color: var(--brand-gold);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-top: 1px solid var(--brand-border);
}

/* ── Platter callout box ────────────────────────────────────── */
.platter-callout {
  margin-top: 3rem;
  background: linear-gradient(135deg, #1a0e05 0%, #2d1a0e 60%, #3d220f 100%);
  border-radius: 18px;
  padding: 2.25rem 2.5rem;
  border: 1px solid rgba(201,168,76,.22);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.platter-callout-text { flex: 1; min-width: 220px; }
.platter-callout-label {
  display: block;
  font-size: .65rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--brand-gold);
  font-family: 'Lato', sans-serif;
  margin-bottom: .5rem;
}
.platter-callout-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: #fff;
  font-weight: 700;
  margin: 0 0 .7rem;
  line-height: 1.3;
}
.platter-callout-body {
  color: rgba(255,255,255,.5);
  font-size: .84rem;
  line-height: 1.75;
  margin: 0;
}
.platter-callout-body strong { color: var(--brand-gold); font-weight: 700; }
.platter-callout-cta { flex-shrink: 0; }
.platter-callout-btn {
  min-height: 50px !important;
  padding: 0 2.25rem !important;
  border-radius: 9px !important;
  font-size: .88rem !important;
  letter-spacing: .03em;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .platter-callout { padding: 1.75rem 1.4rem; flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .platter-callout-btn { width: 100%; text-align: center; }
}

/* ══════════════════════════════════════════════════════════════
   ORDER CTA STRIP
   ══════════════════════════════════════════════════════════════ */
.order-cta-strip {
  background: #0c0806;
  border-top: 1px solid rgba(201,168,76,.14);
  border-bottom: 1px solid rgba(201,168,76,.14);
  padding: 2rem 1.5rem;
}
.order-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.order-cta-left { flex: 1; min-width: 180px; }
.order-cta-eyebrow {
  display: block;
  font-size: .62rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--brand-gold);
  font-family: 'Lato', sans-serif;
  margin-bottom: .3rem;
}
.order-cta-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  color: #fff;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}
.order-cta-hours {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  white-space: nowrap;
}
.order-cta-hours-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--brand-gold);
  border-radius: 50%;
  flex-shrink: 0;
  opacity: .7;
}
.order-cta-actions {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.order-cta-btn {
  min-height: 44px !important;
  padding: 0 1.75rem !important;
  border-radius: 8px !important;
  font-size: .88rem !important;
  letter-spacing: .02em;
  white-space: nowrap;
}
.order-cta-tel {
  color: rgba(255,255,255,.55);
  font-size: .8rem;
  font-weight: 700;
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  border-bottom: 1px solid rgba(201,168,76,.35);
  padding-bottom: 1px;
  white-space: nowrap;
  transition: color .18s, border-color .18s;
}
.order-cta-tel:hover { color: var(--brand-gold); border-color: var(--brand-gold); }
@media (max-width: 640px) {
  .order-cta-inner  { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .order-cta-hours  { margin-top: .2rem; }
  .order-cta-actions { width: 100%; }
  .order-cta-btn    { flex: 1; text-align: center; }
}

.feature-card {
  background: #fff;
  border-radius: 14px;
  padding: 2.25rem 1.75rem;
  height: 100%;
  border: 1px solid var(--brand-border);
  transition: box-shadow .22s, transform .22s;
  text-align: center;
}
.feature-card:hover {
  box-shadow: 0 12px 36px rgba(92,61,30,.11);
  transform: translateY(-4px);
}

.feature-icon {
  width: 66px;
  height: 66px;
  background: linear-gradient(145deg, var(--brand-gold2), var(--brand-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 1.3rem;
  box-shadow: 0 6px 18px rgba(201,168,76,.35);
}

.feature-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-brown);
  margin-bottom: .6rem;
}

.feature-body { font-size: .875rem; color: #777; line-height: 1.7; }

/* ══════════════════════════════════════════════════════════════
   STAT STRIP
   ══════════════════════════════════════════════════════════════ */
/* ── Reasons strip (dark, under hero) ── */
.reasons-strip {
  background: #000;
  border-top: 1px solid rgba(201,168,76,.18);
  border-bottom: 1px solid rgba(201,168,76,.18);
  padding: 0 5%;
}
.reasons-inner {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}
.reason-item {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  padding: 1.6rem 1.5rem;
  flex: 1 1 200px;
}
.reason-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: .1rem;
}
.reason-title {
  font-family: 'Playfair Display', serif;
  font-size: .92rem;
  font-weight: 700;
  color: var(--brand-gold);
  margin-bottom: .3rem;
  line-height: 1.2;
}
.reason-body {
  font-size: .76rem;
  color: rgba(255,255,255,.45);
  line-height: 1.55;
  margin: 0;
}
.reason-divider {
  width: 1px;
  background: rgba(201,168,76,.15);
  align-self: stretch;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  /* ── Horizontal swipe carousel ── */
  .reasons-strip {
    padding: 0;                    /* no side padding — scroll handles it */
    border-bottom: none;
  }
  .reasons-inner {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;  /* momentum scroll on iOS */
    scroll-snap-type: x mandatory;
    scrollbar-width: none;              /* hide scrollbar Firefox */
    padding: .25rem 1.25rem .25rem;
    gap: .75rem;
    align-items: stretch;
  }
  .reasons-inner::-webkit-scrollbar { display: none; }
  .reason-item {
    flex: 0 0 75vw;                /* ~75% wide — next card peeks in */
    min-width: 200px;
    max-width: 260px;
    padding: 1.25rem 1rem;
    scroll-snap-align: start;
    background: rgba(255,255,255,.04);
    border-radius: 10px;
    border: 1px solid rgba(201,168,76,.12);
  }
  .reason-divider { display: none; }  /* dividers replaced by card gaps */
}

/* ══════════════════════════════════════════════════════════════
   MENU PAGE
   ══════════════════════════════════════════════════════════════ */
.cat-filter-bar {
  background: #fff;
  border-bottom: 1px solid var(--brand-border);
  position: sticky;
  top: var(--mob-h);
  z-index: 50;
  padding: .6rem 0;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
@media (min-width: 769px) { .cat-filter-bar { top: var(--nav-h); } }

.cat-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 1rem;
}
.cat-scroll::-webkit-scrollbar { display: none; }

.cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1.5px solid var(--brand-border);
  background: transparent;
  font-size: .82rem;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s, border-color .15s, color .15s;
  min-height: 36px;
}
.cat-pill:hover    { border-color: var(--brand-gold); color: var(--brand-brown); }
.cat-pill.is-active {
  background: var(--brand-gold);
  border-color: var(--brand-gold);
  color: #fff;
  box-shadow: 0 3px 10px rgba(201,168,76,.4);
}

.menu-section-heading {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--brand-gold);
}
.menu-section-emoji { font-size: 1.5rem; }
.menu-section-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-brown);
  flex: 1;
}
.menu-section-count {
  font-size: .7rem;
  color: #aaa;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* Menu item row */
.menu-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: .9rem 0;
  border-bottom: 1px dashed #ede2d4;
}
.menu-item:last-child { border-bottom: none; }

.menu-item-img {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  overflow: hidden;
}
.menu-item-img img { width: 100%; height: 100%; object-fit: cover; }

.menu-item-body { flex: 1; min-width: 0; }
.menu-item-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #2a2a2a;
  font-size: .95rem;
  line-height: 1.3;
}
.menu-item-name-ur {
  display: inline;
  font-family: 'Noto Nastaliq Urdu', 'Jameel Noori Nastaleeq', serif;
  font-size: .85rem;
  color: var(--brand-gold);
  font-weight: 400;
  margin-right: 4px;
}
.menu-item-desc {
  font-size: .8rem;
  color: #888;
  margin-top: 3px;
  line-height: 1.5;
}

.menu-item-price {
  font-weight: 800;
  color: var(--brand-brown);
  font-size: .9rem;
  white-space: nowrap;
  flex-shrink: 0;
  font-family: 'Lato', sans-serif;
  padding-top: 2px;
}

/* ══════════════════════════════════════════════════════════════
   FORM STYLES  (reservation + contact)
   ══════════════════════════════════════════════════════════════ */
.form-card {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  border: 1px solid var(--brand-border);
  box-shadow: 0 4px 24px rgba(92,61,30,.07);
}
@media (max-width: 768px) { .form-card { padding: 1.75rem 1.25rem; } }

.form-section-label {
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brand-gold);
  font-weight: 700;
  margin-bottom: 1rem;
  display: block;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--brand-border);
}

.label { color: #555; font-size: .85rem; font-weight: 600; margin-bottom: .35rem; }

.input, .textarea, .select select {
  background-color: #fff !important;
  border-color: var(--brand-border);
  border-radius: 8px;
  color: #333 !important;
  transition: border-color .18s, box-shadow .18s;
}
.input:focus, .textarea:focus, .select select:focus {
  border-color: var(--brand-gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.15);
}

.input::placeholder, .textarea::placeholder { color: #bbb !important; font-size: .875rem; }

/* ══════════════════════════════════════════════════════════════
   INFO CARD (sidebar on contact/about)
   ══════════════════════════════════════════════════════════════ */
.info-card {
  background: linear-gradient(145deg, var(--brand-dark) 0%, var(--brand-mid) 100%);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  border: 1px solid rgba(201,168,76,.2);
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
}
.info-card-row {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .75rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  font-size: .875rem;
}
.info-card-row:last-child { border-bottom: none; padding-bottom: 0; }
.info-card-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.info-card-text { color: rgba(255,255,255,.7); line-height: 1.5; }
.info-card-text a { color: var(--brand-gold); text-decoration: none; }
.info-card-text a:hover { text-decoration: underline; }
.info-card-label { color: rgba(255,255,255,.4); font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; display: block; }

/* ══════════════════════════════════════════════════════════════
   ABOUT PAGE
   ══════════════════════════════════════════════════════════════ */
.cuisine-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--brand-border);
}
.cuisine-item:last-child { border-bottom: none; }
.cuisine-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(145deg, var(--brand-light), #fff);
  border: 1.5px solid var(--brand-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.cuisine-title { font-weight: 700; color: var(--brand-brown); margin-bottom: .25rem; font-size: .95rem; }
.cuisine-desc  { font-size: .82rem; color: #777; line-height: 1.55; }

.value-item { text-align: center; padding: 1.5rem 1rem; }
.value-icon { font-size: 2rem; margin-bottom: .75rem; display: block; }
.value-title { font-weight: 700; color: #fff; margin-bottom: .35rem; font-size: .95rem; }
.value-desc  { font-size: .8rem; color: rgba(255,255,255,.55); line-height: 1.6; }

/* ══════════════════════════════════════════════════════════════
   BOTTOM NAV (mobile)
   ══════════════════════════════════════════════════════════════ */
.bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: calc(66px + env(safe-area-inset-bottom));
  padding-bottom: env(safe-area-inset-bottom);
  background: #0c0602;
  border-top: 1px solid rgba(201,168,76,.22);
  display: flex;
  align-items: stretch;
  z-index: 200;
  box-shadow: 0 -8px 32px rgba(0,0,0,.55);
}

.bottom-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-decoration: none;
  color: rgba(255,255,255,.42);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 10px 2px 8px;
  min-height: 44px;
  position: relative;
  transition: color .18s;
}

/* Animated gold dot indicator above active icon */
.bottom-nav-item::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%) scale(0);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--brand-gold);
  box-shadow: 0 0 6px rgba(201,168,76,.8);
  transition: transform .22s cubic-bezier(.34,1.56,.64,1);
}
.bottom-nav-item.active::after { transform: translateX(-50%) scale(1); }

.bottom-nav-item.active { color: var(--brand-gold); }
.bottom-nav-item:hover  { color: rgba(255,255,255,.7); }

/* Icon wrapper */
.bottom-nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .18s;
}
.bottom-nav-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}
.bottom-nav-item.active .bottom-nav-icon {
  filter: drop-shadow(0 0 5px rgba(201,168,76,.45));
  transform: translateY(-1px);
}

.bottom-nav-label { display: block; line-height: 1; }

/* ── Order tab — floating circular gold FAB ──────────────── */
.bottom-nav-item--order {
  color: rgba(255,255,255,.42);
}
.bottom-nav-item--order .bottom-nav-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--brand-gold2), var(--brand-gold));
  color: #1a0e05;
  margin-top: -22px;
  box-shadow:
    0 4px 16px rgba(201,168,76,.55),
    0 0 0 3px rgba(201,168,76,.15);
  transition: transform .18s, box-shadow .18s;
}
.bottom-nav-item--order .bottom-nav-icon svg {
  color: #1a0e05;
  stroke: #1a0e05;
}
.bottom-nav-item--order.active,
.bottom-nav-item--order:hover { color: var(--brand-gold); }
.bottom-nav-item--order .bottom-nav-icon:hover,
.bottom-nav-item--order.active .bottom-nav-icon {
  transform: translateY(-3px) scale(1.05);
  box-shadow:
    0 8px 24px rgba(201,168,76,.65),
    0 0 0 4px rgba(201,168,76,.2);
}
/* No dot indicator for the FAB tab */
.bottom-nav-item--order::after,
.bottom-nav-item--order.active::after { display: none; }

/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--brand-dark);
  border-top: 2px solid rgba(201,168,76,.25);
  padding: 3.5rem 1.5rem calc(64px + env(safe-area-inset-bottom) + 2rem);
}
@media (min-width: 769px) { .site-footer { padding-bottom: 3rem; } }

.footer-col-title {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brand-gold);
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: .45rem; }
.footer-links a {
  color: rgba(255,255,255,.5);
  font-size: .875rem;
  text-decoration: none;
  transition: color .15s;
}
.footer-links a:hover { color: var(--brand-gold); }

.footer-contact-line {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  margin-bottom: .5rem;
  line-height: 1.5;
}
.footer-contact-line a { color: rgba(255,255,255,.5); text-decoration: none; transition: color .15s; }
.footer-contact-line a:hover { color: var(--brand-gold); }

.footer-tagline { color: rgba(255,255,255,.35); font-size: .8rem; margin-top: .6rem; }

.footer-about {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  line-height: 1.75;
  padding-right: 3rem;
}

.footer-address {
  display: flex;
  align-items: flex-start;
  gap: .45rem;
  font-size: .78rem;
  color: rgba(255,255,255,.35);
  line-height: 1.55;
}
.footer-address-icon { flex-shrink: 0; font-size: .85rem; margin-top: .05rem; }

.footer-social {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
}
.footer-social-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .38rem .8rem;
  border-radius: 6px;
  border: 1px solid rgba(201,168,76,.25);
  color: rgba(255,255,255,.55);
  font-size: .75rem;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: .03em;
  transition: border-color .18s, color .18s, background .18s;
}
.footer-social-btn:hover {
  border-color: var(--brand-gold);
  color: var(--brand-gold);
  background: rgba(201,168,76,.06);
}

.footer-hr { border: none; border-top: 1px solid rgba(255,255,255,.08); margin: 2rem 0 1.5rem; }
.footer-copy { font-size: .78rem; color: rgba(255,255,255,.25); text-align: center; }

/* ══════════════════════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════════════════════ */
.faq-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: .5rem;
  border: 1px solid var(--brand-border);
  overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item[open] { box-shadow: 0 4px 16px rgba(92,61,30,.08); }

.faq-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  font-weight: 700;
  font-size: .95rem;
  color: var(--brand-brown);
  list-style: none;
  user-select: none;
  min-height: 52px;
}
.faq-summary::-webkit-details-marker { display: none; }
.faq-summary:hover { color: var(--brand-gold); }

.faq-icon {
  font-size: 1.3rem;
  color: var(--brand-gold);
  flex-shrink: 0;
  transition: transform .2s;
  font-weight: 300;
  line-height: 1;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); }

.faq-body {
  padding: .25rem 1.25rem 1.25rem;
  font-size: .9rem;
  color: #666;
  line-height: 1.75;
}
.faq-body a { color: var(--brand-brown); font-weight: 600; }

/* ══════════════════════════════════════════════════════════════
   SUCCESS / ERROR FLASH
   ══════════════════════════════════════════════════════════════ */
.success-card {
  background: #fff;
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  border: 1px solid var(--brand-border);
  box-shadow: 0 4px 24px rgba(92,61,30,.07);
}
.success-icon { font-size: 3.5rem; display: block; margin-bottom: 1rem; }

/* ══════════════════════════════════════════════════════════════
   ORDER PAGE
   ══════════════════════════════════════════════════════════════ */

/* Two-column grid: menu left, cart+form right */
.order-layout {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .order-layout {
    grid-template-columns: 1fr 380px;
    align-items: start;
    gap: 2rem;
    padding: 2rem 1.5rem 3rem;
  }
}

/* Checkout column — sticky on desktop */
.order-checkout-col { padding: 1.25rem 1.25rem 2rem; }
@media (min-width: 900px) {
  .order-checkout-col {
    position: sticky;
    top: calc(var(--nav-h) + 1rem);
    padding: 0;
    max-height: calc(100vh - var(--nav-h) - 2rem);
    overflow-y: auto;
    scrollbar-width: thin;
  }
}

/* Category filter — offset for nav height */
.order-cat-bar {
  background: #fff;
  border-bottom: 1px solid var(--brand-border);
  position: sticky;
  top: var(--mob-h);
  z-index: 50;
  padding: .55rem 0;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
@media (min-width: 769px) { .order-cat-bar { top: var(--nav-h); } }

/* Menu section block */
.order-section {
  background: #fff;
  margin-bottom: 6px;
  padding: 1rem 1.25rem;
}
@media (min-width: 900px) {
  .order-section {
    border-radius: 12px;
    border: 1px solid var(--brand-border);
    margin-bottom: 1rem;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 2px 8px rgba(92,61,30,.04);
  }
}
.order-section-head {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding-bottom: .75rem;
  margin-bottom: .5rem;
  border-bottom: 2px solid var(--brand-gold);
}
.order-section-emoji { font-size: 1.3rem; }
.order-section-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--brand-brown);
  flex: 1;
}

/* Individual order item row */
.order-item {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .75rem 0;
  border-bottom: 1px dashed #ede2d4;
}
.order-item:last-child { border-bottom: none; }

.order-item-thumb {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  flex-shrink: 0;
  background: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  overflow: hidden;
}
.order-item-thumb img { width:100%;height:100%;object-fit:cover; }

.order-item-info { flex: 1; min-width: 0; }
.order-item-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: .88rem;
  color: #2a2a2a;
  line-height: 1.3;
}
.order-item-name-ur {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: .78rem;
  color: var(--brand-gold);
  font-weight: 400;
  margin-right: .2rem;
}

.order-item-desc {
  font-size: .73rem;
  color: #aaa;
  margin-top: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 200px;
}
.order-item-price {
  font-weight: 800;
  color: var(--brand-brown);
  font-size: .82rem;
  font-family: 'Lato', sans-serif;
  margin-top: 4px;
  display: block;
}

/* Controls column — fixed width, never grows or shrinks */
.order-item-ctrl {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
  width: 88px;   /* matches qty-ctrl width so layout never shifts */
}

/* Add button (shown when qty = 0) */
.add-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-gold2), var(--brand-gold));
  border: none;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(201,168,76,.4);
  transition: transform .12s, filter .12s;
  min-height: 36px;
}
.add-btn:hover { transform: scale(1.12); filter: brightness(1.1); }

/* Quantity control (shown when qty > 0) */
.qty-ctrl {
  display: none;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
  background: var(--brand-cream);
  border: 1.5px solid var(--brand-border);
  border-radius: 100px;
  overflow: hidden;
}
.qty-ctrl.show { display: flex; }
.qty-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--brand-brown);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .1s;
  min-height: 32px;
  padding: 0;
}
.qty-btn:hover { background: var(--brand-border); }
.qty-num {
  min-width: 24px;
  text-align: center;
  font-weight: 700;
  font-size: .88rem;
  color: var(--brand-brown);
  font-family: 'Lato', sans-serif;
  user-select: none;
}

/* Cart summary card */
.order-cart-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--brand-border);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(92,61,30,.07);
  margin-bottom: 1rem;
}
.order-cart-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--brand-brown);
  font-size: 1rem;
  padding: 1rem 1.25rem .85rem;
  border-bottom: 1px solid var(--brand-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.order-cart-empty {
  padding: 2rem 1.25rem;
  text-align: center;
  color: #ccc;
  font-size: .85rem;
  line-height: 1.6;
}
.cart-item-row {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1.25rem;
  border-bottom: 1px dashed #ede2d4;
  font-size: .82rem;
}
.cart-item-row:last-child { border-bottom: none; }
.cart-item-emoji { font-size: 1rem; flex-shrink: 0; }
.cart-item-name  { flex: 1; min-width: 0; color: #333; font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cart-item-qty   { color: #bbb; flex-shrink: 0; font-size: .75rem; }
.cart-item-sub   { font-weight: 700; color: var(--brand-brown); flex-shrink: 0; white-space: nowrap; font-family: 'Lato', sans-serif; }
.cart-item-del   { width: 22px; height: 22px; border: none; background: none; color: #ddd; font-size: 1rem; cursor: pointer; flex-shrink: 0; padding: 0; line-height: 1; transition: color .12s; display: flex; align-items: center; justify-content: center; }
.cart-item-del:hover { color: #e04747; }
.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .9rem 1.25rem;
  background: var(--brand-cream);
  font-weight: 700;
  border-top: 2px solid var(--brand-gold);
  font-size: .92rem;
  color: #555;
}
.cart-total-amount {
  color: var(--brand-brown);
  font-family: 'Lato', sans-serif;
  font-size: 1.1rem;
}

/* ── Coupon code input ───────────────────────────────────────── */
.coupon-wrap {
  padding: .6rem 1.25rem;
  background: #fdfbf8;
  border-top: 1px dashed #e8ddd0;
}
.coupon-field {
  display: flex;
  gap: .4rem;
  align-items: center;
}
.coupon-input {
  flex: 1;
  border: 1.5px solid #e8ddd0;
  border-radius: 8px;
  padding: .45rem .75rem;
  font-size: .83rem;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--brand-brown);
  background: #fff;
  min-height: 40px;
  outline: none;
  transition: border-color .15s;
  text-transform: uppercase;
}
.coupon-input:focus  { border-color: var(--brand-gold); }
.coupon-input:disabled { background: #f5f0eb; color: #aaa; }
.coupon-apply-btn {
  padding: 0 .9rem;
  border: none;
  background: var(--brand-brown);
  color: #fff;
  border-radius: 8px;
  font-size: .8rem;
  font-weight: 700;
  cursor: pointer;
  min-height: 40px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .15s, opacity .15s;
}
.coupon-apply-btn:hover    { background: var(--brand-gold); color: var(--brand-brown); }
.coupon-apply-btn:disabled { opacity: .55; cursor: not-allowed; }
.coupon-msg {
  margin: .4rem 0 0;
  font-size: .75rem;
  line-height: 1.4;
}
.coupon-msg.is-success { color: #257942; font-weight: 600; }
.coupon-msg.is-error   { color: #cc0f35; }

/* Order type selector */
.order-type-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 1.25rem;
}
.order-type-btn {
  flex: 1;
  padding: .55rem .4rem;
  border: 1.5px solid var(--brand-border);
  border-radius: 8px;
  background: #fff;
  font-size: .78rem;
  font-weight: 600;
  color: #888;
  cursor: pointer;
  text-align: center;
  transition: all .15s;
  min-height: 44px;
  line-height: 1.4;
}
.order-type-btn:hover { border-color: var(--brand-gold); color: var(--brand-brown); }
.order-type-btn.is-active {
  background: var(--brand-gold);
  border-color: var(--brand-gold);
  color: #fff;
  box-shadow: 0 3px 10px rgba(201,168,76,.35);
}

/* Submit button — disabled state */
#submit-order-btn:disabled {
  opacity: .45;
  cursor: not-allowed;
  filter: none;
  transform: none;
}

/* Mobile cart bar — fixed above bottom-nav */
.cart-bar {
  position: fixed;
  left: 0; right: 0;
  bottom: calc(64px + env(safe-area-inset-bottom));
  background: var(--brand-dark);
  border-top: 1px solid rgba(201,168,76,.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .7rem 1.25rem;
  z-index: 150;
  box-shadow: 0 -4px 20px rgba(0,0,0,.35);
  transition: transform .25s cubic-bezier(.4,0,.2,1);
}
.cart-bar.hide { transform: translateY(140%); }
.cart-bar-left { display: flex; align-items: center; gap: .65rem; }
.cart-bar-badge {
  background: var(--brand-gold);
  color: var(--brand-dark);
  font-weight: 800;
  font-size: .72rem;
  min-width: 22px;
  height: 22px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
}
.cart-bar-total { color: #fff; font-weight: 700; font-size: .88rem; font-family: 'Lato', sans-serif; }
.cart-bar-btn {
  background: var(--brand-gold) !important;
  color: var(--brand-dark) !important;
  border: none !important;
  font-weight: 700 !important;
  font-size: .8rem !important;
  padding: 0 1rem !important;
  height: 36px !important;
  min-height: 36px !important;
  border-radius: 6px !important;
  white-space: nowrap;
}

/* ══════════════════════════════════════════════════════════════
   COOKIE CONSENT BAR
   ══════════════════════════════════════════════════════════════ */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9990;
  background: rgba(18,9,3,.97);
  -webkit-backdrop-filter: blur(8px); /* Safari */
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(201,168,76,.22);
  padding: 1rem 1.5rem;
  transform: translateY(100%);
  transition: transform .38s cubic-bezier(.22,1,.36,1);
  box-shadow: 0 -6px 28px rgba(0,0,0,.45);
  pointer-events: none; /* not interactive while hidden */
}
.cookie-bar.is-visible {
  transform: translateY(0);
  pointer-events: auto; /* restore clicks/taps when visible */
  z-index: 9995;        /* above bottom-nav (200) and everything else */
}

/* On mobile: keep bottom:0 so translateY(100%) always slides fully off-screen.
   When visible, shift the bar UP above the bottom nav using a negative translateY. */
@media (max-width: 768px) {
  .cookie-bar.is-visible {
    transform: translateY(calc(-1 * (64px + env(safe-area-inset-bottom))));
  }
}

.cookie-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}
.cookie-bar-text {
  flex: 1;
  min-width: 200px;
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
}
.cookie-bar-text a {
  color: var(--brand-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-bar-text a:hover { color: #e0be6e; }
.cookie-bar-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.cookie-btn-accept {
  min-height: 36px !important;
  padding: 0 1.25rem !important;
  border-radius: 6px !important;
  font-size: .78rem !important;
  letter-spacing: .03em;
}
.cookie-btn-decline {
  background: none;
  border: none;
  cursor: pointer;
  font-size: .75rem;
  color: rgba(255,255,255,.35);
  padding: .25rem .4rem;
  transition: color .18s;
  font-family: 'Lato', sans-serif;
}
.cookie-btn-decline:hover { color: rgba(255,255,255,.65); }

/* ══════════════════════════════════════════════════════════════
   LEGAL PAGES  (privacy / terms / returns)
   ══════════════════════════════════════════════════════════════ */
.legal-hero {
  background: #0c0806;
  padding: 3rem 1.5rem 2.75rem;
  border-bottom: 1px solid rgba(201,168,76,.15);
}
.legal-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: #fff;
  font-weight: 700;
  margin: .4rem 0 .6rem;
  line-height: 1.2;
}
.legal-hero-meta {
  font-size: .78rem;
  color: rgba(255,255,255,.35);
  font-family: 'Lato', sans-serif;
}

.legal-body {
  background: #fff;
  padding: 3.5rem 1.5rem 5rem;
}
.legal-content {
  max-width: 780px;
  margin: 0 auto;
}
.legal-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brand-brown);
  margin: 2.25rem 0 .75rem;
  padding-bottom: .4rem;
  border-bottom: 1px solid var(--brand-border);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  font-size: .88rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: .85rem;
}
.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: .85rem;
}
.legal-content ul li {
  font-size: .88rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: .25rem;
}
.legal-content a { color: var(--brand-brown); text-decoration: underline; }
.legal-content strong { color: #333; }
.legal-nav-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--brand-border);
}
.legal-nav-links a {
  font-size: .78rem;
  color: var(--brand-brown);
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.legal-nav-links a:hover { color: var(--brand-gold); }

/* ══════════════════════════════════════════════════════════════
   TIKTOK SHOWCASE SECTION  — thumbnail cards, no iframe
   ══════════════════════════════════════════════════════════════ */
.tiktok-section {
  background: #0c0806;
  padding: 4.5rem 1.5rem 5rem;
  border-top: 1px solid rgba(201,168,76,.12);
}
.tiktok-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.tiktok-section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: #fff;
  font-weight: 700;
  margin: .35rem 0 .4rem;
  line-height: 1.2;
}
.tiktok-section-sub { font-size: .83rem; color: rgba(255,255,255,.45); margin: 0; }
.tiktok-section-sub strong { color: var(--brand-gold); font-weight: 600; }

.tiktok-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem 1.4rem;
  border-radius: 8px;
  background: var(--brand-gold);
  color: var(--brand-dark);
  font-size: .82rem;
  font-weight: 700;
  font-family: 'Lato', sans-serif;
  text-decoration: none;
  letter-spacing: .03em;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .18s, transform .18s;
}
.tiktok-follow-btn:hover { background: #e0be6e; transform: translateY(-1px); }

/* ── Thumbnail card grid ─────────────────────────────────────── */
.tiktok-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.tiktok-card {
  display: block;
  text-decoration: none;
  border-radius: 14px;
  overflow: hidden;
  background: #1a0e05;
  border: 1px solid rgba(201,168,76,.12);
  transition: transform .22s, border-color .22s;
}
.tiktok-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,.4);
}

/* 9:16 thumbnail */
.tiktok-card-thumb {
  position: relative;
  width: 100%;
  padding-bottom: 177.78%;
  overflow: hidden;
  background: #111;
}
.tiktok-card-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s;
}
.tiktok-card:hover .tiktok-card-thumb img { transform: scale(1.04); }

/* Placeholder when no thumbnail */
.tiktok-card-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #1a0e05, #2d1a0e);
  color: var(--brand-gold);
  opacity: .5;
}

/* Play button overlay */
.tiktok-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.25);
  transition: background .22s;
}
.tiktok-card:hover .tiktok-play-overlay { background: rgba(0,0,0,.45); }
.tiktok-play-btn {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  transition: transform .2s, background .2s;
  padding-left: 3px; /* optical centering of play icon */
}
.tiktok-card:hover .tiktok-play-btn {
  background: var(--brand-gold);
  transform: scale(1.1);
  color: var(--brand-dark);
}

/* TikTok logo badge (top-right) */
.tiktok-logo-badge {
  position: absolute;
  top: .6rem;
  right: .6rem;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: .62rem;
  font-weight: 700;
  font-family: 'Lato', sans-serif;
  padding: .25rem .5rem;
  border-radius: 20px;
  letter-spacing: .04em;
}

/* Caption below card */
.tiktok-card-caption {
  padding: .65rem .85rem .7rem;
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  line-height: 1.45;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 900px) {
  .tiktok-grid { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
}
@media (max-width: 480px) {
  .tiktok-section-head { align-items: flex-start; }
  .tiktok-grid { grid-template-columns: repeat(2, 1fr); gap: .6rem; }
}

/* ══════════════════════════════════════════════════════════════
   ORDER CONFIRMATION  &  ORDER STATUS  (.oc-* / .os-*)
   ══════════════════════════════════════════════════════════════ */

/* Page shell */
.oc-page {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 0 3rem;
}

/* Cancelled banner variant */
.page-banner--cancelled {
  background:
    radial-gradient(ellipse at 80% 50%, rgba(220,53,69,.06) 0%, transparent 60%),
    linear-gradient(135deg, #1a0605 0%, #2a100e 60%, #1a0e05 100%) !important;
}

/* ── oc-header: only used on order-status.php for cancelled/delivered states ── */
.oc-header {
  background: linear-gradient(160deg, var(--brand-dark) 0%, #2d1608 60%, var(--brand-mid) 100%);
  border-bottom: 1px solid rgba(201,168,76,.18);
  padding: 2.5rem 1.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.oc-header.is-cancelled {
  background: linear-gradient(160deg, #1a0e05 0%, #2a1210 60%, #1a0e05 100%);
}

/* ── Animated SVG checkmark ─────────────────────────────── */
.oc-check-wrap {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.oc-check-svg {
  width: 72px;
  height: 72px;
  display: block;
}
.oc-circle {
  fill: none;
  stroke: var(--brand-gold);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 163.4;      /* 2π × 26 */
  stroke-dashoffset: 163.4;
  animation: oc-draw-circle .55s ease-out .1s forwards;
}
.oc-tick {
  fill: none;
  stroke: var(--brand-gold);
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 38;
  stroke-dashoffset: 38;
  animation: oc-draw-tick .35s ease-out .65s forwards;
}
@keyframes oc-draw-circle {
  to { stroke-dashoffset: 0; }
}
@keyframes oc-draw-tick {
  to { stroke-dashoffset: 0; }
}

/* ── Icon wrappers (status / cancelled) ─────────────────── */
.os-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(201,168,76,.1);
  border: 1.5px solid rgba(201,168,76,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--brand-gold);
}
.os-icon-cancelled {
  background: rgba(220,53,69,.1);
  border-color: rgba(220,53,69,.3);
  color: #e05a68;
}

/* ── Pulse animation (pending / confirming) ──────────────── */
.os-pulse-wrap {
  position: relative;
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.os-pulse-dot {
  width: 20px;
  height: 20px;
  background: var(--brand-gold);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(201,168,76,.6);
  position: relative;
  z-index: 2;
}
.os-pulse-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--brand-gold);
  opacity: 0;
  animation: os-pulse 2s ease-out infinite;
}
@keyframes os-pulse {
  0%   { transform: scale(.35); opacity: .8; }
  100% { transform: scale(1);   opacity: 0;  }
}

/* ── Header text ─────────────────────────────────────────── */
.oc-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 .5rem;
  line-height: 1.2;
}
.oc-thankyou {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
  margin: 0 0 1.25rem;
}
.oc-thankyou a { color: var(--brand-gold); text-decoration: none; font-weight: 700; }
.oc-thankyou strong { color: rgba(255,255,255,.85); font-weight: 700; }

/* ── Reference box ───────────────────────────────────────── */
.oc-ref-box {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 10px;
  padding: .55rem 1rem .55rem 1.1rem;
  margin-top: .25rem;
}
.oc-ref-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(201,168,76,.7);
  white-space: nowrap;
}
.oc-ref-num {
  font-family: 'Lato', sans-serif;
  font-size: .95rem;
  font-weight: 800;
  color: var(--brand-gold);
  letter-spacing: .08em;
}
.oc-copy-btn {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 6px;
  color: var(--brand-gold);
  font-size: .68rem;
  font-weight: 700;
  font-family: 'Lato', sans-serif;
  letter-spacing: .05em;
  padding: .2rem .6rem;
  cursor: pointer;
  transition: background .15s, border-color .15s;
  min-height: 28px;
  flex-shrink: 0;
}
.oc-copy-btn:hover {
  background: rgba(201,168,76,.25);
  border-color: rgba(201,168,76,.5);
}

/* ── 4-step status tracker ───────────────────────────────── */
.oc-tracker-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 1.5rem 1.25rem .5rem;
  background: #fff;
  border-bottom: 1px solid var(--brand-border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.oc-track-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  flex: 0 0 auto;
  position: relative;
  z-index: 1;
}
.oc-step-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #eee;
  border: 2px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 700;
  color: #aaa;
  font-family: 'Lato', sans-serif;
  transition: background .25s, border-color .25s, color .25s;
  flex-shrink: 0;
}
.oc-track-step.is-done .oc-step-dot {
  background: var(--brand-gold);
  border-color: var(--brand-gold);
  color: #fff;
}
.oc-track-step.is-active .oc-step-dot {
  background: var(--brand-dark);
  border-color: var(--brand-gold);
  color: var(--brand-gold);
  box-shadow: 0 0 0 4px rgba(201,168,76,.18);
}
.oc-step-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #bbb;
  white-space: nowrap;
  font-family: 'Lato', sans-serif;
}
.oc-track-step.is-active .oc-step-label { color: var(--brand-brown); }
.oc-track-step.is-done .oc-step-label  { color: var(--brand-gold); }

/* Connecting line between steps */
.oc-track-line {
  flex: 1 1 20px;
  height: 2px;
  background: #e8e8e8;
  margin: 15px .4rem 0;  /* aligns with center of 32px dot */
  border-radius: 2px;
  min-width: 16px;
  transition: background .25s;
}
.oc-track-line.is-done { background: var(--brand-gold); }

.oc-tracker-hint {
  text-align: center;
  font-size: .75rem;
  color: #bbb;
  padding: .6rem 1.25rem .5rem;
  margin: 0;
}
.oc-tracker-hint a { color: var(--brand-brown); font-weight: 700; }

/* ── Card (order summary / note) ─────────────────────────── */
.oc-card {
  background: #fff;
  margin: .75rem 1rem 0;
  border-radius: 14px;
  border: 1px solid var(--brand-border);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(92,61,30,.05);
}
.oc-card-type {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
  padding: .85rem 1.1rem;
  border-bottom: 1px solid var(--brand-border);
}
.oc-type-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .78rem;
  font-weight: 700;
  color: var(--brand-brown);
  font-family: 'Lato', sans-serif;
  letter-spacing: .02em;
}
.oc-delivery-addr {
  font-size: .75rem;
  color: #888;
  line-height: 1.5;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: right;
}
.os-date {
  font-size: .72rem;
  color: #bbb;
  font-family: 'Lato', sans-serif;
  white-space: nowrap;
}

/* Items list */
.oc-items { padding: .25rem 0; }
.oc-item-row {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem 1.1rem;
  border-bottom: 1px dashed #ede2d4;
  font-size: .83rem;
}
.oc-item-row:last-child { border-bottom: none; }
.oc-item-name {
  flex: 1;
  min-width: 0;
  color: #333;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.oc-item-qty {
  color: #bbb;
  font-size: .75rem;
  flex-shrink: 0;
  font-family: 'Lato', sans-serif;
}
.oc-item-sub {
  font-weight: 700;
  color: var(--brand-brown);
  flex-shrink: 0;
  white-space: nowrap;
  font-family: 'Lato', sans-serif;
  font-size: .82rem;
}

/* Total row */
/* Subtotal / VAT / service charge breakdown rows (above grand total) */
.oc-breakdown {
  padding: .5rem 1.1rem;
  background: #faf7f4;
  border-top: 1px solid #e8ddd0;
}
.oc-breakdown-row {
  display: flex;
  justify-content: space-between;
  font-size: .8rem;
  color: #888;
  line-height: 2;
}
.oc-breakdown-amt {
  font-family: 'Lato', sans-serif;
  font-weight: 600;
}

.oc-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .85rem 1.1rem;
  background: var(--brand-cream);
  border-top: 2px solid var(--brand-gold);
  font-size: .9rem;
  color: #666;
  font-weight: 600;
}
.oc-total-amt {
  font-family: 'Lato', sans-serif;
  font-size: 1.1rem;
  color: var(--brand-brown);
  font-weight: 800;
}

/* ── Action buttons ──────────────────────────────────────── */
.oc-actions {
  padding: 1.25rem 1rem .5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.oc-btn-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: linear-gradient(135deg, var(--brand-gold2), var(--brand-gold));
  color: var(--brand-dark);
  font-weight: 800;
  font-size: .88rem;
  letter-spacing: .04em;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 10px;
  min-height: 50px;
  padding: 0 1.5rem;
  box-shadow: 0 4px 16px rgba(201,168,76,.4);
  transition: filter .18s, transform .12s, box-shadow .18s;
}
.oc-btn-track:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,.5);
  color: var(--brand-dark);
}
.oc-actions-row2 {
  display: flex;
  gap: .5rem;
  padding: 0;
}
.oc-btn-ghost {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1.5px solid var(--brand-border);
  border-radius: 8px;
  background: #fff;
  color: #555;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color .15s, color .15s, background .15s;
}
.oc-btn-ghost:hover {
  border-color: var(--brand-gold);
  color: var(--brand-brown);
  background: rgba(201,168,76,.05);
}

/* ── My Orders page cards ────────────────────────────────── */
.mo-card {
  background: #fff;
  border-top: 1px solid var(--brand-border);
  overflow: hidden;
}
.mo-card--first { border-top: none; }

.mo-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
  padding: .9rem 1.1rem .75rem;
  background: var(--brand-cream);
  border-bottom: 1px solid var(--brand-border);
}
.mo-ref {
  font-family: 'Lato', sans-serif;
  font-weight: 800;
  font-size: .88rem;
  color: var(--brand-brown);
  letter-spacing: .05em;
}
.mo-date {
  font-size: .7rem;
  color: #bbb;
  font-family: 'Lato', sans-serif;
  white-space: nowrap;
}
.mo-type-badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .7rem;
  font-weight: 700;
  color: #666;
  background: rgba(92,61,30,.08);
  border-radius: 5px;
  padding: .15rem .5rem;
  font-family: 'Lato', sans-serif;
}
.mo-card-body {
  padding: .8rem 1.1rem .7rem;
}
.mo-items-summary {
  font-size: .78rem;
  color: #888;
  line-height: 1.7;
  margin: 0 0 .65rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.mo-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: .55rem;
  border-top: 1px dashed #ede2d4;
}
.mo-total-label {
  font-size: .68rem;
  color: #bbb;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-family: 'Lato', sans-serif;
}
.mo-total {
  font-family: 'Lato', sans-serif;
  font-size: .95rem;
  font-weight: 800;
  color: var(--brand-brown);
}
.mo-card-foot {
  display: flex;
  gap: .5rem;
  padding: .7rem 1.1rem .85rem;
  border-top: 1px solid var(--brand-border);
  background: var(--brand-cream);
}
.mo-btn-track {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  min-height: 38px;
  padding: 0 1rem;
  background: linear-gradient(135deg, var(--brand-gold2), var(--brand-gold));
  color: var(--brand-dark);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 7px;
  box-shadow: 0 2px 8px rgba(201,168,76,.3);
  transition: filter .15s;
  white-space: nowrap;
}
.mo-btn-track:hover { filter: brightness(1.08); color: var(--brand-dark); }

.mo-empty {
  text-align: center;
  padding: 4rem 2rem 3rem;
  color: #bbb;
}
.mo-empty-icon  { font-size: 3rem; display: block; margin-bottom: 1rem; opacity: .4; }
.mo-empty-title { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: #aaa; margin-bottom: .5rem; }
.mo-empty-sub   { font-size: .82rem; color: #ccc; line-height: 1.65; }


/* ══════════════════════════════════════════════════════════════
   CUSTOMER AUTH PAGES  (login, register)
   ══════════════════════════════════════════════════════════════ */
.auth-section {
  min-height: calc(100svh - var(--mob-h) - 64px);
  display: flex;
  align-items: flex-start;
  padding: 2.5rem 1rem 3rem;
}
@media (min-width: 769px) {
  .auth-section {
    min-height: calc(100svh - var(--nav-h) - 60px);
    align-items: center;
    padding: 3rem 1rem;
  }
}

.auth-card-wrap {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.auth-card {
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,.1);
  border: 1px solid var(--brand-border);
}
.auth-card .card-content { padding: 2rem 1.75rem; }

/* ── Password field with visible eye button ──────────────────── */
.pwd-wrap {
  position: relative;
  display: block;
}
/* The input inside: leave room for eye button */
.pwd-wrap .input { padding-right: 3rem !important; }

/* Eye button */
.pwd-eye {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0,0,0,.07);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  transition: background .15s, color .15s;
  z-index: 2;
  flex-shrink: 0;
  min-height: unset !important; /* override global 44px tap target only for this circle */
}
.pwd-eye:hover {
  background: var(--brand-gold);
  color: var(--brand-dark);
}

/* ── Password strength meter ─────────────────────────────────── */
.pwd-strength-wrap {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-top: .5rem;
}

.pwd-strength-bar {
  display: flex;
  gap: 4px;
  flex: 1;
}

.pwd-strength-seg {
  flex: 1;
  height: 4px;
  border-radius: 4px;
  background: rgba(0,0,0,.1);
  transition: background .25s;
}

.pwd-strength-label {
  font-size: .75rem;
  font-weight: 700;
  white-space: nowrap;
  min-width: 56px;
  text-align: right;
  transition: color .25s;
}

.auth-switch-text { font-size: .88rem; color: #888; }
.auth-switch-link { color: var(--brand-brown); font-weight: 700; text-decoration: none; }
.auth-switch-link:hover { text-decoration: underline; }

/* Forgot password link */
.auth-forgot-link {
  font-size: .83rem;
  color: #999;
  text-decoration: none;
  transition: color .2s;
}
.auth-forgot-link:hover { color: var(--brand-brown); text-decoration: underline; }

/* Helper text under headings on forgot / reset pages */
.auth-help-text { font-size: .92rem; color: #666; line-height: 1.55; }

/* Success / error icon circle */
.auth-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #e8f9ef;
  border: 2px solid #27ae60;
  color: #27ae60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto .25rem;
}
.auth-error-icon {
  background: #fef0ee;
  border-color: #e74c3c;
  color: #e74c3c;
}

/* ── Google sign-in button ───────────────────────────────────── */
.google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  width: 100%;
  padding: .75rem 1rem;
  background: #fff;
  border: 1.5px solid #dadce0;
  border-radius: 8px;
  font-family: 'Lato', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  color: #3c4043;
  text-decoration: none;
  transition: background .15s, box-shadow .15s, border-color .15s;
  cursor: pointer;
  margin-bottom: 1.25rem;
}
.google-btn:hover {
  background: #f8f9fa;
  border-color: #c1c7cd;
  box-shadow: 0 1px 6px rgba(0,0,0,.12);
  color: #3c4043;
}

/* OR divider */
.auth-divider {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin: 0 0 1.25rem;
  color: #bbb;
  font-size: .8rem;
}
.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e0e0e0;
}

/* ── Google connected badge (account Security tab) ───────────── */
.acct-google-badge {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: #f0f6ff;
  border: 1px solid #c8dffe;
  border-radius: 10px;
  padding: .75rem 1rem;
  margin-bottom: 1rem;
  font-size: .88rem;
  font-weight: 600;
  color: #1a73e8;
}
.acct-google-badge-check {
  margin-left: auto;
  font-size: .75rem;
  background: #d2e9fc;
  color: #1a73e8;
  padding: .2rem .6rem;
  border-radius: 20px;
  font-weight: 700;
  white-space: nowrap;
}


/* ══════════════════════════════════════════════════════════════
   HEADER — mobile account icon + desktop Sign In / avatar
   ══════════════════════════════════════════════════════════════ */

/* Mobile header account button */
.mob-btn-account {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: #fff;
  text-decoration: none;
  transition: background .15s;
  flex-shrink: 0;
}
.mob-btn-account:hover { background: rgba(255,255,255,.22); }

.mob-acct-initial {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--brand-gold);
  color: var(--brand-dark);
  font-weight: 800;
  font-size: .78rem;
  font-family: 'Lato', sans-serif;
  line-height: 1;
}

/* Desktop navbar Sign In link */
.navbar-signin-link {
  color: var(--brand-dark) !important;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: .25rem;
}
.navbar-signin-link:hover { color: var(--brand-brown) !important; }

/* ── Account dropdown trigger ────────────────────────────────── */
.nav-acct-dropdown { position: relative; padding: 0 !important; }

.navbar-acct-trigger {
  display: flex;
  align-items: center;
  gap: .45rem;
  padding: .45rem .75rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  cursor: pointer;
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  transition: background .15s, border-color .15s;
  min-height: unset !important;
}
.navbar-acct-trigger:hover,
.nav-acct-dropdown.is-open .navbar-acct-trigger {
  background: rgba(255,255,255,.16);
  border-color: var(--brand-gold);
}

.navbar-acct-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--brand-gold);
  color: var(--brand-dark);
  font-weight: 800;
  font-size: .75rem;
  font-family: 'Lato', sans-serif;
  line-height: 1;
  flex-shrink: 0;
}

.navbar-acct-name { letter-spacing: .02em; }

.nav-acct-caret {
  opacity: .65;
  transition: transform .2s;
  flex-shrink: 0;
}
.nav-acct-dropdown.is-open .nav-acct-caret { transform: rotate(180deg); }

/* ── Dropdown panel ──────────────────────────────────────────── */
.nav-acct-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 220px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,.15), 0 2px 8px rgba(0,0,0,.08);
  border: 1px solid var(--brand-border);
  overflow: hidden;
  z-index: 200;
  padding: .4rem 0;
  /* Override Bulma navbar-dropdown defaults */
  left: auto !important;
  border-top: none !important;
}
.nav-acct-dropdown.is-open .nav-acct-menu { display: block; }

/* User info header inside dropdown */
.nav-acct-menu-header {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .85rem 1.1rem;
}
.nav-acct-menu-avatar {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--brand-gold);
  color: var(--brand-dark);
  font-weight: 800;
  font-size: 1rem;
  font-family: 'Playfair Display', serif;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-acct-menu-name {
  font-weight: 700;
  font-size: .9rem;
  color: var(--brand-dark);
  line-height: 1.3;
}
.nav-acct-menu-role {
  font-size: .72rem;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: .1rem;
}

/* Divider */
.nav-acct-menu-divider {
  height: 1px;
  background: var(--brand-border);
  margin: .3rem 0;
}

/* Menu items */
.nav-acct-menu-item {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .6rem 1.1rem;
  font-size: .88rem;
  font-weight: 600;
  color: #444;
  text-decoration: none;
  transition: background .12s, color .12s;
}
.nav-acct-menu-item:hover {
  background: var(--brand-cream);
  color: var(--brand-brown);
}
.nav-acct-menu-item svg { flex-shrink: 0; opacity: .6; }
.nav-acct-menu-item:hover svg { opacity: 1; }

/* Sign out — red tint */
.nav-acct-signout { color: #c0392b !important; }
.nav-acct-signout:hover { background: #fff5f5 !important; color: #a93226 !important; }
.nav-acct-signout svg { opacity: .8 !important; }

/* Bottom nav avatar (when logged in) */
.bottom-nav-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--brand-gold);
  color: var(--brand-dark);
  font-weight: 800;
  font-size: .72rem;
  font-family: 'Lato', sans-serif;
  line-height: 1;
}


/* ══════════════════════════════════════════════════════════════
   ACCOUNT PAGE
   ══════════════════════════════════════════════════════════════ */

/* ── Banner ─────────────────────────────────────────────────── */
.acct-banner {
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-mid) 100%);
  padding: 2rem 1rem 1.5rem;
}
@media (min-width: 769px) {
  .acct-banner { padding: 2.5rem 1.5rem 1.5rem; }
}

.acct-banner-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.acct-avatar {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--brand-gold);
  color: var(--brand-dark);
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 3px rgba(201,168,76,.35);
}

.acct-banner-text { flex: 1; min-width: 0; }
.acct-welcome-sub  { font-size: .82rem; color: var(--brand-gold); margin-bottom: .2rem; }
.acct-banner-name  { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: #fff; font-weight: 700; margin: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.acct-banner-email { font-size: .82rem; color: rgba(255,255,255,.6); margin: .15rem 0 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.acct-signout-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: .35rem;
  padding: .45rem .8rem;
  border-radius: 8px;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.75);
  font-size: .8rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.15);
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.acct-signout-btn:hover { background: rgba(255,255,255,.18); color: #fff; }

/* ── Stats row ──────────────────────────────────────────────── */
.acct-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,.06);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.1);
  overflow: hidden;
}

.acct-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: .85rem .5rem;
}

.acct-stat-divider {
  width: 1px;
  height: 2.5rem;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}

.acct-stat-val   { font-size: 1.15rem; font-weight: 800; color: var(--brand-gold); font-family: 'Playfair Display', serif; line-height: 1.2; }
.acct-stat-label { font-size: .7rem; color: rgba(255,255,255,.55); margin-top: .2rem; text-transform: uppercase; letter-spacing: .04em; }

/* ── Tabs strip ─────────────────────────────────────────────── */
.acct-tabs-wrap {
  background: #fff;
  border-bottom: 1px solid var(--brand-border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.acct-tabs {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.acct-tabs::-webkit-scrollbar { display: none; }

.acct-tab {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .85rem 1.25rem;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  color: #888;
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: color .15s, border-color .15s;
  font-family: 'Lato', sans-serif;
}
.acct-tab:hover { color: var(--brand-brown); }
.acct-tab.is-active {
  color: var(--brand-brown);
  border-bottom-color: var(--brand-gold);
}

.acct-tab-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-gold);
  color: var(--brand-dark);
  font-size: .68rem;
  font-weight: 800;
  border-radius: 10px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  line-height: 1;
}

/* ── Tab panel ──────────────────────────────────────────────── */
.acct-tab-panel { min-height: 30vh; }

/* ── Order cards (mobile) ───────────────────────────────────── */
.acct-order-cards { display: flex; flex-direction: column; gap: .75rem; }

.acct-order-card {
  background: #fff;
  border: 1px solid var(--brand-border);
  border-radius: 12px;
  padding: 1rem 1.1rem;
}

.acct-order-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .45rem;
}

.acct-order-ref {
  font-family: monospace;
  font-size: .82rem;
  background: #f5f0e8;
  padding: 2px 7px;
  border-radius: 4px;
  color: var(--brand-brown);
  font-weight: 700;
}

.acct-order-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .3rem;
  font-size: .8rem;
  color: #999;
  margin-bottom: .65rem;
}

.acct-order-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.acct-order-total {
  font-weight: 800;
  font-size: 1rem;
  color: var(--brand-brown);
}

/* ── Empty state ────────────────────────────────────────────── */
.acct-empty-state {
  text-align: center;
  padding: 4rem 1rem 3rem;
}
.acct-empty-icon  { font-size: 3.5rem; display: block; margin-bottom: 1rem; }
.acct-empty-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: #555; margin-bottom: .5rem; }
.acct-empty-sub   { font-size: .9rem; color: #999; line-height: 1.6; max-width: 300px; margin: 0 auto; }

/* ── Profile/Security form wrapper ─────────────────────────── */
.acct-form-wrap {
  max-width: 480px;
}

/* ── Orders table (desktop) ─────────────────────────────────── */
.acct-table-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--brand-border);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(26,14,5,.07);
}

.acct-orders-tbl {
  width: 100%;
  border-collapse: collapse;
}

/* Header */
.acct-orders-tbl thead th {
  background: var(--brand-dark);
  color: rgba(255,255,255,.6);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .9rem 1.1rem;
  white-space: nowrap;
  border: none;
}
.acct-orders-tbl thead th:first-child { padding-left: 1.4rem; }
.acct-orders-tbl thead th:last-child  { padding-right: 1.4rem; }

/* Body rows */
.acct-orders-tbl tbody tr {
  border-bottom: 1px solid #f0e8de;
  transition: background .12s, box-shadow .12s;
  position: relative;
}
.acct-orders-tbl tbody tr:last-child { border-bottom: none; }
.acct-orders-tbl tbody tr:hover { background: #fdf9f4; }
.acct-orders-tbl tbody tr:hover .aot-ref { background: var(--brand-gold); color: var(--brand-dark); }

.acct-orders-tbl td {
  padding: 1rem 1.1rem;
  vertical-align: middle;
  color: #444;
}
.acct-orders-tbl td:first-child { padding-left: 1.4rem; }
.acct-orders-tbl td:last-child  { padding-right: 1.4rem; }

/* Date cell */
.aot-date { display: flex; flex-direction: column; gap: .1rem; }
.aot-date-d { font-size: .88rem; font-weight: 600; color: #333; white-space: nowrap; }
.aot-date-t { font-size: .78rem; color: #aaa; white-space: nowrap; }

/* Order ref pill */
.aot-ref {
  display: inline-block;
  font-family: 'Courier New', monospace;
  font-size: .8rem;
  font-weight: 700;
  color: var(--brand-brown);
  background: #f5ede0;
  border: 1px solid #e8d5bb;
  padding: .25rem .65rem;
  border-radius: 6px;
  letter-spacing: .03em;
  transition: background .12s, color .12s;
  white-space: nowrap;
}

/* Type */
.aot-type { font-size: .88rem; white-space: nowrap; }

/* Item count pill */
.aot-item-pill {
  display: inline-block;
  background: #f0f0f0;
  color: #666;
  font-size: .78rem;
  font-weight: 600;
  padding: .2rem .65rem;
  border-radius: 20px;
  white-space: nowrap;
}

/* Total */
.aot-total {
  font-weight: 800;
  font-size: .95rem;
  color: var(--brand-dark);
  white-space: nowrap;
}

/* Track button */
.aot-action { text-align: right; }
.aot-track-btn {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .38rem .85rem;
  border-radius: 20px;
  background: var(--brand-gold);
  color: var(--brand-dark);
  font-size: .78rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .03em;
  transition: filter .15s;
  white-space: nowrap;
}
.aot-track-btn:hover { filter: brightness(1.08); color: var(--brand-dark); }
