/* =============================================
   LUMIÈRE — CONSOLIDATED STUDIO STYLES
   assets/css/style.css
   ============================================= */

/* ── TOKENS ─────────────────────────────────── */
:root {
  --bg: #f9f5ef;
  --bg-2: #f2ece1;
  --bg-card: #faf7f2;
  --fg: #1a1209;
  --fg-2: #4a3f30;
  --fg-muted: #7a6b58;
  --accent: #b5803a;
  --accent-light: #d4a85c;
  --accent-dark: #8a5e28;
  --cream: #ede5d6;
  --border: rgba(90, 60, 20, .12);
  --shadow: rgba(26, 18, 9, .08);
  --glow: rgba(181, 128, 58, .25);

  --ff-display: 'Cormorant Garamond', serif;
  --ff-body: 'Jost', sans-serif;

  --header-h: 72px;
  --radius: 4px;
  --radius-lg: 12px;
  --transition: .4s cubic-bezier(.25, .46, .45, .94);
  --transition-fast: .2s ease;
}

[data-theme="dark"] {
  --bg: #0e0b07;
  --bg-2: #160f08;
  --bg-card: #1a1209;
  --fg: #f0e8d8;
  --fg-2: #c8b89a;
  --fg-muted: #8a7a65;
  --accent: #d4a85c;
  --accent-light: #e8c47a;
  --accent-dark: #b5803a;
  --cream: #251c12;
  --border: rgba(212, 168, 92, .12);
  --shadow: rgba(0, 0, 0, .4);
  --glow: rgba(212, 168, 92, .3);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--ff-body);
  font-weight: 300;
  background: var(--bg);
  color: var(--fg);
  transition: background var(--transition), color var(--transition);
  overflow-x: hidden;
}

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

img,
svg {
  display: block;
  max-width: 100%;
}

button {
  border: none;
  background: none;
  font-family: inherit;
}

input {
  font-family: inherit;
}


/* ── LAYOUT ──────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 70px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 72px;
}

/* ── TYPOGRAPHY ──────────────────────────────── */
.section-eyebrow {
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  color: var(--fg);
}

p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--fg-2);
}

/* ── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--ff-body);
  font-size: .8rem;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .08);
  transform: translateX(-100%);
  transition: transform .4s ease;
}

.btn:hover::after {
  transform: translateX(0);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px var(--glow);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--glow);
}

.btn-ghost {
  border: 1px solid var(--border);
  color: var(--fg-2);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 12px 28px;
}

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

/* ── HEADER ──────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  width: 100%;
  height: var(--header-h);
  z-index: 500;
  background: var(--bg);
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.header.scrolled {
  background: rgba(249, 245, 239, .92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
}

[data-theme="dark"] .header.scrolled {
  background: rgba(14, 11, 7, .92);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: -2px;
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--fg);
  flex-shrink: 0;
}

.logo-svg {
  color: var(--accent);
  animation: flicker 3s infinite;
  stroke-width: 1.5;
  margin-right: -2px;
}

.logo-text {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: .02em;
}

/* Nav & Dropdown */
.nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-item {
  position: relative;
  padding: 10px 0;
}

.nav-link {
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--fg-2);
  position: relative;
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--transition);
}

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

.nav-link:hover::after {
  width: 100%;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 0;
  min-width: 160px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: 0 10px 30px var(--shadow);
  z-index: 10;
}

.nav-item:hover .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.dropdown-link {
  display: block;
  padding: 8px 24px;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--fg-2);
  transition: var(--transition-fast);
}

.dropdown-link:hover {
  background: var(--bg-2);
  color: var(--accent);
}

/* ── HEADER CONTROLS ─────────────────────────── */
.header-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ctrl-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fg-2);
  transition: var(--transition-fast);
  position: relative;
}

.ctrl-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.cart-btn .cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 16px;
  height: 16px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.login-btn {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}

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

[data-theme="dark"] .login-btn {
  background: var(--fg);
  color: var(--bg);
}

/* Dark Mode Toggle */
.theme-toggle {
  padding: 6px 8px;
}

.toggle-track {
  width: 44px;
  height: 24px;
  background: var(--cream);
  border-radius: 100px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 2px;
  transition: background var(--transition);
  border: 1px solid var(--border);
}

[data-theme="dark"] .toggle-track {
  background: var(--cream);
}

.toggle-thumb {
  width: 20px;
  height: 20px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(0);
  transition: transform var(--transition);
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .toggle-thumb {
  transform: translateX(20px);
}

.sun-icon,
.moon-icon {
  position: absolute;
  font-size: .6rem;
  color: #fff;
  transition: opacity var(--transition), transform var(--transition);
}

.moon-icon {
  opacity: 0;
  transform: scale(.5);
}

[data-theme="dark"] .sun-icon {
  opacity: 0;
  transform: scale(.5);
}

[data-theme="dark"] .moon-icon {
  opacity: 1;
  transform: scale(1);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--fg);
  transition: var(--transition);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(4.7px, 4.7px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4.7px, -4.7px);
}

/* ── MOBILE OVERLAY ──────────────────────────── */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 400;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  transform: translateX(100%);
  transition: transform .5s cubic-bezier(.76, 0, .24, 1);
  opacity: 1;
  /* For compatibility with style2 fade version */
}

.mobile-overlay.open {
  transform: translateX(0);
  opacity: 1;
}

.overlay-close {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 1.4rem;
  color: var(--fg-2);
  transition: color var(--transition-fast);
}

.overlay-close:hover {
  color: var(--accent);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.mobile-nav-link {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 300;
  color: var(--fg);
  padding: 8px 24px;
  transition: color var(--transition-fast);
  position: relative;
}

.mobile-nav-link:hover {
  color: var(--accent);
}

/* Mobile Nav Group & Submenu */
.mobile-nav-group {
  position: relative;
  text-align: center;
}

.mobile-nav-toggle {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 300;
  color: var(--fg);
  padding: 8px 24px;
  transition: color var(--transition-fast);
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 auto;
}

.mobile-nav-toggle:hover {
  color: var(--accent);
}

.mobile-nav-toggle::after {
  content: '▾';
  font-size: 0.6em;
  transition: transform var(--transition-fast);
}

.mobile-nav-toggle.open::after {
  transform: rotate(-180deg);
}

.mobile-nav-submenu {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.mobile-nav-submenu.open {
  display: flex;
}

.mobile-nav-sublink {
  font-size: clamp(1.5rem, 6vw, 2.5rem) !important;
  padding: 6px 16px !important;
  color: var(--fg-2);
}

.mobile-nav-sublink:hover {
  color: var(--accent);
}

.mobile-tagline {
  position: absolute;
  bottom: 40px;
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* Mobile Actions */
.mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-top: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.mobile-cart-btn,
.mobile-login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: var(--bg-card);
  color: var(--fg-2);
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: var(--transition-fast);
  position: relative;
  cursor: pointer;
}

.mobile-cart-btn:hover,
.mobile-login-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.mobile-login-btn {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
  text-decoration: none;
}

.mobile-login-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.mobile-cart-btn .cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 16px;
  height: 16px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* ── AMBIENT & SCENE COMPONENTS ───────────────── */
.candle {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.candle-label {
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-top: 8px;
  white-space: nowrap;
}

.candle-body {
  border-radius: 3px;
  position: relative;
  transition: var(--transition);
}

.candle-body::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, .15), transparent 60%);
  border-radius: inherit;
}

.candle-tall .candle-body {
  width: 44px;
  height: 160px;
  background: linear-gradient(180deg, #e8d5b0 0%, #c4a070 100%);
}

.candle-wide .candle-body {
  width: 68px;
  height: 100px;
  background: linear-gradient(180deg, #f0d4d4 0%, #d49090 100%);
}

.candle-med .candle-body {
  width: 52px;
  height: 130px;
  background: linear-gradient(180deg, #d4c9b0 0%, #a89070 100%);
}

.candle-flame {
  position: relative;
  width: 20px;
  height: 36px;
  margin-bottom: -2px;
}

.flame-outer {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 32px;
  background: linear-gradient(180deg, #ff9f38 0%, #ff6b00 60%, transparent 100%);
  border-radius: 50% 50% 40% 40%;
  animation: flame-sway 2.5s ease-in-out infinite;
  transform-origin: bottom center;
}

.flame-inner {
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 7px;
  height: 18px;
  background: linear-gradient(180deg, #fff5c0 0%, #ffd060 80%, transparent 100%);
  border-radius: 50% 50% 40% 40%;
  animation: flame-sway 2.5s ease-in-out infinite reverse;
  z-index: 1;
}

.flame-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, rgba(255, 160, 56, .6), transparent 65%);
  border-radius: 50%;
  animation: glow-pulse 2.5s ease-in-out infinite;
}

/* ── PAGE 1 SPECIFIC SECTIONS ────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: var(--bg);
}

.hero-content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 80px 80px;
  background: var(--bg);
}

.hero-bg {
  flex: 1.2;
  position: relative;
  z-index: 1;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, transparent, var(--bg) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-eyebrow {
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
  color: var(--accent);
  display: block;
}

.hero-subtitle {
  font-size: 1.5rem;
  line-height: 1.8;
  color: var(--fg-2);
  max-width: 460px;
  margin-bottom: 40px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-candles {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  gap: 20px;
  padding: 0 60px 60px 0;
  z-index: 2;
}

/* Marquee Band */
.marquee-band {
  background: var(--accent);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .9);
  flex-shrink: 0;
}

.marquee-track .dot {
  color: rgba(255, 255, 255, .5);
}

/* Story */
.story {
  background: var(--bg-2);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-visual {
  position: relative;
}

.story-img-frame {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.story-img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--bg-2);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
}

.img-frame-border {
  position: absolute;
  inset: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  pointer-events: none;
  z-index: 2;
}

.story-stat {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 8px 32px var(--shadow);
  bottom: 30px;
  left: -30px;
  z-index: 3;
}

.story-stat.stat-right {
  bottom: auto;
  top: 40px;
  left: auto;
  right: -30px;
}

.stat-num {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--accent);
}

.stat-label {
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.story-body {
  color: var(--fg-2);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

/* Collections */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.collection-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.collection-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px var(--shadow);
}

.card-large {
  grid-column: span 2;
  grid-row: span 2;
  flex-direction: row;
}

.card-visual {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 32px 24px 16px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  min-height: 140px;
}

.card-large .card-visual {
  width: 55%;
  flex-direction: column;
  padding-bottom: 32px;
  min-height: 280px;
}

.card-visual.amber {
  background: linear-gradient(135deg, #3d2a10, #7a4f20);
}

.card-visual.rose {
  background: linear-gradient(135deg, #2d1a1a, #5a2f30);
}

.card-visual.cedar {
  background: linear-gradient(135deg, #1a2010, #3a4a28);
}

.card-visual.ocean {
  background: linear-gradient(135deg, #0f1e2d, #1a4060);
}

.card-visual.green {
  background: linear-gradient(135deg, #0f1f10, #1e4020);
}

.card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.card-candle {
  position: relative;
  z-index: 2;
}

.card-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.card-tag {
  display: inline-block;
  font-size: .62rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  background: rgba(181, 128, 58, .15);
  color: var(--accent);
  border: 1px solid rgba(181, 128, 58, .3);
  padding: 3px 10px;
  border-radius: 100px;
  width: fit-content;
}

.card-name {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--fg);
}

.card-large .card-name {
  font-size: 2rem;
}

.card-notes {
  font-size: .75rem;
  letter-spacing: .1em;
  color: var(--fg-muted);
}

.card-desc {
  font-size: .95rem;
  color: var(--fg-2);
  line-height: 1.7;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.card-price {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--accent);
}

.btn-add {
  font-family: var(--ff-body);
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  color: var(--accent);
  transition: var(--transition-fast);
}

.btn-add:hover {
  background: var(--accent);
  color: #fff;
}

/* Sanctuary Moments */
.sanctuary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.sanctuary-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--bg-2);
}

.sanctuary-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0, 0.2, 1);
  display: block;
}

.sanctuary-item:hover img {
  transform: scale(1.08);
}

@media (max-width: 768px) {
  .sanctuary-grid {
    grid-template-columns: 1fr;
  }
}

/* Craft */
.craft {
  background: var(--bg-2);
}

.craft-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.craft-step {
  position: relative;
  padding: 32px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  transition: var(--transition);
  overflow: hidden;
}

.craft-step::before {
  content: attr(data-step);
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--ff-display);
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--border);
  line-height: 1;
  pointer-events: none;
}

.craft-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--shadow);
  border-color: var(--accent);
}

.step-icon {
  color: var(--accent);
  margin-bottom: 20px;
}

.step-title {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 12px;
}

.step-desc {
  font-size: .95rem;
  color: var(--fg-2);
  line-height: 1.75;
}

/* Scents (Page 1) */
.scents {
  background: var(--bg);
}

.scent-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.scent-filter {
  font-family: var(--ff-body);
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 9px 22px;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--fg-2);
  transition: var(--transition-fast);
}

.scent-filter:hover,
.scent-filter.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.scent-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.scent-pill {
  padding: 10px 22px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: .8rem;
  color: var(--fg-2);
  background: var(--bg-card);
  transition: var(--transition);
  cursor: default;
}

.scent-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px var(--glow);
}

.scent-pill.hidden {
  display: none;
}

/* Testimonials */
.testimonials {
  background: var(--bg-2);
  text-align: center;
}

.testimonial-carousel {
  position: relative;
  min-height: 180px;
}

.testimonial {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
  pointer-events: none;
}

.testimonial.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}

.testimonial blockquote {
  font-family: var(--ff-display);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
  color: var(--fg);
  max-width: 780px;
  margin: 0 auto 20px;
}

.testimonial cite {
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: 1px solid var(--fg-muted);
  transition: var(--transition-fast);
}

.dot.active {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.3);
}

/* Newsletter (Page 1) */
.newsletter-inner {
  display: flex;
  align-items: center;
  gap: 80px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 64px;
  position: relative;
  overflow: hidden;
}

.newsletter-inner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--glow), transparent 70%);
  pointer-events: none;
}

.newsletter-deco {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-inner:hover .newsletter-deco {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.nl-candle {
  width: 180px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nl-candle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.nl-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.nl-input {
  flex: 1;
  min-width: 220px;
  padding: 14px 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: .88rem;
  color: var(--fg);
  transition: border-color var(--transition-fast);
  outline: none;
}

.nl-input::placeholder {
  color: var(--fg-muted);
}

.nl-input:focus {
  border-color: var(--accent);
}

.nl-success {
  display: none;
  margin-top: 16px;
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
}

.nl-success.show {
  display: block;
}

[data-theme="dark"] .newsletter-deco {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .newsletter-inner:hover .newsletter-deco {
  box-shadow: 0 12px 32px rgba(255, 255, 255, 0.05);
}

/* ── PAGE 2 SPECIFIC SECTIONS ────────────────── */
.ambient-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--accent);
  opacity: .04;
  animation: drift-particle 20s infinite ease-in-out;
}

.p1 {
  width: 300px;
  height: 300px;
  top: -100px;
  left: -100px;
  animation-duration: 25s;
}

.p2 {
  width: 200px;
  height: 200px;
  top: 40%;
  right: -80px;
  animation-duration: 18s;
  animation-delay: -5s;
}

.p3 {
  width: 150px;
  height: 150px;
  bottom: 10%;
  left: 20%;
  animation-duration: 22s;
  animation-delay: -10s;
}

.p4 {
  width: 100px;
  height: 100px;
  top: 60%;
  left: 60%;
  animation-duration: 15s;
  animation-delay: -3s;
}

.p5 {
  width: 250px;
  height: 250px;
  bottom: -80px;
  right: 20%;
  animation-duration: 28s;
  animation-delay: -8s;
}

.p6 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 40%;
  animation-duration: 16s;
  animation-delay: -12s;
}

.hero2 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  overflow: hidden;
  text-align: center;
}

.hero2-left {
  position: relative;
  z-index: 10;
  max-width: 800px;
  padding: 120px 40px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero2-eyebrow {
  font-family: var(--ff-body);
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero2-title {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(3.5rem, 6vw, 6rem);
  line-height: 1.05;
  color: #fff;
  margin-bottom: 28px;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.6), 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero2-title em {
  font-style: italic;
  color: var(--accent);
}

.hero2-sub {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.95);
  max-width: 600px;
  margin-bottom: 40px;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.5), 0 1px 6px rgba(0, 0, 0, 0.3);
}

.hero2-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  justify-content: center;
}

.hero2-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-item {
  font-size: .78rem;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: .05em;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.trust-item strong {
  color: #fff;
  font-weight: 500;
}

.trust-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.2);
}

.hero2-right {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero2-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.5));
  z-index: 2;
}

.hero2-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(181, 128, 58, .07), transparent 70%);
}

.hero2-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero2-right .hero2-scent-wheel {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}

.hero2-scent-wheel {
  position: relative;
  width: 380px;
  height: 380px;
}

.wheel-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  z-index: 5;
}

.wheel-flame {
  height: 40px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.wheel-label {
  font-family: var(--ff-display);
  font-size: .85rem;
  text-align: center;
  color: var(--fg-muted);
  line-height: 1.4;
  margin-top: 4px;
}

.wheel-orbit {
  position: absolute;
  inset: 0;
  animation: spin-orbit 30s linear infinite;
}

.orbit-item {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transform: rotate(var(--a)) translateX(160px) rotate(calc(-1 * var(--a))) translate(-50%, -50%);
}

.oi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  opacity: .6;
  box-shadow: 0 0 8px var(--glow);
}

.orbit-item span {
  font-family: var(--ff-body);
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--fg-muted);
  white-space: nowrap;
}

.wheel-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid var(--border);
}

.ring-1 {
  width: 200px;
  height: 200px;
  animation: pulse-ring 4s ease-in-out infinite;
}

.ring-2 {
  width: 340px;
  height: 340px;
  animation: pulse-ring 4s ease-in-out infinite reverse;
}

.hero2-floating-card {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px var(--shadow);
  backdrop-filter: blur(8px);
  z-index: 10;
}

.fc-1 {
  bottom: 18%;
  left: 6%;
}

.fc-2 {
  top: 20%;
  right: 5%;
}

.fc-icon {
  font-size: 1.4rem;
}

.fc-text {
  display: flex;
  flex-direction: column;
}

.fc-text strong {
  font-family: var(--ff-display);
  font-size: 1rem;
  color: var(--fg);
}

.fc-text span {
  font-size: .7rem;
  letter-spacing: .1em;
  color: var(--fg-muted);
  text-transform: uppercase;
}

/* Mood Grid */
.mood-intro {
  color: var(--fg-muted);
  font-size: 1.05rem;
  margin-top: 8px;
}

.mood-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 2px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.mood-card {
  position: relative;
  overflow: hidden;
  cursor: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: var(--transition);
}

.mood-card:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.mc-bg {
  position: absolute;
  inset: 0;
  transition: transform .6s var(--transition);
}

.mood-card:hover .mc-bg {
  transform: scale(1.06);
}

