/* ============================================================
   535 SMOKE SHOP — LUXURY EDITION
   Premium charcoal & gold aesthetic
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* ===== Design Tokens ===== */
:root {
  --bg:        #08090d;
  --bg-2:      #0e1016;
  --bg-3:      #141620;
  --surface:   rgba(255, 255, 255, 0.03);
  --glass:     rgba(255, 255, 255, 0.04);
  --glass-2:   rgba(255, 255, 255, 0.065);
  --glass-3:   rgba(255, 255, 255, 0.09);
  --border:    rgba(212, 175, 105, 0.12);
  --border-hi: rgba(212, 175, 105, 0.35);
  --border-subtle: rgba(255, 255, 255, 0.06);

  --gold:      #d4af69;
  --gold-light:#e8cb8a;
  --gold-dim:  #b8943f;
  --gold-glow: rgba(212, 175, 105, 0.4);
  --red:       #c0392b;
  --red-hi:    #e74c3c;
  --red-glow:  rgba(192, 57, 43, 0.35);
  --cream:     #f5efe6;
  --warm:      #a89070;
  --purple:    #6b5b95;

  --text:      #e8e2d8;
  --text-bright:#f5f0e8;
  --muted:     #8a8278;
  --muted-light:#a69e94;

  --radius:    14px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --maxw:      1200px;

  --heading:   'Playfair Display', Georgia, serif;
  --body:      'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono:      'JetBrains Mono', monospace;

  --duration-fast:    0.18s;
  --duration-normal:  0.3s;
  --duration-slow:    0.5s;
  --duration-reveal:  0.65s;
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Keyframes ===== */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 8px rgba(212, 175, 105, 0.2), 0 0 24px rgba(212, 175, 105, 0.08); }
  50%      { box-shadow: 0 0 16px rgba(212, 175, 105, 0.4), 0 0 50px rgba(212, 175, 105, 0.15); }
}

@keyframes shimmer {
  0%   { background-position: -600px 0; }
  100% { background-position: 600px 0; }
}

@keyframes smoke-drift-1 {
  0%   { transform: translateX(0) translateY(0) scale(1); opacity: 0.1; }
  25%  { opacity: 0.7; }
  50%  { transform: translateX(100px) translateY(-140px) scale(1.6); opacity: 0.5; }
  75%  { opacity: 0.3; }
  100% { transform: translateX(200px) translateY(-280px) scale(2); opacity: 0.1; }
}
@keyframes smoke-drift-2 {
  0%   { transform: translateX(0) translateY(0) scale(1); opacity: 0.1; }
  25%  { opacity: 0.6; }
  50%  { transform: translateX(-80px) translateY(-160px) scale(1.7); opacity: 0.45; }
  75%  { opacity: 0.25; }
  100% { transform: translateX(-160px) translateY(-320px) scale(2.2); opacity: 0.1; }
}
@keyframes smoke-drift-3 {
  0%   { transform: translateX(0) translateY(0) scale(1); opacity: 0.1; }
  25%  { opacity: 0.55; }
  50%  { transform: translateX(60px) translateY(-120px) scale(1.5); opacity: 0.4; }
  75%  { opacity: 0.2; }
  100% { transform: translateX(120px) translateY(-240px) scale(1.8); opacity: 0.1; }
}

/* ===== Ambient Smoke Background ===== */
.smoke-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 9990;
  overflow: hidden;
}
.smoke-wisp {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  will-change: transform, opacity;
}
.smoke-wisp:nth-child(1) {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,175,105,0.7) 0%, rgba(212,175,105,0.15) 50%, transparent 70%);
  bottom: 5%; left: 0%;
  animation: smoke-drift-1 16s ease-in-out infinite;
}
.smoke-wisp:nth-child(2) {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(192,57,43,0.55) 0%, rgba(192,57,43,0.1) 50%, transparent 70%);
  bottom: 30%; right: -5%;
  animation: smoke-drift-2 20s ease-in-out infinite;
  animation-delay: -5s;
}
.smoke-wisp:nth-child(3) {
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(212,175,105,0.6) 0%, rgba(212,175,105,0.12) 50%, transparent 70%);
  top: 10%; left: 30%;
  animation: smoke-drift-3 14s ease-in-out infinite;
  animation-delay: -8s;
}
.smoke-wisp:nth-child(4) {
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(255,255,255,0.35) 0%, rgba(255,255,255,0.08) 50%, transparent 70%);
  top: 40%; right: 20%;
  animation: smoke-drift-1 22s ease-in-out infinite;
  animation-delay: -11s;
}
.smoke-wisp:nth-child(5) {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(192,57,43,0.5) 0%, rgba(192,57,43,0.1) 50%, transparent 70%);
  top: 60%; left: 10%;
  animation: smoke-drift-2 18s ease-in-out infinite;
  animation-delay: -3s;
}
.smoke-wisp:nth-child(6) {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(212,175,105,0.55) 0%, rgba(212,175,105,0.1) 50%, transparent 70%);
  bottom: 10%; left: 55%;
  animation: smoke-drift-3 24s ease-in-out infinite;
  animation-delay: -14s;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0; }
}

