﻿/* ============================================================
   BIG GOOD SPICES — Premium Fast Food
   Luxury dark theme · golden/orange accents · glassmorphism
   ============================================================ */

:root {
  --bg: #0a0a0c;
  --bg-soft: #111114;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-2: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --gold: #f5b301;
  --gold-2: #ff7a18;
  --orange: #ff5e1a;
  --grad: linear-gradient(115deg, #ffc233 0%, #f5a105 40%, #ff6a1a 100%);
  --grad-soft: linear-gradient(115deg, rgba(255, 194, 51, 0.16), rgba(255, 106, 26, 0.10));
  --text: #f7f2e9;
  --muted: #a8a39a;
  --shadow-soft: 0 24px 60px -24px rgba(0, 0, 0, 0.7);
  --radius: 20px;
  --radius-sm: 14px;
  --font-head: "Playfair Display", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea { font-family: inherit; }
ul { list-style: none; }

.container { width: min(1200px, 92%); margin-inline: auto; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}

/* ================= BUTTONS ================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; transition: transform 0.25s ease; }
.btn:hover svg { transform: translateX(3px); }
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--grad);
  color: #1a1205;
  box-shadow: 0 14px 34px -12px rgba(255, 138, 30, 0.55), inset 0 1px 0 rgba(255,255,255,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 44px -14px rgba(255, 138, 30, 0.7), inset 0 1px 0 rgba(255,255,255,.35); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-strong);
  color: var(--text);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn-block { width: 100%; }

.btn-sm { padding: 10px 16px; font-size: 0.85rem; border-radius: 999px; }
.btn-sm svg { width: 15px; height: 15px; }

/* ================= NAVBAR ================= */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(10, 10, 12, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 40px -20px rgba(0, 0, 0, 0.8);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 76px;
}

.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo-badge {
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  display: block;
  background: #000;
  box-shadow: 0 0 0 2px rgba(255, 179, 1, 0.28), 0 10px 26px -10px rgba(255, 138, 30, 0.7);
  flex: none;
}
.logo-badge img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
}
.logo-sub {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.42em;
  color: var(--gold);
  margin-top: 3px;
}

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-link {
  position: relative;
  padding: 9px 15px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted);
  border-radius: 999px;
  transition: color 0.25s ease, background 0.25s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 2px;
  width: 0; height: 2px;
  transform: translateX(-50%);
  background: var(--grad);
  border-radius: 2px;
  transition: width 0.28s ease;
}
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link:hover::after, .nav-link.active::after { width: 16px; }

.nav-actions { display: flex; align-items: center; gap: 12px; }

.cart-btn {
  position: relative;
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-strong);
  color: var(--text);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.cart-btn svg { width: 21px; height: 21px; }
.cart-btn:hover { border-color: var(--gold); transform: translateY(-2px); }
.cart-count {
  position: absolute;
  top: -5px; right: -5px;
  min-width: 20px; height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--grad);
  color: #1a1205;
  font-size: 0.7rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 16px -4px rgba(255, 138, 30, 0.8);
  transform: scale(1);
  transition: transform 0.2s ease;
}
.cart-count.bump { animation: bump 0.4s ease; }
@keyframes bump { 50% { transform: scale(1.45); } }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 10px; }
.hamburger span {
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================= SECTION SCAFFOLD ================= */
.section { padding: 96px 0; position: relative; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--grad); box-shadow: 0 0 12px rgba(255,170,50,.9); }
.section-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  line-height: 1.12;
  margin: 14px 0 14px;
}
.section-sub { color: var(--muted); font-size: 1.02rem; }

/* ================= HERO ================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 150px 0 80px;
  overflow: hidden;
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(120px); pointer-events: none; z-index: 1; }
.hero-glow-a { width: 560px; height: 560px; top: -160px; left: -160px; background: rgba(245, 140, 20, 0.22); }
.hero-glow-b { width: 640px; height: 640px; bottom: -260px; right: -220px; background: rgba(255, 60, 30, 0.14); }

/* --- animated background slideshow (Ken Burns) --- */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: -6%;
  opacity: 0;
  animation: heroFade 32s ease-in-out infinite;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroKenBurns 28s ease-in-out infinite alternate;
  will-change: transform;
}
.hero-slide:nth-child(2) { animation-delay: 8s; }
.hero-slide:nth-child(3) { animation-delay: 16s; }
.hero-slide:nth-child(4) { animation-delay: 24s; }
.hero-slideshow::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(7, 5, 3, 0.55) 0%, rgba(7, 5, 3, 0.42) 45%, rgba(7, 5, 3, 0.72) 100%),
    radial-gradient(ellipse 85% 65% at 28% 38%, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.55) 100%);
}
@keyframes heroFade {
  0% { opacity: 0; }
  4.5% { opacity: 1; }
  20% { opacity: 1; }
  25% { opacity: 0; }
  100% { opacity: 0; }
}
@keyframes heroKenBurns {
  from { transform: scale(1.05) translate(0, 0); }
  to { transform: scale(1.18) translate(-1.5%, -1%); }
}