.mc-calm .mc-bg {
  background: linear-gradient(135deg, #d6e8e4, #a8c5be 60%, #7a9e98);
}

.mc-warm .mc-bg {
  background: linear-gradient(135deg, #f5e6d0, #d4a85c 60%, #8a5e28);
}

.mc-focus .mc-bg {
  background: linear-gradient(135deg, #dde0d8, #8a9e80 60%, #4a6040);
}

.mc-cosy .mc-bg {
  background: linear-gradient(135deg, #f0e0c8, #c4883a 60%, #7a4820);
}

.mc-fresh .mc-bg {
  background: linear-gradient(135deg, #d8ecf0, #7abcd0 60%, #3a88a0);
}

.mc-sensual .mc-bg {
  background: linear-gradient(135deg, #e0d0dc, #8a5878 60%, #4a1838);
}

[data-theme="dark"] .mc-calm .mc-bg {
  background: linear-gradient(135deg, #1a2826, #2a4842);
}

[data-theme="dark"] .mc-warm .mc-bg {
  background: linear-gradient(135deg, #2a1e0e, #4a2e10);
}

[data-theme="dark"] .mc-focus .mc-bg {
  background: linear-gradient(135deg, #1a2018, #2a3828);
}

[data-theme="dark"] .mc-cosy .mc-bg {
  background: linear-gradient(135deg, #281808, #482010);
}

[data-theme="dark"] .mc-fresh .mc-bg {
  background: linear-gradient(135deg, #0e2028, #183040);
}

[data-theme="dark"] .mc-sensual .mc-bg {
  background: linear-gradient(135deg, #200818, #380820);
}

.mc-candle {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform var(--transition);
  width: 120px;
  height: 140px;
}

.mood-card:hover .mc-candle {
  transform: translateX(-50%) translateY(-8px);
}

.mc-body {
  width: 30px;
  height: 70px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .9), rgba(200, 160, 100, .8));
}

.mc-content {
  position: relative;
  z-index: 2;
  padding: 20px 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, .5) 0%, transparent 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mc-tag {
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .75;
}

.mc-title {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.2;
}

.mc-notes {
  font-size: .72rem;
  opacity: .7;
  letter-spacing: .05em;
}

.mc-arrow {
  font-size: 1rem;
  opacity: 0;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
  transform: translateX(-8px);
  position: absolute;
  right: 24px;
  bottom: 20px;
}

.mood-card:hover .mc-arrow,
.mood-card:focus .mc-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Gift Sets */
.gifts-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
}

.gifts-sub {
  color: var(--fg-muted);
  line-height: 1.75;
  font-size: 1.05rem;
}

.gifts-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 20px;
}

.gift-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}

.gift-card:hover {
  box-shadow: 0 12px 48px var(--shadow);
  transform: translateY(-4px);
}

.gf-visual {
  position: relative;
  background: linear-gradient(135deg, var(--cream), var(--bg-2));
  padding: 40px 32px 24px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 220px;
}

.gf-set-display {
  display: flex;
  align-items: flex-end;
  gap: 16px;
}

.gset-candle {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gset-c1 .candle-body {
  width: 34px;
  height: 100px;
}

.gset-c2 .candle-body {
  width: 44px;
  height: 72px;
}

.gset-c3 .candle-body {
  width: 38px;
  height: 88px;
}

.gf-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent);
  color: #fff;
  font-size: .6rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}

.gs-badge {
  background: var(--fg);
}

.gs-visual {
  position: relative;
  background: linear-gradient(135deg, var(--cream), var(--bg-2));
  padding: 32px 24px 20px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 160px;
}

/* Spray & Diffuser */
.spray-bottle {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.spray-cap {
  width: 28px;
  height: 20px;
  background: linear-gradient(180deg, #c4a070, #a07840);
  border-radius: 4px 4px 0 0;
}

.spray-body {
  width: 44px;
  height: 90px;
  background: linear-gradient(180deg, #e8d5b0, #c4a070);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.spray-label-line {
  width: 28px;
  height: 2px;
  background: rgba(255, 255, 255, .4);
  border-radius: 1px;
}

.spray-label-line.short {
  width: 16px;
}

.spray-mist {
  position: absolute;
  right: -10px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(181, 128, 58, .2), transparent);
  animation: mist-float 3s ease-in-out infinite;
}

.m1 {
  width: 20px;
  height: 20px;
  top: 20px;
  animation-delay: 0s;
}

.m2 {
  width: 14px;
  height: 14px;
  top: 35px;
  animation-delay: .5s;
}

.m3 {
  width: 10px;
  height: 10px;
  top: 50px;
  animation-delay: 1s;
}

.diffuser-bottle {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.diff-neck {
  width: 20px;
  height: 30px;
  background: linear-gradient(180deg, rgba(181, 128, 58, .4), rgba(181, 128, 58, .2));
  border-radius: 10px 10px 0 0;
}

.diff-body {
  width: 56px;
  height: 80px;
  background: linear-gradient(180deg, rgba(181, 128, 58, .15), rgba(181, 128, 58, .05));
  border: 1px solid rgba(181, 128, 58, .3);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.diff-liquid {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: linear-gradient(180deg, rgba(181, 128, 58, .3), rgba(181, 128, 58, .5));
}

.diff-reeds {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  align-items: flex-end;
}

.reed {
  display: block;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), var(--accent-light));
  border-radius: 1px;
}

.r1 {
  height: 48px;
  transform: rotate(-12deg);
}

.r2 {
  height: 56px;
  transform: rotate(-4deg);
}

.r3 {
  height: 52px;
  transform: rotate(5deg);
}

.r4 {
  height: 44px;
  transform: rotate(14deg);
}

.gf-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.gf-tag {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
}

.gf-title {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--fg);
}

.gf-desc {
  font-size: .95rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

.gf-includes {
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  border-top: 1px solid var(--border);
  padding-top: 10px;
  display: block;
}

.gf-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
}

.gf-price {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  color: var(--fg);
  font-weight: 400;
}

.gift-personalise {
  background: var(--cream);
  border: 1px dashed var(--accent);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  grid-column: 1 / -1;
}

.gp-inner {
  text-align: center;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.gp-icon {
  font-size: 2rem;
  color: var(--accent);
}

.gp-title {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  color: var(--fg);
}

.gp-desc {
  font-size: .95rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Quiz */
.quiz-section {
  position: relative;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.quiz-bg-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, var(--accent) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: .04;
}

.quiz-wrapper {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.quiz-desc {
  color: var(--fg-muted);
  line-height: 1.75;
  margin-top: 16px;
}

.quiz-container {
  margin-top: 56px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 48px var(--shadow);
}

.quiz-progress-bar {
  height: 3px;
  background: var(--border);
  position: relative;
}

.quiz-progress-fill {
  height: 100%;
  background: var(--accent);
  width: 0;
  transition: width .5s ease;
}

.quiz-step {
  display: none;
  padding: 48px 48px 40px;
}

.quiz-step.active {
  display: block;
}

.quiz-q-num {
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.quiz-q {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 36px;
  line-height: 1.3;
}

.quiz-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.quiz-opt {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  text-align: left;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg);
  transition: var(--transition);
  font-size: .88rem;
  color: var(--fg-2);
  letter-spacing: .02em;
}

.quiz-opt:hover {
  border-color: var(--accent);
  background: var(--cream);
  color: var(--fg);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px var(--glow);
}

.quiz-opt.selected {
  border-color: var(--accent);
  background: var(--cream);
  color: var(--fg);
}

.qo-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.qo-label {
  font-size: .85rem;
  line-height: 1.4;
}

.quiz-result {
  display: none;
  padding: 56px 48px;
  animation: fadeInResult .6s ease forwards;
}

.quiz-result.active {
  display: block;
}

.qr-candle-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 28px;
}

.qr-candle-body {
  width: 40px;
  height: 80px;
  background: linear-gradient(180deg, #e8d5b0, #c4a070);
  border-radius: 3px;
  position: relative;
}

.qr-candle-body::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, .18), transparent);
  border-radius: inherit;
}

.qr-eyebrow {
  font-size: .68rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.qr-title {
  font-family: var(--ff-display);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 6px;
}

.qr-family {
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 20px;
}

.qr-desc {
  font-size: 1.05rem;
  color: var(--fg-2);
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto 32px;
}

.qr-notes {
  display: flex;
  justify-content: center;
  gap: 32px;
  padding: 24px;
  background: var(--bg-2);
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.qr-note-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.qr-note-label {
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
}

.qr-note-val {
  font-size: .82rem;
  color: var(--fg-2);
}

.qr-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Profiles */
.profiles-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.profile-row {
  display: grid;
  grid-template-columns: 280px 1fr 260px;
  gap: 0;
  align-items: stretch;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.profile-row:hover {
  box-shadow: 0 8px 40px var(--shadow);
}

.profile-row+.profile-row {
  margin-top: 16px;
}

.pr-identity {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 32px;
  background: var(--bg-2);
  border-right: 1px solid var(--border);
}

.pr-candle-vis {
  position: relative;
  flex-shrink: 0;
  width: 70px;
  height: 90px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.pr-candle {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pr-candle .candle-body {
  width: 32px;
  height: 60px;
}

.pc-amber .candle-body {
  background: linear-gradient(180deg, #d4a85c, #8a5e28);
}

.pc-rose .candle-body {
  background: linear-gradient(180deg, #e8c0b8, #c07880);
}

.pc-cedar .candle-body {
  background: linear-gradient(180deg, #c8b898, #7a6040);
}

.pr-scent-ring {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 12px;
  border-radius: 50%;
  opacity: .4;
}

.ring-amber {
  background: radial-gradient(ellipse, #d4a85c, transparent);
}

.ring-rose {
  background: radial-gradient(ellipse, #e08090, transparent);
}

.ring-cedar {
  background: radial-gradient(ellipse, #a07040, transparent);
}

.pr-info {
  flex: 1;
}

.pr-family {
  display: block;
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

.pr-name {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  color: var(--fg);
  margin-bottom: 6px;
}

.pr-tagline {
  font-size: .95rem;
  color: var(--fg-muted);
  font-style: italic;
}

.pr-pyramid {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-right: 1px solid var(--border);
}

.pr-layer {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pr-layer-label {
  font-size: .58rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.pr-top .pr-layer-label {
  color: var(--accent-light);
}

.pr-heart .pr-layer-label {
  color: var(--accent);
}

.pr-base .pr-layer-label {
  color: var(--accent-dark);
}

.pr-notes-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pr-note-pill {
  font-size: .7rem;
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--fg-2);
  background: var(--bg);
  transition: border-color var(--transition-fast), color var(--transition-fast);
}

.pr-note-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.pr-stats {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pr-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ps-label {
  font-size: .62rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.ps-bar {
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.ps-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: var(--w);
  background: var(--accent);
  border-radius: inherit;
  transition: width 1s ease;
  transform-origin: left;
}

.pr-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.pr-price {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  color: var(--fg);
}

/* Ritual */
.ritual {
  position: relative;
  overflow: hidden;
}

.ritual-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ritual-blob {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent), transparent 70%);
  opacity: .06;
  animation: drift-particle 25s infinite ease-in-out;
}

.rb1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -200px;
}

.rb2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -100px;
  animation-delay: -10s;
}

.ritual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.ritual-body {
  color: var(--fg-2);
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 48px;
}

.ritual-steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.ritual-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.rs-num {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--accent);
  opacity: .5;
  flex-shrink: 0;
  line-height: 1;
}

.rs-title {
  font-family: var(--ff-body);
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--fg);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.rs-desc {
  font-size: 1.02rem;
  color: var(--fg-muted);
  line-height: 1.75;
}

.ritual-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ritual-candle-scene {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 32px 32px;
  display: flex;
  align-items: flex-end;
  gap: 24px;
  justify-content: center;
  overflow: hidden;
  min-height: 280px;
}

.scene-surface {
  position: absolute;
  bottom: 32px;
  left: 24px;
  right: 24px;
  height: 1px;
  background: var(--border);
}

.scene-candle {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.sc-tall .candle-body {
  width: 36px;
  height: 130px;
}

.sc-wide .candle-body {
  width: 52px;
  height: 80px;
}

.scene-smoke {
  position: absolute;
  width: 4px;
  border-radius: 2px;
  background: linear-gradient(180deg, transparent, rgba(150, 130, 100, .2));
  animation: smoke-rise 3s ease-in-out infinite;
}

.sm1 {
  height: 60px;
  bottom: 60%;
  left: 43%;
  animation-delay: 0s;
}

.sm2 {
  height: 40px;
  bottom: 55%;
  left: 55%;
  animation-delay: 1.5s;
}

.scene-light-pool {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 40px;
  background: radial-gradient(ellipse, rgba(181, 128, 58, .12), transparent 70%);
  border-radius: 50%;
}

.ritual-download-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  border: 1px solid var(--accent);
  border-radius: var(--radius-lg);
  color: var(--accent);
  transition: var(--transition);
}

.ritual-download-card:hover {
  background: var(--accent);
  color: #fff;
  cursor: pointer;
}

.rdc-icon {
  font-size: 1.4rem;
  font-family: var(--ff-display);
}

.rdc-text strong {
  display: block;
  font-size: .88rem;
  margin-bottom: 2px;
}

.rdc-text span {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .7;
}

/* Reviews Strip */
.rs-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 16px;
}

.rs-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rs-stars {
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 2px;
}

.rs-rating strong {
  font-size: 1.2rem;
  color: var(--fg);
}

.rs-count {
  font-size: .78rem;
  color: var(--fg-muted);
}

.review-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow var(--transition);
}

.review-card:hover {
  box-shadow: 0 8px 32px var(--shadow);
}

.rc-stars {
  color: var(--accent);
  letter-spacing: 2px;
  font-size: .85rem;
}

.rc-text {
  font-size: 1.05rem;
  color: var(--fg-2);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}

.rc-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.rc-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .05em;
  flex-shrink: 0;
}

.rc-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rc-meta strong {
  font-size: .82rem;
  color: var(--fg);
}

.rc-meta span {
  font-size: .7rem;
  color: var(--fg-muted);
}

/* Newsletter 2 */
.newsletter2 {
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.nl2-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.nl2-blob {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent), transparent 70%);
  opacity: .07;
}

.nb1 {
  width: 500px;
  height: 500px;
  top: -200px;
  left: -150px;
}

.nb2 {
  width: 350px;
  height: 350px;
  bottom: -100px;
  right: 10%;
}

.nl2-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.nl2-flame-group {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 16px;
  padding-bottom: 20px;
  width: 280px;
  height: 360px;
}

.nl2-candle {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nc1 .candle-body {
  width: 30px;
  height: 90px;
}

.nc2 .candle-body {
  width: 44px;
  height: 120px;
}

.nc3 .candle-body {
  width: 36px;
  height: 70px;
}

.nl2-light-pool {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 30px;
  background: radial-gradient(ellipse, rgba(181, 128, 58, .15), transparent 70%);
  border-radius: 50%;
}

.nl2-title {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 16px;
}

.nl2-sub {
  color: var(--fg-2);
  line-height: 1.75;
  margin-bottom: 28px;
  font-size: 1.15rem;
}

.nl2-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.nl2-note {
  font-size: .7rem;
  color: var(--fg-muted);
  margin-top: 8px;
}

/* ── FOOTER ──────────────────────────────────── */
.footer {
  background: var(--fg);
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  margin-bottom: 32px;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--bg);
  margin-bottom: 12px;
}

.footer-brand .logo-flame {
  color: var(--accent-light);
}

.footer-tagline {
  font-size: .85rem;
  letter-spacing: .2em;
  text-transform: capitalize;
  color: rgba(255, 255, 255, .3);
}

.footer-col h4 {
  font-family: var(--ff-body);
  font-size: .68rem;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 20px;
}

.footer-col a {
  font-size: .85rem;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 12px;
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: var(--accent-light);
}

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

.footer-bottom p {
  font-size: .85rem;
  color: rgba(255, 255, 255, .25);
}

.footer-social {
  display: flex;
  gap: 20px;
}

.footer-social a {
  font-size: .68rem;
  letter-spacing: .15em;
  color: rgba(255, 255, 255, .35);
  transition: color var(--transition-fast);
}

.footer-social a:hover {
  color: var(--accent-light);
}

/* ── ANIMATIONS ──────────────────────────────── */
@keyframes flame-sway {

  0%,
  100% {
    transform: translateX(-50%) rotate(-4deg) scaleX(.95);
  }

  50% {
    transform: translateX(-50%) rotate(4deg) scaleX(1.05);
  }
}

@keyframes glow-pulse {

  0%,
  100% {
    opacity: .7;
    transform: translateX(-50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.3);
  }
}

@keyframes flicker {

  0%,
  100% {
    opacity: 1;
  }

  40% {
    opacity: .7;
  }

  60% {
    opacity: .9;
  }

  80% {
    opacity: .6;
  }
}

@keyframes drift {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(40px, -30px) scale(1.1);
  }

  66% {
    transform: translate(-20px, 20px) scale(.9);
  }
}

@keyframes smoke-rise {
  0% {
    transform: translateY(0) scaleX(1);
    opacity: 0;
  }

  20% {
    opacity: .6;
  }

  100% {
    transform: translateY(-120px) scaleX(3);
    opacity: 0;
  }
}

@keyframes scroll-pulse {
  0% {
    left: -100%;
  }

  100% {
    left: 200%;
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes drift-particle {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(30px, -40px) scale(1.1);
  }

  50% {
    transform: translate(-20px, 30px) scale(.9);
  }

  75% {
    transform: translate(40px, 10px) scale(1.05);
  }
}

@keyframes spin-orbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse-ring {

  0%,
  100% {
    opacity: .4;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: .8;
    transform: translate(-50%, -50%) scale(1.03);
  }
}

@keyframes fadeInResult {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes mist-float {

  0%,
  100% {
    transform: translateX(0) scale(1);
    opacity: .4;
  }

  50% {
    transform: translateX(8px) scale(1.3);
    opacity: .1;
  }
}

/* ── REVEAL ANIMATIONS ───────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal-up.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: .15s;
}

.delay-2 {
  transition-delay: .3s;
}

.delay-3 {
  transition-delay: .45s;
}

.hero .reveal-up,
.hero2 .reveal-up {
  animation: revealUp .9s ease forwards;
}

.hero .reveal-right,
.hero2 .reveal-right {
  animation: revealRight .9s ease forwards;
}

.hero .delay-1,
.hero2 .delay-1 {
  animation-delay: .2s;
  opacity: 0;
}

.hero .delay-2,
.hero2 .delay-2 {
  animation-delay: .4s;
  opacity: 0;
}

.hero .delay-3,
.hero2 .delay-3 {
  animation-delay: .6s;
  opacity: 0;
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes revealRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* ── RTL & RESPONSIVE ────────────────────────── */
[dir="rtl"] .hero-content,
[dir="rtl"] .hero2-left {
  padding: 60px 80px 60px 0;
}

[dir="rtl"] .hero-candles {
  left: 0;
  right: auto;
  padding: 0 0 60px 60px;
}

[dir="rtl"] .scroll-hint {
  left: auto;
  right: 80px;
}

[dir="rtl"] .story-stat {
  left: auto;
  right: -30px;
}

[dir="rtl"] .story-stat.stat-right {
  right: auto;
  left: -30px;
}

[dir="rtl"] .card-large {
  flex-direction: row-reverse;
}

[dir="rtl"] .newsletter-inner::before {
  right: auto;
  left: -60px;
}

[dir="rtl"] .reveal-right {
  transform: translateX(-60px);
}

[dir="rtl"] .mc-arrow {
  right: auto;
  left: 24px;
  transform: translateX(8px) rotate(180deg);
}

[dir="rtl"] .mood-card:hover .mc-arrow {
  transform: translateX(0) rotate(180deg);
}

@media (max-width: 1024px) {
  .container {
    padding: 0 28px;
  }

  .section {
    padding: 80px 0;
  }

  .nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .theme-toggle {
    display: flex;
  }

  .rtl-toggle {
    display: flex;
  }

  .cart-btn {
    display: none;
  }

  .login-btn {
    display: none;
  }

  .hero-content,
  .hero2-left {
    padding: 40px 0 40px 28px;
    max-width: 480px;
  }

  .hero-candles {
    padding: 0 28px 40px 0;
    gap: 14px;
  }

  .scroll-hint {
    left: 28px;
  }

  .story-grid,
  .ritual-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .story-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .collections-grid,
  .mood-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 280px);
  }

  .card-large,
  .gift-feature,
  .gift-personalise {
    grid-column: 1 / -1;
  }

  .craft-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .newsletter-inner,
  .nl2-inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 40px;
    text-align: center;
  }

  .newsletter-deco {
    display: flex;
    justify-content: center;
  }

  .nl-candle {
    width: 160px;
    height: 220px;
  }

  .nl2-flame-group {
    width: 100%;
    max-width: 300px;
    height: 300px;
    margin: 0 auto;
  }

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

  .footer-brand {
    grid-column: span 2;
  }

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

  .hero2-right {
    min-height: 400px;
    padding: 40px;
  }

  .profile-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .container {
    padding: 0 20px;
  }

  .section {
    padding: 60px 0;
  }

  .hero,
  .hero2 {
    flex-direction: column;
    align-items: flex-start;
    min-height: 100svh;
  }

  .hero-content,
  .hero2-left {
    padding: 24px 20px 0;
    max-width: 100%;
  }

  .hero-cta,
  .hero2-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-candles {
    position: relative;
    width: 100%;
    justify-content: center;
    padding: 20px 20px 0;
    margin-top: auto;
  }

  .collections-grid,
  .gifts-grid,
  .mood-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .card-large,
  .gift-feature,
  .gift-personalise {
    grid-column: span 1;
  }

  .craft-steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .newsletter-inner {
    padding: 32px 24px;
  }

  .nl-candle {
    width: 140px;
    height: 200px;
  }

  .nl-form,
  .nl2-form {
    flex-direction: column;
  }

  .nl2-flame-group {
    width: 100%;
    max-width: 280px;
    height: 280px;
    margin: 0 auto;
  }

  .quiz-options {
    grid-template-columns: 1fr;
  }

  .mood-card {
    min-height: 220px;
  }

  .mc-candle {
    width: 100px;
    height: 120px;
  }

  .review-cards {
    grid-template-columns: 1fr;
  }

  .review-card {
    padding: 20px;
  }

  .rc-text {
    font-size: 0.85rem;
  }

  .rs-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .rs-rating {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 400px) {
  .header-inner {
    padding: 0 12px;
    gap: 8px;
  }

  .container {
    padding: 0 16px;
  }

  .logo {
    gap: 4px;
  }

  .logo-svg {
    width: 18px;
    height: 18px;
  }

  .logo-text {
    font-size: 1.2rem;
  }

  .header-controls {
    gap: 6px;
  }

  .ctrl-btn {
    padding: 6px 10px;
    font-size: 0.65rem;
  }

  .rtl-toggle span {
    display: none;
  }

  .hamburger {
    padding: 6px;
  }

  .nl2-flame-group {
    max-width: 250px;
    height: 250px;
  }

  .nl-candle {
    width: 120px;
    height: 180px;
  }

  .seasonal-product-image img {
    height: 160px;
  }

  .hero-candle-img {
    height: 160px;
  }

  .gift-set-img {
    height: 100px;
  }

  .gcv-candle-img {
    height: 80px;
  }

  .hamburger span {
    width: 18px;
  }

  .hero2-left {
    padding: 60px 16px 40px;
  }

  .hero2-title {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  }

  .hero2-sub {
    font-size: 0.95rem;
  }
}

@media (max-width: 360px) {
  .header-inner {
    padding: 0 10px;
    gap: 6px;
  }

  .container {
    padding: 0 14px;
  }

  .logo {
    gap: 3px;
  }

  .logo-svg {
    width: 16px;
    height: 16px;
  }

  .logo-text {
    font-size: 1rem;
    letter-spacing: 0;
  }

  .header-controls {
    gap: 4px;
  }

  .ctrl-btn {
    padding: 5px 8px;
    font-size: 0.6rem;
  }

  .theme-toggle {
    padding: 5px 6px;
  }

  .hamburger {
    padding: 4px;
  }

  .hamburger span {
    width: 16px;
    height: 1px;
  }
}


/* =============================================
   ABOUT & CONTACT PAGES — Additional Styles
   ============================================= */

/* ── ACTIVE NAV LINK ────────────────────────── */
.nav-link.active-page {
  color: var(--accent);
}

.nav-link.active-page::after {
  width: 100%;
}

/* Mobile Active State */
.mobile-nav-toggle.active-page {
  color: var(--accent);
}

.mobile-nav-sublink.active-page {
  color: var(--accent);
  font-weight: 400;
}

/* ── PAGE HERO (shared) ─────────────────────── */
.page-hero {
  position: relative;
  min-height: 34vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--header-h);
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-2) 100%);
  background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23b5803a" fill-opacity="0.05"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
  background-size: 60px 60px, auto;
  background-attachment: fixed;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(181, 128, 58, .12) 1px, transparent 1px),
    linear-gradient(rgba(181, 128, 58, .08), rgba(181, 128, 58, .03)),
    radial-gradient(circle at 20% 50%, rgba(181, 128, 58, .12) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(181, 128, 58, .08) 0%, transparent 50%);
  background-size: 40px 100%, 100% 100%, 100% 100%, 100% 100%;
  opacity: 0.8;
}

.page-hero-bg::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(181, 128, 58, .15), transparent 70%);
  border-radius: 50%;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  opacity: 1;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(-50%);
  }

  50% {
    transform: translateY(-60%);
  }
}

.page-hero .container {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  justify-content: center;
  width: 100%;
}

.page-hero-content {
  max-width: 700px;
  padding: 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-hero-title {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.page-hero-title em {
  font-style: italic;
  color: var(--accent);
}

.page-hero-subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--fg-2);
  max-width: 100%;
  margin: 0 auto;
}

.page-hero-candle {
  position: absolute;
  right: 10%;
  bottom: 0;
  display: none;
  align-items: flex-end;
  gap: 20px;
  padding-bottom: 0;
  z-index: 2;
}

[data-theme="dark"] .page-hero {
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-2) 100%);
}

[data-theme="dark"] .page-hero-bg {
  background-image:
    linear-gradient(90deg, rgba(212, 168, 92, .08) 1px, transparent 1px),
    linear-gradient(rgba(212, 168, 92, .06), rgba(212, 168, 92, .02)),
    radial-gradient(circle at 20% 50%, rgba(212, 168, 92, .1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(212, 168, 92, .06) 0%, transparent 50%);
}

[data-theme="dark"] .page-hero-bg::before {
  background: radial-gradient(circle, rgba(212, 168, 92, .12), transparent 70%);
}

/* Unified page-hero variants */
.page-hero--quiz,
.page-hero--shop {
  /* Uses same styles as .page-hero */
}

.page-hero--contact {
  /* Uses same styles as .page-hero */
}

/* ── ABOUT: ORIGIN ──────────────────────────── */
.about-origin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-origin-visual {
  position: relative;
}

.origin-img-frame {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: visible;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.origin-scene {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 20px;
  padding: 48px 32px 56px;
}

.origin-candles {
  display: flex;
  align-items: flex-end;
  gap: 16px;
}

.oc {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.oc-1 .candle-body {
  width: 30px;
  height: 110px;
}

.oc-2 .candle-body {
  width: 44px;
  height: 150px;
}

.oc-3 .candle-body {
  width: 36px;
  height: 90px;
}

.origin-light-pool {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 50px;
  background: radial-gradient(ellipse, rgba(181, 128, 58, .14), transparent 70%);
  border-radius: 50%;
}

.origin-frame-border {
  position: absolute;
  inset: -12px;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius-lg) + 4px);
  pointer-events: none;
}

.origin-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  text-align: center;
  box-shadow: 0 8px 32px var(--glow);
}

.ob-num {
  display: block;
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 4px;
}

.ob-label {
  display: block;
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  opacity: .85;
}

.about-para {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--fg-2);
  margin-bottom: 20px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.about-stat-item {
  text-align: center;
}

.asi-num {
  display: block;
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.asi-label {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* ── ABOUT: VALUES ──────────────────────────── */
.about-values {
  background: var(--bg-2);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.value-card:hover {
  box-shadow: 0 12px 40px var(--shadow);
  transform: translateY(-4px);
}

.vc-icon {
  color: var(--accent);
  margin-bottom: 20px;
}

.vc-title {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 12px;
}

.vc-desc {
  font-size: .95rem;
  line-height: 1.8;
  color: var(--fg-muted);
}

/* ── ABOUT: TEAM ────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  text-align: center;
  padding: 36px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: box-shadow var(--transition), transform var(--transition);
}

.team-card:hover {
  box-shadow: 0 10px 36px var(--shadow);
  transform: translateY(-4px);
}

.tc-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 1px solid var(--border);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--accent);
  transition: border-color var(--transition);
}

.team-card:hover .tc-avatar {
  border-color: var(--accent);
}

.tc-avatar-inner {
  color: var(--fg-muted);
}

.tc-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.tc-name {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 4px;
}

.tc-role {
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.tc-bio {
  font-size: .95rem;
  line-height: 1.8;
  color: var(--fg-muted);
}

/* ── ABOUT: PROCESS TIMELINE ────────────────── */
.about-process {
  background: var(--bg);
}

.process-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 60px;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: var(--border);
}

.pt-item {
  position: relative;
  margin-bottom: 56px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.pt-item:last-child {
  margin-bottom: 0;
}

.pt-dot {
  position: absolute;
  left: -48px;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--accent);
  flex-shrink: 0;
  transition: background var(--transition);
}

.pt-item:hover .pt-dot {
  background: var(--accent);
}

.pt-item::before {
  content: attr(data-num);
  position: absolute;
  left: -100px;
  top: 4px;
  font-family: var(--ff-display);
  font-size: .75rem;
  letter-spacing: .12em;
  color: var(--fg-muted);
  opacity: .5;
}

.pt-title {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 10px;
}

.pt-desc {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--fg-2);
}

/* ── ABOUT: SUSTAINABILITY ──────────────────── */
.about-sustain {
  background: var(--bg-2);
}

.sustain-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sustain-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.sp-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.sp-item:hover {
  border-color: var(--accent);
  box-shadow: 0 6px 24px var(--shadow);
}

.sp-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  color: var(--accent);
  transition: color var(--transition), transform var(--transition);
}

.sp-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--accent);
  color: var(--accent);
}

.sp-item:hover .sp-icon {
  color: var(--accent-dark);
  transform: scale(1.1);
}

.sp-title {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 6px;
}

.sp-desc {
  font-size: .85rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

[data-theme="dark"] .sp-icon svg {
  stroke: var(--accent-light);
  color: var(--accent-light);
}

[data-theme="dark"] .sp-item:hover .sp-icon {
  color: var(--accent);
}

/* ── ABOUT: CTA STRIP ───────────────────────── */
.about-cta-strip {
  background: var(--fg);
  padding: 80px 0;
}

.acta-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.acta-candle {
  flex-shrink: 0;
}

.acta-content {
  flex: 1;
}

.acta-title {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--bg);
  line-height: 1.15;
  margin-bottom: 16px;
}

.acta-title em {
  color: var(--accent-light);
  font-style: italic;
}

.acta-sub {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.75;
  margin-bottom: 32px;
}

.acta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── CONTACT: GRID ──────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

.contact-form-title {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  color: var(--fg);
  line-height: 1.15;
  margin: 12px 0 36px;
}

.contact-form-title em {
  font-style: italic;
  color: var(--accent);
}

/* ── CONTACT FORM ───────────────────────────── */
.cf-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cf-row {
  display: flex;
  gap: 20px;
}

.cf-row--half>.cf-field {
  flex: 1;
}

.cf-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.cf-label {
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.cf-input {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-family: var(--ff-body);
  font-size: .9rem;
  font-weight: 300;
  color: var(--fg);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
  appearance: none;
}

.cf-input::placeholder {
  color: var(--fg-muted);
  opacity: .6;
}

.cf-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--glow);
}

.cf-input.error {
  border-color: #c0392b;
}

.cf-textarea {
  resize: vertical;
  min-height: 140px;
}

