/* ============================================================
   SCENT BAZAAR — DESIGN SYSTEM
   Vanilla CSS. No build step. Works in any flat HTML file.
   All existing class NAMES preserved. Visual properties redesigned.
   ============================================================ */

/* ── COMPONENT TRANSLATIONS FROM MAGICUI / SHADCN ──────────────
   marquee        → .announce-track / .marquee-track  (@keyframes marquee-scroll)
   dot-pattern    → ::before radial-gradient dot grid on .hero-left, .raw-section
   border-beam    → @property --beam-a + @keyframes beam-spin on .border-beam class
   meteors        → .meteor spans injected by JS + @keyframes meteor-fall
   number-ticker  → .count-up + IntersectionObserver + rAF lerp (Phase 9 JS)
   shimmer-button → .btn-primary::before conic-gradient @keyframes shimmer-slide
   magic-card     → mousemove → --cx/--cy CSS vars → radial-gradient ::after
   animated-shiny-text → .shiny-text @keyframes shiny-pan
   blur-fade      → [data-reveal] opacity+translateY+blur transition
   animated-gradient-text → .gradient-text @keyframes gradient-shift
   shine-border   → .shine-border @keyframes shine-rotate (background-position)
   hyper-text     → .hyper-text JS scramble on mouseenter
   pulsating-button → .wa-float @keyframes wa-pulse
   morphing-text  → .morphing-text JS blur-crossfade (hero subtitle)
   accordion      → <details>/<summary> CSS max-height + aria transitions
   card           → .faq-card, .review-card, .service-card base
   carousel       → .reviews-grid overflow scroll snap
   tabs           → .scent-tabs JS class toggling
   badge          → .tag eyebrow label
   separator      → hr.divider / ::after accent rules
   tooltip        → .wa-indicator position absolute
   navigation-menu → .nav dropdown structure
   sheet          → .nav.show mobile overlay
   scroll-area    → overflow scroll containers
   progress       → #scroll-progress fixed top bar
   skeleton        → .skeleton pulse animation
   ──────────────────────────────────────────────────────────── */

/* ── @PROPERTY DECLARATIONS (for border-beam conic animation) ── */
@property --beam-a {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

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

html {
  scroll-behavior: smooth;
  background: #0d0a07;
}

/* ── DESIGN TOKENS ──────────────────────────────────────────── */
:root {
  --accent:     #ff5a1f;
  --accent-2:   #d99a43;
  --bg:         #f5ecdc;
  --bg-soft:    #fff9ef;
  --olive:      #54573a;
  --ink:        #17120d;
  --muted:      #756b5e;
  --white:      #ffffff;
  --dark:       #17120d;
  --line:       rgba(42, 31, 21, 0.12);
  --glass:      rgba(255, 249, 239, 0.82);

  --shadow:     0 2px 24px rgba(31, 21, 12, 0.08);
  --shadow-lg:  0 8px 56px rgba(31, 21, 12, 0.14);
  --shadow-xl:  0 24px 80px rgba(31, 21, 12, 0.18);

  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  32px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --t:    0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── BODY ───────────────────────────────────────────────────── */
body {
  font-family: 'Outfit', 'Inter', sans-serif;
  color: var(--ink);
  background: var(--bg);
  background-image:
    radial-gradient(circle at 8% 4%,  rgba(255, 90, 31, 0.12), transparent 26rem),
    radial-gradient(circle at 88% 10%, rgba(217, 154, 67, 0.14), transparent 28rem);
  line-height: 1.7;
  overflow-x: hidden;
}

/* subtle grid texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(23, 18, 13, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 18, 13, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse at center, #000 0%, transparent 78%);
}

main {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'DM Serif Display', Georgia, serif;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.8rem, 5.5vw, 5.8rem);
  line-height: 1.08;
  font-weight: 400;
}

h2 {
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1.12;
  font-weight: 400;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.15rem, 1.6vw, 1.6rem);
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -0.01em;
}

p {
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.82;
  margin-bottom: 24px;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--r-lg);
}

ul, ol {
  margin-left: 20px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
}

li {
  margin-bottom: 10px;
}

/* ── TAG / EYEBROW LABEL ────────────────────────────────────── */
.tag {
  display: inline-block;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  background: none;
  border: none;
  padding: 0;
  border-radius: 0;
}

/* ── CONTAINERS ─────────────────────────────────────────────── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 56px);
}

.container-narrow {
  max-width: 860px;
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 56px);
}

.container-wide {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(20px, 3vw, 40px);
}

/* ── SECTION SPACING ────────────────────────────────────────── */
section {
  padding: clamp(72px, 10vw, 140px) 0;
}

.section-white {
  background: var(--white);
}

.section-bg {
  background: var(--bg);
}

.section-soft {
  background: var(--bg-soft);
}

.section-dark {
  background: var(--ink);
}

.section-dark h2,
.section-dark h3 {
  color: #fff;
}

.section-dark p {
  color: rgba(255, 246, 232, 0.75);
}

/* ── BUTTON SYSTEM ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 34px;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border-radius: var(--r-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t);
}

/* Shimmer-button effect on primary CTA (MagicUI shimmer-button translation) */
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 28px rgba(255, 90, 31, 0.28);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: conic-gradient(
    from var(--beam-a),
    transparent 20%,
    rgba(255, 255, 255, 0.35) 40%,
    rgba(255, 246, 220, 0.2) 60%,
    transparent 80%
  );
  animation: shimmer-spin 3s linear infinite;
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: inherit;
}

.btn-primary:hover::before {
  opacity: 1;
}

@keyframes shimmer-spin {
  to { --beam-a: 360deg; }
}

.btn-primary:hover {
  background: #e04918;
  transform: translateY(-3px);
  box-shadow: 0 8px 36px rgba(255, 90, 31, 0.38);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  border-radius: var(--r-sm);
}

.btn-outline:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-3px);
}

