/* HallowCeramics — Halloween landing */
:root {
  --void: #0a0612;
  --ink: #120a1a;
  --ember: #e85d04;
  --ember-dim: #bc4a02;
  --toxic: #7cb518;
  --toxic-dim: #5a8a12;
  --bone: #f4e9d8;
  --bone-muted: #c9b8a4;
  --violet: #6b2d8a;
  --glass: rgba(18, 10, 28, 0.72);
  --font-display: "Cormorant Garamond", "Georgia", serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --nav-pad: clamp(1.25rem, 4vw, 3.5rem);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Disable smooth scroll on touch devices — prevents scroll-jump with fixed headers */
@media (max-width: 768px) and (hover: none) {
  html {
    scroll-behavior: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--bone);
  background: var(--void);
  overflow-x: hidden;
}

/* body.intro-active removed - intro disabled */

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* —— Intro overlay —— */
.intro-screen {
  display: none;
}

/* Intro disabled */

.intro-moon {
  position: absolute;
  top: 12%;
  right: 18%;
  width: min(22vw, 140px);
  height: min(22vw, 140px);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff8e7, #e8d4a8 40%, #a89060 100%);
  box-shadow:
    0 0 60px rgba(255, 230, 180, 0.35),
    inset -12px -12px 24px rgba(0, 0, 0, 0.15);
  animation: moon-pulse 4s ease-in-out infinite;
}

@keyframes moon-pulse {
  0%,
  100% {
    transform: scale(1);
    filter: brightness(1);
  }
  50% {
    transform: scale(1.03);
    filter: brightness(1.08);
  }
}

.intro-bats {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.bat {
  position: absolute;
  width: 48px;
  height: 32px;
  opacity: 0.85;
  animation: bat-fly var(--dur, 8s) linear infinite;
  animation-delay: var(--delay, 0s);
}

.bat svg {
  width: 100%;
  height: 100%;
  fill: #1a0a14;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.bat-wing {
  transform-origin: center;
  animation: bat-flap 0.35s ease-in-out infinite alternate;
}

.bat:nth-child(odd) .bat-wing {
  animation-duration: 0.28s;
}

@keyframes bat-flap {
  from {
    transform: scaleY(1);
  }
  to {
    transform: scaleY(0.55);
  }
}

@keyframes bat-fly {
  0% {
    transform: translate(-10vw, 20vh) rotate(-5deg);
  }
  100% {
    transform: translate(110vw, -10vh) rotate(8deg);
  }
}

.bat:nth-child(1) {
  top: 18%;
  left: -5%;
  --dur: 9s;
  --delay: 0s;
}
.bat:nth-child(2) {
  top: 42%;
  left: -8%;
  --dur: 11s;
  --delay: 1.2s;
  transform: scale(0.7);
}
.bat:nth-child(3) {
  top: 62%;
  left: -12%;
  --dur: 7.5s;
  --delay: 2.5s;
  transform: scale(1.1);
}
.bat:nth-child(4) {
  top: 28%;
  left: -15%;
  --dur: 10s;
  --delay: 3.8s;
  transform: scale(0.55);
}
.bat:nth-child(5) {
  top: 8%;
  left: -20%;
  --dur: 12s;
  --delay: 0.6s;
  transform: scale(0.9);
}

.intro-center {
  position: relative;
  text-align: center;
  z-index: 2;
}

.intro-pumpkin-wrap {
  width: min(200px, 42vw);
  height: min(200px, 42vw);
  margin: 0 auto 1.5rem;
  animation: pumpkin-bob 2.2s ease-in-out infinite;
}

@keyframes pumpkin-bob {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-12px) rotate(2deg);
  }
}

.intro-pumpkin {
  width: 100%;
  height: 100%;
  border-radius: 50% 50% 48% 48% / 58% 58% 42% 42%;
  background:
    radial-gradient(ellipse 70% 55% at 50% 35%, #ff9a3c 0%, #c45c1a 45%, #8b3a0a 100%),
    #c45c1a;
  box-shadow:
    inset 0 -20px 40px rgba(0, 0, 0, 0.35),
    inset 8px 8px 24px rgba(255, 200, 120, 0.25),
    0 24px 48px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(232, 93, 4, 0.25);
  position: relative;
  animation: pumpkin-glow 2.5s ease-in-out infinite alternate;
}

.intro-pumpkin::before {
  content: "";
  position: absolute;
  top: -14%;
  left: 50%;
  transform: translateX(-50%);
  width: 18%;
  height: 22%;
  background: linear-gradient(180deg, #4a3528, #2a1f18);
  border-radius: 30% 30% 10% 10%;
}

.intro-pumpkin::after {
  content: "";
  position: absolute;
  inset: 12% 8% 18%;
  border-radius: 50%;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 8%,
    rgba(0, 0, 0, 0.06) 8%,
    rgba(0, 0, 0, 0.06) 10%
  );
  pointer-events: none;
}

@keyframes pumpkin-glow {
  from {
    filter: brightness(1) drop-shadow(0 0 20px rgba(232, 93, 4, 0.3));
  }
  to {
    filter: brightness(1.12) drop-shadow(0 0 36px rgba(232, 93, 4, 0.55));
  }
}

.intro-brand {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4.25rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 0 0 0.35rem;
  background: linear-gradient(135deg, var(--bone) 0%, var(--ember) 50%, var(--toxic-dim) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: title-shimmer 3s ease-in-out infinite;
}

@keyframes title-shimmer {
  0%,
  100% {
    filter: hue-rotate(0deg);
  }
  50% {
    filter: hue-rotate(-8deg);
  }
}

.intro-tag {
  font-size: 0.9rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bone-muted);
  margin-bottom: 2rem;
}

.intro-skip {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bone-muted);
  background: transparent;
  border: 1px solid rgba(244, 233, 216, 0.25);
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.intro-skip:hover {
  border-color: var(--ember);
  color: var(--bone);
  background: rgba(232, 93, 4, 0.12);
}

/* —— Site header —— */
.site-header {
  position: relative;
  z-index: 1000;
  padding: 0 var(--nav-pad);
  background: rgba(10, 6, 18, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(244, 233, 216, 0.07);
}

.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 72px;
  gap: 1rem;
}

.logo-link {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--bone);
  transition: color 0.25s, opacity 0.25s;
}

.logo-link:hover {
  color: var(--ember);
}

.logo-icon {
  height: 36px !important;
  width: auto !important;
  max-width: 72px;
  flex-shrink: 0;
  object-fit: contain;
}

.logo-text {
  height: 48px !important;
  width: auto !important;
  max-width: 300px;
  flex-shrink: 0;
  object-fit: contain;
  margin-left: 1px;
}

.nav-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.25rem, 3vw, 2.75rem);
  width: 100%;
  padding: 0.5rem 0 0;
  margin-top: 0.75rem;
  border-top: 1px solid rgba(244, 233, 216, 0.06);
}

.nav-main a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bone-muted);
  position: relative;
  padding: 0.35rem 0;
  transition: color 0.25s;
}

.nav-main a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--ember), var(--toxic));
  transition: width 0.35s var(--ease-out-expo);
}

.nav-main a:hover {
  color: var(--bone);
}

.nav-main a.is-active {
  color: var(--bone);
}

.nav-main a.is-active::after {
  width: 100%;
  opacity: 1;
}

.nav-main a:hover::after {
  width: 100%;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 12px;
  background: rgba(244, 233, 216, 0.06);
  color: var(--bone);
  cursor: pointer;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}