.cf-select-wrap {
  position: relative;
}

.cf-select {
  cursor: pointer;
  padding-right: 40px;
}

.cf-select-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--fg-muted);
  pointer-events: none;
  font-size: .75rem;
  transition: color var(--transition-fast);
}

.cf-select:focus~.cf-select-arrow {
  color: var(--accent);
}

.cf-error {
  font-size: .7rem;
  color: #c0392b;
  letter-spacing: .05em;
  display: none;
}

.cf-field.show-error .cf-error {
  display: block;
}

.cf-field.show-error .cf-input {
  border-color: #c0392b;
}

/* Checkbox */
.cf-field--check {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}

.cf-check-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .82rem;
  color: var(--fg-2);
  line-height: 1.6;
  cursor: pointer;
  flex: 1;
}

.cf-checkbox {
  display: none;
}

.cf-checkmark {
  width: 18px;
  height: 18px;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: var(--bg-2);
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.cf-checkbox:checked+.cf-checkmark {
  background: var(--accent);
  border-color: var(--accent);
}

.cf-checkbox:checked+.cf-checkmark::after {
  content: '';
  display: block;
  width: 10px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
}

.cf-submit {
  align-self: flex-start;
  gap: 10px;
}

.cf-success {
  display: none;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-2);
  border: 1px solid var(--accent);
  border-radius: var(--radius-lg);
  color: var(--fg);
}

.cf-success.show {
  display: flex;
}

.cf-success-icon {
  font-size: 1.4rem;
  color: var(--accent);
}

.cf-success strong {
  display: block;
  margin-bottom: 4px;
  font-size: .9rem;
}

.cf-success p {
  font-size: .8rem;
  color: var(--fg-muted);
}

/* ── CONTACT: INFO PANEL ────────────────────── */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ci-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.ci-card:first-child {
  border-top: 1px solid var(--border);
}

.ci-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.ci-text h4 {
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 6px;
}

.ci-text p {
  font-size: .98rem;
  color: var(--fg-2);
  line-height: 1.7;
}

.ci-text a {
  color: var(--accent);
  transition: opacity var(--transition-fast);
}

.ci-text a:hover {
  opacity: .75;
}

.ci-note {
  font-size: .85rem !important;
  color: var(--fg-muted) !important;
  margin-top: 4px;
}

.ci-social {
  padding-top: 28px;
}

.ci-social-label {
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.ci-social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.ci-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: .72rem;
  letter-spacing: .08em;
  color: var(--fg-2);
  transition: border-color var(--transition-fast), color var(--transition-fast), background var(--transition-fast);
}

.ci-social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--bg-2);
}

/* ── CONTACT: FAQ ───────────────────────────── */
.contact-faq {
  background: var(--bg-2);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  font-family: var(--ff-body);
  font-size: .88rem;
  font-weight: 400;
  color: var(--fg);
  text-align: left;
  transition: color var(--transition-fast);
  cursor: pointer;
}

.faq-q:hover {
  color: var(--accent);
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform var(--transition);
  font-weight: 300;
}

.faq-item[data-open="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.25, .46, .45, .94), padding .3s ease;
}

.faq-item[data-open="true"] .faq-a {
  max-height: 400px;
  padding-bottom: 20px;
}

.faq-a p {
  font-size: .96rem;
  line-height: 1.85;
  color: var(--fg-muted);
}

/* ── RESPONSIVE: TABLET (max 1024px) ─────────── */
@media (max-width: 1024px) {
  .page-hero-content {
    padding: 40px 0;
  }

  .page-hero-candle {
    right: 4%;
  }

  .about-origin-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-origin-visual {
    max-width: 420px;
    margin: 0 auto;
  }

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

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

  .sustain-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .acta-inner {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .acta-actions {
    justify-content: center;
  }

  .acta-candle {
    max-width: 280px;
    width: 100%;
    height: auto;
    margin: 0 auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .process-timeline {
    padding-left: 40px;
  }

  .pt-item::before {
    left: -72px;
    font-size: .65rem;
  }
}

/* ── RESPONSIVE: MOBILE (max 767px) ─────────── */
@media (max-width: 767px) {
  .page-hero {
    min-height: 32vh;
    flex-direction: column;
    padding-bottom: 20px;
  }

  .page-hero-content {
    padding: 32px 20px 16px;
    width: 100%;
  }

  .page-hero-title {
    font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  }

  .page-hero-candle {
    position: relative;
    right: auto;
    bottom: auto;
    justify-content: center;
    width: 100%;
    padding-top: 0;
    display: none;
  }

  .about-origin-grid {
    gap: 32px;
  }

  .about-stats {
    flex-direction: row;
    gap: 20px;
    justify-content: space-between;
  }

  .asi-num {
    font-size: 1.6rem;
  }

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

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

  .process-timeline {
    padding-left: 32px;
  }

  .pt-item {
    gap: 16px;
  }

  .pt-item::before {
    display: none;
  }

  .pt-dot {
    left: -24px;
  }

  .sustain-pillars {
    grid-template-columns: 1fr;
  }

  .acta-candle {
    max-width: 220px;
  }

  .cf-row {
    flex-direction: column;
  }

  .cf-field--check {
    flex-direction: column;
    gap: 8px;
  }

  .contact-info {
    margin-top: 0;
  }

  .origin-badge {
    right: -8px;
    bottom: -16px;
    padding: 14px 18px;
  }

  .ob-num {
    font-size: 1.4rem;
  }
}


/* ============================================================
   AUTH PAGES — LOGIN & SIGNUP
   login.html / signup.html
   ============================================================ */

/* ── AUTH PAGE LAYOUT ─────────────────────────── */
.auth-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;

}

/* ── DECORATIVE PANEL (left) ──────────────────── */
.auth-panel--deco {
  position: relative;
  background: var(--fg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}

[data-theme="dark"] .auth-panel--deco {
  background: var(--bg-card);
  border-right: 1px solid var(--border);
}

/* Animated blobs */
.auth-deco-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.auth-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.18;
  animation: authBlobDrift 10s ease-in-out infinite alternate;
}

.auth-blob.blob-a {
  width: 340px;
  height: 340px;
  background: var(--accent);
  top: -80px;
  left: -80px;
  animation-duration: 11s;
}

.auth-blob.blob-b {
  width: 260px;
  height: 260px;
  background: var(--accent-light);
  bottom: -60px;
  right: -40px;
  animation-duration: 14s;
  animation-delay: -3s;
}

.auth-blob.blob-c {
  width: 180px;
  height: 180px;
  background: var(--cream);
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  animation-duration: 9s;
  animation-delay: -6s;
}

@keyframes authBlobDrift {
  0% {
    transform: scale(1) translate(0, 0);
  }

  100% {
    transform: scale(1.15) translate(20px, 30px);
  }
}

/* Deco content */
.auth-deco-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 60px 48px;
  text-align: center;
}

/* Candles in deco panel */
.auth-deco-candles {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  justify-content: center;
}

.auth-candle {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.auth-candle .candle-body {
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  border-radius: 4px 4px 2px 2px;
  position: relative;
}

.auth-candle--tall .candle-body {
  width: 28px;
  height: 120px;
}

.auth-candle--med .candle-body {
  width: 36px;
  height: 80px;
  background: linear-gradient(135deg, var(--cream), #c8a87e);
}

.auth-candle--short .candle-body {
  width: 44px;
  height: 52px;
  background: linear-gradient(135deg, #d4bfa0, var(--accent-dark));
}

/* Candle flame (reuse existing) */
.auth-candle .candle-flame {
  position: relative;
  width: 12px;
  height: 22px;
  margin-bottom: 2px;
}

.auth-candle .flame-inner,
.auth-candle .flame-outer,
.auth-candle .flame-glow {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  border-radius: 50% 50% 20% 20%;
}

.auth-candle .flame-outer {
  width: 12px;
  height: 20px;
  background: linear-gradient(to top, #f5c842, #f07f16, #e84d0e);
  animation: flicker 2s infinite alternate ease-in-out;
}

.auth-candle .flame-inner {
  width: 6px;
  height: 12px;
  background: linear-gradient(to top, #fff6c0, #ffe080);
  bottom: 2px;
  animation: flicker 1.5s infinite alternate-reverse ease-in-out;
}

.auth-candle .flame-glow {
  width: 24px;
  height: 24px;
  background: radial-gradient(circle, rgba(245, 200, 66, .45), transparent 70%);
  bottom: -4px;
  border-radius: 50%;
  animation: flicker 2.2s infinite alternate ease-in-out;
}

/* Quote */
.auth-quote-mark {
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 12px;
}

.auth-quote {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
  font-style: normal;
}

[data-theme="dark"] .auth-quote {
  color: var(--fg);
}

.auth-quote em {
  color: var(--accent-light);
  font-style: italic;
}

.auth-quote-brand {
  margin-top: 16px;
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
}

[data-theme="dark"] .auth-quote-brand {
  color: var(--fg-muted);
}

/* Member perks (signup panel) */
.auth-perks {
  text-align: left;
  width: 100%;
  max-width: 280px;
}

.auth-perks-label {
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 20px;
}

.auth-perks-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.auth-perks-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-body);
  font-size: .98rem;
  font-weight: 300;
  color: rgba(255, 255, 255, .82);
  line-height: 1.5;
}

[data-theme="dark"] .auth-perks-list li {
  color: var(--fg-2);
}

.perk-icon {
  font-size: 1rem;
  flex-shrink: 0;
}

/* ── FORM PANEL (right) ───────────────────────── */
.auth-panel--form {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  background: var(--bg);
  overflow-y: auto;
}

.auth-form-wrap {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Mobile logo (hidden on desktop) */
.auth-mobile-logo {
  display: none;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--fg);
  letter-spacing: .04em;
}

.auth-mobile-logo svg {
  color: var(--accent);
}

/* Auth header text */
.auth-header-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.auth-title {
  font-family: var(--ff-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--fg);
}

.auth-title em {
  color: var(--accent);
  font-style: italic;
}

.auth-subtitle {
  font-size: .85rem;
  font-weight: 300;
  color: var(--fg-muted);
  margin-top: 6px;
}

.auth-link {
  color: var(--accent);
  font-weight: 400;
  transition: opacity var(--transition-fast);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.auth-link:hover {
  opacity: .72;
}

/* ── SOCIAL BUTTONS ───────────────────────────── */
.auth-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 12px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  font-family: var(--ff-body);
  font-size: .82rem;
  font-weight: 400;
  letter-spacing: .04em;
  color: var(--fg-2);
  transition: border-color var(--transition-fast), background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  cursor: pointer;
}

.social-btn:hover {
  border-color: var(--accent);
  color: var(--fg);
  background: var(--bg-2);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--shadow);
}

/* ── DIVIDER ──────────────────────────────────── */
.auth-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--fg-muted);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ── AUTH FORM FIELDS ─────────────────────────── */
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.af-row {
  display: flex;
  gap: 14px;
}

.af-row .af-field {
  flex: 1;
}

.af-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.af-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.af-forgot {
  font-size: .7rem;
  color: var(--accent);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 300;
  transition: opacity var(--transition-fast);
}

.af-forgot:hover {
  opacity: .7;
}

.af-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.af-icon {
  position: absolute;
  left: 14px;
  color: var(--fg-muted);
  pointer-events: none;
  transition: color var(--transition-fast);
  flex-shrink: 0;
}

.af-input {
  width: 100%;
  padding: 13px 42px 13px 42px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: .88rem;
  font-weight: 300;
  color: var(--fg);
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
  appearance: none;
}

.af-input::placeholder {
  color: var(--fg-muted);
  opacity: .55;
}

.af-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--glow);
  background: var(--bg-card);
}

.af-input:focus~.af-icon,
.af-input-wrap:focus-within .af-icon {
  color: var(--accent);
}

.af-field.af-error-active .af-input {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, .12);
}

.af-field.af-valid .af-input {
  border-color: #27ae60;
  box-shadow: 0 0 0 3px rgba(39, 174, 96, .1);
}

/* Password toggle eye */
.af-eye {
  position: absolute;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 4px;
  color: var(--fg-muted);
  cursor: pointer;
  transition: color var(--transition-fast);
}

.af-eye:hover {
  color: var(--accent);
}

/* Error messages */
.af-error {
  font-size: .7rem;
  color: #c0392b;
  letter-spacing: .04em;
  display: none;
  align-items: center;
  gap: 5px;
}

.af-field.af-error-active .af-error {
  display: flex;
}

.af-error--check {
  display: none;
}

.af-field.af-error-active .af-error--check {
  display: flex;
}

/* Checkbox row */
.af-field--check {
  flex-direction: row;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
}

.af-check-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .82rem;
  font-weight: 300;
  color: var(--fg-2);
  line-height: 1.6;
  cursor: pointer;
  flex: 1;
}

.af-checkbox {
  display: none;
}

.af-checkmark {
  width: 17px;
  height: 17px;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: var(--bg-2);
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.af-checkbox:checked+.af-checkmark {
  background: var(--accent);
  border-color: var(--accent);
}

.af-checkbox:checked+.af-checkmark::after {
  content: '';
  display: block;
  width: 9px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
}

/* ── PASSWORD STRENGTH ────────────────────────── */
.pw-strength {
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.pw-strength.visible {
  display: flex;
}

.pw-bars {
  display: flex;
  gap: 4px;
  flex: 1;
}

.pw-bar {
  flex: 1;
  height: 3px;
  border-radius: 2px;
  background: var(--border);
  transition: background .3s ease;
}

.pw-bar.active[data-level="1"] {
  background: #e74c3c;
}

.pw-bar.active[data-level="2"] {
  background: #e67e22;
}

.pw-bar.active[data-level="3"] {
  background: #f1c40f;
}

.pw-bar.active[data-level="4"] {
  background: #27ae60;
}

.pw-label {
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  min-width: 44px;
  transition: color .3s ease;
}

/* ── SUBMIT BUTTON ────────────────────────────── */
.auth-submit {
  width: 100%;
  justify-content: center;
  padding: 15px 32px;
  font-size: .82rem;
  position: relative;
  margin-top: 4px;
}

.auth-submit.loading .btn-text {
  opacity: 0;
}

.auth-submit.loading .btn-loader {
  opacity: 1;
}

.btn-loader {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, .35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
  opacity: 0;
  transition: opacity .2s;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ── SUCCESS MESSAGE ──────────────────────────── */
.auth-success {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--bg-2);
  border: 1px solid #27ae60;
  border-radius: var(--radius);
  font-size: .84rem;
  color: #27ae60;
  animation: fadeSlideUp .4s ease forwards;
}

.auth-success.show {
  display: flex;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* ── LEGAL FOOTER ─────────────────────────────── */
.auth-legal {
  font-size: .73rem;
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.7;
  text-align: center;
}

/* ── SOCIAL TOAST ─────────────────────────────── */
.auth-toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--fg);
  color: var(--bg);
  padding: 12px 24px;
  border-radius: 100px;
  font-size: .8rem;
  letter-spacing: .06em;
  white-space: nowrap;
  z-index: 9999;
  opacity: 0;
  transition: opacity .3s ease, transform .3s ease;
  pointer-events: none;
}

[data-theme="dark"] .auth-toast {
  background: var(--fg);
  color: var(--bg);
}

.auth-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── RESPONSIVE: TABLET ───────────────────────── */
@media (max-width: 1024px) {
  .auth-page {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }

  .auth-panel--deco {
    min-height: 240px;
    padding: 40px 24px;
  }

  .auth-deco-content {
    flex-direction: row;
    gap: 32px;
    padding: 24px 32px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .auth-deco-candles {
    gap: 14px;
  }

  .auth-candle--tall .candle-body {
    height: 80px;
  }

  .auth-candle--med .candle-body {
    height: 54px;
  }

  .auth-candle--short .candle-body {
    height: 36px;
  }

  .auth-quote {
    font-size: 1.2rem;
  }

  .auth-perks {
    max-width: 240px;
  }

  .auth-perks-list {
    gap: 10px;
  }

  .auth-panel--form {
    padding: 48px 32px;
  }

  .auth-form-wrap {
    max-width: 480px;
  }
}

/* ── RESPONSIVE: MOBILE ───────────────────────── */
@media (max-width: 767px) {
  .auth-page {
    grid-template-columns: 1fr;

  }

  .auth-panel--deco {
    display: none;
  }

  .auth-panel--form {
    padding: 32px 24px 48px;
    min-height: calc(100vh - var(--header-h));
    align-items: flex-start;
  }

  .auth-form-wrap {
    max-width: 100%;
    gap: 22px;
    padding-top: 8px;
  }

  .auth-mobile-logo {
    display: flex;
  }

  .af-row {
    flex-direction: column;
    gap: 18px;
  }

  .auth-title {
    font-size: 1.9rem;
  }

  .auth-submit {
    padding: 14px;
  }

  .social-btn {
    font-size: .79rem;
    gap: 10px;
  }
}

/* ── FLICKER KEYFRAME (if not already defined) ── */
@keyframes flicker {

  0%,
  100% {
    transform: translateX(-50%) scaleX(1) scaleY(1) rotate(0deg);
    opacity: 1;
  }

  25% {
    transform: translateX(-50%) scaleX(.94) scaleY(1.06) rotate(-1deg);
    opacity: .95;
  }

  50% {
    transform: translateX(-50%) scaleX(1.04) scaleY(.96) rotate(1deg);
    opacity: .9;
  }

  75% {
    transform: translateX(-50%) scaleX(.97) scaleY(1.03) rotate(-.5deg);
    opacity: .97;
  }
}


/* ==============================================
   AUTH PAGES — Login & Signup
   (Appended to style.css)
   ============================================== */

/* ── AUTH PAGE BODY ──────────────────────────── */
body.auth-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── AUTH MAIN LAYOUT ────────────────────────── */
.auth-main {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--header-h));
}

/* ── DECORATIVE PANEL ────────────────────────── */
.auth-panel--deco {
  position: relative;
  background: var(--fg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 48px;
}

[data-theme="dark"] .auth-panel--deco {
  background: var(--bg-card);
  border-right: 1px solid var(--border);
}

.auth-deco-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.auth-panel--deco .wax-blob {
  opacity: 0.12;
}

[data-theme="dark"] .auth-panel--deco .wax-blob {
  opacity: 0.06;
}

.auth-deco-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  text-align: center;
  max-width: 420px;
}

/* ── AUTH CANDLES (reuse hero candle styles) ─── */
.auth-candles {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  justify-content: center;
}

/* ── DECO TEXT ───────────────────────────────── */
.auth-deco-eyebrow {
  font-family: var(--ff-body);
  font-size: .78rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 16px;
}

.auth-deco-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: #f0e8d8;
  margin-bottom: 16px;
}

[data-theme="dark"] .auth-deco-title {
  color: var(--fg);
}

.auth-deco-title em {
  font-style: italic;
  color: var(--accent-light);
}

.auth-deco-sub {
  font-size: .98rem;
  line-height: 1.8;
  color: rgba(240, 232, 216, 0.65);
  margin-bottom: 0;
}

[data-theme="dark"] .auth-deco-sub {
  color: var(--fg-muted);
}

/* Signup deco badges */
.auth-deco-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 8px;
}

.auth-badge {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid rgba(212, 168, 92, .3);
  border-radius: 100px;
  font-size: .77rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent-light);
}

/* Signup perks list */
.auth-perks {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
  margin-top: 8px;
}

.auth-perk {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.auth-perk-icon {
  color: var(--accent-light);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.auth-perk strong {
  display: block;
  font-family: var(--ff-body);
  font-size: .92rem;
  font-weight: 400;
  letter-spacing: .04em;
  color: rgba(240, 232, 216, .9);
  margin-bottom: 3px;
}

[data-theme="dark"] .auth-perk strong {
  color: var(--fg-2);
}

.auth-perk p {
  font-size: .86rem;
  color: rgba(240, 232, 216, .5);
  line-height: 1.6;
}

[data-theme="dark"] .auth-perk p {
  color: var(--fg-muted);
}

/* ── FORM PANEL ──────────────────────────────── */
.auth-panel--form {
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 40px;
  overflow-y: auto;
}

.auth-form-wrap {
  width: 100%;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Mobile logo — hidden on desktop */
.auth-logo-mobile {
  display: none;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--fg);
  text-decoration: none;
}

.auth-logo-mobile .logo-svg {
  color: var(--accent);
  animation: flicker 3s infinite;
}

/* ── AUTH HEADER ─────────────────────────────── */
.auth-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.auth-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--fg);
  margin: 8px 0 12px;
}

.auth-title em {
  font-style: italic;
  color: var(--accent);
}

.auth-subtitle {
  font-size: .95rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

.auth-switch-link {
  color: var(--accent);
  transition: opacity var(--transition-fast);
  font-weight: 400;
}

.auth-switch-link:hover {
  opacity: .75;
}

/* ── SOCIAL BUTTONS ──────────────────────────── */
.auth-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.auth-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px 20px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: .8rem;
  font-weight: 400;
  letter-spacing: .06em;
  color: var(--fg-2);
  transition: border-color var(--transition-fast), background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
  cursor: pointer;
}

.auth-social-btn:hover {
  border-color: var(--accent);
  color: var(--fg);
  background: var(--bg-card);
  transform: translateY(-1px);
}

/* ── DIVIDER ─────────────────────────────────── */
.auth-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--fg-muted);
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ── AUTH FORM ───────────────────────────────── */
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Inline row for name fields */
.auth-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* ── FIELD ───────────────────────────────────── */
.auth-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  position: relative;
}

.auth-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .82rem;
  font-weight: 400;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.auth-forgot {
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: none;
  color: var(--accent);
  transition: opacity var(--transition-fast);
}

.auth-forgot:hover {
  opacity: .75;
}

/* ── INPUT WRAPPER ───────────────────────────── */
.auth-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.auth-input-icon {
  position: absolute;
  left: 14px;
  color: var(--fg-muted);
  pointer-events: none;
  flex-shrink: 0;
  transition: color var(--transition-fast);
}

.auth-input {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 42px 13px 40px;
  font-family: var(--ff-body);
  font-size: .88rem;
  font-weight: 300;
  color: var(--fg);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.auth-input::placeholder {
  color: var(--fg-muted);
  opacity: .55;
}

.auth-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--glow);
}

.auth-input:focus+.auth-input-icon,
.auth-input-wrap:focus-within .auth-input-icon {
  color: var(--accent);
}

/* error state */
.auth-field.field-error .auth-input {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, .12);
}

.auth-field.field-error .auth-input-icon {
  color: #c0392b;
}

/* ── EYE TOGGLE ──────────────────────────────── */
.auth-eye-btn {
  position: absolute;
  right: 14px;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  transition: color var(--transition-fast);
  cursor: pointer;
}

.auth-eye-btn:hover {
  color: var(--accent);
}

/* ── ERROR MESSAGE ───────────────────────────── */
.auth-error {
  font-size: .8rem;
  color: #c0392b;
  letter-spacing: .04em;
  line-height: 1.4;
  display: none;
}

.auth-field.field-error .auth-error {
  display: block;
}

/* ── PASSWORD STRENGTH ───────────────────────── */
.auth-strength {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 2px;
}

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

.strength-bar {
  flex: 1;
  height: 3px;
  border-radius: 2px;
  background: var(--border);
  transition: background .3s ease;
}

.strength-bar.active-weak {
  background: #e74c3c;
}

.strength-bar.active-fair {
  background: #e67e22;
}

.strength-bar.active-good {
  background: #f1c40f;
}

.strength-bar.active-strong {
  background: #27ae60;
}

.strength-label {
  font-size: .67rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  white-space: nowrap;
  min-width: 44px;
}

/* ── CHECK FIELD ─────────────────────────────── */
.auth-field--check {
  flex-direction: column;
  gap: 6px;
}

.auth-inline-link {
  color: var(--accent);
  transition: opacity var(--transition-fast);
}

.auth-inline-link:hover {
  opacity: .75;
}

/* ── SUBMIT BUTTON ───────────────────────────── */
.auth-submit {
  width: 100%;
  justify-content: center;
  padding: 15px 32px;
  font-size: .8rem;
  gap: 10px;
  margin-top: 4px;
}

.auth-submit .btn-arrow {
  transition: transform var(--transition-fast);
}

.auth-submit:hover .btn-arrow {
  transform: translateX(4px);
}

.auth-submit:disabled {
  opacity: .65;
  pointer-events: none;
}

/* ── SUCCESS MESSAGE ─────────────────────────── */
.auth-success {
  display: none;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--bg-2);
  border: 1px solid var(--accent);
  border-radius: var(--radius-lg);
  color: var(--fg);
  animation: successSlide .4s cubic-bezier(.25, .46, .45, .94) forwards;
}

.auth-success.show {
  display: flex;
}

.auth-success svg {
  color: var(--accent);
  flex-shrink: 0;
}

.auth-success strong {
  display: block;
  font-size: .88rem;
  font-weight: 500;
  margin-bottom: 3px;
  color: var(--fg);
}