.hero::before {
  content: "";
  position: absolute; inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, black, transparent 75%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-eyebrow { margin-bottom: 22px; }
.hero-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.7rem, 6vw, 4.6rem);
  line-height: 1.06;
  letter-spacing: -0.01em;
}
.hero-sub {
  margin: 22px 0 34px;
  color: var(--muted);
  font-size: 1.06rem;
  max-width: 480px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.hero-tags span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.02);
  transition: color 0.25s ease, border-color 0.25s ease;
}
.hero-tags span:hover { color: var(--gold); border-color: rgba(245,179,1,.5); }

.hero-visual { position: relative; }
.hero-frame {
  position: relative;
  border-radius: 28px;
  padding: 10px;
  background: linear-gradient(160deg, rgba(255,194,51,.55), rgba(255,106,26,.25) 40%, rgba(255,255,255,.06) 60%, rgba(255,106,26,.4));
  box-shadow: var(--shadow-soft);
  animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.hero-frame img {
  border-radius: 20px;
  width: 100%;
  aspect-ratio: 4/4.4;
  object-fit: cover;
}
.hero-shine {
  position: absolute; inset: 10px;
  border-radius: 20px;
  pointer-events: none;
  background: radial-gradient(120% 60% at 30% 0%, rgba(255,255,255,.22), transparent 55%);
}
.float-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 18px;
  border-radius: 16px;
  background: rgba(20, 20, 24, 0.82);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px -16px rgba(0,0,0,.7);
  animation: float 5.5s ease-in-out infinite;
  z-index: 3;
}
.float-chip b { display: block; font-size: 0.9rem; line-height: 1.15; }
.float-chip small { color: var(--muted); font-size: 0.72rem; }
.chip-ico {
  width: 38px; height: 38px;
  flex: none;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--grad-soft);
  border: 1px solid rgba(255,179,1,.35);
  font-size: 1.1rem;
}
.float-chip-a { top: 8%; left: -6%; animation-delay: .4s; }
.float-chip-b { bottom: 10%; right: -4%; animation-delay: 1.1s; }

/* ================= REVEAL ================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ================= MARQUEE ================= */
.marquee {
  border-block: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg-soft), var(--bg));
  overflow: hidden;
  padding: 18px 0;
  position: relative;
}
.marquee::before, .marquee::after {
  content: "";
  position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.marquee::after { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }
.marquee-track { display: flex; align-items: center; gap: 34px; width: max-content; animation: scroll-x 32s linear infinite; }
.marquee-track span {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--muted);
  white-space: nowrap;
  transition: color .3s;
}
.marquee-track i { width: 6px; height: 6px; border-radius: 50%; background: var(--grad); flex: none; }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ================= CARDS ================= */
.deals-grid, .items-grid {
  display: grid;
  gap: 24px;
}
.items-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.deals-grid { grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); }

.card {
  position: relative;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--line);
  overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  animation: cardIn 0.55s ease both;
}
@keyframes cardIn { from { opacity: 0; transform: translateY(22px) scale(.98); } to { opacity: 1; transform: none; } }
.card:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 179, 1, 0.4);
  box-shadow: 0 30px 60px -24px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255,179,1,.12), 0 0 44px -18px rgba(255,150,20,.35);
}

.card-img {
  position: relative;
  aspect-ratio: 16/10.5;
  overflow: hidden;
}
.card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(.2,.6,.2,1);
}
.card:hover .card-img img { transform: scale(1.08); }
.card-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,10,12,.78) 100%);
  pointer-events: none;
}
.card-badge {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  padding: 6px 13px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(12,12,14,.72);
  border: 1px solid rgba(255,179,1,.45);
  color: var(--gold);
  backdrop-filter: blur(8px);
}
.card-body { padding: 18px 18px 20px; }
.card-title { font-family: var(--font-head); font-weight: 700; font-size: 1.18rem; line-height: 1.25; }
.card-desc { color: var(--muted); font-size: 0.84rem; margin: 6px 0 14px; min-height: 2.4em; }
.card-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.price {
  font-weight: 800;
  font-size: 1.08rem;
  color: var(--gold);
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.price small { font-size: 0.66rem; color: var(--muted); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.price-val { display: block; font-weight: 800; color: var(--gold); }

.add-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--grad);
  color: #1a1205;
  font-weight: 800;
  font-size: 0.82rem;
  box-shadow: 0 10px 24px -10px rgba(255,138,30,.6);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.add-btn svg { width: 15px; height: 15px; }
.add-btn:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 14px 30px -10px rgba(255,138,30,.75); }
.add-btn:active { transform: scale(0.94); }
.add-btn.added { animation: addedPop 0.5s ease; }
@keyframes addedPop { 40% { transform: scale(1.12); } }