.icon-btn:hover {
  background: rgba(232, 93, 4, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.icon-btn svg {
  width: 22px;
  height: 22px;
}

.lang-btn {
  width: auto;
  min-width: 52px;
  padding: 0 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-family: var(--font-body);
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  /* Extra left inset: net +(1/15 − 1/18) = +1/90 viewport over base nav pad */
  padding: 96px var(--nav-pad) 48px;
  padding-left: calc(var(--nav-pad) + (100vw / 90));
  overflow: hidden;
}

.hero-bg-layer {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 70% at 70% 40%, rgba(107, 45, 138, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse 80% 50% at 20% 80%, rgba(232, 93, 4, 0.08) 0%, transparent 45%),
    linear-gradient(165deg, #1a1020 0%, #120a18 45%, #0d080c 100%);
  pointer-events: none;
}

.hero-bg-layer::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* Stable box for video → cuts CLS when metadata/decoding finishes */
.hero-video-frame {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  contain: strict;
}

.hero-gif-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  opacity: 0.7;
}


@keyframes hero-3d-in {
  from {
    opacity: 0;
    transform: translateX(8%) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.hero-fog {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 60% at 50% 100%, transparent 30%, rgba(10, 6, 18, 0.85) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-moon {
  display: none;
}

.hero-bats {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 4;
}

.hero-bats .bat {
  position: absolute;
  width: 48px;
  height: 32px;
  opacity: 0.75;
}

.hero-bats .bat svg {
  width: 100%;
  height: 100%;
  fill: #1a0a14;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.hero-bats .bat-wing {
  transform-origin: center;
  animation: bat-flap 0.35s ease-in-out infinite alternate;
}

.hero-bats .bat:nth-child(odd) .bat-wing {
  animation-duration: 0.28s;
}

@keyframes hero-bat-fly-1 {
  0% { transform: translate(-8vw, 30vh) rotate(-10deg); }
  50% { transform: translate(38vw, 15vh) rotate(6deg); }
  100% { transform: translate(85vw, 35vh) rotate(-4deg); }
}

@keyframes hero-bat-fly-2 {
  0% { transform: translate(-5vw, 40vh) rotate(-6deg); }
  50% { transform: translate(35vw, 22vh) rotate(10deg); }
  100% { transform: translate(80vw, 45vh) rotate(-8deg); }
}

.hero-bats .bat:nth-child(1) { animation: hero-bat-fly-1 14s linear infinite; animation-delay: 0s; }
.hero-bats .bat:nth-child(2) { animation: hero-bat-fly-2 16s linear infinite; animation-delay: 2s; transform: scale(0.6) !important; }
.hero-bats .bat:nth-child(3) { animation: hero-bat-fly-1 12s linear infinite; animation-delay: 5s; transform: scale(0.85) !important; }
.hero-bats .bat:nth-child(4) { animation: hero-bat-fly-2 18s linear infinite; animation-delay: 1s; transform: scale(0.5) !important; }
.hero-bats .bat:nth-child(5) { animation: hero-bat-fly-1 15s linear infinite; animation-delay: 3s; transform: scale(0.7) !important; }

@media (max-width: 900px) {
  .hero-moon {
    display: none;
  }
  .hero-bats .bat:nth-child(n) {
    transform: scale(0.6) !important;
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr minmax(320px, 0.8fr);
  gap: 2rem;
  align-items: center;
  contain: layout;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-video-frame {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: 50vh;
    min-height: 50vh;
    order: -1;
    z-index: 1;
  }

  .hero-gif-video {
    opacity: 0.7;
  }
  .header-inner {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }
  .nav-main {
    flex-wrap: wrap;
    justify-content: center;
  }
  .header-actions {
    grid-column: 2;
    grid-row: 1;
  }
  .logo-link {
    grid-column: 1;
    grid-row: 1;
  }
}

/* ---- Mobile: 640px header ---- */
@media (max-width: 640px) {
  .header-inner {
    grid-template-columns: 1fr auto;
    gap: 0.5rem;
    min-height: 56px;
  }
  .logo-link { grid-column: 1; grid-row: 1; }
  .logo-icon { height: 26px !important; }
  .logo-text { height: 30px !important; max-width: 160px; }
  .header-actions { gap: 0.5rem; grid-column: 2; grid-row: 1; }
  .icon-btn { width: 38px; height: 38px; border-radius: 10px; }
  .site-header { padding: 0 0.75rem; }
  .nav-main a { font-size: 0.75rem; padding: 0.5rem 0.9rem; }
}

/* ---- Mobile: 320px ultra-narrow ---- */
@media (max-width: 320px) {
  :root { font-size: 14px; }
  .hero-title { font-size: clamp(1.4rem, 13vw, 2rem); }
  .hero-cta-row .btn-primary,
  .hero-cta-row .btn-ghost { padding: 0.85rem 1rem; font-size: 0.72rem; }
  .bs-track { grid-auto-columns: min(260px, 92vw); }
  .bs-btn-cart,
  .bs-btn-learn { padding: 0.7rem 0.75rem; font-size: 0.7rem; }
  .product-card { padding: 0.85rem; border-radius: 12px; }
  .pl-page { padding: 3.5rem 0.75rem 2.5rem; }
  .pl-toolbar select { font-size: 0.82rem; }
  .thumbnail-btn { width: 48px; height: 48px; }
  .product-detail { padding: 3.5rem 0.75rem 2.5rem; }
  .cart-page { padding: 1rem 0.75rem; margin: 3.5rem auto 0; }
  .checkout-page { padding: 1rem 0.75rem 3rem; }
  .site-footer { padding: 1.25rem 0.75rem; }
  .contact-shell { padding: 1rem 0.75rem 2.5rem; }
  .contact-info-card,
  .contact-form-card { padding: 1rem; }
  .blog-hero { min-height: 20rem; }
  .about-hero-figure { height: clamp(120px, 40vw, 200px); }
}

/* ---- Mobile: 480px header ---- */
@media (max-width: 480px) {
  .logo-icon { height: 22px !important; }
  .logo-text { height: 28px !important; max-width: 140px; }
  .icon-btn { width: 32px; height: 32px; border-radius: 8px; }
  .icon-btn svg { width: 16px; height: 16px; }
  /* .nav-main pill sizing handled below (post-@768px) to win cascade */
}

/* ---- Mobile: 640px hero + product detail + about + blog ---- */
@media (max-width: 640px) {
  .hero { min-height: auto; padding: 72px 1rem 3.5rem; }
  .hero-copy { max-width: 100%; }
  .hero-title { font-size: clamp(2rem, 10vw, 3rem); }
  .hero-slogan { font-size: 0.95rem; }
  .hero-video-frame { aspect-ratio: 16/9; height: auto; min-height: 0; max-height: 50vh; margin-bottom: 1.5rem; }
  .hero-fog { background: radial-gradient(ellipse 80% 50% at 50% 100%, transparent 15%, rgba(10,6,18,0.92) 100%); }
  .scroll-hint { display: none; }
  .product-detail { padding-top: clamp(4rem, 14vw, 5rem); }
  .site-footer { padding: 1.5rem 1rem; }
  .footer-links { flex-direction: column; gap: 0.5rem; align-items: center; }
  .checkout-form .form-section { padding: 1.5rem; }
  .about-hero-figure { height: clamp(180px, 50vw, 280px); }
  .blog-hero { min-height: 22rem; }
  .blog-hero h1 { font-size: clamp(1.8rem, 8vw, 2.5rem); }
}

/* ---- Mobile: 480px hero ---- */
@media (max-width: 480px) {
  .hero { min-height: auto; padding: 64px 1rem 3rem; }
  .hero-title { font-size: clamp(1.65rem, 11vw, 2.5rem); }
  .hero-cta-row { flex-direction: column; align-items: center; gap: 0.75rem; }
  .hero-cta-row .btn-primary,
  .hero-cta-row .btn-ghost { width: 100%; max-width: 300px; justify-content: center; }
  .hero-video-frame { aspect-ratio: 16/9; height: auto; min-height: 0; max-height: 45vh; margin-bottom: 1rem; }
}

/* ---- Mobile: 480px best sellers ---- */
@media (max-width: 480px) {
  .section-bestsellers .bs-track {
    grid-auto-columns: min(280px, 85vw);
  }
  .bs-track { --bs-gap: 0.75rem; gap: var(--bs-gap); }
  .bs-product-card { padding: 0.5rem 0.5rem 0.7rem; border-radius: 12px; }
  /* matched to .pl-card-title: calc(0.82rem * 1.15) at mobile */
  .bs-product-name { font-size: calc(0.82rem * 1.08); }
  .bs-title { font-size: clamp(1.5rem, 7vw, 1.8rem); }
  .bs-sub { font-size: 0.85rem; }
}

/* ---- Mobile: 640px product cards ---- */
@media (max-width: 640px) {
  .section-products { padding: 3rem 1rem 2rem; }
  .product-card { padding: 1.25rem; border-radius: 16px; margin-bottom: 3rem; }
}

/* ---- Mobile: 480px product cards ---- */
@media (max-width: 480px) {
  .product-card { padding: 1rem; border-radius: 12px; }
  .product-card .product-body h2,
  .product-card .product-body h3 { font-size: clamp(1.35rem, 6vw, 1.65rem); }
}

/* ---- Mobile: 640px about ---- */
@media (max-width: 640px) {
  .about-hero-figure { height: clamp(160px, 45vw, 280px); }
  .about-strip--dark { padding: 2rem 1rem; }
  .about-split-wrap { padding: 2rem 1rem; }
}

/* ---- Mobile: 480px about ---- */
@media (max-width: 480px) {
  .about-genesis-title { font-size: clamp(1.6rem, 8vw, 2rem); }
  .about-prose p { font-size: 0.9rem; }
  .about-split-panel { padding: 1.25rem; }
}

/* ---- Mobile: 480px contact ---- */
@media (max-width: 480px) {
  .contact-title { font-size: clamp(2rem, 12vw, 3rem); }
  .contact-shell { padding: 1.5rem 1rem 3rem; }
  .contact-info-card,
  .contact-form-card { padding: 1.25rem; border-radius: 16px; }
  .contact-form input,
  .contact-form select,
  .contact-form textarea { padding: 0.75rem 0.85rem; font-size: 16px; }
  .contact-submit { width: 100%; }
}

/* ---- Mobile: 480px blog/journal ---- */
@media (max-width: 480px) {
  .blog-hero h1 { font-size: clamp(2rem, 10vw, 3rem); }
  .blog-hero { min-height: 24rem; }
  .blog-card-copy { padding: 1rem; }
  .blog-card h2 { font-size: clamp(1.1rem, 5vw, 1.35rem); }
  .blog-read-link { font-size: 0.72rem; }
  .blog-shell { padding: 2rem 0; }
  .single-journal-hero h1 { font-size: clamp(1.8rem, 9vw, 3rem); }
}

/* ---- Mobile: 480px catalog ---- */
@media (max-width: 480px) {
  .pl-page { padding: 3.5rem 1rem 2.5rem; }
  .pl-toolbar { flex-direction: column; align-items: stretch; gap: 0.75rem; }
  .pl-toolbar select { width: 100%; margin-bottom: 0.25rem; }
  .pl-subnav { gap: 0.35rem 0.85rem; flex-wrap: wrap; justify-content: center; }
  .pl-subnav a { font-size: 0.72rem; }
}

/* ---- Mobile: 480px product detail ---- */
@media (max-width: 480px) {
  .product-detail { padding-bottom: 3rem; }
  .product-name { font-size: clamp(1.6rem, 7vw, 2rem); }
  .thumbnail-btn { width: 48px; height: 48px; }
  .btn-add-cart,
  .btn-buy-now { padding: 0.85rem 1rem; }
  .product-tab-btn { padding: 0.75rem 1rem; font-size: 0.7rem; }
  .qty-btn { width: 44px; height: 44px; }
}

/* ---- Mobile: 480px cart/checkout ---- */
@media (max-width: 480px) {
  .cart-page { padding: 1.25rem; margin: 2.5rem auto 0; }
  .cart-summary { padding: 1.25rem; }
  .cross-sells-section { padding: 1.25rem; }
  .checkout-page .form-section,
  .woocommerce-checkout .form-section { padding: 1.25rem; }
}

/* Increase touch target for related + cross-sell "Add" buttons on mobile */
@media (max-width: 768px) {
  .related-card-add,
  .cross-sell-add {
    min-height: 44px;
    min-width: 44px;
    padding: 0.65rem 1rem;
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .related-card-add svg,
  .cross-sell-add svg {
    width: 14px;
    height: 14px;
  }
}

/* ---- Mobile: 480px footer ---- */
@media (max-width: 480px) {
  .site-footer { padding: 1.5rem 1rem; }
  .footer-links { flex-direction: column; gap: 0.5rem; align-items: center; }
}

/* ---- Global mobile touch enhancements (768px) ---- */
@media (max-width: 768px) {
  /* WCAG 2.5.5 touch targets: all interactive elements >= 44x44px */
  .btn-primary,
  .btn-ghost,
  .btn-add-cart,
  .btn-buy-now,
  .checkout-btn,
  .place-order-btn,
  .bs-btn-cart,
  .bs-btn-learn,
  .qty-btn,
  button {
    min-height: 44px;
    min-width: 44px;
    touch-action: manipulation;
  }
  /* Increase button padding for better touch area */
  .btn-primary { padding: 0.9rem 1.5rem; }
  .btn-ghost { padding: 0.9rem 1.25rem; }
  .btn-add-cart { padding: 1rem 1.5rem; }
  .btn-buy-now { padding: 0.9rem 1.5rem; }
  /* matched to .pl-btn padding, with min-height preserved */
  .bs-btn-cart { padding: 0.75rem 0.85rem; }
  .bs-btn-learn { padding: 0.75rem 0.85rem; }
  .checkout-btn { padding: 1rem 1.5rem; }

  a,
  button,
  .icon-btn {
    -webkit-tap-highlight-color: transparent;
  }
  /* icon-btn stays 44px at desktop but shrinks at smaller breakpoints */
  .icon-btn {
    touch-action: manipulation;
  }
  input,
  select,
  textarea {
    font-size: 16px !important;
  }
  /* ── Header simplification: hide secondary elements on mobile ── */
  .lang-btn,
  .header-search {
    display: none;
  }
  .btn-quick-order { display: none; }
  .header-phone { display: none; }

  /* ── WhatsApp icon: primary CTA highlight ── */
  .header-whatsapp {
    background: rgba(124, 181, 24, 0.18);
    color: var(--toxic);
    border: 1px solid rgba(124, 181, 24, 0.25);
  }

  /* ── Mobile nav: pill/chip scrollable bar, always visible ── */
  .nav-main {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.6rem;
    padding: 0.6rem 0.85rem 0.7rem;
    margin: 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    white-space: nowrap;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background: rgba(244, 233, 216, 0.03);
    border-top: 1px solid rgba(244, 233, 216, 0.1);
    border-bottom: 1px solid rgba(244, 233, 216, 0.06);
  }
  .nav-main::-webkit-scrollbar { display: none; }
  .nav-main a {
    flex-shrink: 0;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 0.55rem 1.1rem;
    white-space: nowrap;
    border-radius: 999px;
    text-transform: none;
    color: var(--bone);
    background: rgba(244, 233, 216, 0.07);
    border: 1px solid rgba(244, 233, 216, 0.1);
    transition: background 0.2s, color 0.2s, border-color 0.2s;
  }
  .nav-main a:active,
  .nav-main a.is-active {
    background: linear-gradient(135deg, var(--ember), var(--ember-dim));
    color: var(--void);
    border-color: transparent;
    font-weight: 700;
    box-shadow: 0 2px 12px rgba(232, 93, 4, 0.3);
  }
  .nav-main a::after { display: none; }

  /* ── Mobile nav pill sizing: must appear after base to override cascade ── */
}
/* (max-width: 480px) — pill nav sizing AFTER @768px base so it wins the cascade */
@media (max-width: 480px) {
  .nav-main {
    gap: 0.4rem;
    padding: 0.5rem 0.7rem 0.6rem;
  }
  .nav-main a {
    font-size: 0.72rem;
    padding: 0.45rem 0.75rem;
  }
}
@media (max-width: 360px) {
  .nav-main {
    gap: 0.3rem;
    padding: 0.5rem 0.5rem 0.55rem;
  }
  .nav-main a {
    font-size: 0.68rem;
    padding: 0.4rem 0.6rem;
  }
}
@media (max-width: 768px) {

  /* ── Hero: center buttons on mobile ── */
  .hero-content {
    justify-items: center;
  }
  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-cta-row {
    justify-content: center;
    max-width: 340px;
    width: 100%;
  }

  /* Anchor links: account for fixed header height */
  [id] { scroll-margin-top: 80px; }
}

.hero-copy {
  max-width: 34rem;
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--toxic);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fade-up 0.8s var(--ease-out-expo) 0.5s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 600;
  line-height: 1.05;
  margin: 0 0 1.25rem;
  color: var(--bone);
  opacity: 0;
  animation: fade-up 0.9s var(--ease-out-expo) 0.65s forwards;
}

.hero-title .hero-title-accent {
  color: var(--ember);
  font-style: italic;
}

.hero-slogan {
  font-size: 1.1rem;
  color: var(--bone-muted);
  line-height: 1.65;
  margin: 0 0 2rem;
  opacity: 0;
  animation: fade-up 0.9s var(--ease-out-expo) 0.8s forwards;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
  animation: fade-up 0.9s var(--ease-out-expo) 0.95s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--void);
  background: linear-gradient(135deg, var(--ember) 0%, var(--ember-dim) 100%);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(232, 93, 4, 0.35);
  transition: transform 0.25s, box-shadow 0.25s;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(232, 93, 4, 0.45);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 0.9rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bone-muted);
  background: transparent;
  border: 1px solid rgba(244, 233, 216, 0.2);
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s;
}

.btn-ghost:hover {
  border-color: var(--toxic);
  color: var(--bone);
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bone-muted);
  opacity: 0;
  animation: scroll-hint-in 1s var(--ease-out-expo) 1.2s forwards;
}

.scroll-hint-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: scroll-hint-bob 2.2s ease-in-out 2.2s infinite;
}

@keyframes scroll-hint-in {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes scroll-hint-bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

.scroll-hint-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--ember), transparent);
}

/* —— Best sellers (reference: horizontal product rail) —— */
.section-bestsellers {
  padding: 3.5rem var(--nav-pad) 2rem;
  background: linear-gradient(180deg, rgba(10, 6, 18, 0.4) 0%, transparent 100%);
  border-top: 1px solid rgba(244, 233, 216, 0.06);
}

.bs-inner {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.bs-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 600;
  text-align: center;
  margin: 0 0 0.5rem;
  color: var(--bone);
  letter-spacing: -0.02em;
}

.bs-sub {
  text-align: center;
  color: var(--bone-muted);
  font-size: 0.95rem;
  max-width: 36rem;
  margin: 0 auto 2rem;
  line-height: 1.5;
}

.bs-viewport {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.65rem;
  position: relative;
  width: 100%;
}

/* Scroll viewport: width = 100cqi for column math; snap to whole cards only */
.bs-window {
  flex: 1 1 0;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-color: rgba(232, 93, 4, 0.35) rgba(0, 0, 0, 0.2);
  padding-bottom: 4px;
  overscroll-behavior-x: contain;
  container-type: inline-size;
  container-name: bsw;
}

.bs-window::-webkit-scrollbar {
  height: 6px;
}

.bs-window::-webkit-scrollbar-thumb {
  background: rgba(232, 93, 4, 0.4);
  border-radius: 99px;
}

/*
  Horizontal grid: card width derived from scroll viewport so exactly 4 fit (no “half” card).
  --bs-gap must match gap below (3 gaps between 4 visible columns).
*/
.section-bestsellers .bs-track {
  --bs-gap: 1rem;
  display: grid;
  grid-auto-flow: column;
  /* narrow: flexible tiles until container query kicks in */
  grid-auto-columns: min(260px, calc(100vw - 4.5rem));
  align-items: start;
  justify-content: start;
  gap: var(--bs-gap);
  width: max-content;
  min-width: min-content;
  min-height: 0;
  padding: 0.35rem 0 0.75rem;
  margin: 0;
}

/* Exactly 4 cards per viewport when the scroll window is wide enough */
@container bsw (min-width: 900px) {
  .section-bestsellers .bs-track {
    grid-auto-columns: calc((100cqi - 3 * var(--bs-gap)) / 4);
  }
}

/* Tablet: 2 full cards per view */
@container bsw (min-width: 520px) and (max-width: 899px) {
  .section-bestsellers .bs-track {
    grid-auto-columns: calc((100cqi - 1 * var(--bs-gap)) / 2);
  }
}

@supports not (container-type: inline-size) {
  @media (min-width: 900px) {
    .section-bestsellers .bs-track {
      grid-auto-columns: calc((100vw - 8rem - 3rem) / 4);
    }
  }
  @media (min-width: 520px) and (max-width: 899px) {
    .section-bestsellers .bs-track {
      grid-auto-columns: calc((100vw - 5rem - 1rem) / 2);
    }
  }
}

.section-bestsellers .bs-item {
  display: block;
  width: 100%;
  min-width: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  contain: layout style;
}

.bs-nav {
  flex: 0 0 44px;
  flex-shrink: 0;
  align-self: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(244, 233, 216, 0.12);
  background: rgba(18, 10, 28, 0.85);
  color: var(--bone);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.25s,
    border-color 0.25s,
    transform 0.2s var(--ease-out-expo),
    box-shadow 0.25s;
  z-index: 2;
}

.bs-nav:hover {
  background: rgba(232, 93, 4, 0.2);
  border-color: rgba(232, 93, 4, 0.45);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.bs-nav:active {
  transform: scale(0.96);
}

@media (max-width: 640px) {
  .bs-nav {
    display: none;
  }
}

.bs-product-card {
  box-sizing: border-box;
  background: rgba(12, 8, 20, 0.75);
  border: 1px solid rgba(244, 233, 216, 0.1);
  border-radius: 14px;
  padding: 0.65rem 0.65rem 0.85rem;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.8s var(--ease-out-expo),
    transform 0.8s var(--ease-out-expo),
    border-color 0.3s,
    box-shadow 0.35s;
  height: 100%;
}

.bs-product-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.bs-product-card.is-visible:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 93, 4, 0.22);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
}

.bs-img-link {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 0.85rem;
}

.bs-img-wrap {
  aspect-ratio: 1;
  background: linear-gradient(145deg, #2a1810 0%, var(--ink) 100%);
  overflow: hidden;
}

.bs-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease-out-expo);
}

.bs-product-card.is-visible:hover .bs-img-wrap img {
  transform: scale(1.05);
}

.bs-product-name {
  font-family: var(--font-body);
  /* matched to .pl-card-title */
  font-size: calc(0.82rem * 1.15);
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 0.45rem;
  color: var(--bone);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bs-price {
  margin: 0 0 0.65rem;
  /* matched to .pl-card-price */
  font-size: calc(0.78rem * 1.15);
  color: var(--bone-muted);
  letter-spacing: 0.02em;
}

.bs-price-num {
  font-weight: 700;
  color: var(--bone);
  font-size: 0.95rem;
}

.bs-currency {
  font-size: 0.72rem;
  opacity: 0.75;
}

.bs-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  /* matched to .pl-card-actions */
  gap: 0.45rem;
}

.bs-btn-cart {
  display: block;
  text-align: center;
  /* matched to .pl-btn */
  padding: 0.65rem 0.75rem;
  font-size: calc(0.68rem * 1.15);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--void);
  background: var(--ember);
  border: none;
  border-radius: 6px;
  transition: background 0.2s, transform 0.2s;
}

