/* ============================================================
   PHILAUTIA PALATE — style.css
   Black + Metallic Gold identity
   Deep Black #070707 | Luxury #0D0D0D | Charcoal #151515
   Metallic Gold #D4AF37 | Light Gold #E8D27A | Warm White #F8F5ED
   ============================================================ */

:root {
  --black: #070707;
  --black2: #0D0D0D;
  --charcoal: #151515;
  --gold: #D4AF37;
  --lgold: #E8D27A;
  --cream: #F8F5ED;
  --white: #FFFFFF;
  --muted: #B7B7B7;
  --gold-border: rgba(212, 175, 55, 0.35);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.45);
  --shadow-lift: 0 20px 45px rgba(0, 0, 0, 0.55);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--black);
  color: var(--cream);
  overflow-x: hidden;
}

h1, h2, h3, .font-display { font-family: 'Playfair Display', serif; }

section { scroll-margin-top: 88px; }

::selection { background: var(--gold); color: var(--black); }

img { max-width: 100%; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  padding: 0.88rem 1.8rem;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border: 1px solid transparent;
  text-align: center;
  white-space: nowrap;
  text-transform: uppercase;
}
.btn:focus-visible { outline: 2px solid var(--lgold); outline-offset: 3px; }

.btn-gold {
  background: linear-gradient(180deg, #E8D27A 0%, #D4AF37 50%, #BC9B35 100%);
  color: #070707;
  border-color: rgba(168, 127, 43, 0.6);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
.btn-gold:hover {
  background: linear-gradient(180deg, #F0DF9F 0%, #DCBA44 50%, #C7A43A 100%);
  border-color: rgba(168, 127, 43, 0.7);
  color: #070707;
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 12px 30px rgba(212, 175, 55, 0.32);
}

.btn-outline {
  background: transparent;
  border-color: rgba(212, 175, 55, 0.6);
  color: #F8F5ED;
}
.btn-outline:hover {
  background: #D4AF37;
  border-color: #D4AF37;
  color: #070707;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(212, 175, 55, 0.22);
}

.btn-dark {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--cream);
}
.btn-dark:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.72rem; letter-spacing: 0.08em; }

/* ---------- Header ---------- */
.site-header {
  background: rgba(7, 7, 7, 0.96);
  border-bottom: 1px solid rgba(212, 175, 55, 0.22);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.site-header.scrolled {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
  background: rgba(7, 7, 7, 0.99);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 78px;
}
@media (min-width: 1024px) { .header-inner { height: 92px; } }

.brand { flex: 0 0 auto; min-width: 0; margin-right: 1.5rem; }
.brand-line {
  display: block;
  white-space: nowrap;
  color: var(--cream);
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: 0.92rem;
}
@media (min-width: 1280px) { .brand-line { font-size: 0.96rem; letter-spacing: 0.04em; } }
@media (min-width: 1600px) { .brand { margin-right: 2.25rem; } .brand-line { font-size: 1.06rem; } }

.logo-mark {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (min-width: 1280px) { .logo-mark { width: 46px; height: 46px; } }
@media (min-width: 1600px) { .logo-mark { width: 52px; height: 52px; } }
.logo-mark img { width: 100%; height: 100%; display: block; object-fit: contain; }

.logo-tagline {
  display: block;
  margin-top: 0.3rem;
  color: var(--gold);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  max-width: none;
}
@media (min-width: 1280px) { .logo-tagline { font-size: 10px; letter-spacing: 0.2em; } }
@media (max-width: 1023px) { .logo-tagline { font-size: 7.5px; letter-spacing: 0.12em; } }

.header-nav { flex: 1 1 auto; justify-content: center; min-width: 0; }
.header-nav ul { gap: 1.1rem; }
@media (min-width: 1280px) { .header-nav ul { gap: 1.4rem; } }
@media (min-width: 1440px) { .header-nav ul { gap: 1.55rem; } }
@media (min-width: 1600px) { .header-nav ul { gap: 1.85rem; } }

.nav-link {
  position: relative;
  color: var(--cream);
  font-size: 0.76rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  padding: 0.4rem 0;
  transition: color 0.25s ease;
}
@media (min-width: 1280px) { .nav-link { font-size: 0.8rem; letter-spacing: 0.02em; } }
@media (min-width: 1440px) { .nav-link { font-size: 0.82rem; } }
@media (min-width: 1600px) { .nav-link { font-size: 0.86rem; } }
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.header-actions { flex: 0 0 auto; gap: 0.9rem; margin-left: 1.2rem; }
.header-actions .btn-sm { padding: 0.55rem 1rem; font-size: 0.7rem; }
@media (min-width: 1280px) { .header-actions { gap: 1rem; margin-left: 1.4rem; } .header-actions .btn-sm { padding: 0.55rem 1.05rem; font-size: 0.7rem; } }
@media (min-width: 1440px) { .header-actions { gap: 1.1rem; } }
@media (min-width: 1600px) { .header-actions { gap: 1.2rem; margin-left: 1.75rem; } .header-actions .btn-sm { padding: 0.58rem 1.15rem; font-size: 0.72rem; } }

@media (min-width: 1280px) and (max-width: 1439px) {
  .brand { margin-right: 1.1rem; }
  .brand-line { font-size: 0.86rem; }
  .logo-mark { width: 42px; height: 42px; }
  .header-nav ul { gap: 1rem; }
  .nav-link { font-size: 0.74rem; }
  .header-actions { margin-left: 1rem; gap: 0.9rem; }
  .header-actions .btn-sm { padding: 0.5rem 0.9rem; font-size: 0.66rem; }
}

@media (min-width: 1024px) and (max-width: 1279px) {
  .header-inner { height: 84px; gap: 0.85rem; }
  .brand { margin-right: 0.9rem; }
  .brand-line { font-size: 0.78rem; letter-spacing: 0.02em; }
  .logo-tagline { font-size: 7px; letter-spacing: 0.12em; max-width: none; }
  .logo-mark { width: 34px; height: 34px; }
  .header-nav ul { gap: 0.6rem; }
  .nav-link { font-size: 0.65rem; letter-spacing: 0.01em; }
  .header-actions { margin-left: 0.7rem; gap: 0.7rem; }
  .header-actions .btn-sm { padding: 0.46rem 0.82rem; font-size: 0.6rem; letter-spacing: 0.05em; }
}

/* Mobile menu */
#mobileMenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--black);
}
#mobileMenu.open { max-height: 560px; }
#mobileMenu a {
  color: var(--cream);
  display: block;
  padding: 0.9rem 1.5rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  font-size: 0.95rem;
  transition: background 0.25s ease, color 0.25s ease, padding-left 0.25s ease;
}
#mobileMenu a:hover, #mobileMenu a:active {
  background: rgba(212, 175, 55, 0.08);
  color: var(--lgold);
  padding-left: 1.9rem;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  margin: 5px auto;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse at 78% 28%, rgba(212, 175, 55, 0.09), transparent 54%),
    radial-gradient(ellipse at 6% 92%, rgba(232, 210, 122, 0.05), transparent 46%),
    var(--black);
  overflow: hidden;
}
.hero-content { position: relative; z-index: 2; max-width: 560px; }
.hero-lede { color: var(--muted); }