/* Pizza special card extras */
.size-row { display: flex; gap: 8px; margin: 4px 0 12px; }
.size-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 9px 6px;
  border-radius: 10px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.15;
  color: var(--muted);
  background: rgba(255,255,255,.035);
  border: 1px solid var(--line);
  transition: all 0.22s ease;
}
.size-btn small {
  font-size: 0.72rem;
  font-weight: 800;
  color: rgba(245,179,1,.85);
}
.size-btn:hover { color: var(--text); border-color: var(--line-strong); }
.size-btn.active {
  background: var(--grad-soft);
  border-color: rgba(255,179,1,.6);
  color: var(--gold);
}
.size-btn.active small { color: var(--gold); }

.deal-list { margin: 8px 0 14px; display: grid; gap: 7px; }
.deal-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: 0.86rem;
}
.deal-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  color: var(--gold);
  font-weight: 900;
  font-size: 0.82rem;
}

/* Deal customer choice selector */
.deal-choice { margin: 2px 0 14px; }
.deal-choice-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.deal-choice-row { display: flex; flex-wrap: wrap; gap: 8px; }
.deal-choice-btn {
  flex: 1;
  min-width: 0;
  padding: 9px 8px;
  border-radius: 10px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--muted);
  background: rgba(255,255,255,.035);
  border: 1px solid var(--line);
  transition: all 0.22s ease;
}
.deal-choice-btn:hover { color: var(--text); border-color: var(--line-strong); }
.deal-choice-btn.active {
  background: var(--grad-soft);
  border-color: rgba(255,179,1,.6);
  color: var(--gold);
}

/* Deal cards use the same single-image style as item cards */

/* ================= CATEGORY CHIPS ================= */
.cat-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 42px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 20px;
  border-radius: 999px;
  font-size: 0.87rem;
  font-weight: 700;
  color: var(--muted);
  background: rgba(255,255,255,.035);
  border: 1px solid var(--line);
  transition: all 0.25s ease;
}
.chip .chip-emoji { font-size: 1.05rem; }
.chip:hover { color: var(--text); border-color: var(--line-strong); transform: translateY(-2px); }
.chip.active {
  background: var(--grad);
  color: #1a1205;
  border-color: transparent;
  box-shadow: 0 12px 28px -12px rgba(255,138,30,.7);
}

/* ================= ABOUT ================= */
.about-section { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-visual { position: relative; }
.about-visual img {
  border-radius: 24px;
  width: 100%;
  aspect-ratio: 4/4.6;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
}
.about-badge {
  position: absolute;
  bottom: -24px; left: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border-radius: 18px;
  background: rgba(18,18,22,.88);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 44px -18px rgba(0,0,0,.8);
}
.about-badge svg { width: 26px; height: 26px; color: var(--gold); }
.about-logo {
  width: 46px; height: 46px;
  border-radius: 50%;
  overflow: hidden;
  display: block;
  flex: none;
  background: #000;
  box-shadow: 0 0 0 2px rgba(255, 179, 1, 0.28);
}
.about-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.about-badge b { font-family: var(--font-head); font-size: 1rem; display: block; line-height: 1.1; }
.about-badge small { color: var(--gold); font-size: 0.6rem; letter-spacing: 0.35em; }
.about-copy .section-title { margin-top: 12px; }
.about-copy p { color: var(--muted); margin: 18px 0 26px; }
.about-points { display: grid; gap: 14px; margin-bottom: 34px; }
.about-points li { display: flex; align-items: center; gap: 12px; font-weight: 600; }
.pt-ico {
  width: 26px; height: 26px;
  flex: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--grad-soft);
  border: 1px solid rgba(255,179,1,.4);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
}

/* ================= CONTACT ================= */
.contact-section .section-head { margin-bottom: 60px; }
.contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 44px;
}
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 30px 26px;
  border-radius: 20px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,179,1,.4);
  box-shadow: 0 22px 44px -18px rgba(0,0,0,.85), 0 0 0 1px rgba(255,179,1,.12);
}
.contact-ico {
  width: 52px;
  height: 52px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--grad-soft);
  border: 1px solid rgba(255,179,1,.35);
  color: var(--gold);
  transition: transform 0.3s ease;
}
.contact-card:hover .contact-ico { transform: scale(1.06); }
.contact-ico svg { width: 24px; height: 24px; }
.contact-card b { display: block; font-size: 1rem; margin-bottom: 8px; }
.contact-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; }
.contact-card a { color: var(--muted); text-decoration: none; transition: color 0.25s ease; }
.contact-card a:hover { color: var(--gold); }