.bs-btn-cart:hover {
  background: var(--ember-dim);
  transform: translateY(-1px);
}

/* Secondary CTA: solid bone style matching .pl-btn--secondary */
.bs-btn-learn {
  display: block;
  text-align: center;
  /* matched to .pl-btn */
  padding: 0.65rem 0.75rem;
  font-size: calc(0.68rem * 1.15);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--void);
  background: var(--bone);
  border: none;
  border-radius: 6px;
  transition: background 0.2s, transform 0.2s;
}

.bs-btn-learn:hover {
  background: #fff;
  transform: translateY(-1px);
}

/* —— Product sections —— */
.section-products {
  padding: 5rem var(--nav-pad) 4rem;
  max-width: 1440px;
  margin: 0 auto;
}

.product-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-bottom: 5rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  /* Opaque glass — no backdrop-filter (blur is very expensive while scrolling past) */
  background: rgba(18, 10, 28, 0.9);
  border: 1px solid rgba(244, 233, 216, 0.1);
  border-radius: 24px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
  isolation: isolate;
  contain: layout;
  opacity: 0;
  transform: translateY(48px) scale(0.98);
  transition:
    opacity 0.55s var(--ease-out-expo),
    transform 0.55s var(--ease-out-expo),
    border-color 0.35s,
    box-shadow 0.35s;
}

.product-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.product-card:hover {
  border-color: rgba(232, 93, 4, 0.25);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.4);
}

.product-card--reverse {
  direction: rtl;
}

.product-card--reverse > * {
  direction: ltr;
}

@media (max-width: 800px) {
  .product-card,
  .product-card--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

.product-visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, #2a1810 0%, var(--ink) 100%);
}

.product-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
}

.product-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

.product-card:hover .product-placeholder {
  transform: scale(1.06);
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--void);
  background: var(--toxic);
  border-radius: 6px;
}

/* Match both h2/h3 so cached CSS or heading-level changes never fall back to body sans-serif */
.product-card .product-body h2,
.product-card .product-body h3 {
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 600;
  font-style: normal;
  line-height: 1.2;
  margin: 0 0 1rem;
  color: var(--bone);
}

.product-body p {
  color: var(--bone-muted);
  margin: 0 0 1.25rem;
}

.product-link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ember);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s var(--ease-out-expo), color 0.25s;
}

.product-link:hover {
  gap: 0.85rem;
  color: var(--bone);
}

/* —— Reviews —— */
.section-reviews {
  padding: 2rem var(--nav-pad) 5rem;
  background: linear-gradient(180deg, transparent 0%, rgba(107, 45, 138, 0.12) 40%, transparent 100%);
}

.reviews-inner {
  max-width: 1440px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  text-align: center;
  margin: 0 0 0.5rem;
  color: var(--bone);
}

.section-sub {
  text-align: center;
  color: var(--bone-muted);
  margin: 0 0 3rem;
  font-size: 1rem;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2vw, 2rem);
}

@media (max-width: 960px) {
  .review-grid {
    grid-template-columns: 1fr;
  }
}

.review-card {
  background: rgba(18, 10, 28, 0.65);
  border: 1px solid rgba(244, 233, 216, 0.07);
  border-radius: 20px;
  padding: 1.25rem;
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.85s var(--ease-out-expo),
    transform 0.85s var(--ease-out-expo),
    border-color 0.3s;
}

.review-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.review-card:hover {
  border-color: rgba(124, 181, 24, 0.25);
}

.review-photo {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1rem;
  cursor: zoom-in;
  aspect-ratio: 3 / 2;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.35s var(--ease-out-expo), box-shadow 0.35s;
}

.review-photo:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 50px rgba(232, 93, 4, 0.15);
}

.review-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-photo::after {
  content: "🔍";
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 0.85rem;
  opacity: 0.7;
  pointer-events: none;
}

.review-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(232, 93, 4, 0.35);
}

.review-meta strong {
  display: block;
  color: var(--bone);
  font-size: 0.95rem;
}

.review-meta span {
  font-size: 0.8rem;
  color: var(--bone-muted);
}

.review-text {
  font-size: 0.95rem;
  color: var(--bone-muted);
  line-height: 1.55;
  margin: 0;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 11000;
  background: rgba(5, 3, 10, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: min(92vw, 1200px);
  max-height: 88vh;
  border-radius: 12px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  transform: scale(0.9);
  transition: transform 0.4s var(--ease-out-expo);
}

.lightbox.is-open img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(244, 233, 216, 0.1);
  color: var(--bone);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  transition: background 0.25s;
}

.lightbox-close:hover {
  background: rgba(232, 93, 4, 0.35);
}

/* —— CTA —— */
/* Defer off-screen layout/paint to reduce scroll jank (CLS hint uses real height after first paint) */
/* Exclude .section-products: heavy cards + images + IO reveal stack badly with deferred paint */
.section-bestsellers,
.section-reviews,
.section-cta,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 520px;
}

.section-cta {
  padding: 4rem var(--nav-pad) 6rem;
  text-align: center;
}

.cta-panel {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 3.5rem);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(232, 93, 4, 0.18) 0%, rgba(107, 45, 138, 0.2) 50%, rgba(18, 10, 28, 0.9) 100%);
  border: 1px solid rgba(244, 233, 216, 0.12);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}

.cta-panel.is-visible {
  opacity: 1;
  transform: scale(1);
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle, rgba(232, 93, 4, 0.08) 0%, transparent 45%);
  animation: cta-rotate 20s linear infinite;
  pointer-events: none;
}

@keyframes cta-rotate {
  to {
    transform: rotate(360deg);
  }
}

.cta-panel h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  margin: 0 0 0.75rem;
  position: relative;
  z-index: 1;
}

.cta-panel p {
  color: var(--bone-muted);
  margin: 0 0 1.75rem;
  position: relative;
  z-index: 1;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-panel .btn-primary {
  position: relative;
  z-index: 1;
}

/* —— Simple page shell (inner pages) —— */
.page-main {
  padding: 120px var(--nav-pad) 4rem;
  max-width: 800px;
  margin: 0 auto;
}

.page-main h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.page-main p {
  color: var(--bone-muted);
}

/* —— About page (EDJY-style: full-bleed hero + dark editorial strips + split) —— */
.about-body {
  background: var(--void);
}

.about-page {
  width: 100%;
  padding: 0 0 0;
  margin: 0;
}

/* Block 1: full-width landscape image only (no horizontal padding on media) */
.about-hero-wide {
  width: 100%;
  margin: 0;
  padding: 72px 0 0;
  background: var(--void);
}

.about-hero-figure {
  margin: 0;
  width: 100%;
  height: clamp(220px, 38vw, 520px);
  overflow: hidden;
  line-height: 0;
}

.about-hero-wide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  display: block;
}

/* Block 2+: full-width editorial columns (dark, matches site) */
.about-strip {
  width: 100%;
  margin: 0;
}

.about-strip--dark {
  background: var(--void);
  color: var(--bone);
  padding: clamp(2.75rem, 6vw, 4rem) var(--nav-pad) clamp(3rem, 6vw, 4.25rem);
}

.about-strip--bordered {
  border-top: 1px solid rgba(244, 233, 216, 0.08);
}

.about-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.about-kicker {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ember);
  margin: 0 0 0.75rem;
}

.about-kicker--on-dark {
  color: var(--ember);
  opacity: 0.95;
}

.about-kicker--spaced {
  margin-top: 2.5rem;
}

.about-genesis-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.8vw, 3.1rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.25rem;
  color: var(--bone);
  letter-spacing: -0.02em;
}

.about-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 1.25rem;
  color: var(--bone);
}

.about-prose p {
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--bone-muted);
  margin: 0 0 1.25rem;
}

.about-prose p:last-child {
  margin-bottom: 0;
}

/* Split band on dark page bg (EDJY image / copy row) */
.about-split-wrap {
  background: var(--void);
  padding: clamp(3rem, 7vw, 5rem) var(--nav-pad);
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
}

.about-split-visual {
  border-radius: 16px 0 0 16px;
  overflow: hidden;
  min-height: 300px;
  background: var(--ink);
}

.about-split-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-split-panel {
  padding: clamp(2rem, 4vw, 3rem);
  background: rgba(244, 233, 216, 0.06);
  border: 1px solid rgba(244, 233, 216, 0.1);
  border-left: none;
  border-radius: 0 16px 16px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-split-panel .about-section-title {
  margin-bottom: 1rem;
  color: var(--bone);
}

/* -- Reverse split: image right, text left -- */
.about-split--reverse .about-split-visual {
  order: 2;
  border-radius: 0 16px 16px 0;
}

.about-split--reverse .about-split-panel {
  order: 1;
  border-radius: 16px 0 0 16px;
  border-left: 1px solid rgba(244, 233, 216, 0.1);
  border-right: none;
}

.about-cta {
  text-align: center;
  padding: clamp(3.5rem, 8vw, 5rem) var(--nav-pad) clamp(4rem, 9vw, 5.5rem);
  background: linear-gradient(165deg, #120a1a 0%, var(--void) 45%, #0a0612 100%);
  border-top: 1px solid rgba(244, 233, 216, 0.08);
}

.about-cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  margin: 0 0 1rem;
  color: var(--bone);
}

.about-cta-text {
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--bone-muted);
  max-width: 32rem;
  margin: 0 auto 1.75rem;
}

.about-cta-btn {
  display: inline-flex;
}

/* —— Contact page —— */
.contact-body {
  background:
    radial-gradient(circle at 82% 16%, rgba(232, 93, 4, 0.16), transparent 26rem),
    radial-gradient(circle at 8% 38%, rgba(107, 45, 138, 0.18), transparent 28rem),
    var(--void);
}

.contact-page {
  min-height: 100vh;
  overflow: hidden;
}

.contact-hero {
  position: relative;
  padding: clamp(4rem, 9vw, 7rem) var(--nav-pad) clamp(2.5rem, 6vw, 4rem);
  border-bottom: 1px solid rgba(244, 233, 216, 0.07);
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 6, 18, 0.94), rgba(10, 6, 18, 0.72)),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E") center / cover;
  opacity: 0.34;
  pointer-events: none;
}

.contact-hero-glow {
  position: absolute;
  right: 10%;
  top: 18%;
  width: 18rem;
  height: 18rem;
  border-radius: 999px;
  background: rgba(232, 93, 4, 0.18);
  filter: blur(72px);
  opacity: 0.8;
  pointer-events: none;
}

.contact-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.contact-kicker {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ember);
  margin: 0 0 0.85rem;
}

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.8rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.045em;
  color: var(--bone);
  margin: 0 0 1.25rem;
}

.contact-intro {
  max-width: 43rem;
  color: var(--bone-muted);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.75;
  margin: 0;
}

.contact-kicker--center {
  text-align: center;
}

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.8rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.045em;
  color: var(--bone);
  margin: 0 0 1.25rem;
}

.contact-intro {
  max-width: 43rem;
  color: var(--bone-muted);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.75;
  margin: 0;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(2.5rem, 7vw, 5rem) var(--nav-pad);
}

.contact-info-card,
.contact-form-card {
  position: relative;
  border: 1px solid rgba(244, 233, 216, 0.1);
  background:
    linear-gradient(145deg, rgba(244, 233, 216, 0.075), rgba(244, 233, 216, 0.026)),
    rgba(18, 10, 26, 0.78);
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(20px);
}

.contact-info-card {
  padding: clamp(1.5rem, 3vw, 2rem);
  align-self: start;
}

.contact-info-card h2,
.contact-form-card h2,
.contact-cta h2 {
  font-family: var(--font-display);
  color: var(--bone);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 0 1rem;
}

.contact-info-card h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.contact-info-card p,
.contact-form-note,
.contact-cta p {
  color: var(--bone-muted);
}

.contact-methods {
  display: grid;
  gap: 0.85rem;
  margin: 2rem 0;
}

.contact-method {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0.85rem;
  align-items: center;
  min-height: 64px;
  padding: 0.75rem;
  border: 1px solid rgba(244, 233, 216, 0.08);
  border-radius: 18px;
  background: rgba(10, 6, 18, 0.34);
  color: var(--bone);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.contact-method:hover {
  transform: translateY(-2px);
  border-color: rgba(232, 93, 4, 0.42);
  background: rgba(232, 93, 4, 0.08);
}

.contact-method small {
  display: block;
  margin-bottom: 0.1rem;
  font-size: 0.72rem;
  color: var(--bone-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contact-method-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  color: var(--ember);
  background: rgba(232, 93, 4, 0.12);
  box-shadow: inset 0 0 0 1px rgba(232, 93, 4, 0.2);
}

.contact-method-icon svg {
  width: 22px;
  height: 22px;
}

.contact-studio {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(244, 233, 216, 0.08);
}

.contact-studio h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--bone);
}

.contact-hours {
  display: grid;
  gap: 0.55rem;
  margin: 1.1rem 0 0;
}

.contact-hours div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(244, 233, 216, 0.06);
}

.contact-hours dt {
  color: var(--bone);
  font-weight: 700;
}

.contact-hours dd {
  margin: 0;
  color: var(--bone-muted);
}

.contact-form-card {
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.contact-form-card h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--bone);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(244, 233, 216, 0.12);
  border-radius: 16px;
  background: rgba(10, 6, 18, 0.62);
  color: var(--bone);
  font: inherit;
  letter-spacing: 0;
  text-transform: none;
  padding: 0.95rem 1rem;
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(232, 93, 4, 0.72);
  box-shadow: 0 0 0 4px rgba(232, 93, 4, 0.12);
  background: rgba(10, 6, 18, 0.82);
}

.contact-submit {
  margin-top: 0.35rem;
  justify-self: start;
  border: 0;
  cursor: pointer;
}

.contact-form-note {
  max-width: 38rem;
  font-size: 0.86rem;
  line-height: 1.6;
  margin: 0.25rem 0 0;
}

.contact-cta {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--nav-pad) clamp(4rem, 8vw, 6rem);
  text-align: center;
}

.contact-cta h2 {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
}

.contact-cta p {
  margin: 0 auto;
  max-width: 42rem;
  line-height: 1.75;
}

@media (max-width: 920px) {
  .contact-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contact-page {
    padding-top: 64px;
  }

  .contact-hero {
    padding-top: 3rem;
  }

  .contact-title {
    font-size: clamp(2.55rem, 18vw, 4.2rem);
  }

  .contact-method {
    grid-template-columns: 40px 1fr;
  }

  .contact-hours div {
    display: grid;
    gap: 0.15rem;
  }
}

@media (max-width: 900px) {
  .about-split {
    grid-template-columns: 1fr;
  }

  .about-split-visual {
    border-radius: 16px 16px 0 0;
    min-height: 240px;
  }

  .about-split-panel {
    border-radius: 0 0 16px 16px;
    border: 1px solid rgba(244, 233, 216, 0.1);
    border-top: none;
  }

  .about-split--reverse .about-split-visual {
    order: 0;
    border-radius: 16px 16px 0 0;
  }

  .about-split--reverse .about-split-panel {
    border-radius: 0 0 16px 16px;
    border: 1px solid rgba(244, 233, 216, 0.1);
    border-top: none;
  }
}

.site-footer {
  padding: 2rem var(--nav-pad);
  text-align: center;
  font-size: 0.8rem;
  color: var(--bone-muted);
  border-top: 1px solid rgba(244, 233, 216, 0.06);
}

.footer-links {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 1.1rem;
  font-size: 0.78rem;
}

.footer-links a {
  color: var(--bone-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--ember);
}

/* —— Policy pages —— */
.policy-body {
  background: var(--void);
}