.auth-success p {
  font-size: .88rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

@keyframes successSlide {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* ── TERMS ───────────────────────────────────── */
.auth-terms {
  font-size: .82rem;
  color: var(--fg-muted);
  line-height: 1.7;
  text-align: center;
}

.auth-terms a {
  color: var(--accent);
  transition: opacity var(--transition-fast);
}

.auth-terms a:hover {
  opacity: .75;
}

/* ── SIGNUP REVERSED LAYOUT ──────────────────── */
.auth-main--signup .auth-panel--form {
  order: 1;
}

.auth-main--signup .auth-panel--deco {
  order: 2;
}

/* ── RESPONSIVE: TABLET ──────────────────────── */
@media (max-width: 1024px) {
  .auth-main {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .auth-panel--deco {
    display: none;
  }

  .auth-panel--form {
    padding: 48px 32px;
    min-height: calc(100vh - var(--header-h));
    align-items: flex-start;
    padding-top: 48px;
  }

  .auth-logo-mobile {
    display: flex;
  }

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

  .auth-main--signup .auth-panel--form {
    order: unset;
  }

  .auth-main--signup .auth-panel--deco {
    order: unset;
  }
}

/* ── RESPONSIVE: MOBILE ──────────────────────── */
@media (max-width: 767px) {
  .auth-panel--form {
    padding: 32px 20px 48px;
  }

  .auth-title {
    font-size: 2.2rem;
  }

  .auth-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .auth-social {
    gap: 8px;
  }

  .auth-social-btn {
    font-size: .75rem;
    padding: 11px 16px;
  }

  .auth-form-wrap {
    gap: 22px;
  }
}

/* ── RTL SUPPORT ─────────────────────────────── */
[dir="rtl"] .auth-input {
  padding: 13px 40px 13px 42px;
  text-align: right;
}

[dir="rtl"] .auth-input-icon {
  left: auto;
  right: 14px;
}

[dir="rtl"] .auth-eye-btn {
  right: auto;
  left: 14px;
}

[dir="rtl"] .auth-label {
  flex-direction: row-reverse;
}

[dir="rtl"] .auth-forgot {
  order: -1;
}

[dir="rtl"] .auth-perk {
  flex-direction: row-reverse;
  text-align: right;
}

[dir="rtl"] .auth-perks {
  text-align: right;
}

[dir="rtl"] .auth-deco-text {
  text-align: right;
}

[dir="rtl"] .strength-bars {
  flex-direction: row-reverse;
}

[dir="rtl"] .cf-check-label {
  flex-direction: row-reverse;
}

[dir="rtl"] .auth-main--signup .auth-panel--form {
  order: 2;
}

[dir="rtl"] .auth-main--signup .auth-panel--deco {
  order: 1;
}

/* -- HERO MOBILE REFINEMENTS ----------------- */
@media (max-width: 991px) {
  .hero {
    align-items: flex-start;
    padding-top: 10px;
  }

  .hero::before {
    background: linear-gradient(to bottom, var(--bg) 10%, rgba(249, 245, 239, 0.4) 50%, var(--bg) 90%);
  }

  .hero-content {
    margin-left: 0;
    padding: 0 40px;
    text-align: center;
    max-width: 100%;
  }

  .hero-title {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
  }

  .hero2 {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
  }

  .hero2-right {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  .hero2-right::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, var(--bg) 100%);
  }

  .hero2-left {
    position: relative;
    z-index: 2;
    background: transparent;
    padding: 120px 30px 60px;
    text-align: center;
    width: 100%;
    margin-top: auto;
    /* Pushes content towards bottom */
  }

  .hero2-trust {
    justify-content: center;
  }

  .hero2-right .hero2-scent-wheel {
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
  }
}

/* -- HERO MOBILE STACKING ------------------- */
@media (max-width: 991px) {
  .hero {
    flex-direction: column;
  }

  .hero-bg {
    height: 50vh;
    order: 2;
    flex: none;
    width: 100%;
  }

  .hero-content {
    order: 1;
    flex: none;
    width: 100%;
  }
}


/* ═══════════════════════════════════════════════════════════
   SHOP PAGE STYLES
   ═══════════════════════════════════════════════════════════ */

/* ── SHOP HERO ───────────────────────────────── */
.shop-hero {
  min-height: 340px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 80px 60px 60px;
  position: relative;
  overflow: hidden;
}

.shop-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(181, 128, 58, .08), transparent 60%);
  pointer-events: none;
}

.shop-hero-content {
  position: relative;
  z-index: 2;
}

.shop-hero-title {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 14px;
}

.shop-hero-title em {
  font-style: italic;
  color: var(--accent);
}

.shop-hero-sub {
  font-size: 1.08rem;
  color: var(--fg-muted);
  max-width: 460px;
  line-height: 1.75;
}

.shop-hero-deco {
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.sh-flame-group {
  display: flex;
  align-items: flex-end;
  gap: 18px;
  padding-bottom: 16px;
  position: relative;
}

.sh-candle {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sh-flame {
  position: relative;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.sh-body {
  border-radius: 3px;
  position: relative;
}

.sh-body::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, .18), transparent);
  border-radius: inherit;
}

.sh-c1 .sh-body {
  width: 36px;
  height: 100px;
  background: linear-gradient(180deg, #e8d5b0, #c4a070);
}

.sh-c2 .sh-body {
  width: 52px;
  height: 70px;
  background: linear-gradient(180deg, #f0d4d4, #d49090);
}

.sh-c3 .sh-body {
  width: 40px;
  height: 86px;
  background: linear-gradient(180deg, #d4c9b0, #a89070);
}

.sh-light-pool {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 28px;
  background: radial-gradient(ellipse, rgba(181, 128, 58, .15), transparent 70%);
  border-radius: 50%;
}

.shop-breadcrumb {
  position: absolute;
  bottom: 20px;
  left: 60px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.shop-breadcrumb a {
  color: var(--accent);
  transition: opacity var(--transition-fast);
}

.shop-breadcrumb a:hover {
  opacity: .7;
}

/* ── SHOP LAYOUT ─────────────────────────────── */
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  padding-top: 48px;
  padding-bottom: 80px;
  align-items: start;
}

/* ── SIDEBAR ─────────────────────────────────── */
.shop-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-height: calc(100vh - var(--header-h) - 48px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.shop-sidebar::-webkit-scrollbar {
  width: 4px;
}

.shop-sidebar::-webkit-scrollbar-track {
  background: transparent;
}

.shop-sidebar::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.sidebar-title {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--fg);
}

.sidebar-clear {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  transition: opacity var(--transition-fast);
  cursor: pointer;
  font-family: var(--ff-body);
}

.sidebar-clear:hover {
  opacity: .7;
}

/* Active filter chips */
.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
  min-height: 0;
}

.active-filters:empty {
  display: none;
}

.af-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(181, 128, 58, .12);
  border: 1px solid rgba(181, 128, 58, .3);
  color: var(--accent);
  border-radius: 100px;
  padding: 3px 10px 3px 10px;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.af-chip button {
  display: flex;
  align-items: center;
  color: var(--accent);
  opacity: .7;
  cursor: pointer;
  font-size: .7rem;
  line-height: 1;
  transition: opacity var(--transition-fast);
}

.af-chip button:hover {
  opacity: 1;
}

/* Search */
.shop-search-wrap {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}

.shop-search-wrap svg {
  position: absolute;
  left: 12px;
  color: var(--fg-muted);
  flex-shrink: 0;
  pointer-events: none;
}

.shop-search {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 12px 10px 36px;
  font-family: var(--ff-body);
  font-size: .8rem;
  color: var(--fg);
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.shop-search::placeholder {
  color: var(--fg-muted);
}

.shop-search:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--glow);
}

/* Filter groups */
.filter-group {
  border-bottom: 1px solid var(--border);
}

.filter-group:last-child {
  border-bottom: none;
}

.filter-group-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  font-family: var(--ff-body);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--fg-2);
  cursor: pointer;
  transition: color var(--transition-fast);
}

.filter-group-head:hover {
  color: var(--accent);
}

.fg-chevron {
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.filter-group-head.collapsed .fg-chevron {
  transform: rotate(-90deg);
}

.filter-group-body {
  padding-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
  transition: max-height .35s ease, opacity .3s ease;
  max-height: 400px;
  opacity: 1;
}

.filter-group-body.collapsed {
  max-height: 0;
  opacity: 0;
  padding-bottom: 0;
}

.filter-check {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: .86rem;
  color: var(--fg-2);
  transition: color var(--transition-fast);
  line-height: 1.4;
}

.filter-check:hover {
  color: var(--accent);
}

.filter-check input[type="checkbox"] {
  display: none;
}

.fc-box {
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--border);
  border-radius: 3px;
  flex-shrink: 0;
  position: relative;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.filter-check input:checked+.fc-box {
  border-color: var(--accent);
  background: var(--accent);
}

.filter-check input:checked+.fc-box::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 5px;
  width: 4px;
  height: 7px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.fc-count {
  margin-left: auto;
  font-size: .72rem;
  color: var(--fg-muted);
  letter-spacing: .05em;
}

.fc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dot-color, var(--accent));
  flex-shrink: 0;
}

/* Price range */
.price-range-wrap {
  padding-bottom: 4px;
}

.price-labels {
  display: flex;
  justify-content: space-between;
  font-size: .75rem;
  color: var(--fg-muted);
  margin-bottom: 10px;
}

.price-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, var(--accent) 0%, var(--accent) var(--slider-pct, 100%), var(--border) var(--slider-pct, 100%));
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

.price-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--bg-card);
  box-shadow: 0 1px 6px var(--shadow);
  cursor: pointer;
  transition: box-shadow var(--transition-fast);
}

.price-slider::-webkit-slider-thumb:hover {
  box-shadow: 0 0 0 4px var(--glow);
}

.price-slider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--bg-card);
  cursor: pointer;
}

/* ── SHOP MAIN ───────────────────────────────── */
.shop-main {
  min-width: 0;
}

/* TOOLBAR */
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.toolbar-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.toolbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-toggle-btn {
  display: none;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fg-2);
  cursor: pointer;
  transition: var(--transition-fast);
  font-family: var(--ff-body);
}

.filter-toggle-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.filter-toggle-btn.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.product-count {
  font-size: .84rem;
  color: var(--fg-muted);
  letter-spacing: .05em;
}

.product-count span {
  font-weight: 500;
  color: var(--fg);
}

/* Shop tabs */
.shop-tabs {
  display: flex;
  gap: 4px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 3px;
}

.shop-tab {
  font-family: var(--ff-body);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  color: var(--fg-muted);
  cursor: pointer;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.shop-tab:hover {
  color: var(--fg);
}

.shop-tab.active {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 8px var(--glow);
}

/* Sort */
.sort-select {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 28px 8px 12px;
  font-family: var(--ff-body);
  font-size: .82rem;
  color: var(--fg-2);
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none' stroke='%237a6b58' stroke-width='1.5' stroke-linecap='round'%3E%3Cpath d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  transition: border-color var(--transition-fast);
}

.sort-select:focus {
  border-color: var(--accent);
}

/* View toggle */
.view-toggle {
  display: flex;
  gap: 4px;
}

.view-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--fg-muted);
  cursor: pointer;
  transition: var(--transition-fast);
}

.view-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.view-btn.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* ── PRODUCTS GRID ────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  transition: opacity .3s ease;
}

.products-grid.list-view {
  grid-template-columns: 1fr;
  gap: 16px;
}

/* ── PRODUCT CARD ─────────────────────────────── */
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition-fast);
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px var(--shadow);
  border-color: rgba(181, 128, 58, .2);
}

.product-card.hidden {
  display: none;
}

/* Candle visual scene */
.pc-visual {
  position: relative;
  height: 200px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 16px;
  overflow: hidden;
}

.pc-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .4;
}

.pc-floral {
  background: transparent;
}

.pc-floral::before {
  background: none;
}

.pc-woody {
  background: transparent;
}

.pc-woody::before {
  background: none;
}

.pc-citrus {
  background: transparent;
}

.pc-citrus::before {
  background: none;
}

.pc-spicy {
  background: transparent;
}

.pc-spicy::before {
  background: none;
}

.pc-fresh {
  background: transparent;
}

.pc-fresh::before {
  background: none;
}

.pc-luxury {
  background: transparent;
}

.pc-luxury::before {
  background: none;
}

/* Candle flame animations */
.pc-candle-scene {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.pc-candle-scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pc-flame {
  position: relative;
  width: 16px;
  height: 28px;
  margin-bottom: -2px;
}

.pc-flame .flame-outer {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 26px;
  background: linear-gradient(180deg, #ff9f38, #ff6b00 60%, transparent 100%);
  border-radius: 50% 50% 40% 40%;
  animation: flame-sway 2.5s ease-in-out infinite;
  transform-origin: bottom center;
}

.pc-flame .flame-inner {
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 14px;
  background: linear-gradient(180deg, #fff5c0, #ffd060 80%, transparent 100%);
  border-radius: 50% 50% 40% 40%;
  animation: flame-sway 2.5s ease-in-out infinite reverse;
  z-index: 1;
}

.pc-flame .flame-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  background: radial-gradient(circle, rgba(255, 160, 56, .55), transparent 65%);
  border-radius: 50%;
  animation: glow-pulse 2.5s ease-in-out infinite;
}

.pc-body {
  width: 36px;
  height: 90px;
  background: linear-gradient(180deg, #e8d5b0, #c4a070);
  border-radius: 3px;
  position: relative;
}

.pc-body::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, .18), transparent);
  border-radius: inherit;
}

/* Diffuser scene */
.pc-diffuser {
  height: 200px;
}

.pc-diffuser-scene {
  position: relative;
  z-index: 1;
  padding-bottom: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.pc-diffuser-scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pc-diff-bottle {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pc-diff-neck {
  width: 18px;
  height: 28px;
  background: linear-gradient(180deg, rgba(181, 128, 58, .5), rgba(181, 128, 58, .3));
  border-radius: 9px 9px 0 0;
}

.pc-diff-body {
  width: 52px;
  height: 72px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(181, 128, 58, .1));
  border: 1px solid rgba(181, 128, 58, .35);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.pc-diff-liquid {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: linear-gradient(180deg, rgba(181, 128, 58, .3), rgba(181, 128, 58, .55));
}

.pc-diff-reeds {
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  align-items: flex-end;
}

.pc-diff-reeds span {
  display: block;
  width: 2px;
  border-radius: 1px;
  background: linear-gradient(180deg, var(--accent), var(--accent-light));
}

.pc-diff-reeds span:nth-child(1) {
  height: 44px;
  transform: rotate(-12deg);
}

.pc-diff-reeds span:nth-child(2) {
  height: 52px;
  transform: rotate(-4deg);
}

.pc-diff-reeds span:nth-child(3) {
  height: 48px;
  transform: rotate(5deg);
}

.pc-diff-reeds span:nth-child(4) {
  height: 40px;
  transform: rotate(14deg);
}

/* Spray scene */
.pc-spray {
  height: 200px;
}

.pc-spray-scene {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.pc-spray-scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pc-spray-bottle {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.pc-spray-cap {
  width: 26px;
  height: 18px;
  background: linear-gradient(180deg, #c4a070, #a07840);
  border-radius: 4px 4px 0 0;
}

.pc-spray-body {
  width: 42px;
  height: 80px;
  background: linear-gradient(180deg, #e8d5b0, #c4a070);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  position: relative;
  overflow: hidden;
}

.pc-spray-body::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, .18), transparent);
}

.pc-spray-line {
  width: 26px;
  height: 2px;
  background: rgba(255, 255, 255, .35);
  border-radius: 1px;
}

.pc-spray-line.short {
  width: 16px;
}

.pc-mist {
  position: absolute;
  right: -8px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(181, 128, 58, .18), transparent);
  animation: mist-float 3s ease-in-out infinite;
}

.pc-mist.m1 {
  width: 18px;
  height: 18px;
  top: 18px;
  animation-delay: 0s;
}

.pc-mist.m2 {
  width: 12px;
  height: 12px;
  top: 32px;
  animation-delay: .5s;
}

.pc-mist.m3 {
  width: 9px;
  height: 9px;
  top: 46px;
  animation-delay: 1s;
}

@keyframes mist-float {
  0%, 100% {
    transform: translateX(0) scale(1);
    opacity: .4;
  }
  50% {
    transform: translateX(8px) scale(1.3);
    opacity: .08;
  }
}

.pc-wax-scene {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.pc-wax-scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Wax melt scene */
.pc-wax {
  height: 200px;
}

.pc-wax-scene {
  position: relative;
  z-index: 1;
}

.pc-wax-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pc-wax-top {
  width: 80px;
  height: 14px;
  background: linear-gradient(180deg, var(--accent-light), var(--accent));
  border-radius: 6px 6px 0 0;
  opacity: .7;
}

.pc-wax-body {
  width: 80px;
  height: 56px;
  background: linear-gradient(180deg, #e8d5b0, #c4a070);
  border-radius: 0 0 4px 4px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 1px;
  position: relative;
  overflow: hidden;
}

.pc-wax-body::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, .18), transparent);
}

.pc-wax-body span {
  background: rgba(255, 255, 255, .06);
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.pc-gift-scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}

/* Gift set scene */
.pc-gift {
  height: 220px;
}

.pc-gift-scene {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pc-gift-candles {
  display: flex;
  align-items: flex-end;
  gap: 14px;
}

.pc-gc {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pc-gc1 .pc-body {
  width: 28px;
  height: 80px;
}

.pc-gc2 .pc-body {
  width: 38px;
  height: 58px;
}

.pc-gc3 .pc-body {
  width: 32px;
  height: 70px;
}

.pc-gift-ribbon {
  width: 100px;
  height: 8px;
  background: linear-gradient(90deg, transparent, rgba(212, 168, 92, .4), transparent);
  margin-top: 6px;
  border-radius: 4px;
}

/* Badges */
.pc-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 3;
}

.pc-badge {
  display: inline-block;
  font-size: .58rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 100px;
  font-family: var(--ff-body);
  font-weight: 400;
}

.badge-bestseller {
  background: var(--accent);
  color: #fff;
}

.badge-new {
  background: var(--fg);
  color: var(--bg);
}

.badge-limited {
  background: rgba(180, 80, 20, .85);
  color: #fff;
}

/* Wishlist */
.pc-wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .25);
  border-radius: 50%;
  color: rgba(255, 255, 255, .7);
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast);
  backdrop-filter: blur(4px);
}

.pc-wishlist:hover {
  background: var(--accent);
  color: #fff;
}

.pc-wishlist.active {
  color: #e8607a;
}

.pc-wishlist.active svg {
  fill: #e8607a;
}

/* Card info */
.pc-info {
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.pc-collection {
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 400;
}

.pc-name {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--fg);
  line-height: 1.2;
}

.pc-scent-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.pc-tag {
  font-size: .58rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 100px;
  border: 1px solid;
  font-family: var(--ff-body);
}

.pc-tag-floral {
  color: #e8a0b4;
  border-color: rgba(232, 160, 180, .35);
  background: rgba(232, 160, 180, .08);
}

.pc-tag-woody {
  color: #c4905a;
  border-color: rgba(196, 144, 90, .35);
  background: rgba(196, 144, 90, .08);
}

.pc-tag-citrus {
  color: #c8a830;
  border-color: rgba(200, 168, 48, .35);
  background: rgba(200, 168, 48, .08);
}

.pc-tag-spicy {
  color: #c06040;
  border-color: rgba(192, 96, 64, .35);
  background: rgba(192, 96, 64, .08);
}

.pc-tag-fresh {
  color: #40a898;
  border-color: rgba(64, 168, 152, .35);
  background: rgba(64, 168, 152, .08);
}

[data-theme="dark"] .pc-tag-floral {
  color: #f0b8cc;
}

[data-theme="dark"] .pc-tag-woody {
  color: #d4a870;
}

[data-theme="dark"] .pc-tag-citrus {
  color: #d8b840;
}

[data-theme="dark"] .pc-tag-spicy {
  color: #d07858;
}

[data-theme="dark"] .pc-tag-fresh {
  color: #50c8b0;
}

.pc-desc {
  font-size: .88rem;
  color: var(--fg-muted);
  line-height: 1.6;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.pc-price-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pc-price {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--fg);
  line-height: 1;
}

.pc-size {
  font-size: .72rem;
  color: var(--fg-muted);
  letter-spacing: .06em;
}

.pc-add-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: .68rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  white-space: nowrap;
  box-shadow: 0 2px 12px var(--glow);
  flex-shrink: 0;
}

.pc-add-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--glow);
}

.pc-add-btn.added {
  background: #3a7a50;
}

.pc-add-btn:disabled {
  opacity: .6;
  pointer-events: none;
}

/* LIST VIEW overrides */
.products-grid.list-view .product-card {
  flex-direction: row;
}

.products-grid.list-view .pc-visual {
  width: 180px;
  height: 160px;
  flex-shrink: 0;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.products-grid.list-view .pc-info {
  padding: 20px 24px;
}

.products-grid.list-view .pc-desc {
  -webkit-line-clamp: 3;
}

.products-grid.list-view .pc-footer {
  margin-top: auto;
}

/* EMPTY STATE */
.products-empty {
  text-align: center;
  padding: 80px 40px;
  grid-column: 1 / -1;
  color: var(--fg-muted);
}

.products-empty h3 {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 300;
  margin: 16px 0 8px;
  color: var(--fg);
}

.products-empty p {
  font-size: 1.05rem;
  margin-bottom: 24px;
}

/* ── CART DRAWER ─────────────────────────────── */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .4);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  backdrop-filter: blur(2px);
}

.cart-drawer-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 420px;
  max-width: 100vw;
  background: var(--bg-card);
  border-left: 1px solid var(--border);
  z-index: 901;
  transform: translateX(100%);
  transition: transform .45s cubic-bezier(.25, .46, .45, .94);
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 60px var(--shadow);
}

[dir="rtl"] .cart-drawer {
  right: auto;
  left: 0;
  border-left: none;
  border-right: 1px solid var(--border);
  transform: translateX(-100%);
  box-shadow: 20px 0 60px var(--shadow);
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.cart-drawer-title {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--fg);
}

.cart-drawer-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--fg-muted);
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.cart-drawer-close:hover {
  background: var(--bg-2);
  color: var(--accent);
}

.cart-drawer-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
  color: var(--fg-muted);
  gap: 10px;
  height: 100%;
}

.cart-empty svg {
  opacity: .25;
}

.cart-empty p {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--fg-2);
}

.cart-empty span {
  font-size: .78rem;
  letter-spacing: .08em;
}

/* Cart item */
.cart-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  animation: cartItemIn .3s ease forwards;
}

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

@keyframes cartItemIn {
  from {
    opacity: 0;
    transform: translateX(12px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.ci-swatch {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--cream), var(--bg-2));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.3rem;
}

.ci-info {
  flex: 1;
  min-width: 0;
}

.ci-name {
  font-family: var(--ff-display);
  font-size: 1rem;
  color: var(--fg);
  font-weight: 400;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ci-qty-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.ci-qty-btn {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  font-size: .9rem;
  color: var(--fg-2);
  cursor: pointer;
  transition: var(--transition-fast);
}

.ci-qty-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.ci-qty {
  font-size: .8rem;
  color: var(--fg);
  min-width: 16px;
  text-align: center;
}

.ci-price {
  font-family: var(--ff-display);
  font-size: 1rem;
  color: var(--accent);
  flex-shrink: 0;
  align-self: center;
}

.ci-remove {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-muted);
  cursor: pointer;
  transition: color var(--transition-fast);
  flex-shrink: 0;
  align-self: center;
}

.ci-remove:hover {
  color: #c0392b;
}

.cart-drawer-footer {
  padding: 16px 24px 24px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
  background: var(--bg-card);
}

.cart-summary {
  margin-bottom: 16px;
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.cart-subtotal span:first-child {
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.cart-subtotal span:last-child {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  color: var(--fg);
  font-weight: 400;
}

.cart-note {
  font-size: .68rem;
  color: var(--fg-muted);
  letter-spacing: .04em;
}

.cart-checkout-btn {
  width: 100%;
  justify-content: center;
  padding: 14px;
}

/* ── TOAST ───────────────────────────────────── */
.cart-toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--fg);
  color: var(--bg);
  padding: 12px 20px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  letter-spacing: .08em;
  font-family: var(--ff-body);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .25);
  white-space: nowrap;
}

.cart-toast svg {
  color: #4caf82;
  flex-shrink: 0;
}

.cart-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── ACTIVE PAGE HIGHLIGHT ───────────────────── */
.nav-link.active-page {
  color: var(--accent);
}

.nav-link.active-page::after {
  width: 100%;
}

.mobile-nav-link.active-page {
  color: var(--accent);
}