.hero-logo-mark { width: 46px; height: 46px; }
@media (min-width: 640px) { .hero-logo-mark { width: 56px; height: 56px; } }
.hero-brand-name {
  display: block;
  white-space: nowrap;
  color: var(--cream);
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
}
@media (min-width: 640px) { .hero-brand-name { font-size: 1.2rem; } }
.hero-brand-tag {
  display: block;
  margin-top: 0.35rem;
  color: var(--gold);
  font-size: 0.6rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  white-space: nowrap;
}
@media (min-width: 640px) { .hero-brand-tag { font-size: 0.68rem; letter-spacing: 0.3em; } }

.hero-media { position: relative; z-index: 2; }
.hero-media-inner { position: relative; }
.hero-frame {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 45px 90px rgba(0, 0, 0, 0.6);
}
.hero-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(140% 90% at 50% 0%, rgba(212, 175, 55, 0.13), rgba(7, 7, 7, 0) 55%),
    linear-gradient(180deg, rgba(7, 7, 7, 0) 62%, rgba(7, 7, 7, 0.16) 100%);
  pointer-events: none;
}
.hero-img {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.02);
}

/* Subtle circular gold rings — decorative only, ~10% opacity so they sit softly behind the content */
.hero-ring {
  position: absolute;
  border: 1px solid rgba(212, 175, 55, 0.10);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero-ring-one { width: 620px; height: 620px; top: 4%; right: 18%; }
.hero-ring-two { width: 460px; height: 460px; top: 38%; right: 40%; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gold);
  font-size: 0.74rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.eyebrow::before, .eyebrow::after {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}
.hero h1 .gold-line {
  font-style: normal;
  letter-spacing: 0.01em;
  color: #D4AF37;
  background: linear-gradient(180deg, #E8D27A 0%, #D4AF37 55%, #B8922E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.badge-pill {
  display: inline-block;
  border: 1px solid rgba(212, 175, 55, 0.5);
  color: var(--cream);
  background: rgba(13, 13, 13, 0.5);
  border-radius: 999px;
  padding: 0.34rem 0.9rem;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  animation: heroHint 2.4s ease-in-out infinite;
}
@keyframes heroHint {
  0%, 100% { opacity: 0.35; transform: translate(-50%, 0); }
  50% { opacity: 1; transform: translate(-50%, 6px); }
}

/* ---------- Section helpers ---------- */
.section-pad { padding: clamp(4.5rem, 9vw, 7rem) 0; }
.section-title { color: var(--cream); font-weight: 700; letter-spacing: -0.01em; }
.section-sub { max-width: 640px; color: var(--muted); }

.section-label {
  color: var(--gold);
  font-size: 0.74rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
}

.gold-rule {
  width: 60px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border: none;
  margin: 1.1rem 0 0;
}

.gold-frame {
  border: 1px solid var(--gold-border);
  border-radius: 20px;
  position: relative;
}

/* ---------- Cards ---------- */
.food-card {
  background: var(--charcoal);
  border: 1px solid var(--gold-border);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  display: flex;
  flex-direction: column;
}
.food-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow-lift);
}
.card-img-wrap { overflow: hidden; }
.food-card .card-img {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.food-card:hover .card-img { transform: scale(1.06); }

.price-tag {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.98rem;
}

/* ---------- Menu ---------- */
.menu-tabs {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
}
.menu-tab {
  border: 1.5px solid var(--gold-border);
  background: rgba(13, 13, 13, 0.6);
  color: var(--cream);
  border-radius: 999px;
  padding: 0.55rem 1.25rem;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  text-transform: uppercase;
}
.menu-tab:hover {
  border-color: var(--gold);
  color: var(--lgold);
}
.menu-tab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}
.menu-tab:focus-visible { outline: 2px solid var(--lgold); outline-offset: 2px; }