.btn-white {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  border-radius: var(--r-sm);
}

.btn-white:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

.btn-ghost {
  background: none;
  border: none;
  color: var(--accent);
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.95rem;
  font-family: 'Outfit', 'Inter', sans-serif;
}

.btn-ghost:hover span {
  transform: translateX(4px);
}

.btn-ghost span {
  display: inline-block;
  transition: transform 0.3s var(--ease);
}

/* Nav CTA pill — only pill shape allowed in the system */
.header-cta {
  border-radius: 9999px !important;
  padding: 10px 22px;
  font-size: 0.85rem;
}

/* ── SCROLL PROGRESS BAR ────────────────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ── ANNOUNCEMENT BAR (MagicUI marquee translation) ─────────── */
.announce-bar {
  background: var(--ink);
  color: rgba(255, 246, 232, 0.85);
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1001;
}

.announce-track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: marquee-scroll 28s linear infinite;
  align-items: center;
}

.announce-dot {
  color: var(--accent);
  flex-shrink: 0;
}

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── HEADER ─────────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 36px;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 clamp(20px, 4vw, 56px);
  transition: top 0.4s var(--ease), padding 0.4s var(--ease);
}

.header-inner,
.header .container.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(23, 18, 13, 0.72);
  backdrop-filter: blur(24px) saturate(1.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  padding: 10px 10px 10px 24px !important;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
  transition: all 0.5s var(--ease);
}

.header.scrolled {
  top: 0;
  padding-top: 8px;
  padding-bottom: 8px;
}

.header.scrolled .header-inner,
.header.scrolled .container.header-inner {
  background: rgba(255, 249, 239, 0.92);
  backdrop-filter: blur(28px);
  border-color: var(--line);
  box-shadow: 0 4px 24px rgba(31, 21, 12, 0.1);
}

.logo img {
  height: 40px;
  width: auto;
  border-radius: var(--r-sm) !important;
  transition: transform 0.3s var(--ease);
}

.logo img:hover {
  transform: scale(1.04);
}

/* ── NAV ────────────────────────────────────────────────────── */
.nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 44px);
}

.nav a {
  font-family: 'Outfit', 'Inter', sans-serif;
  color: rgba(255, 246, 232, 0.82);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav a:hover {
  color: var(--accent-2);
}

.header.scrolled .nav a {
  color: var(--ink);
}

.header.scrolled .nav a:hover {
  color: var(--accent);
}

.dropdown {
  position: relative;
}

.dropdown > a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown > a::after {
  content: '';
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -3px;
  transition: transform 0.3s ease;
  opacity: 0.7;
}

.dropdown:hover > a::after {
  transform: rotate(-135deg);
  margin-top: 3px;
}

.dropdown-content {
  display: block;
  position: absolute;
  background: var(--bg-soft);
  min-width: 260px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  z-index: 1000;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s var(--ease);
}

.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-content a {
  color: var(--ink) !important;
  padding: 11px 16px;
  display: block;
  border-radius: var(--r-md);
  margin-bottom: 2px;
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.25s ease;
}

.dropdown-content a:hover {
  background: var(--bg);
  color: var(--accent) !important;
  padding-left: 20px;
}

/* ── HAMBURGER ──────────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  padding: 8px;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: rgba(255, 246, 232, 0.9);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.header.scrolled .hamburger span {
  background: var(--ink);
}

/* Mobile nav overlay (shadcn Sheet translation) */
@media (max-width: 768px) {
  .nav.show {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(15, 11, 8, 0.98);
    backdrop-filter: blur(24px);
    z-index: 999;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
  }

  .nav.show a,
  .nav.show .dropdown > a {
    color: rgba(255, 246, 232, 0.9);
    font-size: 1.3rem;
  }

  .nav.show .dropdown-content {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    border: none;
    padding: 0;
    margin-top: 0.4rem;
  }

  .nav.show .dropdown-content a {
    color: rgba(255, 246, 232, 0.65) !important;
    font-size: 1rem;
    padding: 8px 16px;
  }
}

/* ── BREADCRUMB ─────────────────────────────────────────────── */
.breadcrumb-nav {
  background: transparent;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  margin-top: 108px; /* 36px announce-bar + 72px header */
}

.breadcrumb-nav ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 0.82rem;
  color: var(--muted);
}

.breadcrumb-nav li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
}