/* ── SHOP RESPONSIVE: TABLET ─────────────────── */
@media (max-width: 1024px) {
  .shop-hero {
    padding: 60px 28px 50px;
  }

  .shop-hero-deco {
    display: none;
  }

  .shop-breadcrumb {
    left: 28px;
  }

  .shop-layout {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 0;
  }

  .shop-sidebar {
    position: static;
    max-height: none;
    overflow: visible;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    display: none;
    padding: 20px 24px;
  }

  .shop-sidebar.mobile-open {
    display: flex;
  }

  .filter-toggle-btn {
    display: flex;
  }

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

  .shop-main {
    padding-top: 24px;
  }

  .shop-tabs {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .shop-tabs::-webkit-scrollbar {
    display: none;
  }

  .cart-drawer {
    width: 380px;
  }
}

@media (max-width: 767px) {
  .shop-hero {
    padding: 50px 20px 40px;
    min-height: 240px;
  }

  .shop-hero-title {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }

  .shop-breadcrumb {
    left: 20px;
  }

  .shop-layout.container {
    padding: 0 16px 60px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .shop-toolbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .toolbar-right {
    width: 100%;
    justify-content: space-between;
  }

  .shop-tabs {
    display: none;
  }

  .sort-select {
    flex: 1;
  }

  .pc-visual {
    height: 160px;
  }

  .pc-name {
    font-size: 1rem;
  }

  .pc-desc {
    display: none;
  }

  .pc-info {
    padding: 12px 12px 10px;
    gap: 6px;
  }

  .pc-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .pc-add-btn {
    width: 100%;
    justify-content: center;
  }

  .cart-drawer {
    width: 100vw;
  }
}

@media (max-width: 420px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pc-visual {
    height: 200px;
  }

  .pc-desc {
    display: block;
    -webkit-line-clamp: 2;
  }
}

/* ── SHOP RTL ────────────────────────────────── */
[dir="rtl"] .shop-breadcrumb {
  left: auto;
  right: 60px;
}

[dir="rtl"] .shop-sidebar {}

[dir="rtl"] .pc-footer {
  flex-direction: row-reverse;
}

[dir="rtl"] .pc-badges {
  left: auto;
  right: 12px;
}

[dir="rtl"] .pc-wishlist {
  right: auto;
  left: 12px;
}

[dir="rtl"] .pc-mist {
  right: auto;
  left: -8px;
}

[dir="rtl"] .toolbar-right {
  flex-direction: row-reverse;
}

/* =============================================
   BLOG (JOURNAL) PAGE STYLES
   ============================================= */

/* ── BLOG HERO ───────────────────────────────── */
.blog-hero {
  min-height: 42vh;
  justify-content: flex-start;
  padding-top: var(--header-h);
  align-items: stretch;
}

.blog-hero-content {
  max-width: 780px;
  padding: 56px 0 48px;
  text-align: left;
}

.blog-hero .page-hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--fg);
  margin: 8px 0 20px;
}

.blog-hero .page-hero-title em {
  font-style: italic;
  color: var(--accent);
}

.page-hero-sub {
  font-size: 1.05rem;
  color: var(--fg-2);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 32px;
}

/* Decorative ink drops */
.blog-hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.blog-ink-drop {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(181, 128, 58, .07), transparent 70%);
}

.drop-1 {
  width: 500px;
  height: 500px;
  right: -80px;
  top: -120px;
}

.drop-2 {
  width: 300px;
  height: 300px;
  right: 25%;
  bottom: -80px;
  background: radial-gradient(circle, rgba(181, 128, 58, .05), transparent 70%);
}

.drop-3 {
  width: 180px;
  height: 180px;
  left: 15%;
  top: 30%;
  background: radial-gradient(circle, rgba(181, 128, 58, .04), transparent 70%);
}

/* ── BLOG SEARCH ─────────────────────────────── */
.blog-search {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 480px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 12px 20px;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.blog-search:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--glow);
}

.blog-search svg {
  color: var(--fg-muted);
  flex-shrink: 0;
}

.blog-search-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: var(--ff-body);
  font-size: .85rem;
  color: var(--fg);
  font-weight: 300;
}

.blog-search-input::placeholder {
  color: var(--fg-muted);
}

.blog-search-clear {
  background: none;
  border: none;
  color: var(--fg-muted);
  font-size: .75rem;
  cursor: pointer;
  transition: color var(--transition-fast);
  display: none;
  padding: 0;
}

.blog-search-clear.visible {
  display: block;
}

.blog-search-clear:hover {
  color: var(--accent);
}

/* ── BLOG SECTION ────────────────────────────── */
.blog-section {
  padding-top: 80px;
}

/* ── BLOG FILTERS ────────────────────────────── */
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}

.blog-filter-btn {
  font-family: var(--ff-body);
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 9px 22px;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--fg-2);
  background: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.blog-filter-btn:hover,
.blog-filter-btn.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* ── BLOG FEATURED POST ──────────────────────── */
.blog-featured {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 48px;
  transition: box-shadow var(--transition);
}

.blog-featured:hover {
  box-shadow: 0 20px 60px var(--shadow);
}

.blog-featured.hidden {
  display: none;
}

.blog-featured-img {
  background: linear-gradient(135deg, var(--fg) 0%, #2e1e0a 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  overflow: hidden;
}

.blog-featured-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 260px;
  overflow: hidden;
}

.blog-featured-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bfv-candle {
  position: relative;
  z-index: 2;
}

.bfv-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(212, 168, 92, .2);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-ring 4s ease-in-out infinite;
}

.bfv-ring-1 {
  width: 180px;
  height: 180px;
}

.bfv-ring-2 {
  width: 280px;
  height: 280px;
  animation-delay: -2s;
}

.blog-featured-label {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent-light);
  background: rgba(181, 128, 58, .12);
  border: 1px solid rgba(212, 168, 92, .25);
  padding: 5px 12px;
  border-radius: 100px;
}

.blog-featured-body {
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.blog-featured-title {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--fg);
}

.blog-featured-excerpt {
  font-size: 1.0rem;
  color: var(--fg-2);
  line-height: 1.8;
}

.blog-featured-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

.blog-featured-date {
  font-size: .72rem;
  color: var(--fg-muted);
  letter-spacing: .05em;
}

.blog-read-btn {
  margin-top: 8px;
  align-self: flex-start;
}

/* ── BLOG CARD META ──────────────────────────── */
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-tag {
  display: inline-block;
  font-size: .6rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  font-weight: 400;
}

.blog-tag--guides {
  background: rgba(181, 128, 58, .12);
  color: var(--accent);
  border: 1px solid rgba(181, 128, 58, .25);
}

.blog-tag--relaxation {
  background: rgba(120, 160, 140, .12);
  color: #5a8a70;
  border: 1px solid rgba(120, 160, 140, .25);
}

[data-theme="dark"] .blog-tag--relaxation {
  color: #7ab898;
  border-color: rgba(120, 180, 140, .2);
  background: rgba(120, 180, 140, .08);
}

.blog-tag--layering {
  background: rgba(100, 120, 200, .1);
  color: #5060a0;
  border: 1px solid rgba(100, 120, 200, .2);
}

[data-theme="dark"] .blog-tag--layering {
  color: #8898cc;
  border-color: rgba(120, 140, 220, .2);
  background: rgba(120, 140, 220, .08);
}

.blog-tag--seasonal {
  background: rgba(200, 120, 60, .1);
  color: #c07030;
  border: 1px solid rgba(200, 120, 60, .2);
}

[data-theme="dark"] .blog-tag--seasonal {
  color: #e09050;
  border-color: rgba(220, 140, 80, .2);
  background: rgba(220, 140, 80, .08);
}

.blog-tag--studio {
  background: rgba(80, 80, 80, .08);
  color: var(--fg-muted);
  border: 1px solid var(--border);
}

.blog-read-time {
  font-size: .68rem;
  color: var(--fg-muted);
  letter-spacing: .04em;
}

/* ── BLOG AUTHOR ─────────────────────────────── */
.blog-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .6rem;
  font-weight: 500;
  flex-shrink: 0;
}

.blog-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.blog-author-info strong {
  font-size: .88rem;
  font-weight: 400;
  color: var(--fg);
}

.blog-author-info span {
  font-size: .75rem;
  color: var(--fg-muted);
  letter-spacing: .04em;
}

/* ── BLOG GRID ───────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px var(--shadow);
}

.blog-card.hidden {
  display: none;
}

/* Blog Card Visual */
.blog-card-visual {
  position: relative;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 0;
  overflow: hidden;
}

.blog-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bv-rose {
  background: transparent;
}

.bv-amber {
  background: transparent;
}

.bv-green {
  background: transparent;
}

.bv-cedar {
  background: linear-gradient(135deg, #1a1508, #3a3018);
}

.bv-midnight {
  background: linear-gradient(135deg, #0f0d1f, #1e1840);
}

.bv-ocean {
  background: linear-gradient(135deg, #0d1a24, #154060);
}

.bv-blush {
  background: linear-gradient(135deg, #2a1518, #5a2030);
}

.bv-spice {
  background: linear-gradient(135deg, #281808, #5a3010);
}

.bv-charcoal {
  background: linear-gradient(135deg, #141210, #282420);
}

.blog-card-candle-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.blog-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, .3));
  z-index: 1;
}

.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.blog-card-title {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--fg);
}

.blog-card-excerpt {
  font-size: .92rem;
  color: var(--fg-2);
  line-height: 1.75;
  flex: 1;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.blog-card-date {
  font-size: .78rem;
  color: var(--fg-muted);
  letter-spacing: .04em;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  transition: gap var(--transition-fast), opacity var(--transition-fast);
}

.blog-card-link:hover {
  gap: 8px;
  opacity: .8;
}

/* No Results */
.blog-no-results {
  display: none;
  text-align: center;
  padding: 80px 20px;
}

.blog-no-results.show {
  display: block;
}

.blog-no-results p {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  color: var(--fg-2);
  margin-bottom: 24px;
}

.blog-no-results em {
  color: var(--accent);
  font-style: italic;
}

/* Load More */
.blog-load-more {
  text-align: center;
  padding: 16px 0 0;
}

.blog-load-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ── SEASONAL GUIDE BANNER ───────────────────── */
.blog-seasonal {
  background: var(--fg);
}

.blog-seasonal-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
}

.blog-seasonal-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-seasonal-text .section-eyebrow {
  color: var(--accent-light);
}

.blog-seasonal-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.1;
  color: rgba(240, 232, 216, .95);
}

.blog-seasonal-title em {
  font-style: italic;
  color: var(--accent-light);
}

.blog-seasonal-desc {
  font-size: 1.0rem;
  color: rgba(240, 232, 216, .55);
  line-height: 1.8;
  max-width: 420px;
}

.blog-seasonal-candles {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  padding: 40px 0 0;
}

.seasonal-product-image {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
}

.seasonal-product-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 8px;
}

.seasonal-product-image .candle-label {
  margin-top: 12px;
  font-size: 0.85rem;
  color: rgba(240, 232, 216, .7);
  text-align: center;
}


/* =============================================
   GIFT PAGE STYLES
   ============================================= */

/* ── GIFT HERO ───────────────────────────────── */
.gift-hero {
  min-height: 56vh;
  align-items: center;
  padding-top: var(--header-h);
  position: relative;
  overflow: hidden;
}

.gift-hero-content {
  max-width: 700px;
  padding: 60px 0;
}

.gift-hero .page-hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.07;
  color: var(--fg);
  margin: 10px 0 20px;
}

.gift-hero .page-hero-title em {
  font-style: italic;
  color: var(--accent);
}

.gift-hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.gift-hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: .72rem;
  letter-spacing: .08em;
  color: var(--fg-muted);
}

.gift-hero-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.gift-hero-candles {
  position: absolute;
  right: 8%;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  gap: 16px;
  padding-bottom: 0;
}

.hero-candle-img {
  height: 360px;
  width: auto;
  object-fit: contain;
  display: block;
}

.hero-candle-tall {
  min-width: 80px;
}

.hero-candle-wide {
  min-width: 100px;
}

.hero-candle-med {
  min-width: 70px;
}

/* Ribbon deco */
.gift-hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.gift-ribbon {
  position: absolute;
  border-radius: 50%;
  opacity: .06;
}

.gift-ribbon-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
  background: radial-gradient(circle, var(--accent), transparent 65%);
}

.gift-ribbon-2 {
  width: 300px;
  height: 300px;
  bottom: -80px;
  left: 30%;
  background: radial-gradient(circle, var(--accent-light), transparent 65%);
}

/* ── GIFT OCCASION TABS ──────────────────────── */
.gift-occasions-section {
  padding-bottom: 0;
}

.gift-occasion-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 40px;
}

.gift-occ-tab {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--ff-body);
  font-size: .76rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--fg-2);
  background: var(--bg-card);
  cursor: pointer;
  transition: var(--transition-fast);
}

.gift-occ-tab svg {
  flex-shrink: 0;
}

.gift-occ-tab:hover,
.gift-occ-tab.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.gift-occ-tab.active svg {
  stroke: #fff;
}

/* ── GIFT GRID ───────────────────────────────── */
.gift-pg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gift-pg-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

.gift-pg-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px var(--shadow);
}

.gift-pg-card.hidden {
  display: none;
}

/* Feature card spans full row */
.gift-pg-feature {
  grid-column: 1 / -1;
  flex-direction: row;
}

/* Gift Visual Panels */
.gift-pg-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 32px 24px 20px;
  overflow: hidden;
  min-height: 180px;
  flex-shrink: 0;
}

.gift-pg-feature .gift-pg-visual {
  width: 42%;
  min-height: 320px;
  flex-direction: column;
  padding-bottom: 32px;
}

.gift-pg-candles {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.gift-set-img {
  height: 200px;
  width: auto;
  object-fit: contain;
  display: block;
}

.gpv-amber {
  background: transparent;
}

.gpv-rose {
  background: transparent;
}

.gpv-pearl {
  background: transparent;
}

.gpv-diwali {
  background: transparent;
}

.gpv-christmas {
  background: transparent;
}

.gpv-corporate {
  background: transparent;
}

/* Badges */
.gift-pg-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: .6rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--accent);
  color: #fff;
  z-index: 3;
}

.gift-pg-badge--new {
  background: #2e7d32;
}

.gift-pg-badge--festive {
  background: #c62828;
}

/* Gift Info */
.gift-pg-info {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.gift-pg-occasion-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.gift-occ-tag {
  display: inline-block;
  font-size: .6rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(181, 128, 58, .1);
  color: var(--accent);
  border: 1px solid rgba(181, 128, 58, .2);
}

.gift-pg-title {
  font-family: var(--ff-display);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--fg);
  line-height: 1.2;
}

.gift-pg-feature .gift-pg-title {
  font-size: 1.9rem;
}

.gift-pg-desc {
  font-size: .95rem;
  color: var(--fg-2);
  line-height: 1.78;
}

.gift-pg-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.gift-pg-includes li {
  font-size: .75rem;
  color: var(--fg-muted);
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.gift-pg-includes li::before {
  content: '&#10022;';
  color: var(--accent);
  font-size: .6rem;
  flex-shrink: 0;
}

.gift-pg-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.gift-pg-price {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--fg);
}

/* ── GIFT SECTION SUBTITLE ───────────────────── */
.gift-section-sub {
  font-size: 1.02rem;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 540px;
  margin: 12px auto 0;
}

/* ── PERSONALISED GIFT STEPS ─────────────────── */
.gift-personal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.gift-personal-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.gift-personal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--shadow);
  border-color: var(--accent);
}

.gpc-step {
  font-family: var(--ff-display);
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--border);
  line-height: 1;
  position: absolute;
  top: 12px;
  right: 16px;
}

.gpc-icon {
  color: var(--accent);
  margin-bottom: 16px;
}

.gpc-title {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 10px;
}

.gpc-desc {
  font-size: .92rem;
  color: var(--fg-2);
  line-height: 1.75;
  margin-bottom: 16px;
}

.gpc-link {
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  transition: opacity var(--transition-fast);
}

.gpc-link:hover {
  opacity: .7;
}

/* ── PERSONALISATION FORM ────────────────────── */
.gift-personalise-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  overflow: hidden;
}

.gpf-header {
  margin-bottom: 36px;
}

.gpf-title {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 400;
  color: var(--fg);
  margin-top: 8px;
}

.gpf-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gpf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.gpf-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gpf-field--check {
  flex-direction: column;
}

.gpf-label {
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.gpf-optional {
  font-size: .65rem;
  letter-spacing: .06em;
  text-transform: none;
  color: var(--fg-muted);
  opacity: .7;
}

.gpf-input {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 16px;
  font-family: var(--ff-body);
  font-size: .88rem;
  font-weight: 300;
  color: var(--fg);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
  appearance: none;
}

.gpf-input::placeholder {
  color: var(--fg-muted);
  opacity: .6;
}

.gpf-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--glow);
}

.gpf-select {
  cursor: pointer;
}

.gpf-textarea {
  resize: vertical;
  min-height: 110px;
}

.gpf-char-count {
  font-size: .68rem;
  color: var(--fg-muted);
  text-align: right;
}

.gpf-error {
  font-size: .68rem;
  color: #c0392b;
  display: none;
}

.gpf-field.gpf-has-error .gpf-error {
  display: block;
}

.gpf-field.gpf-has-error .gpf-input {
  border-color: #c0392b;
}

.gpf-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 8px;
}

.gpf-price-preview {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.gpf-price-label {
  font-size: .62rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.gpf-price-value {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--accent);
}

.gpf-success {
  display: none;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--bg-2);
  border: 1px solid var(--accent);
  border-radius: var(--radius-lg);
  color: var(--fg);
}

.gpf-success.show {
  display: flex;
}

.gpf-success svg {
  color: var(--accent);
  flex-shrink: 0;
}

.gpf-success strong {
  display: block;
  font-size: .88rem;
  margin-bottom: 3px;
}

.gpf-success p {
  font-size: .78rem;
  color: var(--fg-muted);
}

/* ── CORPORATE GIFTING ───────────────────────── */
.gift-corporate-section {
  background: var(--bg-2);
}

.gift-corporate-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.gift-corporate-title {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--fg);
  margin: 10px 0 16px;
}

.gift-corporate-title em {
  font-style: italic;
  color: var(--accent);
}

.gift-corporate-desc {
  font-size: .9rem;
  color: var(--fg-2);
  line-height: 1.8;
  margin-bottom: 24px;
}

.gift-corporate-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.gift-corporate-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  color: var(--fg-2);
}

.gift-corporate-features li svg {
  color: var(--accent);
  flex-shrink: 0;
}

.gift-corporate-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Corporate visual */
.gift-corporate-visual {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.gcv-box {
  width: 260px;
  height: 220px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 24px;
  overflow: hidden;
  box-shadow: 0 16px 48px var(--shadow);
}

.gcv-box-label {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--ff-display);
  font-size: 1rem;
  color: var(--accent);
  letter-spacing: .08em;
}

.gcv-box-inner {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  z-index: 2;
}

.gcv-candle-img {
  height: 180px;
  width: auto;
  object-fit: contain;
  display: block;
}

.gcv-ribbon {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 48%, rgba(181, 128, 58, .15) 49%, rgba(181, 128, 58, .15) 51%, transparent 52%),
    linear-gradient(0deg, transparent 48%, rgba(181, 128, 58, .15) 49%, rgba(181, 128, 58, .15) 51%, transparent 52%);
  pointer-events: none;
}

.gcv-stats {
  display: flex;
  gap: 32px;
}

.gcv-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.gcv-num {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--accent);
}

.gcv-label {
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* ── RESPONSIVE: TABLET ──────────────────────── */
@media (max-width: 1024px) {

  /* Blog */
  .blog-featured {
    grid-template-columns: 1fr;
  }

  .blog-featured-img {
    min-height: 240px;
  }

  .blog-featured-body {
    padding: 32px;
  }

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

  .blog-seasonal-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .blog-seasonal-candles {
    justify-content: center;
  }

  .seasonal-product-image img {
    height: 280px;
  }

  /* Gift */
  .gift-hero-candles {
    right: 4%;
  }

  .hero-candle-img {
    height: 280px;
  }

  .gift-set-img {
    height: 160px;
  }

  .gcv-candle-img {
    height: 140px;
  }

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

  .gift-pg-feature {
    grid-column: 1 / -1;
    flex-direction: column;
  }

  .gift-pg-feature .gift-pg-visual {
    width: 100%;
    min-height: 220px;
  }

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

  .gift-personalise-form {
    padding: 32px;
  }

  .gpf-row {
    grid-template-columns: 1fr;
  }

  .gift-corporate-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .gift-corporate-visual {
    order: -1;
  }

  .gift-hero-candles {
    right: 3%;
  }
}

@media (max-width: 767px) {

  /* Blog */
  .blog-hero-content {
    padding: 40px 0 32px;
  }

  .blog-search {
    max-width: 100%;
  }

  .blog-filters {
    gap: 8px;
  }

  .blog-filter-btn {
    padding: 8px 16px;
    font-size: .68rem;
  }

  .blog-featured {
    flex-direction: column;
  }

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

  .blog-featured-body {
    padding: 24px;
  }

  .blog-seasonal-inner {
    text-align: center;
  }

  .blog-seasonal-text {
    align-items: center;
  }

  .seasonal-product-image img {
    height: 220px;
  }

  /* Gift */
  .gift-hero-candles {
    right: 0;
    bottom: 20px;
  }

  .hero-candle-img {
    height: 220px;
  }

  .gift-set-img {
    height: 120px;
  }

  .gcv-candle-img {
    height: 100px;
  }

  .gift-hero-content {
    padding: 40px 0 32px;
  }

  .gift-hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .gift-hero-trust {
    flex-direction: column;
    gap: 8px;
  }

  .gift-hero-candles {
    display: none;
  }

  .gift-pg-grid {
    grid-template-columns: 1fr;
  }

  .gift-pg-feature {
    flex-direction: column;
  }

  .gift-personal-grid {
    grid-template-columns: 1fr;
  }

  .gift-corporate-cta {
    flex-direction: column;
  }

  .gcv-stats {
    gap: 20px;
  }

  .gift-occasion-tabs {
    gap: 8px;
  }

  .gift-occ-tab {
    padding: 8px 16px;
    font-size: .7rem;
  }

  .gpf-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ── RTL ─────────────────────────────────────── */
[dir="rtl"] .blog-hero-content {
  text-align: right;
}

[dir="rtl"] .blog-search-input {
  text-align: right;
}

[dir="rtl"] .blog-featured {
  direction: rtl;
}

[dir="rtl"] .gift-hero-content {
  text-align: right;
}

[dir="rtl"] .gift-hero-candles {
  right: auto;
  left: 8%;
}

[dir="rtl"] .gift-hero-cta {
  justify-content: flex-end;
}

[dir="rtl"] .blog-corporate-features li {
  flex-direction: row-reverse;
}

[dir="rtl"] .blog-card-link svg {
  transform: scaleX(-1);
}

/* ── NEWSLETTER SECTION (from index.html redesign) ────────────────────── */
.newsletter {
  position: relative;
  padding: 100px 0;
  background-color: var(--bg-body);
  color: var(--fg);
  overflow: hidden;
}

.newsletter-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bg-body);
  z-index: 0;
}

.newsletter-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.nl-left {
  padding: 60px;
}

.nl-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 20px;
}

.nl-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.nl-sub {
  font-size: 1.2rem;
  color: var(--fg-muted);
  margin-bottom: 30px;
  line-height: 1.6;
}

.nl-sub strong {
  color: var(--accent);
}

.nl-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.nl-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--fg-muted);
  background: rgba(255, 255, 255, 0.03);
}

.nl-form {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.nl-input-wrap {
  position: relative;
  flex: 1;
}

.nl-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--fg-muted);
}

.nl-input {
  width: 100%;
  padding: 18px 20px 18px 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--fg);
  font-family: var(--ff-body);
  font-size: 1rem;
  outline: none;
  transition: border-color var(--transition);
}

.nl-input:focus {
  border-color: var(--accent);
}

.nl-btn {
  padding: 0 30px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.nl-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(181, 128, 58, 0.3);
}

.nl-btn-arrow {
  transition: transform var(--transition);
}

.nl-btn:hover .nl-btn-arrow {
  transform: translateX(5px);
}

.nl-success {
  font-size: 0.9rem;
  color: #4CAF50;
  display: none;
  margin-bottom: 15px;
}

.nl-privacy {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

.nl-right {
  height: 100%;
  min-height: 500px;
  position: relative;
}

.nl-image-frame {
  position: absolute;
  top: 20px;
  right: 20px;
  bottom: 20px;
  left: 0;
  border-radius: 15px;
  overflow: hidden;
}

.nl-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 10s ease;
}

.newsletter:hover .nl-img {
  transform: scale(1.05);
}

.nl-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.nl-quote-card {
  position: absolute;
  bottom: 40px;
  right: 40px;
  left: 40px;
  background: rgba(20, 20, 20, 0.8);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-left: 3px solid var(--accent);
  border-radius: 10px;
  z-index: 2;
  color: #ffffff;
}

.nl-quote {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 10px;
}

.nl-quote-brand {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}

@media (max-width: 900px) {
  .newsletter-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .nl-right {
    min-height: 400px;
  }

  .nl-image-frame {
    top: 0;
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .nl-left {
    padding: 40px 20px;
  }

  .nl-form {
    flex-direction: column;
  }

  .nl-btn {
    padding: 18px;
    justify-content: center;
  }
}

/* ── NEW FOOTER ────────────────────── */
.footer {
  background-color: #0a0a0a;
  color: #f5f5f5;
  padding: 100px 0 50px;
  border-top: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 0px;
}

.footer-brand-col {
  max-width: 320px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
  color: var(--accent);
}

.footer-logo .logo-text {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  color: #ffffff;
}

.footer-tagline {
  color: #888888;
  line-height: 1.8;
  font-size: 1.05rem;
}

.footer-col h4 {
  font-family: var(--ff-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 25px;
  color: #ffffff;
  font-weight: 600;
}

.footer-col a:not(.footer-social-link),
.footer-contact-text {
  display: block;
  color: #888888;
  margin-bottom: 15px;
  font-size: 1.05rem;
  transition: color var(--transition);
}

.footer-col a:not(.footer-social-link):hover {
  color: var(--accent);
}

.footer-social-icons {
  display: flex;
  gap: 12px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cccccc;
  transition: all var(--transition);
  line-height: 0;
  padding: 0;
  font-size: 0;
  cursor: pointer;
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.5;
  display: block;
  margin: 0;
  padding: 0;
  vertical-align: middle;
  flex-shrink: 0;
}

.footer-social-link:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-3px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #666666;
  font-size: 0.85rem;
}

/* Responsive Footer */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* ── HERO RESPONSIVE FIXES (360px - 1024px) ────────── */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    min-height: unset;
    height: auto;
  }

  .hero-content {
    flex: none;
    padding: 100px 5% 60px;
    align-items: center;
    text-align: center;
  }

  .hero-bg {
    flex: none;
    width: 100%;
    height: 60vh;
    min-height: 400px;
  }

  .hero-bg::after {
    background: linear-gradient(to top, transparent, var(--bg) 100%);
  }

  .hero-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
  }

  .hero-subtitle {
    margin: 0 auto 30px;
  }

  .hero-cta {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .hero-content {
    padding: 40px 5% 30px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    gap: 15px;
  }

  .hero-cta .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* ── PAGE 1 GRIDS MOBILE FIXES ────────── */
@media (max-width: 1024px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 20px 0;
  }

  .story-img-frame {
    width: 100%;
  }

  .story-stat {
    display: none;
  }

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

@media (max-width: 768px) {

  .collections-grid,
  .craft-steps,
  .sanctuary-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .card-large {
    grid-column: span 1;
    grid-row: span 1;
    flex-direction: column;
  }

  .card-large .card-visual {
    width: 100%;
    min-height: 250px;
  }
}

/* ══════════════════════════════════════════════════════════
   SCENT QUIZ PAGE  —  quiz.css  (appended to style.css)
   ══════════════════════════════════════════════════════════ */

/* ── FLAME ANIMATIONS (reused on quiz page) ── */
@keyframes sqz-flame-sway {

  0%,
  100% {
    transform: translateX(-50%) rotate(-3deg) scaleX(.95);
  }

  50% {
    transform: translateX(-50%) rotate(3deg) scaleX(1.05);
  }
}

@keyframes sqz-glow-pulse {

  0%,
  100% {
    opacity: .65;
    transform: translateX(-50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.3);
  }
}

@keyframes sqz-orb-drift {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -20px) scale(1.06);
  }

  66% {
    transform: translate(-18px, 14px) scale(.96);
  }
}