@media (max-width: 767px) {
  .menu-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 0.75rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .menu-tabs::-webkit-scrollbar { display: none; }
  .menu-tab { flex-shrink: 0; }
}

.menu-panel { display: none; }
.menu-panel.active { display: block; animation: fadePanel 0.4s ease; }

@keyframes fadePanel {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Menu cards with food imagery */
.menu-card {
  background: var(--charcoal);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.menu-card:hover {
  border-color: var(--gold);
  background: var(--black2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.menu-img { overflow: hidden; }
.menu-img img {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.menu-card:hover .menu-img img { transform: scale(1.06); }
.dessert-img { overflow: hidden; }
.dessert-img img {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.dessert-card:hover .dessert-img img { transform: scale(1.06); }
.dessert-img.img-pending {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black2);
  border-bottom: 1px solid var(--gold-border);
}
.img-pending-label {
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px dashed var(--gold-border);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
}
.pack-img.img-pending {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black2);
  border-bottom: 1px solid var(--gold-border);
  padding: 1rem;
}
.gallery-item .g-pending {
  width: 100%;
  height: 100%;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black2);
  border: 1px dashed var(--gold-border);
  border-radius: 10px;
  padding: 1rem;
  box-sizing: border-box;
  text-align: center;
}
.menu-body {
  padding: 0.95rem 1.05rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem 0.9rem;
  flex-wrap: wrap;
  flex: 1;
}
.menu-body .dish-name { flex: 1 1 auto; min-width: 0; }
.menu-item .dish-name { font-weight: 500; font-size: 0.94rem; color: var(--cream); }
.menu-item .dish-price { color: var(--gold); font-weight: 600; white-space: nowrap; }
.menu-item .dish-desc { color: var(--muted); font-size: 0.76rem; margin-top: 0.15rem; }

.menu-note {
  background: var(--black2);
  border: 1px solid var(--gold-border);
  color: var(--muted);
  border-radius: 14px;
  padding: 0.85rem 1.3rem;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.menu-note strong { color: var(--gold); letter-spacing: 0.08em; }

.menu-highlight {
  background: linear-gradient(135deg, var(--charcoal), var(--black2));
  border: 1px solid var(--gold);
  border-radius: 16px;
  padding: 1.05rem 1.5rem;
  color: var(--cream);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.menu-highlight .hl-label {
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ---------- Set menu cards (light theme — used on intro/how sections) ---------- */
.set-card {
  background: var(--black2);
  border: 1px solid var(--gold-border);
  border-radius: 20px;
  overflow: hidden;
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  display: flex;
  flex-direction: column;
}
.set-card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: var(--shadow-lift); }
.set-img { overflow: hidden; border-bottom: 1px solid rgba(212, 175, 55, 0.2); }
.set-img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.set-card:hover .set-img img { transform: scale(1.05); }
.set-card .set-head {
  padding: 1.1rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}
.set-card .set-price { color: var(--gold); font-weight: 700; font-size: 1.2rem; }
.set-card ul { list-style: none; padding: 0; margin: 0; }
.set-card ul li {
  padding: 0.5rem 0 0.5rem 1.4rem;
  position: relative;
  font-size: 0.88rem;
  color: var(--cream);
  border-bottom: 1px dashed rgba(212, 175, 55, 0.18);
}
.set-card ul li:last-child { border-bottom: none; }
.set-card ul li::before {
  content: '◆';
  position: absolute;
  left: 0.1rem;
  color: var(--gold);
  font-size: 0.5rem;
  top: 0.72rem;
}
.set-extra {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: var(--charcoal);
}
.set-extra.open { max-height: 220px; }
.set-extra-inner { padding: 0.9rem 1.4rem; font-size: 0.82rem; color: var(--muted); }

/* ---------- Bakersfilled ---------- */
.bakers-section {
  background: var(--black);
  position: relative;
}
.bakers-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 85% 15%, rgba(212, 175, 55, 0.1), transparent 50%),
              radial-gradient(ellipse at 10% 90%, rgba(232, 210, 122, 0.06), transparent 45%);
  pointer-events: none;
}
.bakers-card {
  background: var(--charcoal);
  border: 1px solid var(--gold-border);
  border-radius: 18px;
  padding: 1.5rem;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.bakers-card:hover { transform: translateY(-5px); border-color: var(--gold); box-shadow: var(--shadow-lift); }
.bakers-card h3 { color: var(--cream); }
.bakers-card .b-price { color: var(--lgold); font-weight: 600; }
.bakers-card p { color: var(--muted); font-size: 0.85rem; }
.bakers-card img { border: 1px solid var(--gold-border); }

.brand-script { font-family: 'Playfair Display', serif; font-style: italic; color: var(--gold); }

/* ---------- Frozen ---------- */
.frozen-section { background: var(--black); }
.frozen-chip {
  background: var(--charcoal);
  border: 1px solid var(--gold-border);
  color: var(--cream);
  border-radius: 999px;
  padding: 0.5rem 1.15rem;
  font-size: 0.83rem;
  transition: all 0.25s ease;
}
.frozen-chip:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }

.pack-card {
  background: var(--charcoal);
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.pack-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.pack-img { overflow: hidden; }
.pack-img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.pack-card:hover .pack-img img { transform: scale(1.06); }
.pack-card .pack-row {
  border: 0;
  border-radius: 0;
  background: var(--black2);
  padding: 0.72rem 1rem;
}
.pack-card .pack-row:hover { transform: none; }
.pack-facts {
  margin: 0.55rem 1rem 0.75rem;
  font-size: 0.72rem;
  line-height: 1.55;
  color: var(--muted);
}

.pack-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.3rem;
  background: var(--charcoal);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 12px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.pack-row:hover { border-color: var(--gold); transform: translateX(4px); }
.pack-row .pack-name { color: var(--cream); }
.pack-row .pack-price { color: var(--gold); font-weight: 600; white-space: nowrap; }

/* ---------- Occasions ---------- */
.occasion-card {
  background: var(--charcoal);
  border: 1px solid var(--gold-border);
  border-radius: 16px;
  padding: 1.3rem 1.1rem;
  text-align: center;
  color: var(--cream);
  transition: all 0.25s ease;
}
.occasion-card:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  transform: translateY(-4px);
}
.occasion-card .oc-ico { width: 1.9rem; height: 1.9rem; margin: 0 auto 0.55rem; }
.occasion-card .oc-ico svg { width: 100%; height: 100%; display: block; color: var(--gold); }
.occasion-card:hover .oc-ico { color: var(--black); }
.occasion-card span:last-child { font-size: 0.85rem; font-weight: 500; }

/* ---------- Gallery ---------- */
.gallery-filters { display: flex; flex-wrap: wrap; gap: 0.55rem; justify-content: center; }
.gallery-filter {
  border: 1.5px solid var(--gold-border);
  background: rgba(13, 13, 13, 0.6);
  color: var(--cream);
  border-radius: 999px;
  padding: 0.5rem 1.2rem;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
}
.gallery-filter:hover { border-color: var(--gold); color: var(--lgold); }
.gallery-filter.active { background: var(--gold); border-color: var(--gold); color: var(--black); }
.gallery-filter:focus-visible { outline: 2px solid var(--lgold); outline-offset: 2px; }

.gallery-grid {
  column-count: 1;
  column-gap: 1.1rem;
}
@media (min-width: 640px) { .gallery-grid { column-count: 2; } }
@media (min-width: 1024px) { .gallery-grid { column-count: 3; } }

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  display: block;
  border: 1px solid var(--gold-border);
  margin-bottom: 1.1rem;
  break-inside: avoid;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.gallery-item:hover { transform: translateY(-5px); border-color: var(--gold); box-shadow: var(--shadow-lift); }
.gallery-item img { width: 100%; object-fit: cover; display: block; transition: transform 0.55s ease; }
.gallery-item:hover img { transform: scale(1.06); }

/* editorial masonry — varied, intentional frame ratios */
.gallery-item.g-tall img { aspect-ratio: 3 / 4; }
.gallery-item.g-sq img { aspect-ratio: 1 / 1; }
.gallery-item.g-wide img { aspect-ratio: 21 / 12; }
.gallery-item.g-lay img { aspect-ratio: 4 / 3; }
.gallery-item.g-slim img { aspect-ratio: 13 / 12; }
.gallery-item .g-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 7, 7, 0.94) 0%, rgba(7, 7, 7, 0.25) 55%, transparent 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.15rem;
}
.gallery-item:hover .g-overlay, .gallery-item:focus-visible .g-overlay { opacity: 1; }
.g-overlay .g-title { color: var(--cream); font-weight: 600; font-size: 0.98rem; }
.g-overlay .g-cat { color: var(--gold); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; }
.gallery-item.hide { display: none; }

/* ---------- Why choose us ---------- */
.why-card {
  background: var(--charcoal);
  border: 1px solid var(--gold-border);
  border-radius: 18px;
  padding: 1.8rem 1.5rem;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); border-color: var(--gold); }