.breadcrumb-nav li:not(:last-child)::after {
  content: '›';
  font-size: 1rem;
  color: var(--line);
}

.breadcrumb-nav a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.breadcrumb-nav a:hover {
  text-decoration: underline;
}

/* ── HERO (index.html) — EDITORIAL SPLIT ────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 54fr 46fr;
  overflow: hidden;
  padding-top: 0 !important;
  background: none !important;
  position: relative;
  isolation: isolate;
}

/* Left panel — warm parchment */
.hero-left {
  background: var(--bg);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(120px, 12vh, 180px) clamp(40px, 6vw, 96px) clamp(80px, 8vh, 120px);
}

/* DotPattern (MagicUI) translation — SVG radial dot grid */
.hero-left::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(255, 90, 31, 0.09) 1px, transparent 1px);
  background-size: 28px 28px;
}

.hero-left::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(245, 236, 220, 0.6), transparent);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(2.8rem, 5.5vw, 5.8rem);
  color: var(--ink);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.hero h1 span {
  color: var(--accent);
}

.hero p {
  max-width: 520px;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.82;
  margin-bottom: 36px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

/* Hero stat row */
.hero-stat {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}

.hero-stat > div {
  text-align: center;
  padding: 0 16px;
}

.hero-stat > div:not(:last-child) {
  border-right: 1px solid var(--line);
}

.hero-stat strong {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  color: var(--accent);
  display: block;
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero-stat span {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
  display: block;
}

/* Right panel — dark cinematic */
.hero-right {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  clip-path: polygon(6% 0%, 100% 0%, 100% 100%, 0% 100%);
}

/* Border-beam (MagicUI) translation — conic-gradient animated border */
.hero-right::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  border-radius: inherit;
  background: conic-gradient(
    from var(--beam-a),
    transparent 20%,
    var(--accent) 38%,
    var(--accent-2) 56%,
    transparent 76%
  );
  animation: beam-spin 5s linear infinite;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  padding: 2px;
}

@keyframes beam-spin {
  to { --beam-a: 360deg; }
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0 !important;
  filter: brightness(0.56) contrast(1.18) saturate(0.82);
  animation: hero-zoom 22s ease-in-out infinite alternate;
}

@keyframes hero-zoom {
  from { transform: scale(1.0); }
  to   { transform: scale(1.07); }
}

/* Radial accent overlay on hero-right */
.hero-right-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 90, 31, 0.18), transparent 22rem),
    linear-gradient(180deg, rgba(12, 9, 6, 0.15), rgba(12, 9, 6, 0.7));
}

/* Meteors (MagicUI) — injected spans */
.meteor {
  position: absolute;
  top: -4px;
  left: var(--x, 50%);
  width: 1.5px;
  height: clamp(60px, 8vh, 110px);
  background: linear-gradient(to bottom, rgba(255, 246, 232, 0.9), transparent);
  border-radius: 999px;
  opacity: 0;
  z-index: 2;
  animation: meteor-fall var(--dur, 3s) var(--delay, 0s) ease-in infinite;
  pointer-events: none;
}

@keyframes meteor-fall {
  0%   { transform: translateY(-10%); opacity: 0; }
  5%   { opacity: 0.42; }
  90%  { opacity: 0.12; }
  100% { transform: translateY(110vh); opacity: 0; }
}

/* ── SUPPLIER FACTS (homepage quick-facts list) ──────────────── */
.supplier-facts {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  padding: 0;
  margin: 0;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--muted);
}

/* ── SERVICES GRID (MagicUI magic-card + 12-col bento) ──────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 0;
  margin-top: clamp(40px, 6vw, 80px);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--line);
}

/* Bento math:
   Card 1: col span 7 × row span 2 = 14 cells
   Card 2: col span 5 × row span 1 =  5 cells
   Card 3: col span 5 × row span 1 =  5 cells
   Card 4: col span 4 × row span 1 =  4 cells
   Card 5: col span 4 × row span 1 =  4 cells
   Card 6: col span 4 × row span 1 =  4 cells
   Row 1: 7 + 5 = 12 ✓
   Row 2: 7(cont.) + 5 = 12 ✓
   Row 3: 4 + 4 + 4 = 12 ✓
   Total: 36 = 12×3  Zero empty cells ✓
*/
.service-card:nth-child(1) { grid-column: span 7; grid-row: span 2; }
.service-card:nth-child(2) { grid-column: span 5; grid-row: span 1; }
.service-card:nth-child(3) { grid-column: span 5; grid-row: span 1; }
.service-card:nth-child(4) { grid-column: span 4; grid-row: span 1; }
.service-card:nth-child(5) { grid-column: span 4; grid-row: span 1; }
.service-card:nth-child(6) { grid-column: span 4; grid-row: span 1; }

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 0 !important;
  min-height: clamp(280px, 28vw, 500px);
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  isolation: isolate;
  background-size: cover !important;
  background-position: center !important;
  transition: transform 0.7s var(--ease), filter 0.7s ease;
  filter: saturate(0.88) contrast(1.06);
}

.service-card:hover {
  filter: saturate(1.04) contrast(1.14);
  z-index: 2;
}