@keyframes sqz-ring-pulse {

  0%,
  100% {
    opacity: .3;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: .7;
    transform: translate(-50%, -50%) scale(1.04);
  }
}

@keyframes sqz-loading-text {

  0%,
  100% {
    opacity: .5;
  }

  50% {
    opacity: 1;
  }
}

@keyframes sqz-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes sqzFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes sqzSlideIn {
  from {
    opacity: 0;
    transform: translateX(28px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes sqzStepEnter {
  from {
    opacity: 0;
    transform: translateX(32px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes sqzStepLeave {
  from {
    opacity: 1;
    transform: none;
  }

  to {
    opacity: 0;
    transform: translateX(-32px);
  }
}

@keyframes sqz-result-pop {
  0% {
    opacity: 0;
    transform: scale(.9) translateY(16px);
  }

  60% {
    transform: scale(1.02) translateY(-3px);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes sqz-badge-spin {
  0% {
    transform: rotate(0deg) scale(0);
    opacity: 0;
  }

  60% {
    transform: rotate(8deg) scale(1.12);
    opacity: 1;
  }

  100% {
    transform: rotate(0deg) scale(1);
    opacity: 1;
  }
}

@keyframes sqz-progress-glow {

  0%,
  100% {
    box-shadow: 0 0 6px var(--glow);
  }

  50% {
    box-shadow: 0 0 18px var(--glow);
  }
}

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
.sqz-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}

.sqz-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.sqz-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .18;
  animation: sqz-orb-drift 18s ease-in-out infinite;
}

.sqz-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent), transparent 70%);
  top: -120px;
  right: -80px;
  animation-delay: 0s;
}

.sqz-orb-2 {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, var(--accent-light), transparent 70%);
  bottom: -80px;
  left: -60px;
  animation-delay: -6s;
}

.sqz-orb-3 {
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, var(--accent-dark), transparent 70%);
  top: 40%;
  left: 38%;
  animation-delay: -12s;
  opacity: .1;
}

.sqz-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  padding-top: 32px;
  padding-bottom: 48px;
}

.sqz-hero-text {
  max-width: 600px;
}

.sqz-breadcrumb {
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sqz-breadcrumb a {
  color: var(--accent);
  transition: opacity var(--transition-fast);
}

.sqz-breadcrumb a:hover {
  opacity: .7;
}

.sqz-hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--fg);
  margin-bottom: 18px;
}

.sqz-hero-title em {
  font-style: italic;
  color: var(--accent);
}

.sqz-hero-sub {
  font-size: .95rem;
  color: var(--fg-2);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 32px;
}

.sqz-hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
}

.sqz-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sqz-stat-num {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
}

.sqz-stat-label {
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.sqz-stat-div {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Decorative candles */
.sqz-hero-deco {
  flex-shrink: 0;
}

.sqz-candle-group {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 20px;
  padding-bottom: 20px;
}

.sqz-candle {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sqz-flame {
  position: relative;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.sqz-flame .flame-outer {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 30px;
  background: linear-gradient(180deg, #ff9f38, #ff6b00 60%, transparent 100%);
  border-radius: 50% 50% 40% 40%;
  animation: sqz-flame-sway 2.4s ease-in-out infinite;
  transform-origin: bottom center;
}

.sqz-flame .flame-inner {
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 16px;
  background: linear-gradient(180deg, #fff5c0, #ffd060 80%, transparent 100%);
  border-radius: 50% 50% 40% 40%;
  animation: sqz-flame-sway 2.4s ease-in-out infinite reverse;
  z-index: 1;
}

.sqz-flame .flame-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: radial-gradient(circle, rgba(255, 160, 56, .55), transparent 65%);
  border-radius: 50%;
  animation: sqz-glow-pulse 2.4s ease-in-out infinite;
}

.sqz-body {
  border-radius: 3px;
  position: relative;
}

.sqz-body::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, .18), transparent);
  border-radius: inherit;
}

.sqz-b1 {
  width: 40px;
  height: 110px;
  background: linear-gradient(180deg, #e8d5b0, #c4a070);
}

.sqz-b2 {
  width: 56px;
  height: 76px;
  background: linear-gradient(180deg, #f0d4d4, #d49090);
}

.sqz-b3 {
  width: 46px;
  height: 94px;
  background: linear-gradient(180deg, #d4c9b0, #a89070);
}

.sqz-light-pool {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 32px;
  background: radial-gradient(ellipse, rgba(181, 128, 58, .18), transparent 70%);
  border-radius: 50%;
}

.sqz-scroll-cta {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  z-index: 2;
  transition: opacity var(--transition-fast);
  animation: sqzFadeUp .8s ease 1.2s both;
}

.sqz-scroll-cta:hover {
  opacity: .7;
}

/* ─────────────────────────────────────────────
   SECTION WRAPPER
───────────────────────────────────────────── */
.sqz-section {
  padding: 64px 0 100px;
  background: var(--bg);
}

/* ─────────────────────────────────────────────
   QUIZ CARD
───────────────────────────────────────────── */
.sqz-card {
  max-width: 860px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 12px 60px var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* ── Card Header / Progress ── */
.sqz-card-header {
  padding: 22px 32px 18px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.sqz-progress-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.sqz-progress-track {
  flex: 1;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.sqz-progress-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  width: 0%;
  transition: width .55s cubic-bezier(.25, .46, .45, .94);
  animation: sqz-progress-glow 2.5s ease-in-out infinite;
}

.sqz-step-indicator {
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  white-space: nowrap;
  flex-shrink: 0;
  transition: color .3s;
}

.sqz-step-dots {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
}

.sqz-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: 1.5px solid var(--fg-muted);
  transition: background .3s, border-color .3s, transform .3s;
  cursor: default;
}

.sqz-dot.active {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.3);
}

.sqz-dot.done {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

/* ── Questions Wrapper ── */
.sqz-questions-wrap {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

/* ── Individual Step ── */
.sqz-step {
  display: none;
  padding: 40px 40px 28px;
  flex-direction: column;
  gap: 0;
}

.sqz-step.active {
  display: flex;
  animation: sqzStepEnter .38s cubic-bezier(.25, .46, .45, .94) forwards;
}

.sqz-step.leaving {
  display: flex;
  animation: sqzStepLeave .28s ease forwards;
}

.sqz-q-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.sqz-q-num {
  font-family: var(--ff-display);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--accent);
  opacity: .35;
  line-height: 1;
}

.sqz-q-theme {
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 3px 10px;
  border: 1px solid rgba(181, 128, 58, .3);
  border-radius: 100px;
  background: rgba(181, 128, 58, .07);
}

.sqz-q-title {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--fg);
  line-height: 1.2;
  margin-bottom: 8px;
}

.sqz-q-sub {
  font-size: .85rem;
  color: var(--fg-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

.sqz-q-sub em {
  color: var(--accent);
  font-style: italic;
}

/* ── Options Grid ── */
.sqz-opts {
  display: grid;
  gap: 12px;
}

.sqz-opts-4 {
  grid-template-columns: repeat(4, 1fr);
}

.sqz-opts-3 {
  grid-template-columns: repeat(3, 1fr);
}

.sqz-opt {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 18px 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg);
  cursor: pointer;
  transition: border-color .25s ease, background .25s ease, transform .25s ease, box-shadow .25s ease;
  position: relative;
  overflow: hidden;
}

.sqz-opt::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(181, 128, 58, .06), transparent 60%);
  opacity: 0;
  transition: opacity .3s ease;
}

.sqz-opt:hover {
  border-color: var(--accent-light);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px var(--glow);
}

.sqz-opt:hover::before {
  opacity: 1;
}

.sqz-opt.selected {
  border-color: var(--accent);
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--glow);
}

.sqz-opt.selected::after {
  content: '✓';
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: .65rem;
  color: var(--accent);
  font-weight: 600;
}

.sqz-opt-icon {
  font-size: 1.8rem;
  line-height: 1;
  display: block;
  transition: transform .3s ease;
}

.sqz-opt:hover .sqz-opt-icon {
  transform: scale(1.12);
}

.sqz-opt-icon-lg {
  font-size: 2.4rem;
}

.sqz-opt-label {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--fg);
  line-height: 1.2;
}

.sqz-opt-sub {
  font-size: .7rem;
  color: var(--fg-muted);
  line-height: 1.4;
  letter-spacing: .02em;
}

/* Mood color accent */
.sqz-opt-mood.selected {
  border-color: var(--mood-col, var(--accent));
  box-shadow: 0 8px 28px color-mix(in srgb, var(--mood-col, var(--accent)) 30%, transparent);
}

.sqz-opt-mood.selected::after {
  color: var(--mood-col, var(--accent));
}

/* Format options larger icons */
.sqz-opt-format {
  padding: 24px 16px 20px;
}

/* ── Card Footer ── */
.sqz-card-footer {
  padding: 18px 32px 24px;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sqz-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff-body);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: 100px;
  cursor: pointer;
  transition: border-color .2s, color .2s;
}

.sqz-back-btn:hover:not(:disabled) {
  border-color: var(--accent);
  color: var(--accent);
}

.sqz-back-btn:disabled {
  opacity: .35;
  cursor: default;
  pointer-events: none;
}

.sqz-footer-center {
  flex: 1;
  text-align: center;
}

.sqz-footer-hint {
  font-size: .72rem;
  color: var(--fg-muted);
  letter-spacing: .06em;
}

.sqz-next-btn {
  white-space: nowrap;
}

.sqz-next-btn:disabled {
  opacity: .45;
  pointer-events: none;
  box-shadow: none;
}

.sqz-next-btn:not(:disabled) {
  animation: none;
}

/* ─────────────────────────────────────────────
   RESULTS PANEL
───────────────────────────────────────────── */
.sqz-results {
  max-width: 960px;
  margin: 0 auto;
  display: none;
}

.sqz-results.active {
  display: block;
}

/* ── Loading ── */
.sqz-loading {
  text-align: center;
  padding: 80px 40px;
  display: none;
}

.sqz-loading.active {
  display: block;
}

.sqz-loading-candle {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 28px;
  width: 120px;
  height: 120px;
  overflow: hidden;
}

.sqz-loading-candle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.sqz-loading-candle .sqz-flame {
  height: 34px;
}

.sqz-loading-candle .sqz-b2 {
  width: 44px;
  height: 70px;
}

.sqz-loading-text {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--fg-2);
  margin-bottom: 24px;
  animation: sqz-loading-text 1.8s ease-in-out infinite;
}

.sqz-loading-bar {
  width: 240px;
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}

.sqz-loading-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  width: 0%;
  transition: width .4s ease;
}

/* ── Result Content ── */
.sqz-result-content {
  display: none;
}

.sqz-result-content.active {
  display: block;
  animation: sqzFadeUp .6s ease forwards;
}

/* Result Hero */
.sqz-result-hero {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 28px;
  box-shadow: 0 8px 40px var(--shadow);
}

.sqz-result-badge-wrap {
  position: relative;
  flex-shrink: 0;
  width: 96px;
  height: 96px;
}

.sqz-result-badge {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 32px var(--glow);
  animation: sqz-badge-spin .7s cubic-bezier(.34, 1.56, .64, 1) .3s both;
  overflow: hidden;
}

.sqz-result-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

.sqz-badge-icon {
  font-size: 2.4rem;
}

.sqz-badge-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1.5px solid rgba(181, 128, 58, .3);
  animation: sqz-ring-pulse 3s ease-in-out infinite;
}

.sqz-badge-ring-1 {
  width: 120px;
  height: 120px;
  transform: translate(-50%, -50%);
}

.sqz-badge-ring-2 {
  width: 148px;
  height: 148px;
  transform: translate(-50%, -50%);
  animation-delay: .6s;
}

.sqz-result-intro {}

.sqz-result-name {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--fg);
  line-height: 1.1;
  margin-bottom: 6px;
}

.sqz-result-tagline {
  font-size: .75rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.sqz-result-desc {
  font-size: .95rem;
  color: var(--fg-2);
  line-height: 1.75;
  max-width: 540px;
}

/* Why Section */
.sqz-why-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 28px;
}

.sqz-why-header {
  margin-bottom: 24px;
}

.sqz-why-title {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--fg);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.sqz-why-title svg {
  color: var(--accent);
  flex-shrink: 0;
}

.sqz-why-sub {
  font-size: .82rem;
  color: var(--fg-muted);
}

.sqz-why-reasons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.sqz-why-reason {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  background: var(--bg-2);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  animation: sqzSlideIn .4s ease both;
}

.sqz-why-reason-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(181, 128, 58, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .9rem;
}

.sqz-why-reason-text h5 {
  font-family: var(--ff-body);
  font-size: .78rem;
  font-weight: 500;
  color: var(--fg);
  letter-spacing: .06em;
  margin-bottom: 3px;
}

.sqz-why-reason-text p {
  font-size: .75rem;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* Profile Breakdown */
.sqz-profile-breakdown {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 28px;
}

.sqz-breakdown-title,
.sqz-pyramid-title {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 20px;
}

.sqz-traits {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sqz-trait {
  display: flex;
  flex-direction: column;
  gap: 6px;
  animation: sqzFadeUp .5s ease both;
}

.sqz-trait-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sqz-trait-name {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--fg-2);
}

.sqz-trait-pct {
  font-family: var(--ff-display);
  font-size: .9rem;
  color: var(--accent);
}

.sqz-trait-bar {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.sqz-trait-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent-light));
  border-radius: 2px;
  width: 0%;
  transition: width 1s cubic-bezier(.25, .46, .45, .94);
}

/* Pyramid */
.sqz-pyramid {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sqz-pyramid-layers {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sqz-pyramid-layer {
  border-radius: var(--radius);
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  animation: sqzFadeUp .5s ease both;
}

.sqz-pyramid-layer.layer-top {
  background: rgba(232, 196, 122, .12);
  border: 1px solid rgba(232, 196, 122, .25);
}

.sqz-pyramid-layer.layer-heart {
  background: rgba(181, 128, 58, .12);
  border: 1px solid rgba(181, 128, 58, .25);
}

.sqz-pyramid-layer.layer-base {
  background: rgba(138, 94, 40, .12);
  border: 1px solid rgba(138, 94, 40, .25);
}

.sqz-layer-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sqz-layer-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.layer-top .sqz-layer-dot {
  background: var(--accent-light);
}

.layer-heart .sqz-layer-dot {
  background: var(--accent);
}

.layer-base .sqz-layer-dot {
  background: var(--accent-dark);
}

.sqz-layer-label {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.sqz-layer-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.sqz-layer-note {
  font-size: .72rem;
  padding: 2px 9px;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--fg-2);
  background: var(--bg);
}

/* Recommended Products */
.sqz-recommendations {
  margin-bottom: 28px;
}

.sqz-rec-header {
  margin-bottom: 22px;
}

.sqz-rec-title {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--fg);
  margin-bottom: 6px;
}

.sqz-rec-sub {
  font-size: .92rem;
  color: var(--fg-muted);
}

.sqz-rec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.sqz-rec-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color .2s;
  animation: sqzFadeUp .5s ease both;
}

.sqz-rec-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 44px var(--shadow);
  border-color: rgba(181, 128, 58, .3);
}

.sqz-rec-visual {
  height: 160px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 14px;
  position: relative;
  overflow: hidden;
}

.sqz-rec-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .4;
}

.sqz-rv-amber {
  background: transparent;
}

.sqz-rv-amber::before {
  opacity: 0;
}

.sqz-rv-rose {
  background: transparent;
}

.sqz-rv-rose::before {
  opacity: 0;
}

.sqz-rv-cedar {
  background: transparent;
}

.sqz-rv-cedar::before {
  opacity: 0;
}

.sqz-rv-ocean {
  background: transparent;
}

.sqz-rv-ocean::before {
  opacity: 0;
}

.sqz-rv-vetiver {
  background: transparent;
}

.sqz-rv-vetiver::before {
  opacity: 0;
}

.sqz-rv-vanilla {
  background: transparent;
}

.sqz-rv-vanilla::before {
  opacity: 0;
}

.sqz-rec-mini-candle {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.sqz-rec-mini-flame {
  position: relative;
  width: 14px;
  height: 24px;
  margin-bottom: -1px;
}

.sqz-rec-mini-flame .flame-outer {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 11px;
  height: 22px;
  background: linear-gradient(180deg, #ff9f38, #ff6b00 60%, transparent 100%);
  border-radius: 50% 50% 40% 40%;
  animation: sqz-flame-sway 2.4s ease-in-out infinite;
  transform-origin: bottom center;
}

.sqz-rec-mini-flame .flame-inner {
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 12px;
  background: linear-gradient(180deg, #fff5c0, #ffd060 80%, transparent 100%);
  border-radius: 50% 50% 40% 40%;
  animation: sqz-flame-sway 2.4s ease-in-out infinite reverse;
  z-index: 1;
}

.sqz-rec-mini-flame .flame-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  background: radial-gradient(circle, rgba(255, 160, 56, .5), transparent 65%);
  border-radius: 50%;
  animation: sqz-glow-pulse 2.4s ease-in-out infinite;
}

.sqz-rec-mini-body {
  width: 30px;
  height: 76px;
  background: linear-gradient(180deg, #e8d5b0, #c4a070);
  border-radius: 2px;
  position: relative;
}

.sqz-rec-mini-body::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, .18), transparent);
  border-radius: inherit;
}

.sqz-rec-info {
  padding: 14px 14px 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sqz-rec-match {
  font-size: .6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 400;
}

.sqz-rec-name {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--fg);
  line-height: 1.2;
}

.sqz-rec-notes {
  font-size: .82rem;
  color: var(--fg-muted);
  letter-spacing: .04em;
}

.sqz-rec-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.sqz-rec-price {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  color: var(--fg);
}

.sqz-rec-add {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 13px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s, transform .2s;
  border: none;
  box-shadow: 0 2px 10px var(--glow);
}

.sqz-rec-add:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.sqz-rec-add.added {
  background: #3a7a50;
}

/* Also Love strip */
.sqz-also-love {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 32px;
}

.sqz-also-title {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 16px;
}

.sqz-also-grid {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.sqz-also-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: var(--bg-card);
  font-size: .9rem;
  color: var(--fg-2);
  cursor: pointer;
  transition: border-color .2s, color .2s, background .2s, transform .2s;
  animation: sqzFadeUp .5s ease both;
}

.sqz-also-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--cream);
  transform: translateY(-2px);
}

.sqz-also-pill-icon {
  font-size: 1rem;
}

/* Result Actions */
.sqz-result-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 16px;
}

.sqz-retake-btn,
.sqz-share-btn {
  cursor: pointer;
}

/* ─────────────────────────────────────────────
   HOW IT WORKS
───────────────────────────────────────────── */
.sqz-how {
  background: var(--bg-2);
}

.sqz-how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.sqz-how-step {
  text-align: center;
  padding: 28px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform var(--transition), box-shadow var(--transition);
  transition-delay: var(--d, 0s);
}

.sqz-how-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px var(--shadow);
}

.sqz-how-num {
  font-family: var(--ff-display);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--accent);
  opacity: .3;
  line-height: 1;
  margin-bottom: 12px;
}

.sqz-how-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(181, 128, 58, .1);
  border: 1px solid rgba(181, 128, 58, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--accent);
}

.sqz-how-step h4 {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 10px;
}

.sqz-how-step p {
  font-size: .92rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── reveal-up (reused) ── */
.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--d, 0s);
}

.reveal-up.visible {
  opacity: 1;
  transform: none;
}