.why-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.05rem;
}
.why-icon svg { width: 56%; height: 56%; color: var(--gold); }
.why-card:hover .why-icon { background: var(--gold); color: var(--black); border-color: var(--gold); }
.why-card h3 { color: var(--cream); font-size: 1.05rem; margin-bottom: 0.5rem; }
.why-card p { color: var(--muted); font-size: 0.88rem; }

/* ---------- Steps ---------- */
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.step-card { text-align: center; position: relative; padding: 0 0.5rem; }
.step-card h3 { color: var(--cream); font-size: 1.05rem; margin: 0.9rem 0 0.45rem; }
.step-card p { color: var(--muted); font-size: 0.85rem; }
.step-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--black);
  box-shadow: 0 0 0 1.5px var(--gold);
  margin: 0.9rem auto 0;
}
.steps-line {
  position: absolute;
  top: 14px;
  left: 16.66%;
  width: 66.66%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 10px, transparent 10px 20px);
}

/* ---------- Contact ---------- */
.contact-info-card {
  background: var(--charcoal);
  color: var(--cream);
  border: 1px solid var(--gold-border);
  border-radius: 22px;
  padding: 2rem;
  border-top: 3px solid var(--gold);
}
.contact-info-card a { color: var(--cream); }
.contact-info-card a.contact-value { color: var(--lgold); }