.contact-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.contact-social a {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--line);
  color: var(--muted);
  transition: transform 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact-social a:hover {
  transform: translateY(-3px);
  color: var(--gold);
  border-color: rgba(255,179,1,.5);
  box-shadow: 0 10px 24px -10px rgba(255,179,1,.45);
}
.contact-social svg { width: 20px; height: 20px; }

/* ================= FORM FIELDS ================= */
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.field input, .field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 0.94rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  resize: vertical;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: rgba(255,179,1,.65);
  box-shadow: 0 0 0 3px rgba(255,179,1,.14);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(168,163,154,.5); }

/* ================= REVIEWS ================= */
.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  margin: -14px auto 48px;
  padding: 26px 34px;
  max-width: 580px;
  border-radius: 24px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
}
.reviews-avg { display: flex; align-items: baseline; gap: 4px; }
.reviews-avg-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.reviews-avg-out { color: var(--muted); font-size: 1.1rem; font-weight: 700; }
.reviews-avg-stars { display: flex; gap: 3px; }
.reviews-avg-stars .star, .review-card-stars .star { width: 20px; height: 20px; color: rgba(255,255,255,.18); }
.reviews-avg-stars .star.filled, .review-card-stars .star.filled { color: var(--gold); }
.reviews-avg-stars .star svg, .review-card-stars .star svg, .star-btn svg { width: 100%; height: 100%; fill: currentColor; }
.reviews-avg-count { color: var(--muted); font-size: 0.9rem; font-weight: 600; }

.reviews-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 40px; align-items: start; }
.review-form {
  position: sticky;
  top: 100px;
  padding: 32px;
  border-radius: 24px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
}
.review-form h3 { font-family: var(--font-head); font-size: 1.5rem; margin-bottom: 22px; }
.star-picker { display: flex; gap: 8px; }
.star-btn {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: rgba(255,255,255,.22);
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.star-btn svg { width: 22px; height: 22px; fill: currentColor; }
.star-btn:hover {
  transform: translateY(-3px) scale(1.06);
  color: var(--gold);
  border-color: rgba(255,179,1,.5);
  box-shadow: 0 8px 20px -8px rgba(255,179,1,.5);
}
.star-btn.active {
  color: var(--gold);
  background: var(--grad-soft);
  border-color: rgba(255,179,1,.65);
  box-shadow: 0 0 0 3px rgba(255,179,1,.14);
}
.review-form-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.review-success {
  margin-top: 16px;
  color: #7ee2a0;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.review-success[hidden] { display: none; }

.reviews-list { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.review-card {
  padding: 22px;
  border-radius: 20px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  animation: reviewIn 0.5s ease both;
}
.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,179,1,.4);
  box-shadow: 0 18px 40px -18px rgba(0,0,0,.8), 0 0 0 1px rgba(255,179,1,.12);
}
.review-card-top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review-avatar {
  width: 42px;
  height: 42px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--grad-soft);
  border: 1px solid rgba(255,179,1,.35);
  color: var(--gold);
}
.review-avatar svg { width: 20px; height: 20px; }
.review-card-meta { flex: 1; min-width: 0; }
.review-name { display: block; font-size: 0.95rem; font-weight: 700; color: var(--text); }
.review-date { font-size: 0.76rem; color: var(--muted); }
.review-card-stars { display: flex; gap: 3px; margin-bottom: 10px; }
.review-card-stars .star { width: 16px; height: 16px; }
.review-text { color: var(--muted); font-size: 0.9rem; line-height: 1.6; }

@keyframes reviewIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ================= FOOTER ================= */
.footer { border-top: 1px solid var(--line); background: var(--bg-soft); padding: 64px 0 0; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 40px; text-align: center; }
.footer-brand { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.footer-tag { color: var(--muted); font-family: var(--font-head); font-style: italic; font-size: 1.05rem; }

.footer-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  text-align: left;
}
.footer-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  border-radius: 18px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.footer-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,179,1,.4);
  box-shadow: 0 18px 36px -18px rgba(0,0,0,.85);
}
.footer-card-ico {
  width: 46px;
  height: 46px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--grad-soft);
  border: 1px solid rgba(255,179,1,.35);
  color: var(--gold);
  transition: transform 0.3s ease;
}
.footer-card:hover .footer-card-ico { transform: scale(1.08) rotate(-4deg); }
.footer-card-ico svg { width: 22px; height: 22px; }
.footer-card b { display: block; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.footer-card p { color: var(--muted); font-size: 0.88rem; line-height: 1.6; }
.footer-card p + p { margin-top: 4px; }
.footer-card a { color: var(--muted); text-decoration: none; transition: color 0.25s ease; }
.footer-card a:hover { color: var(--gold); }

.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 22px; }
.footer-nav a { color: var(--muted); font-size: 0.9rem; font-weight: 600; transition: color 0.25s ease; }
.footer-nav a:hover { color: var(--gold); }