@keyframes gradient-flow {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

@keyframes float-gentle {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

@keyframes shine-sweep {
  0%   { left: -100%; }
  100% { left: 200%; }
}

@keyframes progress-glow {
  0%, 100% { filter: brightness(1); }
  50%      { filter: brightness(1.4); }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-5%, -10%); }
  30% { transform: translate(3%, -15%); }
  50% { transform: translate(12%, 9%); }
  70% { transform: translate(9%, 4%); }
  90% { transform: translate(-1%, 7%); }
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  font-family: var(--body);
  font-weight: 400;
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--bg);
  overflow-x: hidden;
  position: relative;
  font-size: 15px;
}

/* Film grain texture overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* Ambient light orbs */
body::after {
  content: "";
  position: fixed;
  top: -20%;
  left: -10%;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 105, 0.04) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; position: relative; z-index: 1; }

/* ===== Scroll Progress Bar ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold), var(--gold-light));
  z-index: 9999;
  transition: width 0.08s linear;
  box-shadow: 0 0 12px var(--gold-glow);
}

/* ===== Typography ===== */
.eyebrow {
  font-family: var(--body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 1rem;
}

h1 { font-family: var(--heading); line-height: 1.1; font-weight: 700; }
h2 { font-family: var(--heading); line-height: 1.15; font-weight: 600; }
h3 { font-family: var(--heading); line-height: 1.2; font-weight: 600; }
.glow { color: var(--gold); }

/* ===== Navigation ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 9, 13, 0.7);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--duration-normal) var(--ease-smooth);
}

.nav.scrolled {
  background: rgba(8, 9, 13, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  border-bottom-color: var(--border);
}

.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding var(--duration-normal) var(--ease-smooth);
}

.nav.scrolled .nav-inner {
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
}

.brand {
  font-family: var(--heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-bright);
  display: flex;
  align-items: center;
}

.nav-logo {
  height: 80px;
  width: auto;
  border-radius: 50%;
  object-fit: contain;
  transition: all var(--duration-normal) var(--ease-smooth);
  filter: drop-shadow(0 0 10px rgba(212, 175, 105, 0.35));
}
.nav-logo:hover {
  filter: drop-shadow(0 0 20px rgba(212, 175, 105, 0.6));
  transform: scale(1.08);
}
.nav.scrolled .nav-logo { height: 55px; }

.nav-links { display: flex; gap: 2.2rem; align-items: center; }
.nav-links a {
  position: relative;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted-light);
  letter-spacing: 0.5px;
  transition: color var(--duration-fast);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.25s var(--ease-out);
}
.nav-links a:hover { color: var(--text-bright); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; background: var(--gold); }

/* ===== Hamburger ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  width: 22px; height: 1.5px;
  background: var(--text);
  transition: transform var(--duration-normal) var(--ease-out),
              opacity var(--duration-normal) var(--ease-out);
  transform-origin: center;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
  background: var(--gold);
}
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
  background: var(--gold);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-hi));
  color: #fff;
  box-shadow: 0 4px 20px var(--red-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(192, 57, 43, 0.5);
  filter: brightness(1.08);
}
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  animation: shine-sweep 4s ease-in-out infinite;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  color: var(--bg);
  box-shadow: 0 4px 20px rgba(212, 175, 105, 0.25);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 105, 0.4);
  filter: brightness(1.1);
}

.btn-ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--border-hi);
}
.btn-ghost:hover {
  background: rgba(212, 175, 105, 0.08);
  box-shadow: 0 0 20px rgba(212, 175, 105, 0.15);
  transform: translateY(-2px);
}

/* ===== Promo Banner ===== */
.promo-banner {
  background: linear-gradient(90deg, var(--gold-dim), var(--gold), var(--gold-dim));
  background-size: 200% 100%;
  animation: gradient-flow 6s linear infinite;
  color: var(--bg);
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 101;
}
.promo-banner a { text-decoration: underline; text-underline-offset: 2px; }
.promo-banner .close-promo {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--bg);
  cursor: pointer;
  font-size: 1.1rem;
  opacity: 0.6;
  transition: opacity var(--duration-fast);
}
.promo-banner .close-promo:hover { opacity: 1; }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 8rem 0 7rem;
  text-align: center;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