.policy-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
}

.policy-page h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--bone);
  margin: 0 0 0.35rem;
  line-height: 1.2;
}

.policy-date {
  font-size: 0.82rem;
  color: var(--bone-muted);
  margin: 0 0 3rem;
}

.policy-section {
  margin-bottom: 2.5rem;
}

.policy-section h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--bone);
  margin: 0 0 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.policy-section h2::before {
  content: '';
  display: block;
  width: 3px;
  height: 1.1em;
  background: var(--ember);
  border-radius: 2px;
  flex-shrink: 0;
}

.policy-section p,
.policy-section li {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--bone-muted);
  margin: 0 0 0.85rem;
}

.policy-section strong {
  color: var(--bone);
}

.policy-section ul,
.policy-section ol {
  margin: 0 0 1rem;
  padding-left: 1.4rem;
}

.policy-section li {
  margin-bottom: 0.45rem;
}

.policy-section a {
  color: var(--ember);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 1.5rem;
  font-size: 0.88rem;
}

.policy-table th,
.policy-table td {
  text-align: left;
  padding: 0.7rem 1rem;
  border-bottom: 1px solid rgba(244, 233, 216, 0.08);
}

.policy-table th {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bone);
  background: rgba(244, 233, 216, 0.04);
}

.policy-table td {
  color: var(--bone-muted);
}

.policy-table tr:last-child td {
  border-bottom: none;
}

@media (max-width: 640px) {
  .policy-page {
    padding: 2.5rem 1rem 4rem;
  }
}

/* —— Catalog / collection (iFootage-inspired, Vivi palette) —— */
.catalog-body {
  background: var(--void);
}

.pl-page {
  padding: 6.5rem var(--nav-pad) 4rem;
  max-width: 1440px;
  margin: 0 auto;
}

.pl-page-head {
  text-align: center;
  margin-bottom: 2rem;
}

.pl-page-head h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--bone);
}

.pl-page-head p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--bone-muted);
}

.pl-subnav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  margin-bottom: 2rem;
}

.pl-subnav a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-muted);
  padding: 0.4rem 0.2rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.pl-subnav a:hover {
  color: var(--bone);
}

.pl-subnav a.is-active {
  color: var(--ember);
  border-bottom-color: var(--ember);
}

.pl-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0 1.25rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid rgba(244, 233, 216, 0.08);
}

.pl-toolbar-left,
.pl-toolbar-right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}

.pl-toolbar label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bone-muted);
}

.pl-toolbar select {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--bone);
  background: rgba(18, 10, 28, 0.9);
  border: 1px solid rgba(244, 233, 216, 0.15);
  border-radius: 6px;
  padding: 0.45rem 2rem 0.45rem 0.65rem;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23c9b8a4' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
}

.pl-toolbar-count {
  font-size: 0.78rem;
  color: var(--bone-muted);
}

.pl-section {
  margin-top: 2.75rem;
}

.pl-section:first-of-type {
  margin-top: 1.5rem;
}

.pl-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  margin: 0 0 1.25rem;
  color: var(--bone);
  letter-spacing: 0.02em;
}

.pl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}

@media (max-width: 1100px) {
  .pl-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  .pl-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 420px) {
  .pl-grid {
    grid-template-columns: 1fr;
  }
}

.pl-card {
  display: flex;
  flex-direction: column;
  background: rgba(12, 8, 20, 0.65);
  border: 1px solid rgba(244, 233, 216, 0.07);
  border-radius: 12px;
  overflow: hidden;
  transition:
    border-color 0.25s var(--ease-out-expo),
    box-shadow 0.25s var(--ease-out-expo),
    transform 0.25s var(--ease-out-expo);
}

.pl-card:hover {
  border-color: rgba(232, 93, 4, 0.22);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
  transform: translateY(-3px);
}

.pl-card-visual {
  display: block;
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: radial-gradient(
    ellipse 85% 75% at 50% 45%,
    rgba(232, 93, 4, 0.22) 0%,
    rgba(107, 45, 138, 0.12) 45%,
    #0a0612 100%
  );
}

.pl-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: normal;
  transition: transform 0.45s var(--ease-out-expo);
}

.pl-card:hover .pl-card-visual img {
  transform: scale(1.05);
}

.pl-card-badge {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 2;
  padding: 0.3rem 0.55rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--void);
  background: var(--ember);
  border-radius: 4px;
}

.pl-card-body {
  padding: 1rem 0.85rem 1.1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.35rem;
}

.pl-card-title {
  font-family: var(--font-body);
  /* +15% vs previous 0.82rem; spacing below unchanged */
  font-size: calc(0.82rem * 1.15);
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
  color: var(--bone);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pl-card-price {
  margin: 0 0 0.65rem;
  font-size: calc(0.78rem * 1.15);
  color: var(--bone-muted);
}

.pl-price-was {
  text-decoration: line-through;
  opacity: 0.75;
  margin-right: 0.35rem;
}

.pl-price-now {
  color: var(--ember);
  font-weight: 600;
}

.pl-card-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.pl-btn {
  display: block;
  width: 100%;
  text-align: center;
  font-family: var(--font-body);
  /* +15% vs previous 0.68rem; padding unchanged */
  font-size: calc(0.68rem * 1.15);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.65rem 0.75rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.2s;
}

.pl-btn--primary {
  background: var(--ember);
  color: var(--void);
}

.pl-btn--primary:hover {
  background: var(--ember-dim);
}

.pl-btn--secondary {
  background: var(--bone);
  color: var(--void);
}

.pl-btn--secondary:hover {
  background: #fff;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* —— WordPress journal templates —— */
.hallow-blog-page {
  background:
    radial-gradient(circle at 18% 6%, rgba(232, 93, 4, 0.16), transparent 28rem),
    radial-gradient(circle at 88% 10%, rgba(107, 45, 138, 0.24), transparent 32rem),
    linear-gradient(180deg, #0a0612 0%, #120817 48%, #07040d 100%);
}

.blog-page,
.single-journal {
  min-height: 100vh;
  color: var(--bone);
}

.blog-hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(25.2rem, 64.8vh, 39.6rem);
  display: grid;
  place-items: center;
  padding: clamp(6.3rem, 10.8vw, 9rem) var(--nav-pad) clamp(3.6rem, 7.2vw, 6.3rem);
  border-bottom: 1px solid rgba(244, 233, 216, 0.12);
  background:
    linear-gradient(180deg, rgba(10, 6, 18, 0.22), rgba(10, 6, 18, 0.94)),
    radial-gradient(circle at 50% -18%, rgba(244, 233, 216, 0.13), transparent 24rem);
}

.blog-hero--compact {
  min-height: 25rem;
}

.blog-hero--compact .blog-hero-inner {
  width: min(860px, 100%);
}

.blog-hero::before {
  content: "";
  position: absolute;
  inset: auto -10% -22% -10%;
  height: 48%;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(201, 184, 164, 0.14), transparent 62%),
    linear-gradient(90deg, transparent, rgba(124, 181, 24, 0.08), transparent);
  filter: blur(8px);
  opacity: 0.56;
  pointer-events: none;
}

.blog-orb {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.blog-orb--moon {
  top: 15%;
  right: 12%;
  width: clamp(7rem, 13vw, 12rem);
  aspect-ratio: 1;
  background: radial-gradient(circle at 35% 35%, #fff7df, #c9b8a4 48%, rgba(201, 184, 164, 0.12) 70%);
  box-shadow: 0 0 70px rgba(244, 233, 216, 0.22);
  opacity: 0.45;
}

.blog-orb--ember {
  left: 8%;
  bottom: 18%;
  width: clamp(8rem, 16vw, 15rem);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(232, 93, 4, 0.22), transparent 68%);
  filter: blur(3px);
  opacity: 0.86;
}

.blog-hero-inner {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  text-align: center;
}

.blog-kicker {
  margin: 0 0 1rem;
  color: var(--toxic);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.blog-hero h1,
.blog-empty h1,
.blog-empty h2,
.single-journal-hero h1,
.journal-shop-cta h2 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 0.98;
  color: var(--bone);
}

.blog-hero h1 {
  max-width: 880px;
  margin: 0 auto 1.35rem;
  font-size: clamp(3rem, 8vw, 6.8rem);
  letter-spacing: -0.045em;
}

.blog-hero--compact h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
}

.blog-hero p,
.blog-empty p,
.journal-shop-cta p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--bone-muted);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.blog-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 2rem;
}

.blog-hero--journal-index {
  min-height: clamp(26.1rem, 55.8vh, 34.2rem);
}

.blog-category-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin: 2rem auto 0;
}

.blog-category-row a {
  display: inline-flex;
  align-items: center;
  min-height: 2.45rem;
  padding: 0.58rem 0.95rem;
  border: 1px solid rgba(244, 233, 216, 0.15);
  border-radius: 999px;
  color: var(--bone-muted);
  background: rgba(18, 10, 28, 0.58);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: color 0.22s ease, border-color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.blog-category-row a:hover {
  color: var(--bone);
  border-color: rgba(232, 93, 4, 0.5);
  background: rgba(232, 93, 4, 0.12);
  transform: translateY(-2px);
}

.blog-shell {
  width: min(1180px, calc(100% - 2 * var(--nav-pad)));
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.blog-shell .blog-section {
  content-visibility: auto;
  contain-intrinsic-size: 760px;
}

.blog-section + .blog-section {
  margin-top: clamp(3rem, 6vw, 5rem);
}

.blog-section-head {
  max-width: 760px;
  margin: 0 auto clamp(1.3rem, 2.8vw, 2rem);
  text-align: center;
}

.blog-section-head--split {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  text-align: left;
}

.blog-section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4.3rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--bone);
}

.blog-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
}

.blog-feature-grid .blog-featured-card--lead {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 0.56fr) minmax(0, 0.44fr);
  min-height: clamp(15.4rem, 25vw, 20.2rem);
}

.blog-feature-grid .blog-featured-card--lead .blog-featured-media {
  order: 2;
  min-height: auto;
  width: 100%;
  aspect-ratio: 4 / 3;
  align-self: center;
  justify-self: stretch;
  background:
    linear-gradient(140deg, rgba(87, 140, 255, 0.4), rgba(38, 193, 245, 0.34)),
    radial-gradient(circle at 70% 55%, rgba(230, 244, 255, 0.32), transparent 38%),
    #101a3a;
}

.blog-feature-grid .blog-featured-card--lead .blog-featured-media img {
  display: none;
}

.blog-card--featured-small {
  min-height: 100%;
}

.blog-card--featured-small .blog-card-media {
  aspect-ratio: 2.15 / 1;
}

.journal-shop-cta--index {
  width: min(980px, calc(100% - 2 * var(--nav-pad)));
  margin: 0 auto clamp(4rem, 8vw, 7rem);
}

.blog-featured-card,
.blog-card,
.journal-shop-cta,
.blog-empty {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(244, 233, 216, 0.08), rgba(244, 233, 216, 0.025)),
    rgba(18, 10, 28, 0.78);
  border: 1px solid rgba(244, 233, 216, 0.13);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
}

.blog-featured-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(20rem, 0.92fr);
  min-height: 13.5rem;
  border-radius: 30px;
}

.blog-featured-media,
.blog-card-media,
.single-journal-media {
  display: block;
  overflow: hidden;
  background: radial-gradient(circle at 42% 25%, rgba(232, 93, 4, 0.28), rgba(10, 6, 18, 0.9));
}

.blog-featured-media img,
.blog-card-media img,
.single-journal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s var(--ease-out-expo), filter 0.22s ease;
}

.blog-featured-card:hover img,
.blog-card:hover img {
  transform: scale(1.015);
  filter: saturate(1.04);
}

.blog-featured-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  order: 1;
  gap: 0.45rem;
  padding: clamp(1.05rem, 1.85vw, 1.65rem);
}

.blog-featured-copy h2,
.blog-card h2 {
  margin: 0.65rem 0 0.8rem;
  font-family: var(--font-display);
  color: var(--bone);
  line-height: 1.04;
}

.blog-featured-copy h2 {
  margin: 0.48rem 0 0.62rem;
  font-size: clamp(1.72rem, 2.6vw, 2.45rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.blog-featured-copy .blog-kicker {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.17em;
}

.blog-featured-copy .blog-meta {
  font-size: 0.76rem;
  letter-spacing: 0.1em;
}

.blog-featured-copy > p {
  font-size: clamp(0.98rem, 1.2vw, 1.1rem);
  line-height: 1.6;
}

.blog-featured-copy .blog-read-link {
  margin-top: 1rem;
  font-size: 0.76rem;
}

.blog-card h2 {
  font-size: clamp(1.2rem, 1.9vw, 1.6rem);
}

.blog-featured-copy p,
.blog-card p {
  margin: 0;
  color: var(--bone-muted);
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  color: rgba(201, 184, 164, 0.82);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-meta a {
  color: var(--bone);
  transition: color 0.2s ease;
}

.blog-meta a:hover,
.blog-read-link:hover,
.single-tags a:hover,
.single-post-nav a:hover {
  color: var(--ember);
}

.blog-read-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 1.3rem;
  color: var(--toxic);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 0.2s ease, transform 0.2s ease;
}

.blog-read-link:hover {
  transform: translateX(4px);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
  margin-top: clamp(1.2rem, 2.4vw, 2rem);
}

.blog-grid--archive {
  margin-top: 0;
}

.blog-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: 24px;
  transition: transform 0.28s var(--ease-out-expo), border-color 0.28s ease, box-shadow 0.28s ease;
}

.blog-reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition: opacity 0.45s ease, transform 0.52s var(--ease-out-expo), border-color 0.3s ease, box-shadow 0.3s ease;
  will-change: opacity, transform;
}

.hallow-all-articles .blog-reveal {
  opacity: 1;
  transform: none;
}

.blog-reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.blog-feature-grid .blog-reveal:nth-child(2),
.blog-grid .blog-reveal:nth-child(3n + 2) {
  transition-delay: 55ms;
}

.blog-feature-grid .blog-reveal:nth-child(3),
.blog-grid .blog-reveal:nth-child(3n) {
  transition-delay: 110ms;
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 93, 4, 0.42);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34), 0 0 18px rgba(232, 93, 4, 0.06);
}

.blog-card-media {
  aspect-ratio: 1.18 / 1;
}

.blog-card-copy {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.3rem;
}

.blog-card-copy .blog-read-link {
  margin-top: auto;
  padding-top: 1.2rem;
}

.blog-image-fallback {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 16rem;
  background:
    radial-gradient(circle at 50% 28%, rgba(232, 93, 4, 0.58), transparent 20%),
    radial-gradient(circle at 58% 46%, rgba(124, 181, 24, 0.18), transparent 24%),
    linear-gradient(145deg, rgba(107, 45, 138, 0.62), rgba(10, 6, 18, 0.96));
}

.blog-pagination {
  margin-top: 2.4rem;
  color: var(--bone-muted);
}

.blog-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}

.blog-pagination a,
.blog-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.6rem;
  min-height: 2.6rem;
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(244, 233, 216, 0.14);
  border-radius: 999px;
  background: rgba(18, 10, 28, 0.64);
}

.blog-pagination .current,
.blog-pagination a:hover {
  color: var(--void);
  background: var(--ember);
  border-color: var(--ember);
}

.blog-empty {
  width: min(760px, calc(100% - 2 * var(--nav-pad)));
  margin: clamp(7rem, 14vw, 11rem) auto;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 30px;
  text-align: center;
}

.blog-empty--full {
  min-height: 56vh;
  display: grid;
  place-items: center;
}

.blog-empty h1,
.blog-empty h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.5rem, 6vw, 5rem);
}