/* Dark gradient overlay */
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top,
    rgba(12, 9, 6, 0.92) 0%,
    rgba(12, 9, 6, 0.35) 60%,
    transparent 100%);
  transition: background 0.5s var(--ease);
}

.service-card:hover::before {
  background: linear-gradient(to top,
    rgba(255, 90, 31, 0.92) 0%,
    rgba(255, 90, 31, 0.55) 55%,
    transparent 100%);
}

/* Magic-card spotlight (MagicUI) — mousemove via JS */
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(
    280px circle at var(--cx, -999px) var(--cy, -999px),
    rgba(217, 154, 67, 0.14),
    transparent 70%
  );
  pointer-events: none;
  transition: none;
}

.service-card-content {
  position: relative;
  z-index: 3;
  padding: clamp(24px, 3vw, 40px);
  width: 100%;
}

.service-card h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.2rem, 1.8vw, 2rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 8px;
}

.service-card p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s var(--ease), opacity 0.4s ease;
  margin-bottom: 0;
}

.service-card:hover p {
  max-height: 120px;
  opacity: 1;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 9px 18px;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #fff !important;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(12px);
  border-radius: var(--r-sm);
  transform: translateY(8px);
  opacity: 0;
  transition: all 0.4s var(--ease);
  text-decoration: none;
}

.service-card:hover .service-btn {
  transform: translateY(0);
  opacity: 1;
}

/* ── SCENT LIBRARY SECTION ──────────────────────────────────── */
.scent-section {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.scent-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(42px, 7vw, 96px);
  align-items: center;
  margin-top: 40px;
}

.scent-img {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
}

.scent-img img {
  height: clamp(400px, 48vw, 640px);
  width: 100%;
  object-fit: cover;
  border-radius: 0 !important;
  filter: contrast(1.1) saturate(0.86);
  transition: transform 0.8s var(--ease), filter 0.6s ease;
}

.scent-img:hover img {
  transform: scale(1.05);
  filter: contrast(1.18) saturate(1.02);
}

/* border-beam on scent image */
.border-beam {
  position: relative;
}

.border-beam::after {
  content: '';
  position: absolute;
  inset: -2px;
  z-index: 4;
  border-radius: inherit;
  background: conic-gradient(
    from var(--beam-a),
    transparent 20%,
    var(--accent) 38%,
    var(--accent-2) 56%,
    transparent 76%
  );
  animation: beam-spin 6s linear infinite;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  padding: 2px;
  pointer-events: none;
}

.scent-text h2 {
  color: #fff;
}

.scent-text p {
  color: rgba(255, 246, 232, 0.75);
}

.scent-text ul {
  list-style: none;
  margin-left: 0;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.scent-text li {
  color: rgba(255, 246, 232, 0.82);
  padding-left: 22px;
  position: relative;
  margin-bottom: 0;
}

.scent-text li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

/* Scent family tags */
.raw-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.raw-tag {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 246, 232, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-md);
  padding: 8px 18px;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.raw-tag:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* ── MARQUEE STRIP (between sections) ───────────────────────── */
.marquee-strip {
  background: var(--ink);
  padding: 20px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  width: max-content;
  animation: marquee-scroll 20s linear infinite;
  align-items: center;
}

.marquee-strip span {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(0.9rem, 1.5vw, 1.2rem);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 246, 232, 0.32);
  padding: 0 8px;
}

.marquee-strip .marquee-dot {
  color: var(--accent);
  opacity: 0.6;
}

/* ── PRIVATE LABEL SECTION ──────────────────────────────────── */
.pl-section {
  background: var(--bg-soft);
}

.pl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(42px, 7vw, 96px);
  align-items: center;
  margin-top: 40px;
}

.pl-img {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.pl-img img {
  height: clamp(400px, 48vw, 600px);
  width: 100%;
  object-fit: cover;
  border-radius: 0 !important;
  filter: contrast(1.08) saturate(0.9);
  transition: transform 0.8s var(--ease), filter 0.6s ease;
}

.pl-img:hover img {
  transform: scale(1.04);
  filter: contrast(1.14) saturate(1.0);
}

/* Glare-hover effect (MagicUI glare-hover translation) */
.glare-hover {
  position: relative;
  overflow: hidden;
}

.glare-hover::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  background: radial-gradient(
    circle at var(--gx, 50%) var(--gy, 50%),
    rgba(255, 246, 220, 0.22) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.glare-hover.glare-active::before {
  opacity: 1;
}

/* Process timeline (replaces bullet list) */
.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 28px 0;
  list-style: none;
  margin-left: 0;
}

.timeline-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: flex-start;
  padding: 24px 0;
  position: relative;
  margin-bottom: 0;
  padding-left: 0;
}

.timeline-step::before {
  display: none;
}

.timeline-step + .timeline-step {
  border-top: 1px solid var(--line);
}

.step-number {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--accent);
  opacity: 0.28;
  line-height: 1;
  text-align: center;
  transition: opacity 0.3s ease;
  letter-spacing: -0.03em;
}

.timeline-step:hover .step-number {
  opacity: 1;
}