/* Hero ambient background */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(212, 175, 105, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(107, 91, 149, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 20%, rgba(212, 175, 105, 0.03) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-logo {
  width: clamp(140px, 22vw, 240px);
  height: auto;
  margin: 0 auto 2rem;
  border-radius: 50%;
  filter: drop-shadow(0 0 30px rgba(212, 175, 105, 0.25));
  animation: float-gentle 5s ease-in-out infinite;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  max-width: 14ch;
  margin: 0 auto 0.6rem;
  color: var(--text-bright);
}
.hero h1 .glow {
  color: #ff073a;
  text-shadow: 0 0 10px #ff073a, 0 0 30px #ff073a, 0 0 60px rgba(255, 7, 58, 0.4);
}
.hero h1 .glow-red {
  color: #39ff14;
  text-shadow: 0 0 10px #39ff14, 0 0 30px #39ff14, 0 0 60px rgba(57, 255, 20, 0.4);
}

.hero-subtitle {
  font-family: var(--body);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 auto 1.8rem;
}

.hero-desc {
  max-width: 52ch;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
  color: var(--muted-light);
  line-height: 1.8;
}

.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Particles canvas */
.particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ===== Badges ===== */
.badges {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
}
.badge {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted-light);
  padding: 0.4rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--glass);
  transition: all var(--duration-normal) var(--ease-smooth);
}
.badge:hover {
  border-color: var(--border-hi);
  color: var(--gold);
  background: rgba(212, 175, 105, 0.06);
}

/* Pulse for "Open Now" */
.pulse {
  animation: pulse-gold 2.5s ease-in-out infinite;
  border-color: var(--border-hi);
  color: var(--gold);
  background: rgba(212, 175, 105, 0.08);
}

/* ===== Section Styling ===== */
section { padding: 5.5rem 0; position: relative; z-index: 1; }
.section-head { text-align: center; max-width: 56ch; margin: 0 auto 3.5rem; }
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 0.8rem; color: var(--text-bright); }
.section-head p { color: var(--muted); font-size: 1rem; }

.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-hi), transparent);
  opacity: 0.5;
}

/* ===== Cards (Glass) ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
}
.card {
  position: relative;
  background: var(--glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 1rem 1.6rem 2rem;
  backdrop-filter: blur(12px);
  transition: all 0.3s var(--ease-out);
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--border);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.4),
              0 0 0 1px rgba(212, 175, 105, 0.05);
  background: var(--glass-2);
}
.card:hover::before { opacity: 1; }
.card .icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  filter: grayscale(0.2);
}
.card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
  transition: transform 0.3s var(--ease-out);
}
.card:hover .card-img {
  transform: scale(1.05);
}
.card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; color: var(--text-bright); }
.card p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; }

/* Staggered card reveals */
.cards .card { transition-delay: calc(var(--card-index, 0) * 0.06s); }