.archive-description {
  color: var(--bone-muted);
}

.blog-search-form {
  width: min(680px, 100%);
  margin: 2rem auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
}

.blog-search-form input {
  width: 100%;
  min-height: 3.2rem;
  border-radius: 999px;
  border: 1px solid rgba(244, 233, 216, 0.18);
  background: rgba(10, 6, 18, 0.72);
  color: var(--bone);
  padding: 0 1.1rem;
  font: inherit;
  outline: none;
}

.blog-search-form input:focus {
  border-color: var(--ember);
  box-shadow: 0 0 0 4px rgba(232, 93, 4, 0.16);
}

.single-journal {
  background:
    radial-gradient(circle at 80% 4%, rgba(232, 93, 4, 0.16), transparent 26rem),
    linear-gradient(180deg, #0a0612 0%, #100715 54%, #07040d 100%);
}

.single-journal-article {
  width: min(1180px, calc(100% - 2 * var(--nav-pad)));
  margin: 0 auto;
  padding: clamp(5.5rem, 10vw, 8rem) 0 clamp(3.5rem, 7vw, 6rem);
}

.single-journal-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 1.1fr);
  gap: clamp(1.2rem, 3vw, 2.4rem);
  align-items: end;
}

.single-journal-hero h1 {
  margin: 0.4rem 0 1rem;
  font-size: clamp(3rem, 7vw, 6.5rem);
  letter-spacing: -0.045em;
}

.single-journal-media {
  min-height: clamp(22rem, 48vw, 34rem);
  border-radius: 30px;
  border: 1px solid rgba(244, 233, 216, 0.13);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
}

.single-journal-layout {
  display: grid;
  grid-template-columns: minmax(12rem, 0.28fr) minmax(0, 0.72fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  margin-top: clamp(3rem, 6vw, 5rem);
}

.single-journal-aside {
  position: sticky;
  top: 16px;
  align-self: start;
  color: var(--bone-muted);
}

.single-tags {
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(244, 233, 216, 0.13);
}

.single-tags p {
  margin: 0 0 0.7rem;
  color: var(--toxic);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.single-tags a {
  display: inline-flex;
  margin: 0 0.35rem 0.45rem 0;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(244, 233, 216, 0.13);
  border-radius: 999px;
  color: var(--bone-muted);
  font-size: 0.82rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.single-tags a:hover {
  border-color: rgba(232, 93, 4, 0.55);
}

.single-journal-content {
  color: rgba(244, 233, 216, 0.9);
  font-size: clamp(1.04rem, 1.4vw, 1.16rem);
  line-height: 1.82;
}

.single-journal-content > * {
  margin-top: 0;
  margin-bottom: 1.45rem;
}

.single-journal-content h2,
.single-journal-content h3,
.single-journal-content h4 {
  margin-top: 2.5rem;
  color: var(--bone);
  font-family: var(--font-display);
  line-height: 1.1;
}

.single-journal-content h2 {
  font-size: clamp(2.1rem, 4vw, 3.5rem);
}

.single-journal-content h3 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.single-journal-content a {
  color: var(--toxic);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

.single-journal-content img {
  border-radius: 22px;
  border: 1px solid rgba(244, 233, 216, 0.13);
}

.single-journal-content blockquote {
  margin: 2.2rem 0;
  padding: 1.3rem 1.5rem;
  border-left: 3px solid var(--ember);
  background: rgba(244, 233, 216, 0.055);
  color: var(--bone);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1.2;
}

.journal-shop-cta {
  margin-top: clamp(3rem, 6vw, 5rem);
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 30px;
  text-align: center;
}

.journal-shop-cta h2 {
  max-width: 760px;
  margin: 0 auto 1rem;
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  letter-spacing: -0.035em;
}

.single-journal-article--thunder {
  width: min(1180px, calc(100% - 2 * var(--nav-pad)));
  margin: 0 auto;
  padding: clamp(5rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
}

.single-journal-head {
  width: min(1040px, 100%);
  margin: 0 auto 1.6rem;
}

.single-back-link {
  margin-bottom: 1rem;
}

.single-journal-head h1 {
  margin: 0 0 0.8rem;
  max-width: 840px;
  font-family: var(--font-body);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--bone);
}

.single-updated {
  margin: 0 0 0.35rem;
  color: var(--bone-muted);
  font-size: 0.95rem;
}

.single-author-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  color: var(--bone-muted);
  font-size: 0.92rem;
}

.single-author-line .single-author {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.single-author-line .avatar {
  width: 28px;
  height: 28px;
  border-radius: 999px;
}

.single-journal-cover {
  margin-top: 1.35rem;
}

.single-journal-cover img,
.single-journal-cover .blog-image-fallback {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(244, 233, 216, 0.16);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
}

.single-journal-cover .blog-image-fallback {
  min-height: clamp(14rem, 30vw, 22rem);
}

.single-journal-layout--toc {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(15rem, 0.3fr);
  gap: clamp(1.2rem, 3vw, 2.6rem);
  align-items: start;
}

.single-journal-main {
  min-width: 0;
}

.single-journal-intro,
.single-journal-content {
  color: rgba(244, 233, 216, 0.93);
  font-size: clamp(1.03rem, 1.25vw, 1.14rem);
  line-height: 1.86;
}

.single-journal-intro > *,
.single-journal-content > * {
  margin-top: 0;
  margin-bottom: 1.35rem;
}

.single-journal-content h2,
.single-journal-content h3 {
  margin-top: 2.2rem;
  margin-bottom: 1rem;
  color: var(--bone);
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1.2;
}

.single-journal-content h2 {
  font-size: clamp(1.7rem, 2.7vw, 2.35rem);
}

.single-journal-content h3 {
  font-size: clamp(1.3rem, 2.05vw, 1.72rem);
}

.single-journal-content blockquote {
  margin: 2rem 0;
  padding: 1.1rem 1.3rem;
  border-left: 3px solid var(--ember);
  background: rgba(244, 233, 216, 0.06);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: clamp(1.08rem, 1.4vw, 1.2rem);
  line-height: 1.55;
}

.single-journal-toc {
  position: sticky;
  top: 16px;
  align-self: start;
}

.single-journal-toc-card {
  padding: 1rem 0 0 1.2rem;
  border-left: 1px solid rgba(244, 233, 216, 0.18);
}

.single-journal-toc-card p {
  margin: 0 0 0.8rem;
  color: var(--bone);
  font-weight: 700;
}

.single-journal-toc-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.single-journal-toc-card li {
  margin: 0 0 0.55rem;
}

.single-journal-toc-card li.is-sub {
  padding-left: 0.8rem;
}

.single-journal-toc-card a,
.single-journal-toc-card span {
  color: var(--bone-muted);
  font-size: 1.17rem;
  line-height: 1.45;
}

.single-journal-toc-card a:hover {
  color: var(--ember);
}

.journal-inline-cta {
  margin: 2rem 0;
  padding: 1.2rem 1.35rem;
  border-radius: 18px;
  border: 1px solid rgba(244, 233, 216, 0.16);
  background: rgba(26, 14, 38, 0.84);
}

.journal-inline-cta--intro {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  background:
    radial-gradient(circle at 15% 20%, rgba(232, 93, 4, 0.2), transparent 45%),
    linear-gradient(140deg, rgba(55, 20, 12, 0.95), rgba(40, 20, 64, 0.92));
}

.journal-inline-cta-illustration {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 68px;
  line-height: 1;
}

.journal-inline-cta-copy h3 {
  margin: 0 0 0.45rem;
  color: var(--bone);
  font-family: var(--font-body);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
}

.journal-inline-cta-copy p {
  margin: 0;
  color: var(--bone-muted);
  font-size: 0.97rem;
}

.journal-inline-cta-copy .btn-primary {
  margin-top: 0.9rem;
}

.journal-inline-cta--end {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.3rem;
  padding: 1.42rem 1.6rem;
  background: linear-gradient(135deg, rgba(107, 45, 138, 0.72), rgba(33, 20, 62, 0.92));
}

.journal-inline-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.journal-inline-cta--end .journal-inline-cta-copy h3 {
  margin: 0;
  max-width: 34rem;
  font-size: clamp(1.28rem, 2.05vw, 1.92rem);
  line-height: 1.14;
}

.journal-shop-btn {
  font-weight: 800;
  letter-spacing: 0.09em;
  padding: 1.17rem 2.28rem;
  font-size: 1.04rem;
}

.single-learn-more {
  margin-top: 2rem;
}

.single-learn-more h3 {
  margin: 0 0 0.85rem;
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 1.3rem;
}

.single-learn-more ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--bone-muted);
}

.single-learn-more li {
  margin-bottom: 0.4rem;
}

.single-learn-more a {
  color: var(--bone-muted);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.single-learn-more a:hover {
  color: var(--ember);
}

.single-post-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.single-post-nav a {
  display: flex;
  min-height: 4.5rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid rgba(244, 233, 216, 0.13);
  border-radius: 18px;
  color: var(--bone);
  background: rgba(18, 10, 28, 0.62);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.single-post-nav a:hover {
  transform: translateY(-3px);
  border-color: rgba(232, 93, 4, 0.45);
}

@media (prefers-reduced-motion: reduce) {
  .blog-featured-media img,
  .blog-card-media img,
  .single-journal-media img,
  .blog-card,
  .blog-read-link,
  .single-post-nav a {
    transition: none;
  }
}

@media (max-width: 980px) {
  .blog-featured-card,
  .blog-feature-grid,
  .single-journal-hero,
  .single-journal-layout {
    grid-template-columns: 1fr;
  }

  .blog-feature-grid .blog-featured-card--lead {
    grid-row: auto;
  }

  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .single-journal-aside,
  .single-journal-toc {
    position: static;
  }

  .single-journal-layout--toc {
    grid-template-columns: 1fr;
  }

  .single-journal-toc-card {
    padding: 1rem 0 0;
    border-left: 0;
    border-top: 1px solid rgba(244, 233, 216, 0.18);
  }

  .blog-hero::before {
    display: none;
  }
}

@media (max-width: 680px) {
  .blog-hero {
    min-height: 30rem;
  }

  .blog-grid,
  .blog-section-head--split,
  .single-post-nav,
  .blog-search-form {
    grid-template-columns: 1fr;
  }

  .single-journal-head h1 {
    font-size: clamp(1.8rem, 8.2vw, 2.35rem);
  }

  .journal-inline-cta--intro {
    grid-template-columns: 1fr;
  }

  .journal-inline-cta--end {
    grid-template-columns: 1fr;
  }

  .journal-inline-cta-illustration {
    margin: 0 auto;
  }

  .blog-section-head--split {
    display: block;
    text-align: center;
  }

  .blog-featured-card,
  .blog-card,
  .journal-shop-cta,
  .blog-empty,
  .single-journal-media {
    border-radius: 22px;
  }

  .blog-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }
}

/* ===================================================================
   Product Detail (single-product)
   =================================================================== */

.product-detail {
  max-width: 1340px;
  margin: 0 auto;
  padding: 6rem clamp(1rem, 3vw, 2.5rem) 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  animation: fade-up 0.7s var(--ease-out-expo);
}

/* --- Gallery --- */
.product-gallery {
  position: sticky;
  top: 16px;
}

.main-image-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(244, 233, 216, 0.1);
  background: radial-gradient(ellipse 80% 70% at 50% 45%, rgba(232,93,4,0.18), rgba(107,45,138,0.1) 45%, var(--void) 100%);
  cursor: zoom-in;
  aspect-ratio: 1;
  transition: border-color 0.25s;
}

.main-image-wrap:hover {
  border-color: rgba(232, 93, 4, 0.3);
}

.main-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease-out-expo);
}

.main-image-wrap:hover img {
  transform: scale(1.03);
}

.main-image-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  padding: 0.35rem 0.65rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--void);
  background: var(--ember);
  border-radius: 4px;
}

.thumbnail-row {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.thumbnail-btn {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  background: rgba(18, 10, 26, 0.7);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.thumbnail-btn:hover {
  border-color: rgba(232, 93, 4, 0.4);
}

.thumbnail-btn.active {
  border-color: var(--ember);
  box-shadow: 0 0 16px rgba(232, 93, 4, 0.25);
}

.thumbnail-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Product Info --- */
.product-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.product-category {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--toxic);
}

.product-category::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--toxic);
  box-shadow: 0 0 8px rgba(124, 181, 24, 0.5);
}

.product-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--bone);
  letter-spacing: 0.02em;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
}

.product-price {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--ember);
}

.product-price-was {
  font-size: 1.1rem;
  color: var(--bone-muted);
  text-decoration: line-through;
  opacity: 0.6;
}

.divider {
  height: 1px;
  background: rgba(244, 233, 216, 0.08);
  border: none;
}

.product-short-desc {
  /* +11% vs previous 0.95rem; stays subordinate to title/price */
  font-size: 1.05rem;
  color: var(--bone-muted);
  line-height: 1.7;
}

.product-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.product-meta-item {
  text-align: center;
  padding: 0.85rem 0.5rem;
  background: rgba(18, 10, 26, 0.6);
  border: 1px solid rgba(244, 233, 216, 0.07);
  border-radius: 8px;
}

.product-meta-label {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bone-muted);
  margin-bottom: 0.3rem;
}

.product-meta-value {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--bone);
}

/* --- Quantity + Actions --- */
.quantity-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.qty-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bone-muted);
}

.quantity-selector {
  display: flex;
  align-items: center;
  border: 1px solid rgba(244, 233, 216, 0.2);
  border-radius: 8px;
  overflow: hidden;
}

.qty-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(18, 10, 26, 0.8);
  color: var(--bone-muted);
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}

.qty-btn:hover {
  color: var(--ember);
  background: rgba(232, 93, 4, 0.1);
}

.qty-input {
  width: 52px;
  height: 40px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--bone);
  background: transparent;
  border: none;
  border-left: 1px solid rgba(244, 233, 216, 0.12);
  border-right: 1px solid rgba(244, 233, 216, 0.12);
}

.qty-input:focus {
  outline: none;
}

.product-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.btn-add-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--void);
  background: linear-gradient(135deg, var(--ember), var(--ember-dim));
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(232, 93, 4, 0.3);
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
}

.btn-add-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(232, 93, 4, 0.4);
}

.btn-add-cart svg {
  width: 18px;
  height: 18px;
}

.btn-buy-now {
  display: block;
  width: 100%;
  padding: 0.9rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  color: var(--bone-muted);
  background: transparent;
  border: 1px solid rgba(244, 233, 216, 0.2);
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
}

.btn-buy-now:hover {
  border-color: var(--toxic);
  color: var(--bone);
}

.shipping-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--bone-muted);
}

.shipping-note svg {
  width: 16px;
  height: 16px;
  color: var(--toxic);
  flex-shrink: 0;
}

/* --- Tabs --- */
.product-tabs-section {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2.5rem) 3rem;
}

.product-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(244, 233, 216, 0.08);
}

.product-tab-btn {
  padding: 1rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bone-muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.product-tab-btn:hover {
  color: var(--bone);
}

.product-tab-btn.active {
  color: var(--ember);
  border-bottom-color: var(--ember);
}

.product-tab-panel {
  display: none;
  padding: 2rem 0;
  animation: fade-up 0.35s var(--ease-out-expo);
}

.product-tab-panel.active {
  display: block;
}

.tab-body {
  font-size: 0.92rem;
  color: var(--bone-muted);
  line-height: 1.8;
  max-width: 780px;
}

.tab-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--bone);
  margin: 1.5rem 0 0.65rem;
}

.tab-body ul {
  padding-left: 1.25rem;
}