.contact-action {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}
.contact-action:first-of-type { padding-top: 0; }
.contact-action:last-of-type { border-bottom: none; padding-bottom: 0; }
.contact-ico {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact-action-body { display: flex; flex-direction: column; gap: 0.15rem; padding-top: 0.15rem; }
.contact-label {
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
}
.contact-value { font-size: 1.12rem; font-weight: 600; color: var(--cream); transition: color 0.25s ease; }
.contact-value:hover { color: var(--lgold); }
.contact-social { display: flex; align-items: center; gap: 0.5rem; padding: 0.35rem 0 0.2rem; }
.contact-note { font-size: 0.72rem; color: var(--muted); }

/* ---------- Find Us / map ---------- */
.find-us-map {
  position: relative;
  min-height: 380px;
  border-radius: 22px;
  border: 1px solid var(--gold-border);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-embed { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map-placeholder {
  padding: 2rem;
  text-align: center;
  max-width: 380px;
}
.map-pin { font-size: 2.2rem; display: block; margin-bottom: 0.6rem; }
.map-title { font-family: 'Playfair Display', serif; color: var(--cream); font-size: 1.15rem; margin-bottom: 0.5rem; }
.map-note { color: var(--muted); font-size: 0.82rem; line-height: 1.6; }
.map-note code { color: var(--lgold); font-size: 0.78rem; }

.footer-basket-btn {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-align: left;
}
.footer-basket-btn:hover { color: var(--lgold); }

.social-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--black2);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  font-size: 1.1rem;
}
.social-btn-sm { width: 38px; height: 38px; }
.social-btn:hover { background: var(--gold); color: var(--black); transform: translateY(-3px); }

.form-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  background: var(--black2);
  border: 1.5px solid var(--gold-border);
  border-radius: 12px;
  padding: 0.85rem 1.05rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: var(--cream);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  color-scheme: dark;
}
.form-field select {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(183, 183, 183, 0.45); }
.form-field select option { background: var(--black2); color: var(--cream); }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.14);
}
.form-field input.error,
.form-field textarea.error,
.form-field select.error { border-color: #c0392b; }
.field-error {
  color: #e06c5a;
  font-size: 0.72rem;
  margin-top: 0.3rem;
  display: none;
}
.field-error.show { display: block; }

.form-success {
  display: none;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--gold);
  color: var(--lgold);
  border-radius: 12px;
  padding: 0.9rem 1.15rem;
  font-size: 0.88rem;
}
.form-success.show { display: block; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black);
  color: var(--cream);
  border-top: 1px solid rgba(212, 175, 55, 0.18);
}
.site-footer h4 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 1.1rem;
  padding-bottom: 0.5rem;
  position: relative;
}
.site-footer h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 1.5px;
  background: var(--gold);
  opacity: 0.7;
}