.step-content h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  padding-top: 4px;
  font-weight: 700;
}

.step-content p {
  font-size: 0.95rem;
  margin-bottom: 0;
  line-height: 1.7;
}

.pl-list {
  list-style: none;
  margin-left: 0;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pl-list li {
  padding-left: 22px;
  position: relative;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
}

.pl-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

/* ── RAW MATERIALS SECTION ──────────────────────────────────── */
.raw-section {
  background: var(--bg);
  position: relative;
}

.raw-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(255, 90, 31, 0.07) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.6;
}

.raw-section > * {
  position: relative;
  z-index: 1;
}

.raw-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(42px, 7vw, 96px);
  align-items: center;
  margin-top: 40px;
}

.raw-img {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.raw-img img {
  height: clamp(400px, 48vw, 600px);
  width: 100%;
  object-fit: cover;
  border-radius: 0 !important;
  filter: contrast(1.08) saturate(0.9);
  transition: transform 0.8s var(--ease), filter 0.6s ease;
}

.raw-img:hover img {
  transform: scale(1.04);
  filter: contrast(1.14) saturate(1.0);
}

/* ── REVIEWS SECTION ────────────────────────────────────────── */
.reviews-section {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

/* Review card with magic-card spotlight */
.review-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--r-xl);
  padding: 32px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.4s ease;
}

.review-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(
    240px circle at var(--cx, -999px) var(--cy, -999px),
    rgba(217, 154, 67, 0.1),
    transparent 70%
  );
  pointer-events: none;
  transition: none;
}

.review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 90, 31, 0.35);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.review-card > * {
  position: relative;
  z-index: 1;
}

.review-stars {
  color: #ffb400;
  margin-bottom: 16px;
  gap: 4px;
  display: flex;
}

.review-text {
  font-style: italic;
  color: rgba(255, 246, 232, 0.82);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 24px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50% !important;
  object-fit: cover;
  border: 2px solid rgba(255, 90, 31, 0.4);
  flex-shrink: 0;
}

.author-info strong {
  color: #fff;
  display: block;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
}

.author-info span {
  color: rgba(255, 246, 232, 0.55);
  font-size: 0.82rem;
}

/* ── STORE VISIT SECTION ────────────────────────────────────── */
.store-section {
  background: var(--bg-soft);
}

.store-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(42px, 7vw, 96px);
  align-items: flex-start;
  margin-top: 32px;
}

.store-highlights {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 24px;
}

.highlight {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  transition: all 0.3s ease;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  border-left: none;
  border-right: none;
  border-top: none;
}

.highlight:hover {
  padding-left: 6px;
}

.highlight-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: rgba(255, 90, 31, 0.1);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: background 0.3s ease;
}

.highlight:hover .highlight-icon {
  background: rgba(255, 90, 31, 0.18);
}

.highlight-info strong {
  display: block;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 2px;
}

.highlight-info span {
  color: var(--muted);
  font-size: 0.88rem;
}