/* ===== Stats ===== */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
}
.stat-item {
  text-align: center;
  padding: 2.2rem 1.2rem;
  background: var(--glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  transition: all var(--duration-normal) var(--ease-out);
}
.stat-item:hover {
  transform: translateY(-3px);
  border-color: var(--border);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.stat-number {
  font-family: var(--heading);
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

/* ===== Testimonials ===== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.2rem;
}
.testimonial {
  background: var(--glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  backdrop-filter: blur(8px);
  transition: all var(--duration-normal) var(--ease-out);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testimonial:hover {
  transform: translateY(-3px);
  border-color: var(--border);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.35);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 2px;
}
.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text);
  font-style: italic;
  position: relative;
  padding-left: 1.2rem;
  border-left: 2px solid var(--gold);
}
.testimonial-author {
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--gold);
  letter-spacing: 0.5px;
}

/* ===== Product Gallery ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.2rem;
}
.tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  aspect-ratio: 4 / 3;
  background: var(--bg-2);
  cursor: pointer;
}
.tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out), filter 0.6s var(--ease-out);
}
.tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8, 9, 13, 0.92) 0%, rgba(8, 9, 13, 0.2) 45%, transparent 100%);
  transition: background var(--duration-normal);
}
.tile figcaption {
  position: absolute;
  left: 1.5rem; bottom: 1.2rem; right: 1.5rem;
  z-index: 2;
}
.tile figcaption h3,
.tile figcaption > :first-child:not(span) {
  font-family: var(--heading);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--text-bright);
}
.tile figcaption span {
  display: block;
  font-family: var(--body);
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--gold);
  margin-top: 0.3rem;
}
.tile:hover img { transform: scale(1.08); }
.tile:hover {
  border-color: var(--border);
  box-shadow: 0 0 30px rgba(212, 175, 105, 0.1);
}

/* ===== Locations ===== */
.locations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.2rem;
}
.loc {
  background: var(--glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 1.8rem;
  backdrop-filter: blur(8px);
  transition: all 0.3s var(--ease-out);
}
.loc:hover {
  transform: translateY(-3px);
  border-color: var(--border);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.35);
}
.loc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.2rem;
}
.loc-header h3 { margin-bottom: 0; font-size: 1.15rem; color: var(--text-bright); }
.loc-header .badge {
  font-size: 0.68rem;
  padding: 0.25rem 0.7rem;
}

.loc .label {
  font-family: var(--body);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 1rem 0 0.3rem;
}
.loc address { font-style: normal; color: var(--text); font-size: 0.9rem; }
.loc a.phone { color: var(--text); font-size: 0.9rem; transition: color var(--duration-fast); }
.loc a.phone:hover { color: var(--gold); }

.hours { list-style: none; font-size: 0.88rem; }
.hours li {
  display: flex; justify-content: space-between;
  padding: 0.25rem 0;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--muted);
}
.hours li:last-child { border-bottom: none; }
.hours .day { color: var(--text); font-weight: 500; }

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.2rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-hi);
  border-radius: 999px;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.3px;
  transition: all var(--duration-fast) var(--ease-out);
}
.map-link:hover {
  background: rgba(212, 175, 105, 0.08);
  box-shadow: 0 0 20px rgba(212, 175, 105, 0.2);
}

/* Directions row — Google + Apple side by side */
.directions-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}
.directions-row .map-link {
  margin-top: 0;
}

/* Store status badges */
.store-status {
  font-size: 0.68rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.store-status.open {
  background: rgba(46, 204, 113, 0.12);
  color: #2ecc71;
  border: 1px solid rgba(46, 204, 113, 0.3);
}
.store-status.closed {
  background: rgba(192, 57, 43, 0.1);
  color: var(--red-hi);
  border: 1px solid rgba(192, 57, 43, 0.25);
}

/* ===== Prose (About page) ===== */
.prose { max-width: 62ch; margin: 0 auto; text-align: center; }
.prose p { color: var(--muted-light); font-size: 1.05rem; margin-bottom: 1.2rem; line-height: 1.85; }

/* ===== CTA Band ===== */
.cta {
  text-align: center;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 4rem 2rem;
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212, 175, 105, 0.04) 0%, transparent 60%);
  pointer-events: none;
}
.cta h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 0.8rem; color: var(--text-bright); position: relative; }
.cta p { color: var(--muted); margin-bottom: 2rem; position: relative; }

/* ===== Contact Form ===== */
.form { max-width: 560px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted-light);
  margin-bottom: 0.4rem;
  letter-spacing: 0.3px;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: var(--glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text);
  font: inherit;
  font-size: 0.9rem;
  transition: border-color var(--duration-fast), box-shadow var(--duration-fast);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 105, 0.1);
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field textarea { resize: vertical; min-height: 130px; }

/* ===== Footer ===== */
.footer {
  margin-top: auto;
  border-top: 1px solid var(--border-subtle);
  background: rgba(5, 5, 8, 0.8);
  padding: 3.5rem 0 2rem;
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-width: 280px;
}
.footer-logo {
  height: 55px;
  width: auto;
  border-radius: 50%;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(212, 175, 105, 0.15));
  transition: all var(--duration-normal) var(--ease-smooth);
}
.footer-logo:hover {
  filter: drop-shadow(0 0 20px rgba(212, 175, 105, 0.4));
  transform: scale(1.03);
}
.footer-tagline {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

.social-links { display: flex; gap: 0.6rem; }
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  color: var(--muted);
  background: var(--glass);
  transition: all var(--duration-normal) var(--ease-out);
}
.social-links a:hover {
  color: var(--gold);
  border-color: var(--border-hi);
  box-shadow: 0 0 16px rgba(212, 175, 105, 0.2);
  transform: translateY(-2px);
  background: rgba(212, 175, 105, 0.06);
}