.footer-brand-name {
  display: block;
  white-space: nowrap;
  font-family: 'Playfair Display', serif;
  color: var(--cream);
  font-size: 1.22rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
.footer-brand-tag {
  display: block;
  margin-top: 0.3rem;
  color: var(--gold);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.footer-phone {
  display: block;
  color: var(--cream);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: color 0.25s ease;
}
.footer-phone:hover { color: var(--gold); }

.footer-link {
  color: rgba(248, 245, 237, 0.82);
  font-size: 0.86rem;
  padding: 0.28rem 0;
  display: inline-block;
  transition: color 0.25s ease, transform 0.25s ease;
}
.footer-link:hover { color: var(--gold); transform: translateX(4px); }
.footer-coming { opacity: 0.65; cursor: default; }
.footer-coming:hover { color: rgba(248, 245, 237, 0.82); transform: none; }

.footer-bottom {
  margin-top: 4.5rem;
  padding-top: 2.25rem;
  text-align: center;
  border-top: 1px solid rgba(212, 175, 55, 0.14);
}

/* ---------- Mobile action bar ---------- */
.mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: none;
  background: var(--black);
  border-top: 2px solid var(--gold);
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.4);
}
.mobile-bar a {
  flex: 1;
  padding: 0.95rem 0.5rem;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-transform: uppercase;
}
.mobile-bar .bar-call { color: var(--cream); border-right: 1px solid var(--gold-border); }
.mobile-bar .bar-wa { background: linear-gradient(180deg, #E8D27A 0%, #D4AF37 50%, #BC9B35 100%); color: var(--black); }

@media (max-width: 767px) {
  .mobile-bar { display: flex; }
  body { padding-bottom: 58px; }
  .section-pad { padding: 4rem 0; }
  .hero { min-height: 0; padding: 6.5rem 0 4rem; }
  .hero-grid { padding-top: 0; padding-bottom: 0; gap: 2.5rem; }
  .hero-media { padding-top: 0.5rem; }
  .hero-ring-one { width: 300px; height: 300px; top: 4%; right: -70px; }
  .hero-ring-two { display: none; }
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: var(--black);
  padding: 0.6rem 1.2rem;
  z-index: 200;
  font-weight: 600;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Utilities ---------- */
.w-full { width: 100%; }

/* ---------- ADD TO ORDER buttons ---------- */
.add-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(180deg, #E8D27A 0%, #D4AF37 50%, #BC9B35 100%);
  color: #000;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: none;
  border-radius: 11px;
  padding: 0.72rem 1rem;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}
.add-btn .add-plus { background: rgba(0, 0, 0, 0.14); border-radius: 50%; width: 20px; height: 20px; display: inline-flex; align-items: center; justify-content: center; font-size: 1rem; line-height: 1; }
.add-btn:hover { filter: brightness(1.08); transform: translateY(-2px); box-shadow: 0 8px 18px rgba(212, 175, 55, 0.28); }
.add-btn:active { transform: translateY(0); }

.menu-add-row .add-btn,
.bakers-add-row .add-btn,
.pack-add-row .add-btn { width: 100%; }
.menu-add-row { padding: 0 1.05rem 1.05rem; }
.bakers-add-row { margin-top: 1.15rem; }
.bakers-card .add-btn { padding: 0.66rem 0.9rem; font-size: 0.78rem; }
.pack-add-row { padding: 0.85rem 1rem 1rem; }
.pack-add-row .add-btn { padding: 0.6rem 0.9rem; font-size: 0.76rem; }
.set-card .add-btn { flex: 1 1 0%; width: auto; }

/* ---------- Floating order basket ---------- */
.basket-widget {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 80;
  width: 352px;
  max-width: calc(100vw - 2rem);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.basket-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--black2);
  color: var(--cream);
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 0.72rem 1.2rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(212, 175, 55, 0.2);
  transition: transform 0.25s ease, background 0.25s ease;
}
.basket-toggle:hover { transform: translateY(-2px); background: var(--charcoal); }
.basket-toggle-ico { color: var(--gold); display: inline-flex; }
.basket-toggle-label { white-space: nowrap; }
.basket-badge {
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, #E8D27A 0%, #D4AF37 50%, #BC9B35 100%);
  color: #000;
  font-size: 0.78rem;
  font-weight: 800;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  line-height: 1;
}
.basket-badge.pulse { animation: badgePulse 0.45s ease; }

@keyframes badgePulse {
  0% { transform: scale(1); }
  40% { transform: scale(1.45); }
  100% { transform: scale(1); }
}

.basket-panel {
  margin-top: 0.7rem;
  width: 100%;
  background: var(--black2);
  border: 1px solid var(--gold-border);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  padding: 1.2rem;
  display: none;
}
.basket-widget.open .basket-panel { display: block; animation: fadePanel 0.25s ease; }

.basket-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.6rem; }
.basket-title { color: var(--cream); font-size: 1rem; font-weight: 600; }
.basket-title .basket-count { color: var(--gold); font-size: 0.85rem; font-weight: 600; }
.basket-clear {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0.2rem 0.3rem;
  transition: color 0.2s ease;
}
.basket-clear:hover { color: var(--lgold); }

.basket-list { list-style: none; margin: 0 0 0.6rem; padding: 0; max-height: 260px; overflow-y: auto; }
.basket-empty { color: var(--muted); font-size: 0.85rem; text-align: center; padding: 1.2rem 0.4rem; line-height: 1.5; }
.basket-item {
  padding: 0.65rem 0;
  border-bottom: 1px dashed rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.basket-item .basket-thumb { width: 38px; height: 38px; border-radius: 8px; margin-top: 0.1rem; }
.basket-item:last-child { border-bottom: none; }
.basket-item-info { display: flex; flex-direction: column; flex: 1; margin-bottom: 0.35rem; }
.basket-item-name { color: var(--cream); font-size: 0.88rem; font-weight: 600; }
.basket-item-line { color: var(--muted); font-size: 0.72rem; }
.basket-item-controls { display: flex; align-items: center; gap: 0.45rem; }
.qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  border: 1px solid var(--gold-border);
  background: var(--charcoal);
  color: var(--gold);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}
.qty-btn:hover { background: var(--gold); color: #000; }
.qty-remove { width: 26px; height: 26px; border-color: rgba(212, 175, 55, 0.3); color: var(--muted); font-size: 0.8rem; }
.qty-remove:hover { background: #8a2020; border-color: #8a2020; color: #fff; }
.qty-val { width: 26px; text-align: center; color: var(--cream); font-weight: 700; font-size: 0.95rem; }
.basket-item-sub { margin-left: auto; color: var(--lgold); font-weight: 700; font-size: 0.9rem; white-space: nowrap; }

.basket-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--cream);
  font-weight: 700;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  padding-top: 0.7rem;
  margin-bottom: 0.85rem;
  font-size: 1rem;
}
.basket-total { color: var(--gold); font-size: 1.15rem; }
.basket-note { color: var(--muted); font-size: 0.7rem; margin: 0 0 0.7rem; text-align: center; }
.basket-widget.open .basket-toggle { background: var(--charcoal); }

/* ---------- Review order modal ---------- */
.review-modal { position: fixed; inset: 0; z-index: 90; display: flex; align-items: center; justify-content: center; padding: 1.2rem; }
.review-backdrop { position: absolute; inset: 0; background: rgba(4, 4, 4, 0.82); backdrop-filter: blur(3px); }
.review-panel {
  position: relative;
  background: var(--black2);
  border: 1px solid var(--gold);
  border-radius: 20px;
  width: 100%;
  max-width: 440px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem 1.6rem 1.6rem;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7);
  animation: fadePanel 0.25s ease;
}
.review-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  background: var(--charcoal);
  color: var(--muted);
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.review-close:hover { color: var(--gold); border-color: var(--gold); }
.review-title { color: var(--cream); font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 0.9rem; }
.review-list { list-style: none; margin: 0 0 0.4rem; padding: 0; }
.review-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--cream);
  font-size: 0.88rem;
  padding: 0.4rem 0;
}
.review-item span:last-child { color: var(--lgold); font-weight: 600; white-space: nowrap; }
.review-total-row {
  display: flex;
  justify-content: space-between;
  color: var(--cream);
  font-weight: 700;
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  padding: 0.8rem 0;
  margin-bottom: 1.2rem;
}