.store-contact {
  margin-top: 0;
  background: rgba(255, 249, 239, 0.7);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 28px;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.store-contact h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.store-contact p {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.store-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.store-img {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.store-img img {
  height: 350px;
  width: 100%;
  object-fit: cover;
  border-radius: 0 !important;
}

/* Map with subtle tilt */
.store-map {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transform: rotate(-1.2deg);
  transition: transform 0.6s var(--ease);
  border: 3px solid var(--accent);
  outline: 6px solid var(--bg-soft);
}

.store-map:hover {
  transform: rotate(0deg);
}

.store-map iframe,
.store-map gmpx-store-locator {
  border-radius: 0 !important;
  display: block;
}

gmpx-store-locator {
  height: 480px;
  --gmpx-color-surface: var(--bg-soft);
  --gmpx-color-on-surface: #212121;
  --gmpx-color-on-surface-variant: #757575;
  --gmpx-color-primary: var(--accent);
  --gmpx-color-outline: var(--line);
  --gmpx-fixed-panel-width-row-layout: 28.5em;
  --gmpx-fixed-panel-height-column-layout: 65%;
  --gmpx-font-family-base: 'Outfit', 'Inter', sans-serif;
  --gmpx-font-family-headings: 'DM Serif Display', serif;
  --gmpx-font-size-base: 0.875rem;
  --gmpx-hours-color-open: #188038;
  --gmpx-hours-color-closed: #d50000;
  --gmpx-rating-color: #ffb300;
  --gmpx-rating-color-empty: #e0e0e0;
}

/* ── FAQ SECTION (shadcn accordion translation) ──────────────── */
.faq-section {
  background: var(--bg-soft);
}

.faq-grid {
  display: grid;
  gap: 0;
  max-width: 860px;
  margin: 0 auto;
}

.faq-card {
  background: transparent;
  box-shadow: none;
  border: none;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 0;
  transition: none;
}

.faq-card:hover {
  transform: none;
  box-shadow: none;
  background: transparent;
}

.faq-card details {
  padding: 20px 0;
}

details summary {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 400;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  list-style: none;
  padding-right: 0;
  transition: color 0.3s ease;
}

details summary::-webkit-details-marker {
  display: none;
}

details summary:hover {
  color: var(--accent);
}

details summary::after {
  content: '+';
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 1.5rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.4s var(--ease);
  line-height: 1;
  margin-left: 16px;
}

details[open] summary::after {
  transform: rotate(45deg);
}

details p {
  padding: 16px 0 4px 0;
  margin-top: 14px;
  margin-bottom: 0;
  font-size: 0.98rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

/* ── CONTENT GRID (SEO pages) ───────────────────────────────── */
.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
}

@media (min-width: 992px) {
  .content-grid {
    grid-template-columns: 1fr 1fr;
  }

  .content-reverse {
    direction: rtl;
  }

  .content-reverse > * {
    direction: ltr;
  }
}

.content-grid img {
  height: clamp(320px, 40vw, 540px);
  width: 100%;
  object-fit: cover;
  filter: contrast(1.08) saturate(0.9);
  transition: transform 0.8s var(--ease), filter 0.5s ease;
}

.content-grid img:hover {
  transform: scale(1.03);
  filter: contrast(1.12) saturate(1.0);
}

/* ── SEO HERO (.seo-hero) ───────────────────────────────────── */
.seo-hero {
  position: relative;
  min-height: clamp(420px, 55vh, 640px);
  display: flex;
  align-items: center;
  color: #fff;
  padding-top: 80px;
  overflow: hidden;
  background: var(--ink);
}

.seo-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    160deg,
    rgba(23, 18, 13, 0.96) 0%,
    rgba(23, 18, 13, 0.65) 50%,
    rgba(23, 18, 13, 0.35) 100%
  ),
  image-set(url('/images/69b4fd49bfc81f109409b8fc.webp') type('image/webp'),
    url('https://assets.cdn.filesafe.space/n2JV7OnZcOBeCtUnjWku/media/69b4fd49bfc81f109409b8fc.png') type('image/png'))
  center/cover no-repeat;
  filter: brightness(0.65) contrast(1.15) saturate(0.85);
}

/* Per-page hero background overrides — keep all existing bg-image attrs via inline styles */

.seo-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 90, 31, 0.18), transparent 24rem),
    linear-gradient(180deg, rgba(10, 8, 7, 0.14), rgba(10, 8, 7, 0.72));
}

.seo-hero .container {
  position: relative;
  z-index: 3;
}

.seo-hero-content {
  max-width: 780px;
  text-align: center;
  margin: 0 auto;
}

.seo-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 4rem);
  margin-bottom: 24px;
  text-wrap: balance;
}

.seo-hero .tag {
  color: var(--accent-2);
}

.seo-hero p {
  color: rgba(255, 246, 232, 0.88);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  max-width: 640px;
  margin-inline: auto;
}

/* Accent rule under seo-hero h1 */
.hero-rule {
  width: 0;
  height: 2px;
  background: var(--accent);
  margin: 20px auto;
  border-radius: 2px;
  animation: rule-grow 1.2s 0.6s var(--ease) forwards;
}

@keyframes rule-grow {
  to { width: 80px; }
}

/* ── COMPARISON / MOQ TABLES ────────────────────────────────── */
table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 0.95rem;
}

thead tr {
  background: var(--ink);
  color: #fff;
}

th {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  text-transform: uppercase;
  padding: 16px 18px;
  text-align: left;
  color: #fff;
}

tbody tr {
  transition: background 0.2s ease;
}

tbody tr:nth-child(even) {
  background: rgba(245, 236, 220, 0.5);
}

tbody tr:hover {
  background: rgba(255, 90, 31, 0.06);
}