.footer-copy {
  width: 100%;
  border-top: 1px solid var(--line);
  padding: 22px 0;
  color: rgba(168,163,154,.55);
  font-size: 0.8rem;
}

/* ================= CART ================= */
.cart-overlay, .modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(5, 5, 7, 0.62);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.cart-overlay.open, .modal-overlay.open { opacity: 1; visibility: visible; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(430px, 100%);
  z-index: 100;
  background: linear-gradient(180deg, #131316, #0d0d10);
  border-left: 1px solid var(--line);
  box-shadow: -30px 0 70px -20px rgba(0,0,0,.8);
  display: flex;
  flex-direction: column;
  transform: translateX(105%);
  transition: transform 0.45s cubic-bezier(.3,.7,.2,1);
}
.cart-drawer.open { transform: translateX(0); }

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}
.cart-head h3 { font-family: var(--font-head); font-size: 1.45rem; }
.cart-sub { color: var(--muted); font-size: 0.8rem; }
.icon-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line);
  transition: all 0.25s ease;
}
.icon-btn svg { width: 18px; height: 18px; }
.icon-btn:hover { border-color: var(--gold); color: var(--gold); transform: rotate(90deg); }

.cart-body { flex: 1; overflow-y: auto; padding: 20px 24px; }
.cart-body::-webkit-scrollbar { width: 6px; }
.cart-body::-webkit-scrollbar-thumb { background: rgba(255,255,255,.14); border-radius: 6px; }

.cart-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
  animation: cardIn 0.35s ease both;
}
.cart-item-img {
  width: 66px; height: 66px;
  flex: none;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-weight: 700; font-size: 0.92rem; line-height: 1.25; }
.cart-item-meta { color: var(--muted); font-size: 0.75rem; margin-top: 3px; }
.cart-item-price { color: var(--gold); font-weight: 800; font-size: 0.9rem; margin-top: 6px; }

.qty { display: inline-flex; align-items: center; gap: 2px; margin-top: 8px; }
.qty-btn {
  width: 28px; height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.2s ease;
}
.qty-btn:hover { border-color: var(--gold); color: var(--gold); }
.qty-num { min-width: 34px; text-align: center; font-weight: 800; font-size: 0.9rem; }

.cart-item-del {
  align-self: flex-start;
  color: var(--muted);
  padding: 6px;
  transition: color 0.2s ease, transform 0.2s ease;
}
.cart-item-del svg { width: 17px; height: 17px; }
.cart-item-del:hover { color: #ff5e5e; transform: scale(1.15); }

.cart-empty { text-align: center; padding: 60px 10px; }
.cart-empty-ico {
  display: grid;
  place-items: center;
  width: 72px; height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--grad-soft);
  border: 1px solid rgba(255,179,1,.35);
  color: var(--gold);
}
.cart-empty-ico svg { width: 32px; height: 32px; }
.cart-empty h4 { font-family: var(--font-head); font-size: 1.25rem; margin-bottom: 6px; }
.cart-empty p { color: var(--muted); font-size: 0.88rem; margin-bottom: 22px; }