.tab-body li {
  margin-bottom: 0.4rem;
}

.spec-table {
  width: 100%;
  max-width: 500px;
  border-collapse: collapse;
}

.spec-table td {
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(244, 233, 216, 0.06);
  font-size: 0.85rem;
}

.spec-table td:first-child {
  color: var(--bone-muted);
  width: 130px;
}

.spec-table td:last-child {
  color: var(--bone);
  font-weight: 500;
}

/* --- Related Products --- */
.related-section {
  max-width: 1340px;
  margin: 0 auto;
  padding: 2rem clamp(1rem, 3vw, 2.5rem) 5rem;
}

.related-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--bone);
  margin-bottom: 1.5rem;
}

.related-scroll {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.related-scroll::-webkit-scrollbar {
  height: 4px;
}

.related-scroll::-webkit-scrollbar-track {
  background: rgba(244, 233, 216, 0.04);
  border-radius: 2px;
}

.related-scroll::-webkit-scrollbar-thumb {
  background: rgba(244, 233, 216, 0.12);
  border-radius: 2px;
}

.related-card {
  flex: 0 0 260px;
  scroll-snap-align: start;
  background: rgba(12, 8, 20, 0.65);
  border: 1px solid rgba(244, 233, 216, 0.07);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.25s var(--ease-out-expo), box-shadow 0.25s, transform 0.25s;
}

.related-card:hover {
  border-color: rgba(232, 93, 4, 0.22);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
  transform: translateY(-3px);
}

.related-card-media {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: radial-gradient(ellipse 85% 75% at 50% 45%, rgba(232,93,4,0.22), rgba(107,45,138,0.12) 45%, var(--void) 100%);
}

.related-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease-out-expo);
}

.related-card:hover .related-card-media img {
  transform: scale(1.05);
}

.related-card-body {
  padding: 0.85rem;
}

.related-card-title {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--bone);
  margin-bottom: 0.3rem;
  line-height: 1.3;
}

.related-card-price {
  font-size: 0.82rem;
  color: var(--ember);
  font-weight: 600;
}

.related-card-add {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.5rem;
  padding: 0.4rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--void);
  background: var(--ember);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}

.related-card-add:hover {
  background: var(--ember-dim);
}

.related-card-add svg {
  width: 12px;
  height: 12px;
}

/* --- Product Detail Responsive --- */
@media (max-width: 900px) {
  .product-detail {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-gallery {
    position: static;
  }

  .product-meta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .product-meta-grid {
    grid-template-columns: 1fr 1fr;
  }

  .thumbnail-btn {
    width: 52px;
    height: 52px;
  }

  .thumbnail-row {
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .quantity-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-detail {
    padding: 3.5rem 1rem 2.5rem;
  }
}

/* ==============================================
   Cart page — HallowCeramics
   ============================================== */
.cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 700;
  color: #fff;
  background: var(--ember);
  border-radius: 999px;
  animation: badge-pop 0.35s var(--ease-out-expo);
}

@keyframes badge-pop {
  0% { transform: scale(0.3); opacity: 0; }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}

.cart-content {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 var(--nav-pad);
  animation: fade-up 0.7s var(--ease-out-expo);
}

/* WooCommerce pages: remove .page-main constraints so cart/checkout fill full width */
.woocommerce-cart .page-main,
.woocommerce-checkout .page-main,
.woocommerce-account .page-main {
  max-width: none;
  padding: 0;
}

.cart-page {
  background: rgba(12, 8, 20, 0.65);
  border: 1px solid rgba(244, 233, 216, 0.07);
  border-radius: 12px;
  padding: 2.5rem;
  margin: 6rem auto 0;
  max-width: 1220px;
  transform: scale(1.1);
  transform-origin: top center;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.cart-page-head {
  margin-bottom: 2rem;
}

.cart-page-head h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 600;
  color: var(--bone);
}

.cart-item-count {
  font-size: 0.85rem;
  color: var(--bone-muted);
  margin-top: 0.3rem;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: clamp(2.5rem, 5vw, 3.5rem);
  align-items: start;
  max-width: 1320px;
  margin: 0 auto;
}

.cart-items {
  display: flex;
  flex-direction: column;
}

.cart-item {
  display: grid;
  grid-template-columns: 106px 1fr auto;
  gap: 1.5rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(244, 233, 216, 0.06);
  align-items: center;
  transition: opacity 0.35s, transform 0.35s;
}

.cart-item.removing {
  opacity: 0;
  transform: translateX(-20px);
}

.cart-item-img {
  width: 106px;
  height: 106px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(244, 233, 216, 0.08);
  background: radial-gradient(ellipse 80% 70% at 50% 45%, rgba(232, 93, 4, 0.12), var(--ink));
  display: block;
}

.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-info {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.cart-item-name {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--bone);
  line-height: 1.3;
  text-decoration: none;
}

.cart-item-name:hover {
  color: var(--ember);
}

.cart-item-name:not(a) {
  color: var(--bone);
}

.cart-item-variant {
  font-size: 0.82rem;
  color: var(--bone-muted);
}

.cart-item-price {
  font-size: 0.9rem;
  color: var(--bone-muted);
}

.cart-item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.7rem;
}

.cart-item-line-total {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ember);
}

.cart-qty-row {
  display: flex;
  align-items: center;
  border: 1px solid rgba(244, 233, 216, 0.15);
  border-radius: 6px;
  overflow: hidden;
}

.cart-qty-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(18, 10, 26, 0.8);
  color: var(--bone-muted);
  border: none;
  font-size: 0.9rem;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}

.cart-qty-btn:hover {
  color: var(--ember);
  background: rgba(232, 93, 4, 0.1);
}

.cart-qty-input {
  width: 40px;
  height: 32px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--bone);
  background: transparent;
  border: none;
  border-left: 1px solid rgba(244, 233, 216, 0.1);
  border-right: 1px solid rgba(244, 233, 216, 0.1);
  -moz-appearance: textfield;
}

.cart-qty-input::-webkit-inner-spin-button,
.cart-qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cart-qty-input:focus {
  outline: none;
}

.cart-remove-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--bone-muted);
  background: none;
  border: none;
  cursor: pointer;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s;
}

.cart-remove-btn:hover {
  color: #d43;
}

.cart-remove-btn svg {
  width: 14px;
  height: 14px;
}

/* ── Empty Cart — Ghost illustration design ── */
.empty-cart-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem var(--nav-pad) 4rem;
  overflow: hidden;
}
.empty-cart-hero::before {
  content: '';
  position: absolute;
  top: 20%; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,93,4,0.08) 0%, rgba(107,45,138,0.05) 40%, transparent 70%);
  pointer-events: none;
}
.empty-cart-inner {
  position: relative;
  max-width: 640px;
  text-align: center;
  animation: fade-up 0.8s var(--ease-out-expo);
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Ghost illustration */
.empty-cart-illustration {
  position: relative;
  width: 330px; height: 360px;
  margin: 0 auto 2.5rem;
}
.ghost {
  position: absolute;
  bottom: 15px; left: 45px;
  width: 180px; height: 225px;
  animation: ghost-float 4s ease-in-out infinite;
}
.ghost-body {
  position: relative;
  width: 180px; height: 195px;
  background: rgba(244,233,216,0.12);
  border: 1px solid rgba(244,233,216,0.15);
  border-radius: 50% 50% 0 0;
  overflow: visible;
}
.ghost-wave {
  position: absolute;
  bottom: -18px; left: -1px; right: -1px;
  height: 36px;
  overflow: hidden;
}
.ghost-wave::before {
  content: '';
  position: absolute; top: -16px; left: 0;
  width: 100%; height: 36px;
  background:
    radial-gradient(circle 18px at 18px 20px, transparent 15px, rgba(244,233,216,0.12) 15px, rgba(244,233,216,0.12) 18px, transparent 18px),
    radial-gradient(circle 18px at 54px 20px, transparent 15px, rgba(244,233,216,0.12) 15px, rgba(244,233,216,0.12) 18px, transparent 18px),
    radial-gradient(circle 18px at 90px 20px, transparent 15px, rgba(244,233,216,0.12) 15px, rgba(244,233,216,0.12) 18px, transparent 18px),
    radial-gradient(circle 18px at 126px 20px, transparent 15px, rgba(244,233,216,0.12) 15px, rgba(244,233,216,0.12) 18px, transparent 18px),
    radial-gradient(circle 18px at 162px 20px, transparent 15px, rgba(244,233,216,0.12) 15px, rgba(244,233,216,0.12) 18px, transparent 18px);
}
.ghost-wave::after {
  content: '';
  position: absolute; top: -16px; left: 0;
  width: 100%; height: 36px;
  background:
    radial-gradient(circle 18px at 18px 20px, transparent 15px, rgba(244,233,216,0.15) 15px, rgba(244,233,216,0.15) 15.8px, transparent 16.5px),
    radial-gradient(circle 18px at 54px 20px, transparent 15px, rgba(244,233,216,0.15) 15px, rgba(244,233,216,0.15) 15.8px, transparent 16.5px),
    radial-gradient(circle 18px at 90px 20px, transparent 15px, rgba(244,233,216,0.15) 15px, rgba(244,233,216,0.15) 15.8px, transparent 16.5px),
    radial-gradient(circle 18px at 126px 20px, transparent 15px, rgba(244,233,216,0.15) 15px, rgba(244,233,216,0.15) 15.8px, transparent 16.5px),
    radial-gradient(circle 18px at 162px 20px, transparent 15px, rgba(244,233,216,0.15) 15px, rgba(244,233,216,0.15) 15.8px, transparent 16.5px);
}
.ghost-body::before {
  content: '';
  position: absolute;
  top: 15%; left: 20%; width: 60%; height: 50%;
  background: radial-gradient(ellipse at 50% 50%, rgba(232,93,4,0.06), transparent 70%);
  border-radius: 50%;
}
.ghost-eyes {
  position: absolute;
  top: 38%; left: 50%; transform: translateX(-50%);
  display: flex; gap: 33px;
}
.ghost-eye {
  width: 21px; height: 24px;
  background: var(--void);
  border-radius: 50%;
  position: relative;
}
.ghost-eye::after {
  content: '';
  position: absolute; top: 4px; right: 3px;
  width: 6px; height: 7px;
  background: rgba(244,233,216,0.5);
  border-radius: 50%;
}
.ghost-mouth {
  position: absolute;
  top: 60%; left: 50%; transform: translateX(-50%);
  width: 15px; height: 15px;
  background: var(--void);
  border-radius: 50%;
}
.ghost-blush {
  position: absolute;
  top: 55%;
  width: 15px; height: 8px;
  background: rgba(232,93,4,0.12);
  border-radius: 50%;
}
.ghost-blush.left { left: 14%; }
.ghost-blush.right { right: 14%; }
.ghost-arm {
  position: absolute;
  top: 55%; right: -30px;
  width: 36px; height: 14px;
  background: rgba(244,233,216,0.12);
  border: 1px solid rgba(244,233,216,0.15);
  border-left: none;
  border-radius: 0 50% 50% 0;
}

/* Shopping bag */
.ghost-bag {
  position: absolute;
  top: 52px; right: 0;
  width: 90px; height: 98px;
  animation: ghost-float 4s ease-in-out infinite;
  animation-delay: -0.3s;
}
.bag-body {
  position: absolute;
  bottom: 0; left: 0;
  width: 90px; height: 75px;
  background: rgba(232,93,4,0.08);
  border: 1px solid rgba(232,93,4,0.18);
  border-radius: 0 0 12px 12px;
  overflow: hidden;
}
.bag-body::before {
  content: '';
  position: absolute;
  top: 0; left: -4px; right: -4px; height: 8px;
  background: rgba(232,93,4,0.14);
  border: 1px solid rgba(232,93,4,0.2);
  border-radius: 3px;
}
.bag-handle {
  position: absolute;
  top: 6px; height: 33px; width: 24px;
  border: 2px solid rgba(232,93,4,0.2);
  border-bottom: none;
  border-radius: 12px 12px 0 0;
}
.bag-handle.left { left: 18px; }
.bag-handle.right { left: 48px; }
.bag-empty-text {
  position: absolute;
  bottom: 18px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(232,93,4,0.35);
  white-space: nowrap;
}

/* Sparkles */
.sparkle {
  position: absolute;
  opacity: 0.4;
  animation: sparkle-pulse 3s ease-in-out infinite;
}
.sparkle svg { width: 100%; height: 100%; color: var(--ember); }
.sparkle:nth-child(1) { top: 5%; right: 12%; width: 18px; height: 18px; animation-delay: 0s; }
.sparkle:nth-child(2) { top: 25%; left: 0%; width: 12px; height: 12px; animation-delay: -1s; opacity: 0.25; }
.sparkle:nth-child(3) { bottom: 28%; right: 3%; width: 15px; height: 15px; animation-delay: -2s; opacity: 0.3; }
.sparkle:nth-child(4) { bottom: 12%; left: 8%; width: 9px; height: 9px; animation-delay: -0.5s; opacity: 0.2; color: var(--violet); }
.sparkle:nth-child(5) { top: 8%; left: 15%; width: 10px; height: 10px; animation-delay: -1.5s; opacity: 0.2; color: var(--toxic); }
.sparkle:nth-child(6) { top: 48%; right: -2%; width: 13px; height: 13px; animation-delay: -2.5s; opacity: 0.3; }
@keyframes ghost-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes sparkle-pulse {
  0%, 100% { opacity: 0.15; transform: scale(0.8); }
  50% { opacity: 0.5; transform: scale(1.1); }
}

/* Empty cart copy */
.empty-cart-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 0.75rem;
}
.empty-cart-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 600; line-height: 1.15;
  color: var(--bone);
  margin-bottom: 1rem;
}
.empty-cart-desc {
  font-size: 0.95rem;
  color: var(--bone-muted);
  max-width: 420px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* Empty cart CTAs */
.empty-cart-cta-row {
  display: flex; gap: 1rem;
  justify-content: center; flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body); font-size: 0.82rem;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--void);
  background: linear-gradient(135deg, var(--ember), var(--ember-dim));
  border: none; border-radius: 999px; cursor: pointer;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(232,93,4,0.3);
  transition: transform 0.25s, box-shadow 0.25s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(232,93,4,0.4); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body); font-size: 0.82rem;
  font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--bone-muted);
  background: transparent;
  border: 1px solid rgba(244,233,216,0.15); border-radius: 999px;
  cursor: pointer; text-decoration: none;
  transition: border-color 0.25s, color 0.25s;
}
.btn-ghost:hover { border-color: rgba(244,233,216,0.35); color: var(--bone); }

/* Empty cart categories */
.empty-cart-categories {
  padding: 2rem var(--nav-pad) 5rem;
  max-width: 1100px; margin: 0 auto;
}
.categories-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--bone-muted);
  text-align: center;
  margin-bottom: 2rem;
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.category-card {
  position: relative;
  border: 1px solid rgba(244,233,216,0.07);
  border-radius: 14px; overflow: hidden;
  background: linear-gradient(160deg, rgba(18,10,26,0.6), rgba(10,6,18,0.8));
  padding: 1.75rem;
  transition: border-color 0.3s, transform 0.3s var(--ease-out-expo);
  text-decoration: none;
}
.category-card:hover {
  border-color: rgba(232,93,4,0.25);
  transform: translateY(-4px);
}
.category-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: radial-gradient(ellipse at 50% 40%, rgba(232,93,4,0.15), transparent 70%);
  border: 1px solid rgba(244,233,216,0.08);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.category-icon svg { width: 22px; height: 22px; color: var(--ember); }