td {
  padding: 14px 18px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

td strong {
  color: var(--accent);
}

/* ── INLINE CARD GRIDS on SEO pages ─────────────────────────── */
.section-bg > .container > div[style*="grid"],
.section-white > .container > div[style*="grid"],
.section-soft > .container > div[style*="grid"] {
  gap: 24px !important;
}

.section-bg > .container > div[style*="grid"] > div,
.section-white > .container > div[style*="grid"] > div,
.section-soft > .container > div[style*="grid"] > div {
  border-radius: var(--r-lg) !important;
  border: 1px solid var(--line) !important;
  box-shadow: var(--shadow) !important;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s ease !important;
  background: var(--bg-soft);
  padding: 28px;
}

.section-bg > .container > div[style*="grid"] > div:hover,
.section-white > .container > div[style*="grid"] > div:hover,
.section-soft > .container > div[style*="grid"] > div:hover {
  transform: translateY(-5px) !important;
  box-shadow: var(--shadow-lg) !important;
  border-color: rgba(255, 90, 31, 0.2) !important;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: #0d0a07;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: clamp(80px, 10vw, 140px) 0 40px;
  position: relative;
  overflow: hidden;
}

/* Animated gradient text footer headline (MagicUI animated-gradient-text translation) */
.footer-headline {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  letter-spacing: -0.03em;
  text-align: center;
  margin-bottom: clamp(60px, 8vw, 100px);
  position: relative;
  line-height: 1.12;
  background: linear-gradient(
    120deg,
    var(--accent-2) 0%,
    #fff 30%,
    var(--accent) 60%,
    var(--accent-2) 100%
  );
  background-size: 300% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 5s linear infinite;
}

@keyframes gradient-shift {
  0%   { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

.footer-headline::after {
  content: '';
  display: block;
  width: 80px;
  height: 2px;
  background: var(--accent);
  margin: 18px auto 0;
  border-radius: 2px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.footer h3 {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 20px;
}

.footer h3::after {
  display: none;
}

.footer-brand p {
  font-size: 0.98rem;
  line-height: 1.8;
  margin: 14px 0 24px;
  color: rgba(255, 246, 232, 0.55);
  max-width: 360px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin-left: 0;
}

.footer-links li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--accent-2);
  transform: translateX(4px);
}

.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.social-icon {
  width: 36px !important;
  height: 36px !important;
  border-radius: var(--r-sm) !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
}

.social-icon svg {
  width: 18px;
  height: 18px;
}

.social-icon:hover {
  transform: translateY(-5px) scale(1.08);
  border-color: var(--accent);
  box-shadow: 0 8px 20px rgba(255, 90, 31, 0.2);
}

.social-icon[aria-label="Instagram"]:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
  border-color: transparent !important;
}

.social-icon[aria-label="TikTok"]:hover {
  background: #000 !important;
  border-color: #00f2ea !important;
  box-shadow: 0 0 15px rgba(0, 242, 234, 0.3);
}

.social-icon[aria-label="Facebook"]:hover {
  background: #1877F2 !important;
  border-color: #1877F2 !important;
}

.social-icon[aria-label="YouTube"]:hover {
  background: #FF0000 !important;
  border-color: #FF0000 !important;
}

.social-icon[aria-label="WhatsApp"]:hover {
  background: #25D366 !important;
  border-color: #25D366 !important;
}

/* Accent separator line above footer-bottom */
.footer-bottom {
  position: relative;
  margin-top: 60px;
  padding-top: 30px;
  text-align: center;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
}

/* Large ghost watermark */
.footer::after {
  content: 'SCENT BAZAAR';
  position: absolute;
  left: 50%;
  bottom: -0.1em;
  transform: translateX(-50%);
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(4rem, 14vw, 16rem);
  line-height: 0.78;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.028);
  pointer-events: none;
  z-index: 0;
  letter-spacing: -0.04em;
}

/* ── WHATSAPP FLOAT (MagicUI pulsating-button translation) ───── */
.wa-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: transform 0.3s var(--ease);
  animation: wa-pulse 2.4s ease infinite;
  text-decoration: none;
}

.wa-float:hover {
  transform: scale(1.1);
}

.wa-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

@keyframes wa-pulse {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4),
                0 0 0 0 rgba(37, 211, 102, 0.3);
  }
  50% {
    box-shadow: 0 4px 28px rgba(37, 211, 102, 0.5),
                0 0 0 14px rgba(37, 211, 102, 0);
  }
}

/* Legacy pulse keyframe alias */
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70%  { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.wa-indicator {
  position: fixed;
  bottom: 42px;
  right: 100px;
  background: var(--bg-soft);
  color: var(--ink);
  padding: 8px 16px;
  border-radius: var(--r-md);
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateX(12px);
  transition: all 0.3s ease;
  z-index: 999;
  border: 1px solid var(--line);
  pointer-events: none;
}

.wa-float:hover + .wa-indicator {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* ── SCROLL / REVEAL ANIMATIONS ─────────────────────────────── */
/* BlurFade (MagicUI) translation */
.fade-up {
  opacity: 0;
  transform: translateY(34px);
  filter: blur(3px);
  transition: opacity 0.85s ease, transform 0.85s var(--ease), filter 0.7s ease;
  transition-delay: calc(var(--i, 0) * 60ms);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  transition: opacity 0.8s ease, transform 0.8s var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ── ABOUT US PAGE ───────────────────────────────────────────── */
/* About hero (the .header div used on about-us.html) */
.about-hero-section {
  background: var(--ink);
  position: relative;
  overflow: hidden;
  padding: 160px 0 100px;
  text-align: center;
  color: #fff;
}

.about-hero-section h1 {
  color: #fff;
}

.about-hero-section p {
  color: rgba(255, 246, 232, 0.85);
  max-width: 600px;
  margin-inline: auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.team-member {
  background: var(--bg-soft);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  padding: 40px 32px;
  text-align: center;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.team-member:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 3px var(--accent);
  transition: box-shadow 0.3s ease;
}

.team-member:hover img {
  box-shadow: 0 0 0 4px var(--accent-2);
}

.team-member .title {
  color: var(--accent);
  font-weight: 600;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.stat-box {
  background: var(--bg-soft);
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  padding: 40px 32px;
  text-align: center;
  transition: all 0.4s var(--ease);
}

.stat-box:hover {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 90, 31, 0.08), var(--shadow);
}

.stat-number {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 3rem;
  font-weight: 400;
  color: var(--accent);
  display: block;
  line-height: 1;
  letter-spacing: -0.03em;
}

/* Timeline */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 40px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.timeline-item:last-child {
  border-bottom: none;
}

.timeline-year {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--accent);
  opacity: 0.35;
  transition: opacity 0.3s ease;
  letter-spacing: -0.03em;
  line-height: 1;
  padding-top: 4px;
}

.timeline-item:hover .timeline-year {
  opacity: 1;
}

/* ── CONTACT PAGE ────────────────────────────────────────────── */
.store-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.store-widget {
  background: var(--bg-soft);
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  padding: 36px;
  box-shadow: var(--shadow);
  transition: all 0.4s var(--ease);
}

.store-widget:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 90, 31, 0.25);
}

.store-widget svg {
  color: var(--accent);
  transition: transform 0.4s var(--ease);
}

.store-widget:hover svg {
  transform: rotate(10deg) scale(1.1);
}

/* ── BLOG / ARTICLE ─────────────────────────────────────────── */
.blog-article {
  max-width: 740px;
  margin: 0 auto;
  padding: clamp(80px, 10vw, 140px) clamp(20px, 4vw, 48px);
}

.blog-article h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.blog-article h1::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin-top: 18px;
  border-radius: 2px;
}