/* ---------- Mobile bottom bar: basket button ---------- */
.mobile-bar .bar-basket {
  flex: 1.1;
  padding: 0.75rem 0.5rem;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.55rem;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--charcoal);
  border: none;
  border-right: 1px solid var(--gold-border);
  cursor: pointer;
}
.bar-basket-txt { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.25; }
.bar-basket-meta { font-size: 0.68rem; letter-spacing: 0.06em; font-weight: 600; color: var(--lgold); text-transform: none; margin-top: 0.1rem; }
.bar-basket-badge {
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  background: linear-gradient(180deg, #E8D27A 0%, #D4AF37 50%, #BC9B35 100%);
  color: #000;
  font-size: 0.74rem;
  font-weight: 800;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  line-height: 1;
}
.bar-basket-badge.pulse { animation: badgePulse 0.45s ease; }

/* ---------- Mobile basket behaviour ---------- */
@media (max-width: 767px) {
  .basket-widget {
    right: 0.75rem;
    bottom: 64px;
    left: 0.75rem;
    width: auto;
    align-items: stretch;
  }
  .basket-widget.open { display: block; }
  .basket-toggle { display: none; }
  .basket-panel { margin-top: 0; border-radius: 18px; }
}

/* ---------- Tawheed ---------- */
.tawheed-divider {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin: 0.35rem 0 1.4rem;
}
.tawheed-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}
.tawheed-text {
  color: var(--lgold);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
}
.tawheed-footer {
  color: var(--lgold);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* ---------- Menu search ---------- */
.menu-search-wrap { max-width: 34rem; margin-left: auto; margin-right: auto; }
.menu-search {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(13, 13, 13, 0.6);
  border: 1.5px solid var(--gold-border);
  border-radius: 999px;
  padding: 0.35rem 1rem;
  transition: border-color 0.25s ease;
}
.menu-search:focus-within { border-color: var(--gold); }
.menu-search-ico { color: var(--lgold); display: inline-flex; flex-shrink: 0; }
.menu-search-input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--cream);
  font-size: 0.88rem;
  padding: 0.45rem 0;
}
.menu-search-input::placeholder { color: var(--muted); }
.menu-search-input::-webkit-search-cancel-button { -webkit-appearance: none; }
.menu-search-clear {
  cursor: pointer;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1;
  padding: 0.25rem;
  border-radius: 50%;
  flex-shrink: 0;
}
.menu-search-clear:hover { color: var(--cream); }
.menu-search-empty {
  margin-top: 0.85rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}
.search-hide { display: none !important; }

/* ---------- Category subheadings (gravies + cake floors) ---------- */
.gravy-subhead {
  border-top: 1px solid var(--gold-border);
  margin: 0.3rem 0 0.1rem;
  padding: 1rem 0 0.4rem;
}
.gravy-subhead span {
  display: inline-block;
  color: var(--lgold);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  background: rgba(13, 13, 13, 0.6);
  border: 1px solid var(--gold-border);
  border-radius: 999px;
  padding: 0.4rem 1rem;
}

/* ---------- Jump tabs (Cakes / Set Menu) ---------- */
.menu-tab[data-jump] { border-style: dashed; }
.menu-tab[data-jump]:hover { border-style: solid; }