.cart-foot {
  padding: 20px 24px 24px;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.02);
}
.cart-sum { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.cart-sum span { color: var(--muted); font-size: 0.9rem; }
.cart-sum b { font-size: 1.05rem; }
.cart-total { border-top: 1px dashed var(--line); padding-top: 12px; margin-bottom: 16px; }
.cart-total span { font-weight: 700; color: var(--text); }
.cart-total b { font-size: 1.45rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cart-actions { display: grid; grid-template-columns: 1fr 1.4fr; gap: 12px; }

/* ================= MODAL ================= */
.modal-overlay { display: grid; place-items: center; padding: 20px; z-index: 110; }
.modal {
  position: relative;
  width: min(460px, 100%);
  padding: 42px 34px 34px;
  border-radius: 24px;
  text-align: center;
  background: linear-gradient(180deg, #16161a, #0e0e11);
  border: 1px solid var(--line-strong);
  box-shadow: 0 40px 90px -20px rgba(0,0,0,.9);
  transform: translateY(24px) scale(.96);
  transition: transform 0.4s cubic-bezier(.3,.7,.2,1);
}
.modal-overlay.open .modal { transform: none; }
.modal-close { position: absolute; top: 16px; right: 16px; }
.modal-ico { font-size: 2.6rem; display: block; margin-bottom: 14px; }
.modal h3 { font-family: var(--font-head); font-size: 1.7rem; margin-bottom: 10px; }
.modal p { color: var(--muted); font-size: 0.94rem; margin-bottom: 20px; }
.modal-order {
  text-align: left;
  max-height: 180px;
  overflow-y: auto;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 24px;
}
.modal-order::-webkit-scrollbar { width: 5px; }
.modal-order::-webkit-scrollbar-thumb { background: rgba(255,255,255,.14); border-radius: 6px; }
.modal-order-row { display: flex; justify-content: space-between; gap: 12px; font-size: 0.86rem; padding: 5px 0; }
.modal-order-row span:first-child { color: var(--muted); }
.modal-order-total {
  display: flex;
  justify-content: space-between;
  font-weight: 800;
  border-top: 1px dashed var(--line);
  margin-top: 8px;
  padding-top: 10px;
  font-size: 0.98rem;
}
.modal-order-total b { color: var(--gold); }

/* ================= TOAST ================= */
.toast {
  position: fixed;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%) translateY(120%);
  z-index: 130;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 22px;
  border-radius: 14px;
  background: rgba(18, 18, 22, 0.92);
  border: 1px solid rgba(255, 179, 1, 0.4);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 50px -14px rgba(0,0,0,.85);
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 0.45s cubic-bezier(.3,.7,.2,1);
  max-width: 90vw;
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast-ico { color: var(--gold); flex: none; display: grid; place-items: center; }
.toast-ico svg { width: 20px; height: 20px; }

/* ================= FOOTER NAV ACTIVE / scroll spy handled in JS ================= */

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-sub, .hero-tags, .hero-cta { margin-left: auto; margin-right: auto; justify-content: center; }
  .hero-sub { max-width: 560px; }
  .hero-visual { max-width: 560px; margin-inline: auto; width: 100%; }
  .hero { padding-top: 130px; }
  .about-inner { grid-template-columns: 1fr; gap: 56px; }
  .about-visual { max-width: 560px; }
  .contact-info { grid-template-columns: repeat(2, 1fr); }
  .footer-cards { grid-template-columns: 1fr; max-width: 560px; }
  .reviews-layout { grid-template-columns: 1fr; }
  .review-form { position: static; }
}

@media (max-width: 820px) {
  .nav-links {
    position: fixed;
    top: 76px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 18px 6%;
    background: rgba(10, 10, 12, 0.96);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    transform: translateY(-130%);
    transition: transform 0.4s cubic-bezier(.3,.7,.2,1);
    z-index: 55;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-link { padding: 13px 16px; font-size: 1rem; text-align: center; }
  .nav-link::after { display: none; }
  .nav-link:hover { background: rgba(255,255,255,.05); }
  .hamburger { display: flex; }
  .deals-grid { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
}

@media (max-width: 520px) {
  .hero-title { font-size: clamp(2.3rem, 11vw, 3.1rem); }
  .float-chip { padding: 10px 13px; }
  .float-chip-a { left: 0; }
  .float-chip-b { right: 0; }
  .chip { flex: 1 1 auto; justify-content: center; }
  .btn { width: 100%; }
  .hero-cta .btn { width: 100%; }
  .contact-info { grid-template-columns: 1fr; }
  .contact-card { flex-direction: row; align-items: center; padding: 24px 22px; }
  .footer-cards { max-width: none; }
  .about-badge { left: 16px; bottom: -20px; padding: 12px 16px; }
  .cart-actions { grid-template-columns: 1fr; }
  .delivery-options { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .modal-checkout { max-height: 94vh; }
  .reviews-summary { padding: 22px; gap: 14px; }
  .reviews-list { grid-template-columns: 1fr; }
  .review-form { padding: 26px 20px; }
  .review-form-actions .btn { width: 100%; }
}

/* ================= CHECKOUT ================= */
.modal-checkout {
  text-align: left;
  max-height: min(90vh, 780px);
  overflow-y: auto;
}
.modal-checkout::-webkit-scrollbar { width: 6px; }
.modal-checkout::-webkit-scrollbar-thumb { background: rgba(255,255,255,.14); border-radius: 6px; }
.checkout-title { text-align: center; margin-bottom: 18px; }
.checkout-title .modal-ico { margin-bottom: 4px; color: var(--gold); }
.checkout-title h3 { font-family: var(--font-head); font-size: 1.6rem; margin-bottom: 6px; }
.checkout-title p { color: var(--muted); font-size: 0.88rem; margin-bottom: 0; }
.modal-ico svg { display: block; }

.modal-checkout .modal-order { margin-bottom: 22px; }

.delivery-block { margin-bottom: 20px; }
.field-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.delivery-options { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.delivery-opt {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.035);
  border: 1px solid var(--line);
  text-align: left;
  transition: all 0.25s ease;
}
.delivery-opt svg { width: 24px; height: 24px; color: var(--muted); flex: none; transition: color 0.25s ease; }
.delivery-opt b { display: block; font-size: 0.9rem; line-height: 1.25; }
.delivery-opt small { color: var(--muted); font-size: 0.72rem; }
.delivery-opt:hover { border-color: var(--line-strong); transform: translateY(-1px); }
.delivery-opt.active {
  background: var(--grad-soft);
  border-color: rgba(255, 179, 1, 0.6);
  box-shadow: 0 0 0 1px rgba(255, 179, 1, 0.18);
}
.delivery-opt.active svg { color: var(--gold); }
.delivery-opt.active b { color: var(--gold); }

#checkoutForm .field { margin-bottom: 14px; }
#checkoutForm label { color: var(--muted); }
#checkoutForm label i { font-style: normal; color: var(--gold); }
#checkoutForm label i.opt { font-size: 0.74rem; color: var(--muted); opacity: 0.75; text-transform: none; letter-spacing: 0; font-weight: 600; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.customer-block { margin-bottom: 22px; }
.summary-block { margin-bottom: 6px; }
.modal-order-sum {
  border-top: 1px dashed var(--line);
  margin-top: 8px;
  padding-top: 8px;
}
.field input.input-error, .field textarea.input-error {
  border-color: rgba(255, 94, 94, 0.7);
  box-shadow: 0 0 0 3px rgba(255, 94, 94, 0.12);
}
.field-error { font-size: 0.76rem; color: #ff8585; margin-top: 6px; min-height: 0.9em; }
.btn-checkout { margin-top: 8px; }
.btn-checkout b { font-weight: 800; }
.checkout-note { text-align: center; color: var(--muted); font-size: 0.8rem; margin-top: 14px; }

/* Success view */
#successView { text-align: center; }
#successView h3 { font-family: var(--font-head); font-size: 1.7rem; margin-bottom: 10px; }
#successView p { color: var(--muted); font-size: 0.94rem; margin-bottom: 20px; }
.success-ico {
  display: grid;
  place-items: center;
  width: 76px; height: 76px;
  margin: 4px auto 18px;
  border-radius: 50%;
  background: var(--grad);
  color: #1a1205;
  box-shadow: 0 16px 40px -12px rgba(255, 138, 30, 0.7);
}
.success-items {
  text-align: left;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 8px 16px;
  margin: 0 0 14px;
  max-height: 160px;
  overflow-y: auto;
}
.success-items::-webkit-scrollbar { width: 5px; }
.success-items::-webkit-scrollbar-thumb { background: rgba(255,255,255,.14); border-radius: 6px; }
.success-item {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  font-size: 0.86rem;
  padding: 7px 0;
  border-bottom: 1px dashed rgba(255,255,255,.07);
}
.success-item:last-child { border-bottom: none; }
.success-item b { display: block; line-height: 1.3; }
.success-item small { color: var(--muted); font-size: 0.72rem; }
.success-item > span:last-child { color: var(--gold); font-weight: 700; flex: none; }
.success-details {
  text-align: left;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 8px 16px;
  margin: 0 0 24px;
}
.success-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  font-size: 0.86rem;
  border-bottom: 1px dashed rgba(255,255,255,.07);
}
.success-row:last-child { border-bottom: none; }
.success-row span { color: var(--muted); flex: none; }
.success-row b { text-align: right; }
.success-total {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 1.08rem;
}

/* ================= STARTUP PRELOADER ================= */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #000;
  transition: opacity 0.9s ease, visibility 0.9s ease;
}
.preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }

/* scene layer */
.pre-scene { position: absolute; inset: 0; }
.pre-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 90% at 50% 45%, transparent 40%, rgba(0, 0, 0, 0.78) 100%);
}

/* minimal drifting smoke */
.pre-smoke {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0;
  animation: preSmoke 12s ease-in-out infinite;
}
.pre-smoke-a {
  width: 420px;
  height: 300px;
  left: -6%;
  top: 8%;
  background: radial-gradient(circle, rgba(130, 112, 100, 0.18), rgba(70, 55, 45, 0.08) 60%, transparent);
}
.pre-smoke-b {
  width: 460px;
  height: 320px;
  right: -8%;
  bottom: -6%;
  background: radial-gradient(circle, rgba(130, 112, 100, 0.14), rgba(70, 55, 45, 0.06) 60%, transparent);
  animation-delay: 5s;
}
@keyframes preSmoke {
  0% { opacity: 0; transform: translateX(-20px) scale(1); }
  35% { opacity: 0.5; }
  100% { opacity: 0; transform: translateX(30px) translateY(-30px) scale(1.15); }
}

/* minimal rising particles */
.pre-particles { position: absolute; inset: 0; pointer-events: none; }
.pre-particle {
  position: absolute;
  bottom: -6px;
  border-radius: 50%;
  background: rgba(255, 205, 130, 0.9);
  box-shadow: 0 0 6px rgba(255, 185, 90, 0.7);
  opacity: 0;
  animation: preRise 5s ease-in-out infinite;
}
@keyframes preRise {
  0% { opacity: 0; transform: translateY(0) translateX(0); }
  25% { opacity: var(--po, 0.3); }
  75% { opacity: var(--po, 0.3); }
  100% { opacity: 0; transform: translateY(-92vh) translateX(var(--dx, 0px)); }
}

/* logo content */
.pre-content {
  position: relative;
  z-index: 2;
  text-align: center;
  transition: opacity 0.9s ease;
  animation: preContentScale 1.1s cubic-bezier(0.45, 0, 0.2, 1) 2.4s both;
}
@keyframes preContentScale {
  from { transform: scale(1); }
  to { transform: scale(1.05); }
}
.preloader.done .pre-content { opacity: 0; }

.pre-logo-wrap { position: relative; display: inline-block; margin: 0 auto; }

.pre-logo-halo {
  position: absolute;
  inset: -9% -12%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255, 190, 80, 0.42), rgba(255, 120, 30, 0.12) 58%, transparent);
  filter: blur(22px);
  opacity: 0;
  animation: preHalo 3.4s ease-in-out 0.5s infinite alternate;
  pointer-events: none;
}
@keyframes preHalo {
  0% { opacity: 0.4; transform: scale(0.97); }
  100% { opacity: 0.85; transform: scale(1.05); }
}