.blog-article h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  margin-top: 56px;
  margin-bottom: 18px;
}

.blog-article p {
  font-size: 1.06rem;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 24px;
}

.blog-article img {
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  margin: 40px 0;
  width: 100%;
}

.blog-article blockquote {
  border-left: 3px solid var(--accent);
  padding-left: 24px;
  margin-left: 0;
  margin-right: 0;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 24px;
}

.blog-article ul,
.blog-article ol {
  margin-left: 20px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.85;
}

/* ── SKELETON LOADER (shadcn skeleton translation) ───────────── */
.skeleton {
  background: linear-gradient(
    90deg,
    rgba(23, 18, 13, 0.06) 0%,
    rgba(23, 18, 13, 0.12) 50%,
    rgba(23, 18, 13, 0.06) 100%
  );
  background-size: 200% 100%;
  border-radius: var(--r-md);
  animation: skeleton-pulse 1.8s ease-in-out infinite;
}

@keyframes skeleton-pulse {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Shine-border component (MagicUI) translation */
.shine-border {
  position: relative;
  overflow: hidden;
}

.shine-border::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background-image: radial-gradient(
    transparent, transparent,
    var(--accent), var(--accent-2),
    transparent, transparent
  );
  background-size: 300% 300%;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  padding: 1.5px;
  pointer-events: none;
  animation: shine-rotate 12s linear infinite;
}

@keyframes shine-rotate {
  0%   { background-position: 0% 0%; }
  100% { background-position: 300% 300%; }
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 992px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-right {
    min-height: 52vh;
    clip-path: none;
    order: -1;
  }

  .hero-stat {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stat > div:nth-child(2) {
    border-right: none;
  }

  .services-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .service-card:nth-child(1) { grid-column: span 6; grid-row: span 1; }
  .service-card:nth-child(2) { grid-column: span 3; grid-row: span 1; }
  .service-card:nth-child(3) { grid-column: span 3; grid-row: span 1; }
  .service-card:nth-child(4) { grid-column: span 2; grid-row: span 1; }
  .service-card:nth-child(5) { grid-column: span 2; grid-row: span 1; }
  .service-card:nth-child(6) { grid-column: span 2; grid-row: span 1; }

  .scent-grid,
  .pl-grid,
  .raw-grid {
    grid-template-columns: 1fr;
  }

  .store-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .timeline-item {
    grid-template-columns: 80px 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  section {
    padding: clamp(64px, 10vw, 100px) 0;
  }

  .header-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav {
    display: none;
  }

  h1 {
    font-size: clamp(2.4rem, 11vw, 3.8rem);
  }

  h2 {
    font-size: clamp(1.9rem, 8vw, 3rem);
  }

  .hero-left {
    padding: 100px 24px 60px;
    order: 1;
  }

  .hero-right {
    min-height: 45vh;
    order: 0;
  }

  .hero-stat {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .hero-stat > div:nth-child(2),
  .hero-stat > div:nth-child(4) {
    border-right: none;
  }

  .hero-stat > div:nth-child(1),
  .hero-stat > div:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    border-radius: var(--r-xl);
  }

  .service-card {
    min-height: 300px;
  }

  .service-card:nth-child(1),
  .service-card:nth-child(2),
  .service-card:nth-child(3),
  .service-card:nth-child(4),
  .service-card:nth-child(5),
  .service-card:nth-child(6) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .service-card:nth-child(1) {
    grid-column: span 2;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .breadcrumb-nav {
    margin-top: 80px;
  }

  .store-map {
    transform: none;
  }

  .store-map:hover {
    transform: none;
  }

  .timeline-item {
    grid-template-columns: 60px 1fr;
    gap: 16px;
    padding: 24px 0;
  }

  .timeline-year {
    font-size: 1.6rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-stat {
    grid-template-columns: 1fr;
  }

  .hero-stat > div {
    border-right: none !important;
    border-bottom: 1px solid var(--line);
    padding: 14px 0;
  }

  .hero-stat > div:last-child {
    border-bottom: none;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: 1fr 1fr;
  }
}