.category-title {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 600;
  color: var(--bone); margin-bottom: 0.4rem;
}
.category-desc {
  font-size: 0.82rem; color: var(--bone-muted);
  line-height: 1.6; margin-bottom: 1rem;
}
.category-link {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ember);
  display: inline-flex; align-items: center; gap: 0.35rem;
  transition: gap 0.25s;
}
.category-card:hover .category-link { gap: 0.65rem; }
.category-link svg { width: 14px; height: 14px; transition: transform 0.25s; }
.category-card:hover .category-link svg { transform: translateX(2px); }

/* Empty cart responsive */
@media (max-width: 640px) {
  .empty-cart-hero { min-height: 60vh; padding: 5rem 1.25rem 3rem; }
  .empty-cart-illustration { width: 260px; height: 290px; margin-bottom: 2rem; }
  .ghost { left: 30px; width: 150px; height: 190px; }
  .ghost-body { width: 150px; height: 162px; }
  .ghost-eyes { gap: 26px; }
  .ghost-eye { width: 17px; height: 20px; }
  .ghost-arm { width: 28px; right: -22px; height: 12px; }
  .ghost-bag { top: 42px; right: -5px; width: 75px; height: 82px; }
  .bag-body { width: 75px; height: 62px; }
  .bag-handle { height: 28px; width: 20px; }
  .bag-handle.left { left: 15px; }
  .bag-handle.right { left: 40px; }
  .bag-empty-text { font-size: 8px; bottom: 14px; }
  .empty-cart-cta-row { flex-direction: column; align-items: center; }
  .btn-primary, .btn-ghost { width: 100%; max-width: 280px; justify-content: center; }
}

/* Order summary */
.cart-summary {
  position: sticky;
  top: 16px;
  background: rgba(12, 8, 20, 0.65);
  border: 1px solid rgba(244, 233, 216, 0.07);
  border-radius: 14px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.cart-summary h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--bone);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.88rem;
  color: var(--bone-muted);
}

.hallow-tax-row .hallow-tax-pending {
  font-size: 0.72rem;
  font-style: italic;
  color: var(--bone-muted);
  opacity: 0.7;
}

.summary-value {
  color: var(--bone);
  font-weight: 500;
}

.summary-row.total {
  padding-top: 1rem;
  margin-top: 0.5rem;
  border-top: 1px solid rgba(244, 233, 216, 0.1);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--bone);
}

.summary-row.total .summary-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ember);
}

.shipping-hint {
  font-size: 0.75rem;
  color: var(--bone-muted);
  margin-top: -0.5rem;
}

.shipping-hint .free-highlight,
.free-shipping-label .free-highlight {
  color: var(--toxic);
  font-weight: 600;
}

.checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1.1rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--void);
  background: linear-gradient(135deg, var(--ember), var(--ember-dim));
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(232, 93, 4, 0.3);
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
}

.checkout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(232, 93, 4, 0.4);
}

.checkout-btn svg {
  width: 18px;
  height: 18px;
}

.continue-shopping {
  display: block;
  text-align: center;
  font-size: 0.8rem;
  color: var(--bone-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.continue-shopping:hover {
  color: var(--bone);
}

/* Cross-sells */
.cross-sells-section {
  background: rgba(12, 8, 20, 0.65);
  border: 1px solid rgba(244, 233, 216, 0.07);
  border-radius: 12px;
  padding: 2.5rem;
  margin-top: 2rem;
}

.cross-sells-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--bone);
  margin-bottom: 1.5rem;
}

.cross-sells-scroll {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.cross-sells-scroll::-webkit-scrollbar {
  height: 4px;
}

.cross-sells-scroll::-webkit-scrollbar-track {
  background: rgba(244, 233, 216, 0.04);
  border-radius: 2px;
}

.cross-sells-scroll::-webkit-scrollbar-thumb {
  background: rgba(244, 233, 216, 0.12);
  border-radius: 2px;
}

.cross-sell-card {
  flex: 0 0 260px;
  scroll-snap-align: start;
  background: rgba(12, 8, 20, 0.65);
  border: 1px solid rgba(244, 233, 216, 0.07);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.cross-sell-card:hover {
  border-color: rgba(232, 93, 4, 0.22);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
  transform: translateY(-3px);
}

.cross-sell-media {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: radial-gradient(ellipse 85% 75% at 50% 45%, rgba(232, 93, 4, 0.22), rgba(107, 45, 138, 0.12) 45%, var(--void) 100%);
}

.cross-sell-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s var(--ease-out-expo);
}

.cross-sell-card:hover .cross-sell-media img {
  transform: scale(1.05);
}

.cross-sell-body {
  padding: 0.85rem;
}

.cross-sell-title {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--bone);
  margin-bottom: 0.3rem;
  line-height: 1.3;
}

.cross-sell-price {
  font-size: 0.82rem;
  color: var(--ember);
  font-weight: 600;
}

.cross-sell-add {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.5rem;
  padding: 0.4rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--void);
  background: var(--ember);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}

.cross-sell-add:hover {
  background: var(--ember-dim);
}

.cross-sell-add svg {
  width: 12px;
  height: 12px;
}

/* --- Cart responsive --- */
@media (max-width: 900px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }
  .cart-summary {
    position: static;
  }
}

@media (max-width: 500px) {
  .cart-item {
    grid-template-columns: 80px 1fr;
  }
  .cart-item-actions {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .cart-item-img {
    width: 80px;
    height: 80px;
  }
}

/* 
   CHECKOUT PAGE
    */

/* === Checkout Top Bar (Back to Cart) === */
.back-to-cart-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--bone-muted);
  transition: color 0.2s;
}
.back-to-cart-link:hover { color: var(--ember); }
.back-to-cart-link svg { width: 16px; height: 16px; }

/* === Checkout Breadcrumb === */
.breadcrumb {
  max-width: 1200px;
  margin: 1.5rem auto 0;
  padding: 0 2rem;
  font-size: 0.75rem;
  color: var(--bone-muted);
}
.breadcrumb a { color: var(--bone-muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--ember); }
.breadcrumb span.sep { margin: 0 0.5rem; opacity: 0.4; }

/* === Checkout Page Layout === */
.checkout-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 2rem 6rem;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 640px) {
  .checkout-page {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1rem 1rem 4rem;
  }
  .checkout-form .form-section {
    padding: 1.25rem;
  }
  .breadcrumb {
    padding: 0 1rem;
  }
}

/* === Checkout Section Headers === */
.checkout-form .section-label {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--bone);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.checkout-form .section-label::before {
  content: '';
  display: block;
  width: 3px;
  height: 1.2em;
  background: var(--ember);
  border-radius: 2px;
}

/* === Checkout Form Sections === */
.checkout-form { display: flex; flex-direction: column; gap: 3rem; }

.checkout-form .form-section {
  background: var(--ink);
  border: 1px solid var(--bone-border);
  border-radius: 20px;
  padding: 2rem;
}

/* === Checkout Form Grid (hc-form-row avoids WooCommerce .form-row collision) === */
.hc-form-row {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}
.hc-form-row.cols-2 { grid-template-columns: 1fr 1fr; }
.hc-form-row.cols-3 { grid-template-columns: 1fr 1fr 1fr; }

.checkout-form .form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.checkout-form .form-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bone-muted);
}
.checkout-form .form-label .req { color: var(--ember); margin-left: 2px; }

.checkout-form .form-input,
.checkout-form .form-select,
.checkout-form .form-textarea {
  width: 100%;
  background: rgba(244, 233, 216, 0.05);
  border: 1px solid var(--bone-border);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--bone);
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
  appearance: none;
}
.checkout-form .form-input::placeholder,
.checkout-form .form-textarea::placeholder { color: var(--bone-muted); opacity: 0.5; }
.checkout-form .form-input:focus,
.checkout-form .form-select:focus,
.checkout-form .form-textarea:focus {
  border-color: var(--ember);
  box-shadow: 0 0 0 3px var(--ember-glow);
}
.checkout-form .form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9b8a4' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.checkout-form .form-select option { background: var(--ink); color: var(--bone); }
.checkout-form .form-textarea { resize: vertical; min-height: 100px; }

/* === Checkout Coupon Bar === */
.checkout-form .coupon-bar {
  background: transparent;
  border: none;
  padding: 0.85rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.checkout-form .coupon-bar svg { color: var(--bone-muted); flex-shrink: 0; }
.checkout-form .coupon-bar span { font-size: 0.88rem; color: var(--bone-muted); flex: 1; }
.checkout-form .coupon-bar code {
  font-family: monospace;
  background: rgba(255,255,255,0.08);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  color: var(--bone);
}
.checkout-form .coupon-bar a { font-size: 0.8rem; color: var(--ember); font-weight: 500; white-space: nowrap; }

/* === Checkout Ship to Different === */
.checkout-form .ship-different-toggle {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
}
.checkout-form .ship-different-toggle input[type="checkbox"] { display: none; }
.checkout-form .ship-checkbox {
  width: 20px; height: 20px;
  border: 1.5px solid var(--bone-border);
  border-radius: 6px;
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}
.checkout-form .ship-different-toggle input:checked + .ship-checkbox {
  background: var(--ember);
  border-color: var(--ember);
}
.checkout-form .ship-checkbox svg { display: none; }
.checkout-form .ship-different-toggle input:checked + .ship-checkbox svg { display: block; }

/* === Checkout Order Summary (Sidebar) === */
.checkout-page .order-summary {
  position: sticky;
  top: 88px;
  background: var(--ink);
  border: 1px solid var(--bone-border);
  border-radius: 20px;
  padding: 1.75rem;
}
.checkout-page .order-summary-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--bone-border);
}

/* === Checkout Cart Items === */
.checkout-page .order-items { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.25rem; }
.checkout-page .order-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 0.875rem;
  align-items: center;
}
.checkout-page .order-item-img {
  width: 64px; height: 64px;
  border-radius: 10px;
  border: 1px solid var(--bone-border);
  background: rgba(244,233,216,0.05);
  position: relative;
}
.checkout-page .order-item-img img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 10px;
}
.checkout-page .order-item-qty {
  position: absolute;
  top: -8px; right: -8px;
  min-width: 22px; height: 22px;
  padding: 0 5px;
  background: var(--ember);
  border: 2px solid var(--void);
  border-radius: 11px;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  color: var(--void);
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}
.checkout-page .order-item-info { display: flex; flex-direction: column; gap: 0.2rem; }
.checkout-page .order-item-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--bone);
  line-height: 1.3;
}
.checkout-page .order-item-variant {
  font-size: 0.75rem;
  color: var(--bone-muted);
}
.checkout-page .order-item-price {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--bone);
  white-space: nowrap;
}

/* === Checkout Summary Totals === */
.checkout-page .summary-divider {
  height: 1px;
  background: var(--bone-border);
  margin: 1rem 0;
}
.checkout-page .summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0;
  font-size: 0.9rem;
}
.checkout-page .summary-row .label { color: var(--bone-muted); }
.checkout-page .summary-row .value { font-weight: 500; }
.checkout-page .summary-row.free-shipping .value { color: var(--toxic); }

.checkout-page .free-shipping-progress { margin: 0.5rem 0 0; }
/* Free-shipping progress bar (shared: cart + checkout) */
.free-shipping-progress { margin: 0.5rem 0 0; }
.free-shipping-bar {
  height: 5px;
  background: var(--bone-border);
  border-radius: 3px;
  overflow: hidden;
}
.free-shipping-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--ember), var(--toxic));
  border-radius: 3px;
  width: 50%;
  transition: width 0.5s var(--ease-out-expo);
}
.free-shipping-label {
  font-size: 0.72rem;
  color: var(--bone-muted);
  margin-top: 0.4rem;
}
.checkout-page .free-shipping-bar {
  height: 5px;
  border-radius: 3px;
}
.checkout-page .free-shipping-fill {
  border-radius: 3px;
}
.checkout-page .free-shipping-label {
  font-size: 0.72rem;
}
.checkout-page .summary-row.total {
  font-size: 1.05rem;
  font-weight: 700;
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--bone-border);
}

/* === Checkout Place Order Button === */
.checkout-page .place-order-btn {
  width: 100%;
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.1rem 2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--void);
  background: linear-gradient(135deg, var(--ember) 0%, var(--ember-dim) 100%);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(232, 93, 4, 0.35);
  transition: transform 0.25s, box-shadow 0.25s;
}
.checkout-page .place-order-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 44px rgba(232, 93, 4, 0.5);
}
.checkout-page .place-order-btn:active { transform: translateY(-1px) scale(0.99); }
.checkout-page .place-order-btn svg { width: 18px; height: 18px; }

/* === Checkout Security Badge === */
.checkout-page .security-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.72rem;
  color: var(--bone-muted);
}
.checkout-page .security-note svg { width: 14px; height: 14px; color: var(--toxic); }

/* === Checkout Payment Icons === */
.checkout-page .payment-icons {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
}
.checkout-page .payment-icon {
  width: 40px; height: 26px;
  background: var(--bone-faint);
  border: 1px solid var(--bone-border);
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.55rem;
  color: var(--bone-muted);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* === Checkout Footer === */
.checkout-footer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 2rem;
  border-top: 1px solid var(--bone-border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  font-size: 0.75rem;
  color: var(--bone-muted);
}
.checkout-footer a { color: var(--bone-muted); transition: color 0.2s; }
.checkout-footer a:hover { color: var(--ember); }

/* === Checkout Notification Toast === */
.checkout-page .toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--ink);
  border: 1px solid var(--toxic);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--bone);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  transition: transform 0.4s var(--ease-out-expo);
  z-index: 999;
}
.checkout-page .toast.show { transform: translateX(-50%) translateY(0); }
.checkout-page .toast svg { color: var(--toxic); flex-shrink: 0; width: 20px; height: 20px; }

/* === Checkout Responsive === */
@media (max-width: 900px) {
  .checkout-page {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.5rem 1rem 4rem;
  }
  .order-summary { position: static; order: -1; }
  .hc-form-row.cols-2, .hc-form-row.cols-3 { grid-template-columns: 1fr; }
}

/* === Checkout Animations === */
.checkout-form .form-section { animation: fade-up 0.5s var(--ease-out-expo) both; }
.checkout-form .form-section:nth-child(1) { animation-delay: 0.05s; }
.checkout-form .form-section:nth-child(2) { animation-delay: 0.1s; }
.checkout-form .form-section:nth-child(3) { animation-delay: 0.15s; }
.order-summary { animation: fade-up 0.5s var(--ease-out-expo) 0.1s both; }

/* 
   WOOCOMMERCE CHECKOUT OVERRIDES
    */