/* ─────────────────────────────────────────────
   RESPONSIVE — TABLET (≤1024px)
───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .sqz-hero-inner {
    grid-template-columns: 1fr;
    padding-bottom: 60px;
  }

  .sqz-hero-deco {
    display: none;
  }

  .sqz-hero-title {
    font-size: clamp(2.2rem, 7vw, 3.2rem);
  }

  .sqz-opts-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .sqz-opts-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .sqz-profile-breakdown {
    grid-template-columns: 1fr;
  }

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

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

  .sqz-why-reasons {
    grid-template-columns: 1fr;
  }

  .sqz-result-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .sqz-result-badge-wrap {
    margin: 0 auto;
  }

  .sqz-result-desc {
    margin: 0 auto;
  }
}

/* ─────────────────────────────────────────────
   RESPONSIVE — MOBILE (≤767px)
───────────────────────────────────────────── */
@media (max-width: 767px) {
  .sqz-hero {
    min-height: auto;
    padding: 0 0 50px;
  }

  .sqz-hero-inner {
    padding: 24px 0 0;
    gap: 24px;
  }

  .sqz-hero-title {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .sqz-hero-sub {
    font-size: .88rem;
  }

  .sqz-hero-stats {
    gap: 14px;
  }

  .sqz-stat-num {
    font-size: 1.3rem;
  }

  .sqz-section {
    padding: 40px 0 70px;
  }

  .sqz-card {
    border-radius: 14px;
  }

  .sqz-card-header {
    padding: 16px 20px 14px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .sqz-step-dots {
    display: none;
  }

  .sqz-step {
    padding: 24px 20px 18px;
  }

  .sqz-q-num {
    font-size: 1.8rem;
  }

  .sqz-q-title {
    font-size: clamp(1.3rem, 5vw, 1.7rem);
  }

  .sqz-opts-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .sqz-opts-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .sqz-opt {
    padding: 12px 8px 10px;
  }

  .sqz-opt-icon {
    font-size: 1.5rem;
  }

  .sqz-opt-label {
    font-size: .85rem;
  }

  .sqz-opt-sub {
    display: none;
  }

  .sqz-opt-format .sqz-opt-sub {
    display: block;
    font-size: .65rem;
  }

  .sqz-card-footer {
    padding: 14px 20px 18px;
  }

  .sqz-footer-hint {
    display: none;
  }

  .sqz-result-hero {
    padding: 24px 20px;
    gap: 20px;
  }

  .sqz-result-badge-wrap {
    width: 76px;
    height: 76px;
  }

  .sqz-result-badge {
    width: 76px;
    height: 76px;
  }

  .sqz-badge-icon {
    font-size: 2rem;
  }

  .sqz-result-name {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }

  .sqz-badge-ring-1 {
    width: 96px;
    height: 96px;
  }

  .sqz-badge-ring-2 {
    width: 120px;
    height: 120px;
  }

  .sqz-why-section {
    padding: 20px;
  }

  .sqz-why-reasons {
    grid-template-columns: 1fr;
  }

  .sqz-profile-breakdown {
    gap: 14px;
  }

  .sqz-traits,
  .sqz-pyramid {
    padding: 18px;
  }

  .sqz-rec-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .sqz-rec-visual {
    height: 130px;
  }

  .sqz-also-love {
    padding: 20px;
  }

  .sqz-result-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .sqz-result-actions .btn {
    justify-content: center;
  }

  .sqz-how-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .sqz-opts-3 {
    grid-template-columns: 1fr;
  }

  .sqz-opt-format {
    flex-direction: row;
    text-align: left;
    align-items: center;
    gap: 12px;
    padding: 14px 14px;
  }

  .sqz-opt-format .sqz-opt-icon {
    flex-shrink: 0;
  }

  .sqz-opt-format .sqz-opt-sub {
    display: block;
  }
}

/* ─────────────────────────────────────────────
   RTL SUPPORT
───────────────────────────────────────────── */
[dir="rtl"] .sqz-breadcrumb {
  flex-direction: row-reverse;
}

[dir="rtl"] .sqz-q-meta {
  flex-direction: row-reverse;
}

[dir="rtl"] .sqz-card-footer {
  flex-direction: row-reverse;
}

[dir="rtl"] .sqz-back-btn svg {
  transform: scaleX(-1);
}

[dir="rtl"] .sqz-next-btn svg {
  transform: scaleX(-1);
}

[dir="rtl"] .sqz-hero-stats {
  flex-direction: row-reverse;
}

[dir="rtl"] .sqz-why-reason {
  flex-direction: row-reverse;
}

[dir="rtl"] .sqz-layer-header {
  flex-direction: row-reverse;
}

[dir="rtl"] .sqz-rec-footer {
  flex-direction: row-reverse;
}

[dir="rtl"] .sqz-result-hero {
  direction: rtl;
}

[dir="rtl"] .sqz-trait-label-row {
  flex-direction: row-reverse;
}

[dir="rtl"] .sqz-trait-fill,
[dir="rtl"] .sqz-loading-fill {
  background: linear-gradient(270deg, var(--accent-dark), var(--accent-light));
}

[dir="rtl"] .sqz-result-actions {
  flex-direction: row-reverse;
}

/* =============================================
   PRODUCT DETAIL PAGE (PDP)
   ============================================= */

/* ── BREADCRUMB ─────────────────────────────── */
.pdp-breadcrumb {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .84rem;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.breadcrumb-nav a {
  color: var(--fg-muted);
  transition: color var(--transition-fast);
}

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

.bc-sep {
  color: var(--border);
  font-size: .9rem;
}

.bc-current {
  color: var(--fg-2);
}

/* ── PDP HERO ────────────────────────────────── */
.pdp-hero {
  padding: 60px 0 80px;
  background: var(--bg);
}

.pdp-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

/* ── GALLERY ─────────────────────────────────── */
.pdp-gallery {
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

.pdp-main-image {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--bg-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 16px;
}

/* Cinematic Scene */
.pdp-img-scene {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdp-scene-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 70%, rgba(181, 128, 58, .18) 0%, transparent 70%),
    linear-gradient(160deg, var(--bg-card) 0%, var(--bg-2) 100%);
}

.pdp-scene-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(181, 128, 58, .28) 0%, transparent 70%);
  border-radius: 50%;
  animation: pdpGlowPulse 3s ease-in-out infinite;
}

@keyframes pdpGlowPulse {

  0%,
  100% {
    opacity: .5;
    transform: translateX(-50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.15);
  }
}

/* Candle Vessel */
.pdp-candle-vessel {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pdp-vessel-glass {
  width: 160px;
  height: 220px;
  background: linear-gradient(135deg, rgba(212, 168, 92, .15) 0%, rgba(181, 128, 58, .08) 50%, rgba(212, 168, 92, .2) 100%);
  border: 1px solid rgba(181, 128, 58, .3);
  border-radius: 12px 12px 8px 8px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(4px);
  box-shadow: 0 20px 60px rgba(26, 18, 9, .2), inset 0 1px 0 rgba(255, 255, 255, .15);
}

.pdp-wax-surface {
  height: 40px;
  background: linear-gradient(180deg, #e8d5a0 0%, #d4b86a 100%);
  border-radius: 8px 8px 0 0;
  position: relative;
  display: flex;
  justify-content: center;
}

.pdp-candle-wick {
  width: 2px;
  height: 14px;
  background: #4a3010;
  border-radius: 1px;
  margin-top: -14px;
  position: relative;
  z-index: 3;
}

.pdp-flame-wrap {
  position: absolute;
  top: -38px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 40px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.pdp-flame-outer {
  position: absolute;
  bottom: 0;
  width: 20px;
  height: 34px;
  background: linear-gradient(180deg, rgba(181, 128, 58, .6) 0%, rgba(220, 160, 60, .9) 60%, rgba(255, 200, 80, 1) 100%);
  border-radius: 50% 50% 30% 30%;
  animation: pdpFlameOuter 2.2s ease-in-out infinite;
  transform-origin: bottom center;
}

.pdp-flame-inner {
  position: absolute;
  bottom: 2px;
  width: 12px;
  height: 22px;
  background: linear-gradient(180deg, rgba(255, 220, 100, .9) 0%, rgba(255, 255, 200, 1) 100%);
  border-radius: 50% 50% 30% 30%;
  animation: pdpFlameInner 1.8s ease-in-out infinite;
  transform-origin: bottom center;
}

.pdp-flame-core {
  position: absolute;
  bottom: 3px;
  width: 6px;
  height: 10px;
  background: rgba(255, 255, 240, .95);
  border-radius: 50% 50% 40% 40%;
}

.pdp-flame-halo {
  position: absolute;
  bottom: -4px;
  width: 30px;
  height: 12px;
  background: radial-gradient(ellipse, rgba(181, 128, 58, .4) 0%, transparent 70%);
  border-radius: 50%;
}

@keyframes pdpFlameOuter {

  0%,
  100% {
    transform: scaleX(1) rotate(-1deg);
  }

  33% {
    transform: scaleX(.9) rotate(1.5deg);
  }

  66% {
    transform: scaleX(1.05) rotate(-.5deg);
  }
}

@keyframes pdpFlameInner {

  0%,
  100% {
    transform: scaleX(1) rotate(1deg);
  }

  50% {
    transform: scaleX(.85) rotate(-1.5deg);
  }
}

.pdp-wax-body {
  flex: 1;
  background: linear-gradient(180deg, #d4b86a 0%, #c9a85a 100%);
}

.pdp-vessel-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px 16px;
  background: linear-gradient(0deg, rgba(26, 18, 9, .6) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.pdp-label-brand {
  font-family: var(--ff-body);
  font-size: .6rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(240, 232, 216, .6);
}

.pdp-label-name {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(240, 232, 216, .95);
  letter-spacing: .04em;
}

.pdp-label-vol {
  font-size: .6rem;
  letter-spacing: .12em;
  color: rgba(240, 232, 216, .5);
  text-transform: uppercase;
}

.pdp-vessel-shine {
  position: absolute;
  top: 0;
  left: 10%;
  width: 20%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .06), transparent);
  pointer-events: none;
}

.pdp-vessel-shadow {
  width: 100px;
  height: 20px;
  background: radial-gradient(ellipse, rgba(26, 18, 9, .25) 0%, transparent 70%);
  border-radius: 50%;
  margin-top: 8px;
}

/* Petals / Botanicals */
.pdp-scene-petals {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.pdp-petal {
  position: absolute;
  border-radius: 50% 50% 50% 0;
  opacity: .3;
}

.pdp-petal.p1 {
  width: 12px;
  height: 18px;
  background: var(--accent-light);
  top: 30%;
  left: 15%;
  transform: rotate(30deg);
  animation: pdpFloat 6s ease-in-out infinite;
}

.pdp-petal.p2 {
  width: 8px;
  height: 14px;
  background: var(--accent);
  bottom: 35%;
  right: 18%;
  transform: rotate(-45deg);
  animation: pdpFloat 7s ease-in-out infinite .8s;
}

.pdp-petal.p3 {
  width: 10px;
  height: 16px;
  background: var(--accent-light);
  top: 60%;
  left: 20%;
  transform: rotate(15deg);
  animation: pdpFloat 5.5s ease-in-out infinite 1.4s;
}

.pdp-petal.p4 {
  width: 6px;
  height: 10px;
  background: var(--accent-dark);
  top: 25%;
  right: 22%;
  transform: rotate(-20deg);
  animation: pdpFloat 8s ease-in-out infinite 0.4s;
}

.pdp-petal.p5 {
  width: 14px;
  height: 20px;
  background: var(--accent);
  bottom: 20%;
  left: 25%;
  transform: rotate(55deg);
  animation: pdpFloat 6.5s ease-in-out infinite 2s;
}

@keyframes pdpFloat {

  0%,
  100% {
    transform: translateY(0) rotate(var(--r, 30deg));
  }

  50% {
    transform: translateY(-12px) rotate(calc(var(--r, 30deg) + 10deg));
  }
}

.pdp-img-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent);
  color: #fff;
  font-size: .68rem;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Thumbnails */
.pdp-thumbnails {
  display: flex;
  gap: 10px;
}

.pdp-thumb {
  flex: 1;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: border-color var(--transition-fast), transform var(--transition-fast);
  padding: 0;
}

.pdp-thumb:hover,
.pdp-thumb.active {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.pdp-thumb-inner {
  width: 100%;
  height: 100%;
}

.pdp-thumb-main {
  background: linear-gradient(135deg, var(--cream), var(--bg-2));
}

.pdp-thumb-detail {
  background: linear-gradient(135deg, #d4b060 30%, var(--bg-2));
}

.pdp-thumb-lifestyle {
  background: linear-gradient(135deg, var(--bg-2), #c4a05a 80%);
}

.pdp-thumb-ingredient {
  background: linear-gradient(135deg, var(--cream) 40%, #b8902a);
}

/* ── PDP INFO PANEL ──────────────────────────── */
.pdp-info {
  padding-top: 8px;
}

.pdp-info-top {
  margin-bottom: 20px;
}

.pdp-product-title {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
  color: var(--fg);
  margin: 8px 0 6px;
}

.pdp-product-subtitle {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--fg-muted);
  font-weight: 300;
}

/* Rating */
.pdp-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.pdp-stars {
  display: flex;
  gap: 2px;
}

.star {
  font-size: 1rem;
  color: var(--border);
}

.star.filled {
  color: var(--accent);
}

.star.half {
  position: relative;
  color: var(--border);
}

.star.half::before {
  content: '★';
  position: absolute;
  color: var(--accent);
  width: 50%;
  overflow: hidden;
  left: 0;
}

.pdp-rating-count {
  font-size: .8rem;
  color: var(--fg-muted);
}

.pdp-rating-count em {
  font-style: normal;
}

.pdp-rating-link {
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Price */
.pdp-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px;
}

.pdp-price {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--fg);
}

.pdp-price-original {
  font-size: 1rem;
  color: var(--fg-muted);
  text-decoration: line-through;
}

.pdp-price-save {
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #3a7a50;
  background: rgba(58, 122, 80, .1);
  border: 1px solid rgba(58, 122, 80, .2);
  padding: 3px 10px;
  border-radius: 100px;
}

/* Smell Story */
.pdp-smell-story {
  display: flex;
  gap: 14px;
  padding: 20px 22px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin-bottom: 28px;
}

.pdp-story-icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent);
  opacity: .7;
}

.pdp-story-text {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--fg-2);
  line-height: 1.75;
}

/* Options */
.pdp-option-group {
  margin-bottom: 22px;
}

.pdp-option-label {
  display: block;
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 10px;
}

.pdp-size-options {
  display: flex;
  gap: 10px;
}

.pdp-size-btn {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  color: var(--fg-2);
  font-family: var(--ff-body);
  font-size: .78rem;
  font-weight: 400;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-align: center;
}

.pdp-size-btn span {
  font-size: .65rem;
  color: var(--fg-muted);
}

.pdp-size-btn:hover,
.pdp-size-btn.active {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(181, 128, 58, .05);
}

.pdp-size-btn.active {
  background: rgba(181, 128, 58, .08);
}

/* Quantity */
.pdp-qty-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.pdp-qty-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.pdp-qty-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--fg-2);
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast);
  border: none;
  background: var(--bg-card);
}

.pdp-qty-btn:hover {
  background: var(--cream);
  color: var(--accent);
}

.pdp-qty-val {
  width: 48px;
  text-align: center;
  font-family: var(--ff-display);
  font-size: 1.2rem;
  color: var(--fg);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  padding: 8px 0;
  background: var(--bg-card);
}

.pdp-stock-badge {
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #3a7a50;
}

/* CTA */
.pdp-cta-row {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.pdp-add-cart {
  flex: 1;
  justify-content: center;
  font-size: .82rem;
}

.pdp-wishlist-btn {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  color: var(--fg-2);
  cursor: pointer;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.pdp-wishlist-btn:hover,
.pdp-wishlist-btn.active {
  border-color: #c0392b;
  color: #c0392b;
  background: rgba(192, 57, 43, .05);
}

.pdp-wishlist-btn.active svg {
  fill: #c0392b;
}

/* Trust */
.pdp-trust-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.pdp-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  color: var(--fg-muted);
}

.pdp-trust-item svg {
  flex-shrink: 0;
  color: var(--accent);
}

/* ═══════════════════════════════════════════
   SCENT PROFILE SECTION
═══════════════════════════════════════════ */
.pdp-scent-section {
  background: var(--bg-2);
}

.pdp-scent-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.pdp-scent-intro {
  font-size: 1.02rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 36px;
}

/* Pyramid */
.pdp-pyramid {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
}

.pdp-pyramid-layer {
  padding: 22px 24px;
}

.pdp-pyramid-divider {
  height: 1px;
  background: var(--border);
}

.pdp-top-notes {
  background: rgba(181, 128, 58, .04);
}

.pdp-heart-notes {
  background: rgba(181, 128, 58, .07);
}

.pdp-base-notes {
  background: rgba(181, 128, 58, .11);
}

.pdp-layer-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.pdp-layer-tag {
  font-family: var(--ff-body);
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
}

.pdp-layer-time {
  font-size: .68rem;
  color: var(--fg-muted);
  letter-spacing: .05em;
}

.pdp-layer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pdp-note-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: .78rem;
  color: var(--fg-2);
  transition: var(--transition-fast);
}

.pdp-note-chip:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.pdp-note-icon {
  font-size: .85rem;
}

/* Mood Panel */
.pdp-mood-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pdp-mood-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.pdp-mood-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.pdp-mood-desc {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--fg);
  line-height: 1.65;
  margin-bottom: 16px;
}

.pdp-mood-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pdp-mood-tag {
  padding: 5px 12px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: .74rem;
  color: var(--fg-2);
}

/* Details Card */
.pdp-details-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.pdp-details-title {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 18px;
}

.pdp-details-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pdp-detail-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.pdp-detail-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(181, 128, 58, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.pdp-detail-key {
  display: block;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 2px;
}

.pdp-detail-val {
  display: block;
  font-size: .88rem;
  color: var(--fg-2);
}

/* Intensity */
.pdp-intensity-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
}

.pdp-intensity-label {
  display: block;
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 12px;
}

.pdp-intensity-track {
  height: 6px;
  background: var(--cream);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 8px;
}

.pdp-intensity-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-light), var(--accent-dark));
  border-radius: 100px;
  width: 0;
  transition: width 1.4s cubic-bezier(.25, .46, .45, .94);
}

.pdp-intensity-scale {
  display: flex;
  justify-content: space-between;
  font-size: .65rem;
  color: var(--fg-muted);
  letter-spacing: .08em;
}

/* ═══════════════════════════════════════════
   PAIRS WELL WITH
═══════════════════════════════════════════ */
.pdp-pairs-section {
  background: var(--bg);
}

.pdp-pairs-sub {
  font-size: 1.0rem;
  color: var(--fg-muted);
  margin-top: 12px;
}

.pdp-pairs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pdp-pair-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.pdp-pair-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px var(--shadow);
}

.pdp-pair-visual {
  height: 180px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pdp-pair-v1 {
  background: linear-gradient(135deg, #2d1f0a, #5a3a14);
}

.pdp-pair-v2 {
  background: linear-gradient(135deg, #1a1a2e, #3a2a4a);
}

.pdp-pair-v3 {
  background: linear-gradient(135deg, #0a1a0f, #1a3a22);
}

/* Small candle in pair card */
.pdp-pair-candle-sm {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pcs-flame {
  width: 10px;
  height: 16px;
  background: linear-gradient(180deg, rgba(255, 220, 100, .9), rgba(255, 160, 40, 1));
  border-radius: 50% 50% 30% 30%;
  animation: pdpFlameOuter 2s ease-in-out infinite;
  transform-origin: bottom center;
  margin-bottom: -2px;
}

.pcs-body {
  width: 50px;
  height: 80px;
  background: linear-gradient(180deg, rgba(212, 168, 92, .3) 0%, rgba(181, 128, 58, .15) 100%);
  border: 1px solid rgba(212, 168, 92, .3);
  border-radius: 4px 4px 3px 3px;
}

.pdp-pair-info {
  padding: 20px;
}

.pdp-pair-collection {
  display: block;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

.pdp-pair-name {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 8px;
}

.pdp-pair-why {
  font-size: .9rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.pdp-pair-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pdp-pair-price {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  color: var(--fg);
}

.pdp-pair-add {
  padding: 8px 18px;
  border: 1px solid var(--accent);
  border-radius: 100px;
  font-family: var(--ff-body);
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .1em;
  color: var(--accent);
  cursor: pointer;
  background: transparent;
  transition: var(--transition-fast);
}

.pdp-pair-add:hover,
.pdp-pair-add.added {
  background: var(--accent);
  color: #fff;
}

/* ═══════════════════════════════════════════
   REVIEWS
═══════════════════════════════════════════ */
.pdp-reviews-section {
  background: var(--bg-2);
}

.pdp-reviews-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  margin-bottom: 56px;
  align-items: start;
}

.pdp-review-score {
  font-family: var(--ff-display);
  font-size: 5rem;
  font-weight: 300;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 10px;
}

.pdp-review-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}

.pdp-stars-lg .star {
  font-size: 1.3rem;
}

.pdp-review-total {
  font-size: .78rem;
  color: var(--fg-muted);
}

.pdp-review-bars {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pdp-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .74rem;
  color: var(--fg-muted);
}

.pdp-bar-row>span:first-child {
  width: 28px;
  flex-shrink: 0;
}

.pdp-bar-row>span:last-child {
  width: 32px;
  flex-shrink: 0;
  text-align: right;
}

.pdp-bar-track {
  flex: 1;
  height: 5px;
  background: var(--cream);
  border-radius: 100px;
  overflow: hidden;
}

.pdp-bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 100px;
  width: 0;
  transition: width 1.2s cubic-bezier(.25, .46, .45, .94);
}

/* Write Review */
.pdp-write-review {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pdp-wr-title {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 8px;
}

.pdp-wr-sub {
  font-size: .95rem;
  color: var(--fg-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

/* Review Cards Grid */
.pdp-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.pdp-review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.pdp-review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px var(--shadow);
}

.pdp-rc-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.pdp-rc-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 500;
  flex-shrink: 0;
}

.pdp-rc-meta {
  flex: 1;
}

.pdp-rc-name {
  display: block;
  font-size: .92rem;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 2px;
}

.pdp-rc-stars {
  font-size: .85rem;
  color: var(--accent);
  letter-spacing: 1px;
}

.pdp-rc-date {
  font-size: .68rem;
  color: var(--fg-muted);
  white-space: nowrap;
}

.pdp-rc-title {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1rem;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 10px;
}

.pdp-rc-body {
  font-size: .92rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.pdp-rc-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

.pdp-rc-verified {
  font-size: .68rem;
  color: #3a7a50;
  letter-spacing: .05em;
}

.pdp-rc-helpful {
  font-size: .7rem;
  color: var(--fg-muted);
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  transition: color var(--transition-fast);
}

.pdp-rc-helpful:hover {
  color: var(--accent);
}

.pdp-reviews-more {
  text-align: center;
}

/* Review Form */
.pdp-review-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-top: 40px;
}

.pdp-rf-title {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 24px;
}

.pdp-rf-rating-pick {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.pdp-rf-label {
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.pdp-star-picker {
  display: flex;
  gap: 4px;
}

.pdp-star-pick {
  font-size: 1.8rem;
  color: var(--border);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0 2px;
  transition: color var(--transition-fast), transform var(--transition-fast);
  line-height: 1;
}

.pdp-star-pick:hover,
.pdp-star-pick.selected {
  color: var(--accent);
  transform: scale(1.2);
}

.pdp-rf-fields {
  display: grid;
  gap: 14px;
}

.pdp-rf-input,
.pdp-rf-textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--fg);
  font-family: var(--ff-body);
  font-size: .88rem;
  transition: border-color var(--transition-fast);
}

.pdp-rf-input:focus,
.pdp-rf-textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.pdp-rf-textarea {
  resize: vertical;
}

.pdp-rf-submit {
  width: 100%;
  justify-content: center;
}

/* ═══════════════════════════════════════════
   PDP RESPONSIVE — TABLET (≤1024px)
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .pdp-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 32px;
  }

  .pdp-gallery {
    position: static;
  }

  .pdp-main-image {
    aspect-ratio: 16/9;
    max-height: 480px;
  }

  .pdp-vessel-glass {
    width: 120px;
    height: 170px;
  }

  .pdp-scent-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .pdp-reviews-header {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .pdp-review-score {
    font-size: 4rem;
  }
}

/* ═══════════════════════════════════════════
   PDP RESPONSIVE — MOBILE (≤767px)
═══════════════════════════════════════════ */
@media (max-width: 767px) {
  .pdp-hero {
    padding: 30px 0 50px;
  }

  .pdp-hero-inner {
    padding: 0 20px;
    gap: 28px;
  }

  .pdp-main-image {
    aspect-ratio: 4/3;
    max-height: 340px;
  }

  .pdp-vessel-glass {
    width: 90px;
    height: 130px;
  }

  .pdp-vessel-label {
    padding: 10px;
  }

  .pdp-label-name {
    font-size: .85rem;
  }

  .pdp-product-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .pdp-thumbnails {
    gap: 8px;
  }

  .pdp-size-options {
    flex-wrap: wrap;
  }

  .pdp-size-btn {
    flex: 0 1 calc(33% - 8px);
  }

  .pdp-cta-row {
    flex-wrap: wrap;
  }

  .pdp-add-cart {
    flex: 1 1 auto;
    min-width: 200px;
  }

  .pdp-pairs-grid {
    grid-template-columns: 1fr;
  }

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

  .pdp-layer-content {
    gap: 6px;
  }

  .pdp-note-chip {
    padding: 5px 10px;
    font-size: .72rem;
  }

  .pdp-scent-grid {
    gap: 28px;
  }

  .pdp-pairs-section .section-head,
  .pdp-reviews-section .pdp-reviews-header {
    margin-bottom: 32px;
  }

  .pdp-rf-rating-pick {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .pdp-write-review {
    padding: 24px;
  }

  .pdp-review-form-wrap {
    padding: 24px;
  }

  .container {
    padding: 0 20px;
  }

  .pdp-price {
    font-size: 1.6rem;
  }

  .pdp-price-row {
    flex-wrap: wrap;
    gap: 8px;
  }

  .pdp-breadcrumb {
    display: none;
  }

  .pdp-smell-story {
    flex-direction: column;
    gap: 8px;
    padding: 16px;
  }

  .pdp-reviews-grid {
    gap: 16px;
  }

  .pdp-rc-header {
    flex-wrap: wrap;
  }

  .pdp-rc-date {
    width: 100%;
    margin-top: -8px;
    padding-left: 50px;
  }
}

@media (max-width: 480px) {
  .pdp-size-btn {
    flex: 1 1 100%;
  }

  .pdp-stars-lg .star {
    font-size: 1.1rem;
  }

  .pdp-review-score {
    font-size: 3rem;
  }
}

/* ═══════════════════════════════════════════
   PDP RTL SUPPORT
═══════════════════════════════════════════ */
[dir="rtl"] .pdp-smell-story {
  border-left: none;
  border-right: 3px solid var(--accent);
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

[dir="rtl"] .pdp-layer-label {
  flex-direction: row-reverse;
}

[dir="rtl"] .pdp-detail-row {
  flex-direction: row-reverse;
}

[dir="rtl"] .pdp-rc-header {
  flex-direction: row-reverse;
}

[dir="rtl"] .pdp-rc-date {
  margin-left: 0;
}

[dir="rtl"] .pdp-rc-footer {
  flex-direction: row-reverse;
}

[dir="rtl"] .pdp-pair-footer {
  flex-direction: row-reverse;
}

[dir="rtl"] .pdp-bar-row {
  flex-direction: row-reverse;
}

[dir="rtl"] .pdp-intensity-fill {
  background: linear-gradient(270deg, var(--accent-light), var(--accent-dark));
}

[dir="rtl"] .pdp-bar-fill {
  background: linear-gradient(270deg, var(--accent-light), var(--accent));
}

[dir="rtl"] .breadcrumb-nav {
  flex-direction: row-reverse;
}

[dir="rtl"] .pdp-trust-item {
  flex-direction: row-reverse;
}

[dir="rtl"] .pdp-mood-header {
  flex-direction: row-reverse;
}

[dir="rtl"] .pdp-rating {
  flex-direction: row-reverse;
}

[dir="rtl"] .pdp-price-row {
  flex-direction: row-reverse;
}

/* =============================================
   404 PAGE
   ============================================= */

.e404-main {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 60px 40px;
}

/* Ambient blobs */
.e404-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.e404-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
}

.e404-blob-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-light), transparent 70%);
  top: -100px;
  right: -80px;
  animation: e404BlobDrift 12s ease-in-out infinite;
}

.e404-blob-2 {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, var(--accent), transparent 70%);
  bottom: -60px;
  left: -60px;
  animation: e404BlobDrift 16s ease-in-out infinite reverse;
}

.e404-blob-3 {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, var(--cream), transparent 70%);
  top: 40%;
  left: 40%;
  animation: e404BlobDrift 10s ease-in-out infinite 3s;
}

@keyframes e404BlobDrift {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(20px, -30px) scale(1.05);
  }

  66% {
    transform: translate(-15px, 20px) scale(.97);
  }
}