.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color var(--duration-fast);
}
.footer-links a:hover { color: var(--gold); }

/* Newsletter */
.newsletter-col { max-width: 320px; }
.newsletter-title {
  font-family: var(--heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: 0.3rem;
}
.newsletter-desc {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 0.8rem;
}
.newsletter-form {
  display: flex;
  gap: 0.4rem;
  max-width: 380px;
  width: 100%;
}
.newsletter-form input {
  flex: 1;
  padding: 0.7rem 1rem;
  background: var(--glass);
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  color: var(--text);
  font: inherit;
  font-size: 0.85rem;
  transition: border-color var(--duration-fast), box-shadow var(--duration-fast);
}
.newsletter-form input::placeholder { color: var(--muted); }
.newsletter-form input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 105, 0.1);
}
.newsletter-form button {
  flex-shrink: 0;
  padding: 0.7rem 1.2rem;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.85rem;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out);
}
.newsletter-form button:hover {
  background: var(--gold-light);
  box-shadow: 0 4px 16px rgba(212, 175, 105, 0.3);
  transform: translateY(-1px);
}
.newsletter-success {
  color: var(--gold);
  font-size: 0.82rem;
  margin-top: 0.5rem;
  font-weight: 500;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--muted);
}
.footer-bottom .age { color: var(--red-hi); font-weight: 600; }

/* ===== Page Header (Interior) ===== */
.page-head { text-align: center; padding: 6rem 0 2rem; }
.page-head h1 { font-size: clamp(2.2rem, 6vw, 3.8rem); color: var(--text-bright); }
.page-head p { color: var(--muted); margin-top: 0.8rem; font-size: 1rem; }

/* ===== Age Gate ===== */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(5, 5, 8, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
.age-gate[hidden] { display: none; }

.age-gate-box {
  width: 100%;
  max-width: 440px;
  text-align: center;
  background: var(--bg-2);
  border: 1px solid var(--border-hi);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  box-shadow: 0 0 80px rgba(212, 175, 105, 0.1),
              0 30px 60px rgba(0, 0, 0, 0.5);
}
.age-gate-logo {
  width: 120px;
  height: auto;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  filter: drop-shadow(0 0 16px rgba(212, 175, 105, 0.3));
}
.age-gate-shield {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
  filter: drop-shadow(0 0 10px rgba(212, 175, 105, 0.3));
}
.age-gate-box h2 {
  font-size: clamp(1.4rem, 4vw, 1.8rem);
  margin-bottom: 0.6rem;
  color: var(--text-bright);
}
.age-gate-box > p { color: var(--muted); margin-bottom: 1.5rem; font-size: 0.92rem; }
.age-gate-box > p strong { color: var(--gold); }

.age-gate-dob {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.age-gate-dob select {
  padding: 0.7rem 0.9rem;
  background: var(--glass-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--body);
  font-size: 0.88rem;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238a8278' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.7rem center;
  padding-right: 2rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  min-width: 95px;
}
.age-gate-dob select:first-child { min-width: 130px; }
.age-gate-dob select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 105, 0.1);
}
.age-gate-dob select option { background: var(--bg-2); color: var(--text); }