.woocommerce-checkout .form-section {
  background: var(--ink);
  border: 1px solid var(--bone-border);
  border-radius: 20px;
  padding: 2rem;
}
.woocommerce-checkout .section-label {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--bone);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.woocommerce-checkout .section-label::before {
  content: '';
  display: block;
  width: 3px;
  height: 1.2em;
  background: var(--ember);
  border-radius: 2px;
}
.woocommerce-checkout .coupon-bar {
  background: transparent;
  border: none;
  padding: 0.85rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.woocommerce-checkout .coupon-bar svg { color: var(--bone-muted); flex-shrink: 0; }
.woocommerce-checkout .coupon-bar span { font-size: 0.88rem; color: var(--bone-muted); flex: 1; }
.woocommerce-checkout .coupon-bar code {
  font-family: monospace;
  background: rgba(255,255,255,0.08);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  color: var(--bone);
}
.woocommerce-checkout .coupon-bar a { font-size: 0.8rem; color: var(--ember); font-weight: 500; white-space: nowrap; }
.woocommerce-checkout .coupon-bar .button {
  padding: 0.6rem 1.2rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--void);
  background: var(--ember);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.woocommerce-checkout .coupon-bar .button:hover {
  background: var(--ember-dim);
  transform: translateY(-1px);
}
.woocommerce-checkout .coupon-form-inner {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.woocommerce-checkout .ship-different-toggle {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
}
.woocommerce-checkout .ship-different-toggle input[type="checkbox"] { display: none; }
.woocommerce-checkout .ship-checkbox {
  width: 20px; height: 20px;
  border: 1.5px solid var(--bone-border);
  border-radius: 6px;
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}
.woocommerce-checkout .ship-different-toggle input:checked + .ship-checkbox {
  background: var(--ember);
  border-color: var(--ember);
}
.woocommerce-checkout .ship-checkbox svg { display: none; }
.woocommerce-checkout .ship-different-toggle input:checked + .ship-checkbox svg { display: block; }
.woocommerce-checkout #order-notes {
  background: var(--ink);
  border: 1px solid var(--bone-border);
  border-radius: 20px;
  padding: 2rem;
}

/* === WooCommerce Checkout Form Input Styles === */
.woocommerce-checkout .form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.woocommerce-checkout .form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--bone-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.woocommerce-checkout .form-label .req {
  color: var(--ember);
  margin-left: 2px;
}
.woocommerce-checkout .form-input,
.woocommerce-checkout .form-select,
.woocommerce-checkout .form-textarea {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--bone);
  background: rgba(244, 233, 216, 0.06);
  border: 1px solid var(--bone-border);
  border-radius: 10px;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.woocommerce-checkout .form-input::placeholder,
.woocommerce-checkout .form-textarea::placeholder {
  color: rgba(201, 184, 164, 0.45);
}
.woocommerce-checkout .form-input:focus,
.woocommerce-checkout .form-select:focus,
.woocommerce-checkout .form-textarea:focus {
  border-color: var(--ember);
  background: rgba(244, 233, 216, 0.1);
  box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.15);
}
.woocommerce-checkout .form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23c9b8a4' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.woocommerce-checkout .form-textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.5;
}

/* === WooCommerce hc-form-row grid overrides === */
body.woocommerce-checkout .hc-form-row {
  display: grid !important;
  gap: 1rem;
}
body.woocommerce-checkout .hc-form-row.cols-2 {
  grid-template-columns: 1fr 1fr !important;
}
body.woocommerce-checkout .hc-form-row.cols-3 {
  grid-template-columns: 1fr 1fr 1fr !important;
}
@media (max-width: 600px) {
  body.woocommerce-checkout .hc-form-row.cols-2,
  body.woocommerce-checkout .hc-form-row.cols-3 {
    grid-template-columns: 1fr !important;
  }
}

/* === WooCommerce Checkout Payment Icons === */
.woocommerce-checkout .payment-icons {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.woocommerce-checkout .payment-icon {
  padding: 0.35rem 0.65rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  background: var(--bone-faint);
  border: 1px solid var(--bone-border);
  border-radius: 5px;
  color: var(--bone-muted);
}

/* === WooCommerce Payment Methods (#payment) Dark Theme === */
.woocommerce-checkout #payment {
  margin-top: 1.5rem;
  background: transparent;
  border: none;
}
.woocommerce-checkout #payment ul.payment_methods {
  list-style: none;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
}
.woocommerce-checkout #payment ul.payment_methods li {
  margin-bottom: 0.5rem;
  background: rgba(244, 233, 216, 0.04);
  border: 1px solid var(--bone-border);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  transition: border-color 0.2s, background 0.2s;
}
.woocommerce-checkout #payment ul.payment_methods li:hover {
  border-color: var(--bone-border-hover);
}
.woocommerce-checkout #payment ul.payment_methods li input[type="radio"] {
  accent-color: var(--ember);
  margin-right: 0.75rem;
}
.woocommerce-checkout #payment ul.payment_methods li label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--bone);
  cursor: pointer;
}
.woocommerce-checkout #payment ul.payment_methods li .payment_box {
  margin-top: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(244, 233, 216, 0.05);
  border-radius: 8px;
  border: 1px solid var(--bone-border);
  font-size: 0.85rem;
  color: var(--bone-muted);
  line-height: 1.6;
}
.woocommerce-checkout #payment ul.payment_methods li .payment_box p {
  margin: 0;
}
.woocommerce-checkout #payment ul.payment_methods li img {
  max-height: 24px;
  vertical-align: middle;
  margin-left: 0.5rem;
}
.woocommerce-checkout #payment div.form-row {
  padding: 1rem 0 0;
}
.woocommerce-checkout #payment .woocommerce-terms-and-conditions-wrapper {
  margin: 1rem 0 0;
  font-size: 0.82rem;
  color: var(--bone-muted);
}
.woocommerce-checkout #payment .woocommerce-terms-and-conditions-wrapper a {
  color: var(--ember);
}
.woocommerce-checkout #payment .woocommerce-terms-and-conditions-wrapper input[type="checkbox"] {
  accent-color: var(--ember);
  margin-right: 0.5rem;
}

/* === WooCommerce Terms & Conditions Checkbox === */
.woocommerce-checkout .form-row.validate-required {
  margin: 0.75rem 0 0;
  padding: 0;
  font-size: 0.82rem;
  color: var(--bone-muted);
}
.woocommerce-checkout .form-row.validate-required .checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-weight: 400;
  color: inherit;
}
.woocommerce-checkout .form-row.validate-required input[type="checkbox"] {
  accent-color: var(--ember);
  margin-top: 2px;
  flex-shrink: 0;
}
.woocommerce-checkout .form-row.validate-required .required {
  color: var(--ember);
  text-decoration: none;
}
.woocommerce-checkout .form-row.validate-required a {
  color: var(--ember);
}

/* =====================================================================
   B2B STYLES — Header Redesign, Search, Bulk Pricing, Quote, MOQ, etc.
   ===================================================================== */

/* ---- Header Redesign ---- */
.logo-link {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Search Box */
.header-search {
  flex: 1;
  min-width: 280px;
  max-width: 600px;
  position: relative;
}
.search-form {
  display: flex;
  align-items: center;
  background: rgba(244,233,216,0.06);
  border: 1px solid rgba(244,233,216,0.12);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.search-form:focus-within {
  border-color: var(--ember);
}
.search-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.55rem 0.75rem;
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 0.88rem;
  outline: none;
  min-width: 0;
}
.search-input::placeholder {
  color: rgba(244,233,216,0.35);
}
.search-btn {
  background: transparent;
  border: none;
  color: var(--bone-muted);
  padding: 0.55rem 0.75rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.search-btn:hover {
  color: var(--ember);
}

/* Search Suggestions Dropdown */
.search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #120a1a;
  border: 1px solid rgba(244,233,216,0.12);
  border-radius: 0 0 8px 8px;
  max-height: 400px;
  overflow-y: auto;
  z-index: 1000;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  margin-top: 4px;
}
.search-result-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.75rem;
  text-decoration: none;
  color: var(--bone);
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(244,233,216,0.05);
  transition: background 0.15s;
}
.search-result-item:hover,
.search-result-item:focus {
  background: rgba(232,93,4,0.08);
}
.suggestion-sku {
  font-family: monospace;
  font-size: 0.75rem;
  color: var(--ember);
  min-width: 60px;
}
.suggestion-name {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.suggestion-price {
  color: var(--bone-muted);
  font-size: 0.78rem;
  flex-shrink: 0;
}

/* Quick Order Button */
.btn-quick-order {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.85rem;
  background: var(--ember);
  color: #fff;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}
.btn-quick-order:hover {
  background: #f97316;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.header-phone { display: flex; }

/* ---- Bulk Price Table ---- */
.bulk-price-table {
  margin-top: 1rem;
}
.bulk-price-title {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--bone-muted);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.bulk-price-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
}
.bulk-price-table th {
  text-align: left;
  padding: 0.35rem 0.5rem;
  border-bottom: 1px solid rgba(244,233,216,0.1);
  color: var(--bone-muted);
  font-weight: 500;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.bulk-price-table td {
  padding: 0.35rem 0.5rem;
  border-bottom: 1px solid rgba(244,233,216,0.05);
  color: var(--bone);
}
.bulk-tier-row.is-active {
  background: rgba(124,181,24,0.1);
  border-radius: 4px;
}
.bulk-tier-row.is-active td {
  color: var(--toxic);
  font-weight: 600;
}

/* ---- Stock Status & Delivery ---- */
.stock-delivery-info {
  margin-top: 0.75rem;
  /* +10% vs previous 0.8rem; secondary info, keeps hierarchy */
  font-size: 0.88rem;
}
.stock-status {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 500;
}
.stock-status.in-stock { color: var(--toxic); }
.stock-status.out-of-stock { color: var(--ember); }
.stock-status.backorder { color: #f59e0b; }
.stock-count {
  color: var(--bone-muted);
  font-weight: 400;
}
.delivery-estimate {
  margin-top: 0.25rem;
  color: var(--bone-muted);
  /* +9% vs previous 0.78rem; tertiary info, subtle increase */
  font-size: 0.85rem;
}

/* ---- MOQ Badge ---- */
.moq-badge {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.2rem 0.5rem;
  border: 1px solid var(--ember);
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ember);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.moq-badge-card {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.15rem 0.4rem;
  background: rgba(0,0,0,0.7);
  border: 1px solid var(--ember);
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--ember);
  text-transform: uppercase;
  z-index: 2;
}

/* ---- Quote Modal ---- */
.btn-add-quote {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.15rem;
  background: transparent;
  border: 1px solid rgba(244,233,216,0.2);
  border-radius: 8px;
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 0.82rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.btn-add-quote:hover {
  background: rgba(244,233,216,0.05);
  border-color: rgba(244,233,216,0.4);
}
.quote-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 1rem;
}
.quote-modal-inner {
  background: #120a1a;
  border: 1px solid rgba(244,233,216,0.12);
  border-radius: 12px;
  padding: 2rem;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}
.quote-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  background: transparent;
  border: none;
  color: var(--bone-muted);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}
.quote-modal-close:hover { color: var(--ember); }
.quote-modal-inner h3 {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  color: var(--bone);
}
.quote-modal-inner label {
  display: block;
  font-size: 0.78rem;
  color: var(--bone-muted);
  margin-bottom: 0.25rem;
  margin-top: 0.75rem;
}
.quote-modal-inner input,
.quote-modal-inner textarea {
  width: 100%;
  padding: 0.55rem 0.65rem;
  background: rgba(244,233,216,0.06);
  border: 1px solid rgba(244,233,216,0.15);
  border-radius: 6px;
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 0.85rem;
}
.quote-modal-inner input:focus,
.quote-modal-inner textarea:focus {
  border-color: var(--ember);
  outline: none;
}
.quote-modal-inner input[readonly] {
  opacity: 0.6;
  cursor: default;
}
.btn-submit-quote {
  display: block;
  width: 100%;
  margin-top: 1.25rem;
  padding: 0.7rem 1rem;
  background: var(--ember);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-submit-quote:hover { background: #f97316; }
.btn-submit-quote:disabled { opacity: 0.6; cursor: wait; }

/* ---- Wholesale Login Prompt ---- */
.wholesale-prompt {
  margin-bottom: 0.5rem;
  font-size: 0.82rem;
}
.wholesale-prompt a {
  color: var(--ember);
  text-decoration: none;
  font-weight: 500;
}
.wholesale-prompt a:hover { text-decoration: underline; }

/* ---- Saved Cart List ---- */
.saved-list-actions {
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.btn-save-list,
.btn-confirm-save {
  padding: 0.45rem 0.85rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  border-radius: 6px;
  cursor: pointer;
  border: 1px solid rgba(244,233,216,0.15);
  background: transparent;
  color: var(--bone);
  transition: background 0.2s;
}
.btn-save-list:hover,
.btn-confirm-save:hover { background: rgba(244,233,216,0.06); }
#listName {
  padding: 0.4rem 0.6rem;
  background: rgba(244,233,216,0.06);
  border: 1px solid rgba(244,233,216,0.15);
  border-radius: 6px;
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 0.82rem;
}

/* ---- Order History Reorder Button ---- */
.btn-reorder {
  padding: 0.35rem 0.7rem;
  background: var(--ember);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-reorder:hover { background: #f97316; }

/* ---- Mobile Quick Order Bar ---- */
.mobile-quickorder-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
}
.mob-qo-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  padding: 0.7rem;
  background: #120a1a;
  border: none;
  border-top: 1px solid rgba(244,233,216,0.1);
  color: var(--ember);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
}
.mob-qo-panel {
  background: #120a1a;
  border-top: 1px solid rgba(244,233,216,0.1);
  padding: 1rem;
  max-height: 60vh;
  overflow-y: auto;
}
.mob-qo-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}
.mob-qo-header h3 {
  font-size: 0.95rem;
  color: var(--bone);
}
.mob-qo-header button {
  background: transparent;
  border: none;
  color: var(--bone-muted);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}
#mobQoInput {
  width: 100%;
  padding: 0.5rem 0.65rem;
  background: rgba(244,233,216,0.06);
  border: 1px solid rgba(244,233,216,0.15);
  border-radius: 6px;
  color: var(--bone);
  font-family: monospace;
  font-size: 0.85rem;
  resize: vertical;
}
.btn-add-batch {
  display: block;
  width: 100%;
  margin-top: 0.75rem;
  padding: 0.6rem;
  background: var(--ember);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}
#mobQoResults {
  margin-top: 0.75rem;
  font-size: 0.82rem;
}

/* ---- Quick Order Page ---- */
.quick-order-page .container {
  max-width: 680px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
.quick-order-page h1 {
  font-size: 1.5rem;
  color: var(--bone);
  margin-bottom: 0.5rem;
}
.qo-intro {
  color: var(--bone-muted);
  font-size: 0.88rem;
  margin-bottom: 1rem;
}
#qoInput {
  width: 100%;
  padding: 0.65rem 0.75rem;
  background: rgba(244,233,216,0.06);
  border: 1px solid rgba(244,233,216,0.15);
  border-radius: 8px;
  color: var(--bone);
  font-family: monospace;
  font-size: 0.88rem;
  resize: vertical;
}
.btn-primary {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.6rem 1.25rem;
  background: var(--ember);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-primary:hover { background: #f97316; }
.btn-primary:disabled { opacity: 0.6; cursor: wait; }
.csv-upload-area {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.csv-template-link {
  font-size: 0.82rem;
  color: var(--ember);
}
.csv-preview-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0.75rem 0;
  font-size: 0.82rem;
}
.csv-preview-table th,
.csv-preview-table td {
  padding: 0.35rem 0.5rem;
  border-bottom: 1px solid rgba(244,233,216,0.08);
  text-align: left;
}
.csv-preview-table th {
  color: var(--bone-muted);
  font-weight: 500;
  font-size: 0.72rem;
  text-transform: uppercase;
}
#qoResults {
  margin-top: 1rem;
}

/* ---- B2B Mobile Extras (768px) ---- */
@media (max-width: 768px) {
  .mobile-quickorder-bar { display: block; }
  .bulk-price-table table { font-size: 0.75rem; }
  .quote-modal-inner { padding: 1.5rem; }
}

/* ==============================================
   B2B Modifications — Hide Coupon from Checkout
   ============================================== */
.checkout-page .coupon-bar,
.checkout-page .coupon-form-wrap {
  display: none !important;
}

/* ==============================================
   B2B Modifications — Cart Badge Positioning
   ============================================== */
.icon-btn.header-cart {
  position: relative;
}