/* Inner layout */
.e404-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Candle illustration */
.e404-candle-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.e404-candle {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.e404-flame-wrap {
  position: relative;
  width: 30px;
  height: 50px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: -2px;
}

.e404-flame-halo {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 22px;
  background: radial-gradient(ellipse, rgba(181, 128, 58, .45) 0%, transparent 70%);
  border-radius: 50%;
  animation: e404GlowPulse 2.4s ease-in-out infinite;
}

.e404-flame-outer {
  position: absolute;
  bottom: 0;
  width: 24px;
  height: 42px;
  background: linear-gradient(180deg, rgba(181, 128, 58, .6) 0%, rgba(220, 160, 60, .9) 55%, rgba(255, 200, 80, 1) 100%);
  border-radius: 50% 50% 30% 30%;
  animation: e404FlameWobble 2.2s ease-in-out infinite;
  transform-origin: bottom center;
}

.e404-flame-inner {
  position: absolute;
  bottom: 2px;
  width: 14px;
  height: 28px;
  background: linear-gradient(180deg, rgba(255, 220, 110, .9) 0%, rgba(255, 255, 200, 1) 100%);
  border-radius: 50% 50% 30% 30%;
  animation: e404FlameInner 1.8s ease-in-out infinite;
  transform-origin: bottom center;
}

.e404-flame-core {
  position: absolute;
  bottom: 4px;
  width: 7px;
  height: 12px;
  background: rgba(255, 255, 240, .95);
  border-radius: 50% 50% 40% 40%;
}

@keyframes e404FlameWobble {

  0%,
  100% {
    transform: scaleX(1) rotate(-1.5deg);
  }

  33% {
    transform: scaleX(.88) rotate(2deg);
  }

  66% {
    transform: scaleX(1.06) rotate(-.8deg);
  }
}

@keyframes e404FlameInner {

  0%,
  100% {
    transform: scaleX(1) rotate(1deg);
  }

  50% {
    transform: scaleX(.84) rotate(-2deg);
  }
}

@keyframes e404GlowPulse {

  0%,
  100% {
    opacity: .5;
    transform: translateX(-50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.2);
  }
}

.e404-wick {
  width: 2px;
  height: 12px;
  background: #3a2010;
  border-radius: 1px;
  z-index: 2;
}

.e404-wax-top {
  width: 100px;
  height: 14px;
  background: linear-gradient(180deg, #e8d898 0%, #d4c070 100%);
  border-radius: 50px 50px 0 0;
  margin-top: -4px;
}

.e404-wax-pool {
  width: 80px;
  height: 10px;
  background: rgba(212, 192, 112, .5);
  border-radius: 50%;
  margin-top: -4px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.e404-pool-ripple {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(212, 192, 112, .4);
  animation: e404Ripple 3s ease-out infinite;
}

@keyframes e404Ripple {
  0% {
    transform: scale(.3);
    opacity: .8;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.e404-body {
  width: 100px;
  height: 280px;
  background: linear-gradient(160deg, rgba(240, 224, 180, .18) 0%, rgba(181, 128, 58, .12) 50%, rgba(240, 224, 180, .2) 100%);
  border: 1px solid rgba(181, 128, 58, .28);
  border-radius: 0 0 8px 8px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(2px);
  box-shadow: 0 24px 60px rgba(26, 18, 9, .18), inset 0 1px 0 rgba(255, 255, 255, .12);
}

.e404-body-shine {
  position: absolute;
  top: 0;
  left: 12%;
  width: 18%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .07), transparent);
  pointer-events: none;
}

.e404-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.e404-label-brand {
  font-family: var(--ff-body);
  font-size: .6rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(240, 224, 180, .5);
}

.e404-label-name {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(240, 224, 180, .85);
  letter-spacing: .04em;
}

.e404-base {
  width: 116px;
  height: 10px;
  background: linear-gradient(90deg, rgba(181, 128, 58, .18), rgba(181, 128, 58, .32), rgba(181, 128, 58, .18));
  border-radius: 0 0 6px 6px;
}

.e404-candle-shadow {
  width: 80px;
  height: 20px;
  background: radial-gradient(ellipse, rgba(26, 18, 9, .28) 0%, transparent 70%);
  border-radius: 50%;
  margin-top: 10px;
}

/* Smoke wisps */
.e404-smoke-wrap {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .6s ease;
}

.e404-smoke-wrap.visible {
  opacity: 1;
}

.e404-smoke {
  position: absolute;
  width: 6px;
  border-radius: 50px;
  background: var(--fg-muted);
  opacity: 0;
  animation: e404SmokeRise 3s ease-out infinite;
}

.e404-smoke.s1 {
  left: 20px;
  height: 40px;
  animation-delay: 0s;
}

.e404-smoke.s2 {
  left: 28px;
  height: 55px;
  animation-delay: .6s;
}

.e404-smoke.s3 {
  left: 14px;
  height: 32px;
  animation-delay: 1.2s;
}

@keyframes e404SmokeRise {
  0% {
    opacity: 0;
    transform: translateY(0) scaleX(1);
  }

  20% {
    opacity: .18;
  }

  80% {
    opacity: .08;
    transform: translateY(-60px) scaleX(2.5);
  }

  100% {
    opacity: 0;
    transform: translateY(-80px) scaleX(3);
  }
}

/* Floating particles */
.e404-particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.e404-particle {
  position: absolute;
  border-radius: 50%;
  background: var(--accent);
  opacity: .12;
  animation: e404Float linear infinite;
}

.ep1 {
  width: 6px;
  height: 6px;
  left: 8%;
  bottom: -10px;
  animation-duration: 18s;
  animation-delay: 0s;
}

.ep2 {
  width: 4px;
  height: 4px;
  left: 22%;
  bottom: -10px;
  animation-duration: 22s;
  animation-delay: 3s;
}

.ep3 {
  width: 8px;
  height: 8px;
  left: 55%;
  bottom: -10px;
  animation-duration: 16s;
  animation-delay: 6s;
}

.ep4 {
  width: 5px;
  height: 5px;
  left: 72%;
  bottom: -10px;
  animation-duration: 20s;
  animation-delay: 1s;
}

.ep5 {
  width: 3px;
  height: 3px;
  left: 88%;
  bottom: -10px;
  animation-duration: 24s;
  animation-delay: 8s;
}

.ep6 {
  width: 7px;
  height: 7px;
  left: 40%;
  bottom: -10px;
  animation-duration: 19s;
  animation-delay: 4s;
}

@keyframes e404Float {
  0% {
    transform: translateY(0) translateX(0);
    opacity: .12;
  }

  25% {
    transform: translateY(-25vh) translateX(12px);
  }

  50% {
    transform: translateY(-50vh) translateX(-8px);
    opacity: .12;
  }

  75% {
    transform: translateY(-75vh) translateX(10px);
  }

  100% {
    transform: translateY(-105vh) translateX(0);
    opacity: 0;
  }
}

/* Text content */
.e404-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.e404-eyebrow {
  font-family: var(--ff-body);
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.e404-title {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.08;
  color: var(--fg);
  margin-bottom: 24px;
}

.e404-title em {
  font-style: italic;
  color: var(--accent);
}

.e404-subtitle {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.8;
  max-width: 400px;
  margin-bottom: 36px;
}

.e404-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.e404-nav-suggestions {
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.e404-suggestions-label {
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 14px;
}

.e404-suggestion-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.e404-sug-link {
  font-size: .92rem;
  color: var(--fg-2);
  transition: color var(--transition-fast);
  position: relative;
}

.e404-sug-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--transition);
}

.e404-sug-link:hover {
  color: var(--accent);
}

.e404-sug-link:hover::after {
  width: 100%;
}

.e404-sug-dot {
  font-size: .5rem;
  color: var(--accent);
  opacity: .5;
}

/* ── 404 RESPONSIVE ── */
@media (max-width: 900px) {
  .e404-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .e404-candle-wrap {
    order: -1;
  }

  .e404-body {
    height: 200px;
  }

  .e404-subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .e404-actions {
    justify-content: center;
  }

  .e404-suggestion-links {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .e404-main {
    padding: 40px 20px;
    min-height: calc(100vh - var(--header-h));
  }

  .e404-title {
    font-size: clamp(2.4rem, 10vw, 3.5rem);
  }

  .e404-body {
    height: 160px;
    width: 80px;
  }

  .e404-wax-top {
    width: 80px;
  }

  .e404-base {
    width: 94px;
  }

  .e404-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .e404-actions .btn {
    justify-content: center;
  }

  .e404-blob-1 {
    width: 260px;
    height: 260px;
  }

  .e404-blob-2 {
    width: 200px;
    height: 200px;
  }
}

/* =============================================
   COMING SOON PAGE
   ============================================= */

.cs-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* Minimal header */
.cs-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: transparent;
  transition: background var(--transition);
}

.cs-header.scrolled {
  background: rgba(249, 245, 239, .92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
}

[data-theme="dark"] .cs-header.scrolled {
  background: rgba(14, 11, 7, .92);
}

.cs-theme-btn {
  border: none;
}

/* Main layout */
.cs-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding-top: var(--header-h);
}

/* Background layers */
.cs-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.cs-bg-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(181, 128, 58, .12) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(181, 128, 58, .08) 0%, transparent 50%);
}

.cs-bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .22;
}

.cb1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--accent-light), transparent 65%);
  top: -200px;
  right: -100px;
  animation: csBlobDrift 18s ease-in-out infinite;
}

.cb2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent), transparent 65%);
  bottom: -150px;
  left: -80px;
  animation: csBlobDrift 22s ease-in-out infinite reverse 2s;
}

.cb3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--cream), transparent 65%);
  top: 45%;
  left: 45%;
  animation: csBlobDrift 14s ease-in-out infinite 5s;
}

@keyframes csBlobDrift {

  0%,
  100% {
    transform: translate(0, 0);
  }

  40% {
    transform: translate(30px, -40px);
  }

  70% {
    transform: translate(-20px, 25px);
  }
}

/* Subtle grid lines */
.cs-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: .3;
  mask-image: radial-gradient(ellipse at center, transparent 20%, black 80%);
}

/* Wax drip decorations */
.cs-drips {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.cs-drip {
  position: absolute;
  top: -20px;
  border-radius: 0 0 50% 50%;
  background: linear-gradient(180deg, var(--accent-light), var(--accent));
  opacity: .1;
}

.cd1 {
  width: 8px;
  height: 80px;
  left: 5%;
  animation: csDripFall 8s ease-in infinite;
}

.cd2 {
  width: 5px;
  height: 55px;
  left: 25%;
  animation: csDripFall 11s ease-in infinite 2s;
}

.cd3 {
  width: 10px;
  height: 100px;
  left: 70%;
  animation: csDripFall 9s ease-in infinite 4s;
}

.cd4 {
  width: 6px;
  height: 65px;
  left: 88%;
  animation: csDripFall 13s ease-in infinite 1s;
}

@keyframes csDripFall {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  }

  10% {
    opacity: .12;
  }

  90% {
    opacity: .06;
  }

  100% {
    transform: translateY(110vh);
    opacity: 0;
  }
}

/* Inner two-col layout */
.cs-inner {
  flex: 1;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
  padding: 60px 48px 40px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
  min-height: calc(100vh - var(--header-h) - 60px);
}

/* Content side */
.cs-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cs-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.cs-eyebrow-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
  max-width: 50px;
}

.cs-eyebrow-line:last-child {
  background: linear-gradient(270deg, var(--accent), transparent);
}

.cs-title {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(3rem, 5.5vw, 5.8rem);
  line-height: 1.06;
  color: var(--fg);
  margin-bottom: 22px;
  animation: csTitleReveal .9s cubic-bezier(.25, .46, .45, .94) both;
}

.cs-title em {
  font-style: italic;
  color: var(--accent);
}

@keyframes csTitleReveal {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.cs-subtitle {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.85;
  max-width: 440px;
  margin-bottom: 36px;
  animation: csTitleReveal .9s cubic-bezier(.25, .46, .45, .94) .15s both;
}

/* Countdown */
.cs-countdown {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 36px;
  animation: csTitleReveal .9s cubic-bezier(.25, .46, .45, .94) .25s both;
}

.cs-count-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 72px;
}

.cs-count-num {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--fg);
  line-height: 1;
  display: block;
  min-width: 2ch;
  text-align: center;
  transition: transform .2s cubic-bezier(.34, 1.56, .64, 1);
}

.cs-count-num.flip {
  transform: translateY(-4px) scale(1.08);
}

.cs-count-label {
  font-size: .62rem;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-top: 6px;
}

.cs-count-sep {
  font-family: var(--ff-display);
  font-size: 2rem;
  color: var(--accent);
  opacity: .5;
  padding-bottom: 18px;
  align-self: flex-start;
  padding-top: 4px;
  animation: csSepPulse 2s ease-in-out infinite;
}

@keyframes csSepPulse {

  0%,
  100% {
    opacity: .5;
  }

  50% {
    opacity: 1;
  }
}

/* Subscribe form */
.cs-subscribe {
  margin-bottom: 32px;
  animation: csTitleReveal .9s cubic-bezier(.25, .46, .45, .94) .35s both;
}

.cs-sub-label {
  font-size: .9rem;
  color: var(--fg-muted);
  margin-bottom: 14px;
  line-height: 1.6;
}

.cs-form {
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.cs-input-wrap {
  flex: 1;
  min-width: 200px;
  position: relative;
  display: flex;
  align-items: center;
}

.cs-input-icon {
  position: absolute;
  left: 14px;
  color: var(--fg-muted);
  pointer-events: none;
  flex-shrink: 0;
}

.cs-input {
  width: 100%;
  padding: 13px 14px 13px 38px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--fg);
  font-family: var(--ff-body);
  font-size: .88rem;
  font-weight: 300;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}

.cs-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--glow);
}

.cs-input.has-error {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, .12);
}

.cs-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: .8rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  white-space: nowrap;
  box-shadow: 0 4px 20px var(--glow);
  flex-shrink: 0;
}

.cs-submit-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--glow);
}

.cs-success {
  display: none;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  color: #3a7a50;
  padding: 12px 16px;
  background: rgba(58, 122, 80, .08);
  border: 1px solid rgba(58, 122, 80, .2);
  border-radius: var(--radius);
  margin-bottom: 8px;
}

.cs-success.show {
  display: flex;
}

.cs-form-note {
  font-size: .68rem;
  color: var(--fg-muted);
  letter-spacing: .04em;
}

/* Social */
.cs-social {
  display: flex;
  align-items: center;
  gap: 18px;
  animation: csTitleReveal .9s cubic-bezier(.25, .46, .45, .94) .45s both;
}

.cs-social-label {
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  white-space: nowrap;
}

.cs-social-links {
  display: flex;
  gap: 10px;
}

.cs-social-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--fg-2);
  transition: var(--transition-fast);
}

.cs-social-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* Visual / Candle scene */
.cs-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.cs-candle-scene {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
  padding-bottom: 20px;
  width: 100%;
  max-width: 380px;
  animation: csTitleReveal 1s cubic-bezier(.25, .46, .45, .94) .2s both;
}

/* Candle flame shared */
.cs-flame-wrap {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: -2px;
}

.cs-flame-halo {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(181, 128, 58, .45) 0%, transparent 70%);
  animation: e404GlowPulse 2.2s ease-in-out infinite;
}

.cs-flame-outer {
  position: absolute;
  bottom: 0;
  background: linear-gradient(180deg, rgba(181, 128, 58, .6) 0%, rgba(220, 160, 60, .9) 55%, rgba(255, 200, 80, 1) 100%);
  border-radius: 50% 50% 30% 30%;
  animation: e404FlameWobble 2.2s ease-in-out infinite;
  transform-origin: bottom center;
}

.cs-flame-inner {
  position: absolute;
  bottom: 2px;
  background: linear-gradient(180deg, rgba(255, 220, 110, .9) 0%, rgba(255, 255, 200, 1) 100%);
  border-radius: 50% 50% 30% 30%;
  animation: e404FlameInner 1.8s ease-in-out infinite;
  transform-origin: bottom center;
}

.cs-flame-core {
  position: absolute;
  bottom: 3px;
  background: rgba(255, 255, 240, .95);
  border-radius: 50% 50% 40% 40%;
}

.cs-wick {
  width: 2px;
  background: #3a2010;
  border-radius: 1px;
  z-index: 2;
}

.cs-wax-top {
  background: linear-gradient(180deg, #e8d898 0%, #d4c070 100%);
  border-radius: 50px 50px 0 0;
  margin-top: -3px;
}

.cs-candle-body {
  border: 1px solid rgba(181, 128, 58, .26);
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(240, 224, 180, .16) 0%, rgba(181, 128, 58, .1) 50%, rgba(240, 224, 180, .18) 100%);
  backdrop-filter: blur(2px);
  box-shadow: 0 16px 40px rgba(26, 18, 9, .16), inset 0 1px 0 rgba(255, 255, 255, .1);
}

.cs-body-shine {
  position: absolute;
  top: 0;
  left: 12%;
  width: 16%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .06), transparent);
  pointer-events: none;
}

.cs-candle-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(240, 224, 180, .55);
}

/* Individual candle sizes */
.csc-tall {
  z-index: 2;
}

.csc-tall .cs-flame-wrap {
  width: 26px;
  height: 46px;
}

.csc-tall .cs-flame-halo {
  width: 50px;
  height: 20px;
}

.csc-tall .cs-flame-outer {
  width: 22px;
  height: 40px;
}

.csc-tall .cs-flame-inner {
  width: 13px;
  height: 26px;
}

.csc-tall .cs-flame-core {
  width: 6px;
  height: 11px;
}

.csc-tall .cs-wick {
  height: 14px;
}

.csc-tall .cs-wax-top {
  width: 88px;
  height: 12px;
}

.csc-tall .cs-candle-body {
  width: 88px;
  height: 260px;
  border-radius: 0 0 6px 6px;
}

.csc-short {
  z-index: 1;
}

.csc-short .cs-flame-wrap {
  width: 18px;
  height: 32px;
}

.csc-short .cs-flame-halo {
  width: 34px;
  height: 14px;
}

.csc-short .cs-flame-outer {
  width: 16px;
  height: 28px;
}

.csc-short .cs-flame-inner {
  width: 9px;
  height: 18px;
}

.csc-short .cs-flame-core {
  width: 4px;
  height: 7px;
}

.csc-short .cs-wick {
  height: 10px;
}

.csc-short .cs-wax-top {
  width: 64px;
  height: 10px;
}

.csc-short .cs-candle-body {
  width: 64px;
  height: 140px;
  border-radius: 0 0 5px 5px;
}

.csc-short .cs-flame-wrap {
  animation-delay: .4s;
}

.csc-vessel {
  z-index: 1;
}

.csc-vessel .cs-flame-wrap {
  width: 22px;
  height: 38px;
}

.csc-vessel .cs-flame-halo {
  width: 42px;
  height: 16px;
}

.csc-vessel .cs-flame-outer {
  width: 18px;
  height: 32px;
}

.csc-vessel .cs-flame-inner {
  width: 11px;
  height: 21px;
}

.csc-vessel .cs-flame-core {
  width: 5px;
  height: 9px;
}

.csc-vessel .cs-wick {
  height: 12px;
}

.csc-vessel .cs-wax-top {
  width: 100px;
  height: 13px;
  border-radius: 4px 4px 0 0;
}

.csc-vessel .cs-candle-body {
  width: 100px;
  height: 90px;
  border-radius: 4px 4px 8px 8px;
}

.csc-vessel .cs-flame-wrap {
  animation-delay: .8s;
}

/* Scene glow and surface */
.cs-scene-glow {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 60px;
  background: radial-gradient(ellipse, rgba(181, 128, 58, .3) 0%, transparent 70%);
  border-radius: 50%;
  animation: e404GlowPulse 3s ease-in-out infinite;
  pointer-events: none;
}

.cs-scene-surface {
  position: absolute;
  bottom: 0;
  left: -20px;
  right: -20px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(181, 128, 58, .25), transparent);
}

/* Botanicals */
.cs-botanical {
  position: absolute;
  border-radius: 50% 50% 50% 0;
  opacity: .2;
  animation: csBotFloat ease-in-out infinite;
}

.b1 {
  width: 14px;
  height: 22px;
  background: var(--accent-light);
  top: 20%;
  left: -10%;
  transform: rotate(35deg);
  animation-duration: 6s;
  animation-delay: 0s;
}

.b2 {
  width: 9px;
  height: 15px;
  background: var(--accent);
  top: 60%;
  right: -5%;
  transform: rotate(-40deg);
  animation-duration: 7.5s;
  animation-delay: 1s;
}

.b3 {
  width: 12px;
  height: 18px;
  background: var(--accent-light);
  top: 80%;
  left: 5%;
  transform: rotate(20deg);
  animation-duration: 5.5s;
  animation-delay: 2s;
}

.b4 {
  width: 7px;
  height: 12px;
  background: var(--accent-dark);
  top: 30%;
  right: 2%;
  transform: rotate(-25deg);
  animation-duration: 8s;
  animation-delay: .5s;
}

.b5 {
  width: 16px;
  height: 24px;
  background: var(--accent);
  top: 10%;
  left: 30%;
  transform: rotate(50deg);
  animation-duration: 9s;
  animation-delay: 3s;
}

@keyframes csBotFloat {

  0%,
  100% {
    transform: translateY(0) rotate(var(--r, 35deg));
  }

  50% {
    transform: translateY(-14px) rotate(calc(var(--r, 35deg) + 12deg));
  }
}

/* Progress bar */
.cs-progress-wrap {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  padding: 0 10px;
}

.cs-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: .68rem;
  color: var(--fg-muted);
  letter-spacing: .1em;
  margin-bottom: 8px;
}

.cs-progress-pct {
  color: var(--accent);
  font-weight: 400;
}

.cs-progress-track {
  height: 3px;
  background: var(--cream);
  border-radius: 100px;
  overflow: hidden;
}

.cs-progress-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent-light), var(--accent-dark));
  border-radius: 100px;
  transition: width 2s cubic-bezier(.25, .46, .45, .94) .5s;
}

/* Bottom tagline strip */
.cs-tagline-strip {
  position: relative;
  z-index: 2;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.cs-tagline-text {
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 0 20px;
}

.cs-tl-dot {
  color: var(--accent);
  font-size: .55rem;
}

/* Floating sparkles */
.cs-sparkles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.cs-sparkle {
  position: absolute;
  font-size: .7rem;
  color: var(--accent);
  opacity: 0;
  animation: csSparkle ease-in-out infinite;
}

.sp1 {
  top: 12%;
  left: 8%;
  animation-duration: 5s;
  animation-delay: 0s;
}

.sp2 {
  top: 30%;
  right: 12%;
  animation-duration: 7s;
  animation-delay: 1.5s;
}

.sp3 {
  top: 65%;
  left: 5%;
  animation-duration: 6s;
  animation-delay: 3s;
}

.sp4 {
  top: 20%;
  left: 60%;
  animation-duration: 8s;
  animation-delay: .8s;
}

.sp5 {
  top: 75%;
  right: 8%;
  animation-duration: 5.5s;
  animation-delay: 2.2s;
}

@keyframes csSparkle {
  0% {
    opacity: 0;
    transform: scale(.5) rotate(0deg);
  }

  30% {
    opacity: .55;
    transform: scale(1.2) rotate(90deg);
  }

  60% {
    opacity: .3;
    transform: scale(.8) rotate(180deg);
  }

  100% {
    opacity: 0;
    transform: scale(.5) rotate(360deg);
  }
}

/* ── COMING SOON RESPONSIVE ── */
@media (max-width: 1024px) {
  .cs-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 40px 40px 80px;
    min-height: auto;
  }

  .cs-visual {
    order: -1;
  }

  .cs-candle-scene {
    max-width: 320px;
    margin: 0 auto;
    padding-bottom: 60px;
  }

  .csc-tall .cs-candle-body {
    height: 180px;
  }

  .cs-title {
    font-size: clamp(2.8rem, 7vw, 4.5rem);
  }

  .cs-subtitle {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .cs-header {
    padding: 0 20px;
  }

  .cs-inner {
    padding: 32px 20px 60px;
    gap: 36px;
  }

  .cs-title {
    font-size: clamp(2.4rem, 10vw, 3.4rem);
  }

  .cs-countdown {
    gap: 0;
    flex-wrap: nowrap;
  }

  .cs-count-unit {
    min-width: 56px;
  }

  .cs-count-num {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }

  .cs-count-sep {
    font-size: 1.4rem;
    padding-bottom: 14px;
  }

  .cs-form {
    flex-direction: column;
  }

  .cs-submit-btn {
    justify-content: center;
  }

  .cs-social {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .cs-candle-scene {
    gap: 12px;
    max-width: 260px;
    padding-bottom: 65px;
  }

  .csc-tall .cs-candle-body {
    width: 68px;
    height: 150px;
  }

  .csc-tall .cs-wax-top {
    width: 68px;
  }

  .csc-short .cs-candle-body {
    width: 50px;
    height: 100px;
  }

  .csc-short .cs-wax-top {
    width: 50px;
  }

  .csc-vessel .cs-candle-body {
    width: 78px;
    height: 70px;
  }

  .csc-vessel .cs-wax-top {
    width: 78px;
  }

  .cs-eyebrow {
    font-size: .62rem;
  }

  .cb1 {
    width: 300px;
    height: 300px;
  }

  .cb2 {
    width: 200px;
    height: 200px;
  }
}

/* ── RTL SUPPORT ── */
[dir="rtl"] .e404-actions,
[dir="rtl"] .e404-suggestion-links {
  direction: rtl;
}

[dir="rtl"] .cs-eyebrow-line {
  background: linear-gradient(270deg, var(--accent), transparent);
}

[dir="rtl"] .cs-eyebrow-line:last-child {
  background: linear-gradient(90deg, var(--accent), transparent);
}

[dir="rtl"] .cs-form {
  direction: rtl;
}

[dir="rtl"] .cs-input {
  padding: 13px 38px 13px 14px;
  text-align: right;
}

[dir="rtl"] .cs-input-icon {
  left: auto;
  right: 14px;
}

[dir="rtl"] .cs-progress-fill {
  background: linear-gradient(270deg, var(--accent-light), var(--accent-dark));
}