.age-gate-verify {
  width: 100%;
  max-width: 260px;
  justify-content: center;
}
.age-gate-error {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.age-gate-deny { color: var(--red-hi); font-weight: 600; margin-top: 1.2rem; font-size: 0.9rem; }
.age-gate-fine {
  color: var(--muted);
  font-size: 0.72rem;
  margin-top: 1.8rem;
  line-height: 1.5;
}
body.gate-open { overflow: hidden; }

/* ===== Back to Top ===== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 800;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-hi);
  background: rgba(8, 9, 13, 0.9);
  backdrop-filter: blur(12px);
  color: var(--gold);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all var(--duration-normal) var(--ease-out);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: rgba(212, 175, 105, 0.1);
  box-shadow: 0 0 20px rgba(212, 175, 105, 0.2);
  transform: translateY(-2px);
}

/* ===== Product Page — Category Nav ===== */
.cat-nav {
  position: sticky;
  top: 64px; /* below the main nav */
  z-index: 49;
  background: rgba(12, 13, 18, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.cat-nav .container {
  display: flex;
  gap: 0.3rem;
  padding: 0.6rem 0;
}
.cat-nav-link {
  flex-shrink: 0;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-family: var(--body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  border: 1px solid transparent;
  transition: all var(--duration-fast) var(--ease-out);
  text-decoration: none;
  white-space: nowrap;
}
.cat-nav-link:hover,
.cat-nav-link.active {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(212, 175, 105, 0.06);
}

/* ===== Product Section Layout ===== */
.product-section {
  padding-top: 2rem;
  scroll-margin-top: 120px;
}
.product-section-head {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.product-section-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.product-section-head h2 {
  font-family: var(--heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0.3rem 0 0.5rem;
}
.product-section-head p {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 520px;
}

/* ===== Subcategory Grid ===== */
.sub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.2rem;
}
.sub-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all var(--duration-normal) var(--ease-out);
  display: flex;
  flex-direction: column;
}
.sub-card:hover {
  border-color: var(--gold);
  background: var(--glass-2);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(212, 175, 105, 0.04);
}
.sub-card:hover .sub-card-img {
  transform: scale(1.05);
}
.sub-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.sub-card h4 {
  font-family: var(--heading);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--gold);
  padding: 1.2rem 1.3rem 0;
}
.sub-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  padding: 0 1.3rem 1.3rem;
}

@media (max-width: 600px) {
  .product-section-head {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  .product-section-img {
    width: 90px;
    height: 90px;
  }
  .sub-grid {
    grid-template-columns: 1fr;
  }
  .cat-nav .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* ===== Chatbot ===== */
.chat-launcher-wrap {
  position: fixed;
  right: 1.4rem; top: 5.5rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  cursor: pointer;
}
.chat-launcher-info {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  pointer-events: none;
}
.chat-launcher-label {
  background: linear-gradient(135deg, var(--red), var(--red-hi));
  color: #fff;
  font-family: var(--heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  border: 1px solid var(--border-hi);
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(192, 57, 43, 0.3);
  animation: label-glow 2s ease-in-out infinite;
}
.chat-langs-ticker {
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.3px;
  white-space: nowrap;
  overflow: hidden;
  max-width: 200px;
  position: relative;
}
.chat-langs-ticker::after {
  content: '';
  position: absolute;
  right: 0; top: 0;
  width: 30px; height: 100%;
  background: linear-gradient(to right, transparent, var(--bg-1));
}
@keyframes scroll-langs {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.chat-langs-scroll {
  display: inline-block;
  animation: scroll-langs 14s linear infinite;
}
@keyframes label-glow {
  0%, 100% { box-shadow: 0 4px 20px rgba(192, 57, 43, 0.3); }
  50% { box-shadow: 0 4px 30px rgba(192, 57, 43, 0.55); }
}
.chat-launcher {
  position: relative;
  width: 60px; height: 60px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid var(--border-hi);
  background: linear-gradient(135deg, var(--red), var(--red-hi));
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 30px var(--red-glow), 0 0 20px rgba(192, 57, 43, 0.3);
  transition: all var(--duration-fast) var(--ease-out);
  animation: chat-pulse 2s ease-in-out infinite;
}
@keyframes chat-pulse {
  0%, 100% { box-shadow: 0 8px 30px var(--red-glow), 0 0 20px rgba(192, 57, 43, 0.3); }
  50% { box-shadow: 0 8px 40px var(--red-glow), 0 0 40px rgba(192, 57, 43, 0.5); }
}
.chat-launcher:hover {
  transform: translateY(-2px) scale(1.08);
  box-shadow: 0 12px 40px rgba(192, 57, 43, 0.5);
  animation: none;
}

.chat-panel {
  position: fixed;
  right: 1.4rem; top: 7.5rem;
  z-index: 10000;
  width: min(380px, calc(100vw - 2.8rem));
  height: min(540px, calc(100vh - 8rem));
  display: flex; flex-direction: column;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6),
              0 0 40px rgba(212, 175, 105, 0.06);
  opacity: 0; transform: translateY(16px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}
.chat-panel.open { opacity: 1; transform: none; pointer-events: auto; }

.chat-header {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(212, 175, 105, 0.03);
}
.chat-header .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 8px var(--gold-glow); }
.chat-header h4 { font-family: var(--heading); font-size: 0.95rem; }
.chat-header small { display: block; color: var(--muted); font-weight: 400; font-family: var(--body); font-size: 0.72rem; }
.chat-speaker {
  background: none; border: 0; color: var(--gold); cursor: pointer;
  padding: 0.3rem; border-radius: 6px; display: flex; align-items: center; justify-content: center;
  transition: all var(--duration-fast);
}
.chat-speaker:hover { background: rgba(212, 175, 105, 0.1); }
.chat-speaker.muted { color: var(--muted); opacity: 0.5; }
.chat-close { margin-left: auto; background: none; border: 0; color: var(--muted); font-size: 1.4rem; cursor: pointer; transition: color var(--duration-fast); }
.chat-close:hover { color: var(--text); }

.chat-lang-bar {
  padding: 0.45rem 1rem;
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(212, 175, 105, 0.02);
}
.chat-lang-select {
  width: 100%;
  padding: 0.4rem 0.6rem;
  border-radius: 8px;
  border: 1px solid var(--border-subtle);
  background: var(--glass);
  color: var(--text);
  font-family: var(--body);
  font-size: 0.8rem;
  cursor: pointer;
  transition: border-color var(--duration-fast);
  appearance: auto;
}
.chat-lang-select:focus { outline: none; border-color: var(--gold); }

.chat-body { flex: 1; overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; gap: 0.6rem; }
.chat-msg { max-width: 84%; padding: 0.6rem 0.85rem; border-radius: 14px; font-size: 0.88rem; line-height: 1.55; }
.chat-msg.bot { align-self: flex-start; background: var(--glass-2); border: 1px solid var(--border-subtle); border-bottom-left-radius: 4px; }
.chat-msg.user { align-self: flex-end; background: linear-gradient(135deg, var(--red), var(--red-hi)); color: #fff; border-bottom-right-radius: 4px; }
.chat-msg a { color: var(--gold); }

.chat-quick { display: flex; flex-wrap: wrap; gap: 0.4rem; padding: 0 1rem 0.6rem; }
.chat-chip {
  font-family: var(--body);
  font-size: 0.75rem;
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--border-hi);
  border-radius: 999px;
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  transition: background var(--duration-fast);
}
.chat-chip:hover { background: rgba(212, 175, 105, 0.08); }

.chat-input-row { display: flex; gap: 0.4rem; padding: 0.7rem; border-top: 1px solid var(--border-subtle); }
.chat-input {
  flex: 1;
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: var(--glass);
  color: var(--text);
  font: inherit;
  font-size: 0.85rem;
  transition: border-color var(--duration-fast);
}
.chat-input:focus { outline: none; border-color: var(--gold); }
.chat-send {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border: 0; border-radius: 50%;
  background: var(--gold);
  color: var(--bg);
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--duration-fast);
}
.chat-send:hover { background: var(--gold-light); }

/* Mic button */
.chat-mic {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border: 0; border-radius: 50%;
  background: transparent;
  border: 1px solid var(--border-hi);
  color: var(--muted);
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--duration-fast);
}
.chat-mic:hover { color: var(--gold); border-color: var(--gold); }
.chat-mic.listening {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  animation: mic-pulse 1.2s ease-in-out infinite;
}
@keyframes mic-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(192, 57, 43, 0.5); }
  50% { box-shadow: 0 0 0 8px rgba(192, 57, 43, 0); }
}

/* ===== Typing Cursor ===== */
.typing-cursor {
  display: inline-block;
  width: 2px; height: 0.85em;
  background: var(--gold);
  margin-left: 3px;
  vertical-align: baseline;
  animation: blink 1s step-end infinite;
  border-radius: 1px;
}

/* ===== Scroll Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--duration-reveal) var(--ease-out), transform var(--duration-reveal) var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ===== "Why Us" Feature Grid ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}
.feature-card {
  background: var(--glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s var(--ease-out);
}
.feature-card:hover {
  transform: translateY(-3px);
  border-color: var(--border);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.3);
}
.feature-icon {
  width: 48px; height: 48px;
  margin: 0 auto 1rem;
  border-radius: 12px;
  background: rgba(212, 175, 105, 0.08);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.feature-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--text-bright); }
.feature-card p { color: var(--muted); font-size: 0.88rem; line-height: 1.6; }

/* ===== Prefers Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .hero-logo { animation: none; }
  .promo-banner { animation: none; }
  .pulse { animation: none; }
  .btn-primary::after { animation: none; display: none; }
  .scroll-progress { transition: none; }
  .back-to-top { transition: none; }
  body::before { animation: none; }
}

/* ===== Responsive ===== */
@media (max-width: 760px) {
  .hamburger { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 1.2rem;
    padding: 1.5rem;
    background: rgba(8, 9, 13, 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    transform: translateY(-130%);
    transition: transform 0.3s var(--ease-out);
    z-index: 50;
  }
  .nav-links.open { transform: translateY(0); }

  /* Nav logo smaller on mobile */
  .nav-logo { height: 50px; }
  .nav.scrolled .nav-logo { height: 40px; }

  /* Hero */
  .hero { padding: 4rem 0 3rem; min-height: auto; }
  .hero-logo { max-width: 180px; }
  .hero h1 { font-size: clamp(2.2rem, 9vw, 3.5rem); }
  .hero-subtitle { font-size: 0.85rem; letter-spacing: 2px; }
  .hero-desc { font-size: 0.85rem; padding: 0 1rem; }
  .hero-cta { flex-direction: column; gap: 0.8rem; align-items: center; }
  .hero-cta .btn { width: 80%; text-align: center; }
  .badges { flex-wrap: wrap; justify-content: center; gap: 0.5rem; }
  .badge { font-size: 0.7rem; padding: 0.35rem 0.7rem; }

  /* Cards grid */
  .cards { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .card { padding: 0.8rem 1rem 1.2rem; }
  .card-img { height: 120px; }
  .card h3 { font-size: 1rem; }
  .card p { font-size: 0.8rem; }

  /* Stats */
  .stats { grid-template-columns: repeat(2, 1fr); }

  /* Testimonials */
  .testimonials { grid-template-columns: 1fr; }

  /* Newsletter */
  .newsletter-form { flex-direction: column; }
  .social-links { justify-content: center; width: 100%; }

  /* Footer */
  .footer-grid {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }
  .footer-links { justify-content: center; flex-wrap: wrap; }
  .footer-brand-col { align-items: center; text-align: center; max-width: 100%; }
  .newsletter-col { max-width: 100%; text-align: center; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
  .back-to-top { bottom: 1.5rem; right: 1.5rem; width: 40px; height: 40px; }

  /* Chatbot — move below nav on mobile */
  .chat-launcher-wrap {
    right: auto; left: 50%; top: auto; bottom: 1.2rem;
    transform: translateX(-50%);
    flex-direction: row;
    z-index: 9999;
  }
  .chat-launcher { width: 50px; height: 50px; font-size: 1.2rem; }
  .chat-launcher-label { font-size: 0.75rem; padding: 0.45rem 0.9rem; }
  .chat-langs-ticker { max-width: 150px; font-size: 0.6rem; }
  .chat-panel {
    right: 0.5rem; left: 0.5rem; width: auto;
    top: auto; bottom: 5rem;
    max-height: calc(100vh - 7rem);
    border-radius: 16px;
  }

  /* Smoke — tone down on mobile for performance */
  .smoke-wisp { filter: blur(50px); }
  .smoke-wisp:nth-child(4),
  .smoke-wisp:nth-child(5),
  .smoke-wisp:nth-child(6) { display: none; }

  /* Sections spacing */
  section { padding: 3rem 0; }
  .section-title { font-size: 1.6rem; }

  /* Locations page */
  .locations { grid-template-columns: 1fr; }

  /* Product page */
  .cat-nav-link { font-size: 0.7rem; padding: 0.4rem 0.8rem; }
}

@media (max-width: 480px) {
  .stats { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(1.8rem, 10vw, 2.8rem); }
  .hero-logo { max-width: 140px; }
  .locations { grid-template-columns: 1fr; }
  body { font-size: 14px; }
  .nav-logo { height: 42px; }

  /* Chatbot even tighter */
  .chat-launcher-info { display: none; }
  .chat-launcher-wrap { right: 1rem; left: auto; bottom: 1rem; transform: none; }
  .chat-panel { bottom: 4.5rem; max-height: calc(100vh - 6rem); }
}

/* ===== Selection ===== */
::selection { background: rgba(212, 175, 105, 0.2); color: var(--text-bright); }
::-moz-selection { background: rgba(212, 175, 105, 0.2); color: var(--text-bright); }

/* ===== Scrollbar ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(212, 175, 105, 0.15); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(212, 175, 105, 0.25); }

/* ===== Focus ===== */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