.pre-logo {
  position: relative;
  z-index: 2;
  display: block;
  width: min(64vw, 260px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  background: #000;
  box-shadow: 0 0 0 1px rgba(255, 179, 1, 0.25), 0 0 70px rgba(255, 160, 40, 0.35);
  animation: preLogoIn 0.95s cubic-bezier(0.2, 0.8, 0.3, 1) 0.4s both;
}
.pre-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
@keyframes preLogoIn {
  0% { opacity: 0; transform: scale(0.9); filter: blur(10px); }
  100% { opacity: 1; transform: scale(1); filter: blur(0); }
}

/* single light sweep across the logo */
.pre-sweep {
  position: absolute;
  inset: -46%;
  border-radius: 50%;
  overflow: hidden;
  mix-blend-mode: screen;
  pointer-events: none;
  opacity: 0;
  animation: preSweepFade 1.3s cubic-bezier(0.5, 0.1, 0.2, 1) 1.3s forwards;
}
.pre-sweep::before {
  content: "";
  position: absolute;
  top: -20%;
  bottom: -20%;
  width: 46%;
  left: -60%;
  background: linear-gradient(105deg, transparent, rgba(255, 230, 170, 0.5), rgba(255, 200, 120, 0.12), transparent);
  filter: blur(6px);
  transform: skewX(-18deg);
  animation: preSweepBar 1.3s cubic-bezier(0.5, 0.1, 0.2, 1) 1.3s forwards;
}
@keyframes preSweepFade { to { opacity: 1; } }
@keyframes preSweepBar {
  0% { left: -60%; opacity: 0; }
  20% { opacity: 1; }
  100% { left: 130%; opacity: 0; }
}

/* restaurant name below the logo */
.pre-name { text-align: center; margin-top: 30px; }
.pre-line { display: block; overflow: hidden; }
.pre-title {
  display: block;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(1.9rem, 4.6vw, 2.5rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: 0.06em;
  color: var(--text);
  text-shadow: 0 0 40px rgba(255, 175, 70, 0.35);
  transform: translateY(110%);
  animation: preNameUp 0.85s cubic-bezier(0.2, 0.75, 0.2, 1) 1.6s forwards;
}
.pre-sub {
  display: block;
  margin-top: 4px;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.78em;
  text-indent: 0.78em;
  text-transform: uppercase;
  color: var(--gold);
  transform: translateY(110%);
  animation: preNameUp 0.85s cubic-bezier(0.2, 0.75, 0.2, 1) 1.85s forwards;
}
@keyframes preNameUp {
  to { transform: translateY(0); }
}

/* smooth loading progress */
.pre-load {
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  opacity: 0;
  animation: preLoadIn 0.7s ease 1.9s forwards;
}
@keyframes preLoadIn { to { opacity: 1; } }
.pre-bar-track {
  width: min(240px, 60vw);
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.pre-bar-fill {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 150, 40, 0.9), #f5b301);
  box-shadow: 0 0 12px rgba(255, 179, 1, 0.65);
  transition: width 0.35s ease;
}
.pre-pct {
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: rgba(245, 179, 1, 0.9);
  min-width: 42px;
  text-align: left;
}
/* ================= REDUCED MOTION ================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .hero-slideshow { display: none; }
}
