/* ================================================================
   THEME C — Day / Night Hybrid  (Recommended)
   Cool-white body sections + dark dramatic strips for trust/about/cta/footer
================================================================ */
:root {
  --peach-primary:   #f05a28;
  --peach-light:     #f5885a;
  --peach-dark:      #d94818;
  --peach-warm:      #f27040;
  --peach-pale:      #fff2ec;
  --text-primary:    #0f0f14;
  --text-secondary:  #4a4a5a;
  --text-muted:      #8888a0;
  --surface:         #f8f8fc;
  --surface-2:       #f0f0f8;
  --border:          #e0e0ee;
  --border-strong:   #cacade;
  --white:           #ffffff;
  --shadow-sm:   0 2px 8px rgba(240,90,40,0.07);
  --shadow-md:   0 4px 20px rgba(240,90,40,0.12);
  --shadow-lg:   0 8px 40px rgba(240,90,40,0.18);
}

body { background: #080812; }

/* ── Header ── */
.hero-page .site-header.scrolled {
  background: rgba(248,248,252,0.97) !important;
  border-bottom: 1px solid #e0e0ee;
}

/* No highlight box on current nav item when over the dark hero */
.hero-page .site-header:not(.scrolled) .nav-menu > li.current-menu-item > a {
  background: transparent;
  color: #ffffff;
}

/* ── Trust bar — DARK ── */
.trust-bar {
  background: #0d0d18;
  border-bottom: none;
  border-top: none;
}
.trust-item span { color: rgba(255,255,255,0.72); }
.trust-item svg  { color: var(--peach-primary); }
.trust-divider   { background: rgba(255,255,255,0.1); }

/* ── Categories ── */
.section-categories { background: #f0f0f8; }
.category-card { background: #ffffff; border-color: #e0e0ee; }
.category-card:hover {
  border-color: var(--peach-primary);
  box-shadow: 0 8px 32px rgba(240,90,40,0.12);
}
.category-icon { background: #fff2ec; color: var(--peach-primary); }

/* ── Featured Products ── */
.section-featured { background: #ffffff; }
.product-card { background: #ffffff; border-color: #e0e0ee; }

/* ── About — DARK ── */
.section-about {
  background: #0d0d18;
  border-top: none;
}
.section-about .section-label { color: var(--peach-primary); }
.section-about h2,
.section-about .section-title { color: #f5f5f7; }
.section-about .text-peach    { color: var(--peach-primary); }
.section-about p { color: rgba(255,255,255,0.58); }
.about-peach-graphic {
  background: #161622;
  border: 1px solid rgba(240,90,40,0.22);
  box-shadow: 0 0 60px rgba(240,90,40,0.12);
}
.about-peach-glow {
  background: radial-gradient(circle, rgba(240,90,40,0.35) 0%, transparent 70%);
}
.section-about .btn-primary { background: var(--peach-primary); }
.section-about .btn-ghost {
  color: rgba(255,255,255,0.75);
  border-color: rgba(255,255,255,0.22);
}
.section-about .btn-ghost:hover {
  border-color: var(--peach-primary);
  color: var(--peach-primary);
  background: transparent;
}

/* ── CTA Band — DARK ── */
.section-cta-band { background: #0d0d18; border-bottom: none; border-top: none; }
.section-cta-band h2 { color: #f5f5f7; }
.section-cta-band p  { color: rgba(255,255,255,0.55); }
.section-cta-band .text-peach { color: var(--peach-primary); }
.cta-band-input {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  color: #f5f5f7;
}
.cta-band-input::placeholder { color: rgba(255,255,255,0.32); }

/* ── Kill the body-background gap between </main> and <footer> ── */
.site-main { display: block; margin: 0; padding: 0; }

/* ── Ensure single product page is never dark ── */
.single-product-page { background: #f8f8fc; }

/* ══════════════════════════════════════
   SHOP PAGE
══════════════════════════════════════ */

/* Hero banner */
.shop-hero {
  position: relative;
  background: #0d0d18;
  padding: 72px 0 56px;
  overflow: hidden;
  text-align: center;
}
.shop-hero-orb {
  position: absolute;
  top: -40%; left: 50%;
  transform: translateX(-50%);
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(240,90,40,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.shop-hero-inner { position: relative; z-index: 1; }
.shop-hero .section-label { color: var(--peach-primary); margin-bottom: 8px; }
.shop-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #f5f5f7;
  margin-bottom: 12px;
}
.shop-hero-sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}

/* Shop body */
.shop-page { background: #f8f8fc; padding: 40px 0 80px; }

/* Toolbar */
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0ee;
}
.shop-toolbar-cats { display: flex; gap: 8px; flex-wrap: wrap; }
.shop-cat-pill {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid #e0e0ee;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: #fff;
  text-decoration: none;
  transition: all 0.18s ease;
}
.shop-cat-pill:hover,
.shop-cat-pill.active {
  background: var(--peach-primary);
  border-color: var(--peach-primary);
  color: #fff;
}
.shop-toolbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.shop-toolbar-right select {
  font-size: 0.78rem;
  padding: 6px 12px;
  border: 1px solid #e0e0ee;
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--text-primary);
  cursor: pointer;
}

/* Pagination */
.shop-pagination { margin-top: 48px; text-align: center; }
.shop-pagination .page-numbers {
  display: inline-flex;
  gap: 6px;
}
.shop-pagination .page-numbers a,
.shop-pagination .page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid #e0e0ee;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.18s ease;
}
.shop-pagination .page-numbers a:hover,
.shop-pagination .page-numbers span.current {
  background: var(--peach-primary);
  border-color: var(--peach-primary);
  color: #fff;
}

/* Empty state */
.shop-empty { padding: 80px 0; }
.shop-empty-inner {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}
.shop-empty-icon { font-size: 4rem; margin-bottom: 16px; }
.shop-empty .section-label { color: var(--peach-primary); margin-bottom: 8px; }
.shop-empty .section-title { margin-bottom: 16px; }
.shop-empty p { color: var(--text-secondary); margin-bottom: 32px; }
.shop-empty-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════
   GLOBAL — Holographic card hover
══════════════════════════════════════ */
.product-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.product-card:hover {
  transform: translateY(-6px) rotate(-0.5deg);
  box-shadow: 0 12px 48px rgba(240,90,40,0.22), 0 0 0 1px rgba(240,90,40,0.12);
}
.product-card .product-card-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 20%,
    rgba(255,200,130,0.18) 40%,
    rgba(240,90,40,0.14) 50%,
    rgba(130,180,255,0.14) 60%,
    transparent 80%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  border-radius: inherit;
}
.product-card:hover .product-card-image-wrap::after { opacity: 1; }

/* ══════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════ */

/* ── Hero ── */
.about-hero {
  position: relative;
  background: #0d0d18;
  padding: 160px 0 140px;
  overflow: hidden;
  text-align: center;
}
.about-hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.about-hero-orb--1 {
  width: 80vw; height: 80vw;
  top: -30%; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(240,90,40,0.28) 0%, transparent 60%);
}
.about-hero-orb--2 {
  width: 40vw; height: 40vw;
  bottom: -20%; right: -8%;
  background: radial-gradient(circle, rgba(100,80,240,0.15) 0%, transparent 65%);
}

/* Floating card decorations in hero */
.about-float-cards {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.afc {
  position: absolute;
  width: 160px;
  border-radius: 10px;
  overflow: hidden;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
  opacity: 0.55;
}
.afc img {
  width: 100%;
  height: auto;
  display: block;
}
.afc--1 {
  left: 4%;
  top: 10%;
  transform: rotate(-14deg) translateY(0);
  animation: floatCard1 6s ease-in-out infinite;
}
.afc--2 {
  left: 10%;
  bottom: 8%;
  transform: rotate(8deg);
  animation: floatCard2 7s ease-in-out infinite;
  width: 130px;
  opacity: 0.35;
}
.afc--3 {
  right: 5%;
  top: 8%;
  transform: rotate(12deg);
  animation: floatCard3 8s ease-in-out infinite;
}
.afc--4 {
  right: 12%;
  bottom: 10%;
  transform: rotate(-8deg);
  animation: floatCard1 5.5s ease-in-out infinite reverse;
  width: 120px;
  opacity: 0.3;
}
@keyframes floatCard1 {
  0%, 100% { transform: rotate(-14deg) translateY(0px); }
  50%       { transform: rotate(-12deg) translateY(-16px); }
}
@keyframes floatCard2 {
  0%, 100% { transform: rotate(8deg) translateY(0px); }
  50%       { transform: rotate(10deg) translateY(-12px); }
}
@keyframes floatCard3 {
  0%, 100% { transform: rotate(12deg) translateY(0px); }
  50%       { transform: rotate(10deg) translateY(-20px); }
}

.about-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.about-hero-chip {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(240,90,40,0.4);
  background: rgba(240,90,40,0.1);
  color: var(--peach-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.about-hero-title {
  font-size: clamp(2.6rem, 6.5vw, 4.8rem);
  font-weight: 800;
  color: #f5f5f7;
  line-height: 1.05;
  margin: 0 0 24px;
  letter-spacing: -0.025em;
}
.about-hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.48);
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.7;
}
.about-hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
}
.about-hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(240,90,40,0.8), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50%       { opacity: 1;   transform: scaleY(1); }
}

/* ── Stats Strip ── */
.about-stats-strip {
  background: #080812;
  padding: 56px 0;
}
.about-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.about-stat-card {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 36px 24px 28px;
  text-align: center;
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.about-stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 55%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240,90,40,0.7), transparent);
}
.about-stat-card::after {
  content: '';
  position: absolute;
  top: -40px; left: 50%;
  transform: translateX(-50%);
  width: 120px; height: 80px;
  background: radial-gradient(ellipse, rgba(240,90,40,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.about-stat-card:hover {
  border-color: rgba(240,90,40,0.28);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(240,90,40,0.1);
}
.about-stat-num {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
  background: linear-gradient(135deg, #ffffff 20%, #f09050 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-stat-num span {
  font-size: 0.52em;
  font-weight: 700;
  vertical-align: super;
  line-height: 0;
}
.about-stat-stars {
  font-size: 0.8rem;
  color: var(--peach-primary);
  letter-spacing: 2px;
  margin-bottom: 8px;
  display: block;
}
.about-stat-label {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  display: block;
  margin-top: 8px;
}

/* ── Story + Video ── */
.about-story {
  background: #f8f8fc;
  padding: 100px 0;
}
.about-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-story-video { position: relative; }
.about-video-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.2), 0 0 0 1px rgba(0,0,0,0.06);
  aspect-ratio: 9/16;
  max-height: 560px;
  background: #0d0d18;
}
.about-video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.about-video-badge {
  position: absolute;
  top: 16px; left: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
}
.about-story-text .section-label { color: var(--peach-primary); }
.about-story-text .section-title {
  margin-top: 8px;
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
}
.about-story-text p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.75;
}
.about-story-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ── Card Showcase ── */
.about-showcase {
  background: #0b0b16;
  padding: 100px 0;
}
.about-showcase .section-label { color: var(--peach-primary); }
.about-showcase .section-title { color: #f5f5f7; }
.about-showcase-sub {
  color: rgba(255,255,255,0.42);
  font-size: 0.95rem;
  max-width: 460px;
  margin: 12px auto 0;
  line-height: 1.65;
}
.about-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 56px;
  align-items: start;
}
.asg-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.asg-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  cursor: default;
}
.asg-card:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: 0 24px 60px rgba(240,90,40,0.25);
}
.asg-card img {
  width: 100%;
  height: auto;
  display: block;
}
.asg-card--tall {
  height: 100%;
  align-self: stretch;
  display: flex;
  flex-direction: column;
}
.asg-card--tall img {
  height: 100%;
  object-fit: cover;
}
.asg-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 10px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.asg-quote {
  background: rgba(240,90,40,0.08);
  border: 1px solid rgba(240,90,40,0.2);
  border-radius: 16px;
  padding: 28px 24px;
  flex: 1;
}
.asg-quote-mark {
  font-size: 3rem;
  line-height: 1;
  color: var(--peach-primary);
  opacity: 0.6;
  margin-bottom: 8px;
}
.asg-quote p {
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 0 0 12px;
  font-style: italic;
}
.asg-quote span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.asg-quote--stat { background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.07); }
.asg-stat-num { font-size: 2.5rem; margin-bottom: 12px; line-height: 1; }

/* ── Values ── */
.about-values {
  background: #f0f0f8;
  padding: 100px 0;
}
.about-values .section-label { color: var(--peach-primary); }
.about-values .section-title { color: var(--text-primary); }
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.about-value-card {
  background: #ffffff;
  border: 1px solid #e8e8f0;
  border-radius: 20px;
  padding: 36px 28px;
  transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}
.about-value-card:hover {
  border-color: var(--peach-primary);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(240,90,40,0.12);
}
.about-value-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: #fff2ec;
  color: var(--peach-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: background 0.22s ease, transform 0.22s ease;
}
.about-value-card:hover .about-value-icon {
  background: var(--peach-primary);
  color: #fff;
  transform: scale(1.08);
}
.about-value-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.about-value-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

/* ── CTA band with card decorations ── */
.about-cta-band {
  position: relative;
  overflow: hidden;
}
.about-cta-cards {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.acc {
  position: absolute;
  width: 120px;
  opacity: 0.18;
  filter: blur(1px);
}
.acc img { width: 100%; height: auto; display: block; border-radius: 8px; }
.acc--left  { left: 4%;  bottom: -10%; transform: rotate(-20deg); }
.acc--right { right: 4%; top: -10%;    transform: rotate(18deg); }
.about-cta-band .container { position: relative; z-index: 1; }

/* About CTA buttons */
.about-cta-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.about-cta-buttons .btn-ghost {
  color: rgba(255,255,255,0.75);
  border-color: rgba(255,255,255,0.22);
}
.about-cta-buttons .btn-ghost:hover {
  border-color: var(--peach-primary);
  color: var(--peach-primary);
  background: transparent;
}

/* ── About responsive ── */
@media (max-width: 1024px) {
  .about-showcase-grid {
    grid-template-columns: 1fr 1fr;
  }
  .asg-card--tall { display: none; }
}
@media (max-width: 900px) {
  .about-hero { padding: 120px 0 100px; }
  .afc--2, .afc--4 { display: none; }
  .afc--1 { left: -4%; width: 130px; }
  .afc--3 { right: -4%; width: 130px; }
  .about-story-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-video-frame { max-height: 420px; aspect-ratio: 9/14; }
  .about-values-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .about-hero { padding: 100px 0 80px; }
  .afc { display: none; }
  .about-story { padding: 64px 0; }
  .about-showcase { padding: 64px 0; }
  .about-showcase-grid { grid-template-columns: 1fr; }
  .about-values { padding: 64px 0; }
  .about-values-grid { grid-template-columns: 1fr; }
  .about-stats-row { grid-template-columns: 1fr 1fr; gap: 12px; }
}

/* ══════════════════════════════════════
   LEGAL / GENERAL PAGES (page.php)
══════════════════════════════════════ */
.legal-hero {
  background: #0d0d18;
  padding: 80px 0 64px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.legal-hero .section-label { color: var(--peach-primary); margin-bottom: 10px; }
.legal-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  color: #f5f5f7;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.legal-updated {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
}
.legal-body {
  background: #f8f8fc;
  padding: 72px 0 100px;
}
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-secondary);
}
.legal-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 48px 0 12px;
  padding-top: 16px;
  border-top: 1px solid #e8e8f0;
}
.legal-content h2:first-child { margin-top: 0; border-top: none; padding-top: 0; }
.legal-content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 28px 0 8px;
}
.legal-content p { margin: 0 0 16px; }
.legal-content ul, .legal-content ol {
  margin: 0 0 16px 24px;
  padding: 0;
}
.legal-content li { margin-bottom: 6px; }
.legal-content a { color: var(--peach-primary); text-decoration: underline; }
.legal-content a:hover { color: var(--peach-dark); }
.legal-content strong { color: var(--text-primary); font-weight: 600; }
.legal-content .legal-highlight {
  background: #fff2ec;
  border-left: 3px solid var(--peach-primary);
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
  font-size: 0.9rem;
}

/* ══════════════════════════════════════
   CONTACT PAGE — HERO
══════════════════════════════════════ */
.ct-hero {
  position: relative;
  background: var(--bg-dark);
  padding: 110px 0 90px;
  overflow: hidden;
  text-align: center;
}
.ct-hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.ct-hero-orb--1 {
  width: 600px; height: 600px;
  top: -200px; left: -100px;
  background: radial-gradient(circle, rgba(240,90,40,0.22) 0%, transparent 65%);
}
.ct-hero-orb--2 {
  width: 400px; height: 400px;
  bottom: -150px; right: -80px;
  background: radial-gradient(circle, rgba(240,90,40,0.14) 0%, transparent 65%);
}
.ct-hero-orb--3 {
  width: 300px; height: 300px;
  top: 40%; left: 55%;
  background: radial-gradient(circle, rgba(255,160,60,0.1) 0%, transparent 65%);
}

/* Floating cards */
.ct-float-cards { position: absolute; inset: 0; pointer-events: none; }
.ctfc { position: absolute; }
.ctfc img { width: 130px; border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.ctfc--1 {
  left: 4%; top: 10%;
  transform: rotate(-12deg);
  animation: ctFloat1 6s ease-in-out infinite;
}
.ctfc--2 {
  right: 4%; top: 15%;
  transform: rotate(10deg);
  animation: ctFloat2 7s ease-in-out infinite;
}
@keyframes ctFloat1 {
  0%,100% { transform: rotate(-12deg) translateY(0); }
  50%      { transform: rotate(-12deg) translateY(-18px); }
}
@keyframes ctFloat2 {
  0%,100% { transform: rotate(10deg) translateY(0); }
  50%      { transform: rotate(10deg) translateY(-14px); }
}

/* Hero content */
.ct-hero-inner { position: relative; z-index: 2; }
.ct-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(240,90,40,0.15);
  border: 1px solid rgba(240,90,40,0.3);
  color: #ffb085;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.ct-hero-badge svg { color: #4ade80; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.4;} }

.ct-hero-title {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  color: #fff;
  margin: 0 0 18px;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.ct-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* Quick channel pills */
.ct-hero-channels {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.ct-channel-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  border-radius: 30px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  backdrop-filter: blur(8px);
}
.ct-channel-pill:hover {
  background: var(--peach-primary);
  border-color: var(--peach-primary);
  color: #fff;
}

/* ══════════════════════════════════════
   CONTACT PAGE — CHANNEL CARDS
══════════════════════════════════════ */
.ct-channels {
  background: #f8f8fc;
  padding: 72px 0;
}
.ct-channels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ct-card {
  position: relative;
  background: #fff;
  border: 1px solid #e8e8f0;
  border-radius: 20px;
  padding: 32px 28px 28px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.ct-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.ct-card-glow {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 20px 20px 0 0;
  transition: height 0.3s;
}
.ct-card:hover .ct-card-glow { height: 4px; }
.ct-card--email .ct-card-glow    { background: linear-gradient(90deg, var(--peach-primary), #ff8c5a); }
.ct-card--tiktok .ct-card-glow   { background: linear-gradient(90deg, #010101, #69c9d0); }
.ct-card--instagram .ct-card-glow { background: linear-gradient(90deg, #f58529, #dd2a7b, #8134af); }

.ct-card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.ct-card--email .ct-card-icon    { background: #fff2ec; color: var(--peach-primary); }
.ct-card--tiktok .ct-card-icon   { background: #f0f9fa; color: #010101; }
.ct-card--instagram .ct-card-icon { background: #fef0f8; color: #dd2a7b; }

.ct-card-body { flex: 1; }
.ct-card-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 8px;
}
.ct-card-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 14px;
}
.ct-card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--peach-primary);
  display: block;
}
.ct-card--tiktok .ct-card-link   { color: #010101; }
.ct-card--instagram .ct-card-link { color: #dd2a7b; }

.ct-card-badge {
  display: inline-block;
  margin-top: 16px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.ct-card--email .ct-card-badge    { background: #fff2ec; color: var(--peach-primary); }
.ct-card--tiktok .ct-card-badge   { background: #f0f9fa; color: #010101; }
.ct-card--instagram .ct-card-badge { background: #fef0f8; color: #dd2a7b; }

/* ══════════════════════════════════════
   CONTACT PAGE — FORM SECTION
══════════════════════════════════════ */
.ct-form-section {
  background: var(--bg-dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.ct-form-section-orb {
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,90,40,0.15) 0%, transparent 65%);
  pointer-events: none;
}
.ct-form-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.ct-form-left { padding-top: 8px; }
.ct-form-left .section-label { color: var(--peach-primary); }
.ct-form-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin: 12px 0 18px;
  letter-spacing: -0.02em;
}
.ct-form-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin-bottom: 36px;
}

/* Stats row */
.ct-form-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.ct-form-stat { display: flex; flex-direction: column; gap: 2px; }
.ct-form-stat-num {
  font-size: 1.6rem;
  font-weight: 900;
  background: linear-gradient(135deg, #fff 0%, var(--peach-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  transition: transform 0.2s;
  display: inline-block;
  letter-spacing: -0.02em;
}
.ct-form-stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.ct-form-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.1);
}
/* Pop effect when counter finishes */
@keyframes statPop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.18); }
  100% { transform: scale(1); }
}
.ct-stat-pop { animation: statPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }

/* Alt links */
.ct-form-alts p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.ct-form-alt-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.ct-form-alt-link:hover { color: var(--peach-primary); }
.ct-form-alt-link svg { flex-shrink: 0; }

/* Form panel */
.ct-form-panel {
  background: #fff;
  border-radius: 24px;
  padding: 44px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.3);
}

/* Form fields */
.ct-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ct-field { display: flex; flex-direction: column; margin-bottom: 18px; }
.ct-field label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 7px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.ct-required { color: var(--peach-primary); }
.ct-field input,
.ct-field select,
.ct-field textarea {
  padding: 13px 16px;
  border: 1.5px solid #e8e8f0;
  border-radius: 12px;
  font-size: 0.9rem;
  color: var(--text-primary);
  background: #fafafa;
  font-family: inherit;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus {
  border-color: var(--peach-primary);
  box-shadow: 0 0 0 4px rgba(240,90,40,0.1);
  background: #fff;
}
.ct-field input::placeholder,
.ct-field textarea::placeholder { color: #bbb; }
.ct-field textarea { resize: vertical; min-height: 130px; }
.ct-field select { cursor: pointer; }

/* Submit button */
.ct-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  background: linear-gradient(135deg, var(--peach-primary) 0%, #ff7a3c 100%);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  margin-top: 6px;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 24px rgba(240,90,40,0.35);
}
.ct-submit:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(240,90,40,0.45);
}
.ct-submit:active { transform: translateY(0); }

/* Success state */
.ct-success {
  text-align: center;
  padding: 48px 32px;
}
.ct-success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4ade80, #22c55e);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  color: #fff;
}
.ct-success h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 0 10px;
}
.ct-success p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 0 24px;
}

/* Error banner */
.ct-error-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(239,68,68,0.07);
  border: 1px solid rgba(239,68,68,0.25);
  border-radius: 12px;
  color: #b91c1c;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
  .ct-form-inner { gap: 48px; }
}
@media (max-width: 860px) {
  .ct-channels-grid { grid-template-columns: 1fr; gap: 14px; }
  .ct-card { flex-direction: row; gap: 20px; align-items: flex-start; }
  .ct-card-icon { margin-bottom: 0; flex-shrink: 0; }
  .ct-form-inner { grid-template-columns: 1fr; gap: 48px; }
  .ct-form-left { padding-top: 0; }
  .ctfc--1, .ctfc--2 { display: none; }
}
@media (max-width: 600px) {
  .ct-hero { padding: 80px 0 64px; }
  .ct-hero-title { font-size: 3rem; }
  .ct-form-panel { padding: 28px 22px; }
  .ct-row { grid-template-columns: 1fr; }
  .ct-channels { padding: 48px 0; }
}

/* ══════════════════════════════════════
   FAQ PAGE — HERO
══════════════════════════════════════ */
.faq-hero {
  position: relative;
  background: var(--bg-dark);
  padding: 100px 0 80px;
  text-align: center;
  overflow: hidden;
}
.faq-hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.faq-hero-orb--1 {
  width: 500px; height: 500px;
  top: -180px; left: -120px;
  background: radial-gradient(circle, rgba(240,90,40,0.18) 0%, transparent 70%);
}
.faq-hero-orb--2 {
  width: 400px; height: 400px;
  bottom: -160px; right: -80px;
  background: radial-gradient(circle, rgba(240,90,40,0.12) 0%, transparent 70%);
}
.faq-hero .section-label { color: var(--peach-primary); margin-bottom: 12px; }
.faq-hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.15;
}
.faq-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  margin: 0 auto 36px;
  max-width: 460px;
}

/* Search */
.faq-search-wrap {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 560px;
  margin: 0 auto 28px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  transition: border-color 0.2s, background 0.2s;
}
.faq-search-wrap:focus-within {
  border-color: var(--peach-primary);
  background: rgba(255,255,255,0.1);
}
.faq-search-icon {
  position: absolute;
  left: 18px;
  color: rgba(255,255,255,0.4);
  pointer-events: none;
  flex-shrink: 0;
}
.faq-search-input {
  width: 100%;
  padding: 15px 50px 15px 50px;
  background: none;
  border: none;
  outline: none;
  font-size: 0.95rem;
  color: #fff;
  font-family: inherit;
}
.faq-search-input::placeholder { color: rgba(255,255,255,0.4); }
.faq-search-clear {
  position: absolute;
  right: 14px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: rgba(255,255,255,0.6);
  transition: background 0.2s, color 0.2s;
}
.faq-search-clear:hover { background: var(--peach-primary); color: #fff; }

/* Hero chips */
.faq-hero-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.faq-hero-chip {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.65);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 30px;
}

/* ══════════════════════════════════════
   FAQ PAGE — CATEGORY TABS
══════════════════════════════════════ */
.faq-tabs-bar {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 72px; /* match header height */
  z-index: 90;
  transition: box-shadow 0.25s;
}
.faq-tabs-bar.is-stuck {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.faq-tabs-bar .container { padding-top: 0; padding-bottom: 0; }
.faq-tabs {
  display: flex;
  align-items: center;
  gap: 2px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 8px 0;
}
.faq-tabs::-webkit-scrollbar { display: none; }
.faq-tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  border-radius: 30px;
  border: none;
  background: none;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.18s, color 0.18s;
}
.faq-tab:hover { background: #f4f4f8; color: var(--text-primary); }
.faq-tab.is-active {
  background: var(--peach-primary);
  color: #fff;
}
.faq-tab svg { opacity: 0.75; }
.faq-tab.is-active svg { opacity: 1; }

/* ══════════════════════════════════════
   FAQ PAGE — BODY & ACCORDION
══════════════════════════════════════ */
.faq-body { background: #f8f8fc; padding: 60px 0 100px; }
.faq-inner { max-width: 820px; margin: 0 auto; }
.faq-group { margin-bottom: 52px; }
.faq-group-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid #eee;
}
.faq-group-title svg { color: var(--peach-primary); flex-shrink: 0; }
.faq-item {
  border: 1px solid #e8e8f0;
  border-radius: 14px;
  margin-bottom: 8px;
  background: #fff;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.faq-item:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.faq-item.is-open {
  border-color: rgba(240,90,40,0.35);
  box-shadow: 0 6px 24px rgba(240,90,40,0.1);
  transform: translateY(-1px);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  font-family: inherit;
  transition: color 0.18s;
  line-height: 1.45;
}
.faq-q:hover { color: var(--peach-primary); }
.faq-item.is-open .faq-q { color: var(--peach-primary); }
.faq-chevron {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), color 0.2s;
}
.faq-item.is-open .faq-chevron { transform: rotate(180deg); color: var(--peach-primary); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease;
}
.faq-a p, .faq-a ul, .faq-a ol {
  margin: 0;
  padding: 0 22px 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
}
.faq-a p + p { padding-top: 0; margin-top: -6px; }
.faq-a ul, .faq-a ol { padding-left: 44px; padding-right: 22px; }
.faq-a li { margin-bottom: 6px; }
.faq-a a { color: var(--peach-primary); font-weight: 500; }
.faq-a a:hover { text-decoration: underline; }
.faq-a strong { color: var(--text-primary); font-weight: 600; }

/* No results */
.faq-no-results {
  text-align: center;
  padding: 64px 24px;
  color: var(--text-muted);
}
.faq-no-results svg { display: block; margin: 0 auto 16px; opacity: 0.3; }
.faq-no-results p { font-size: 1rem; margin-bottom: 24px; }

/* ── Gutenberg Details block styled as accordion ────────── */
.faq-inner h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 48px 0 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid #eee;
}
.faq-inner h2:first-child { margin-top: 0; }

.faq-inner details {
  border: 1px solid #e8e8f0;
  border-radius: 14px;
  margin-bottom: 8px;
  background: #fff;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.faq-inner details:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.faq-inner details[open] {
  border-color: rgba(240,90,40,0.35);
  box-shadow: 0 6px 24px rgba(240,90,40,0.1);
  transform: translateY(-1px);
}

.faq-inner details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  line-height: 1.45;
  transition: color 0.18s;
}
.faq-inner details summary::-webkit-details-marker { display: none; }
.faq-inner details summary:hover { color: var(--peach-primary); }
.faq-inner details[open] summary { color: var(--peach-primary); }

/* Chevron via pseudo-element */
.faq-inner details summary::after {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.faq-inner details[open] summary::after {
  transform: rotate(180deg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23f05a28' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
}

/* Answer content */
.faq-inner details > *:not(summary) {
  padding: 0 22px 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0;
}
.faq-inner details p { padding: 0 22px; margin-bottom: 12px; }
.faq-inner details p:last-child { padding-bottom: 20px; margin-bottom: 0; }
.faq-inner details ul,
.faq-inner details ol { padding-left: 44px; padding-right: 22px; padding-bottom: 20px; }
.faq-inner details li { margin-bottom: 6px; }
.faq-inner details a { color: var(--peach-primary); font-weight: 500; }
.faq-inner details a:hover { text-decoration: underline; }
.faq-inner details strong { color: var(--text-primary); font-weight: 600; }

/* Responsive */
@media (max-width: 768px) {
  .faq-hero { padding: 72px 0 56px; }
  .faq-hero-title { font-size: 2rem; }
}
@media (max-width: 480px) {
  .faq-hero { padding: 60px 0 44px; }
  .faq-search-wrap { margin-bottom: 20px; }
  .faq-inner details summary { padding: 16px 18px; font-size: 0.9rem; }
  .faq-inner details > *:not(summary) { font-size: 0.875rem; }
}

/* ══════════════════════════════════════
   SHOP HERO — UPGRADED
══════════════════════════════════════ */
.shop-hero {
  position: relative;
  background: #0d0d18;
  padding: 80px 0 64px;
  overflow: hidden;
  text-align: center;
}
.shop-hero-orb--1 {
  position: absolute;
  top: -160px; left: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,90,40,0.2) 0%, transparent 65%);
  pointer-events: none;
}
.shop-hero-orb--2 {
  position: absolute;
  bottom: -120px; right: -80px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,90,40,0.12) 0%, transparent 65%);
  pointer-events: none;
}
/* Floating card decorations */
.shop-hero-cards { position: absolute; inset: 0; pointer-events: none; }
.shc { position: absolute; }
.shc img { width: 90px; border-radius: 6px; box-shadow: 0 16px 48px rgba(0,0,0,0.5); }
.shc--1 { left: 3%; top: 8%;  transform: rotate(-14deg); animation: shcFloat1 6s ease-in-out infinite; }
.shc--2 { right: 3%; top: 5%; transform: rotate(12deg);  animation: shcFloat2 7s ease-in-out infinite; }
.shc--3 { right: 14%; bottom: -10%; transform: rotate(-6deg); animation: shcFloat3 8s ease-in-out infinite; opacity: 0.6; }
@keyframes shcFloat1 { 0%,100%{transform:rotate(-14deg) translateY(0);}  50%{transform:rotate(-14deg) translateY(-16px);} }
@keyframes shcFloat2 { 0%,100%{transform:rotate(12deg) translateY(0);}   50%{transform:rotate(12deg) translateY(-12px);}  }
@keyframes shcFloat3 { 0%,100%{transform:rotate(-6deg) translateY(0);}   50%{transform:rotate(-6deg) translateY(-10px);}  }

.shop-hero-inner { position: relative; z-index: 2; }
.shop-hero .section-label { color: var(--peach-primary); margin-bottom: 8px; }
.shop-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
}
.shop-hero-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.shop-hero-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}
.shop-hero-trust span { display: flex; align-items: center; gap: 4px; }

/* Shop empty state improvement */
.shop-empty-img {
  width: 120px;
  margin: 0 auto 24px;
  opacity: 0.6;
  transform: rotate(-8deg);
}
.shop-empty-img img { width: 100%; filter: drop-shadow(0 12px 24px rgba(0,0,0,0.3)); }

/* ══════════════════════════════════════
   SINGLE PRODUCT PAGE  (spg-*)
══════════════════════════════════════ */

/* Breadcrumb strip */
.spg-strip {
  background: #0d0d18;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.spg-strip .woocommerce-breadcrumb {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  margin: 0;
}
.spg-strip .woocommerce-breadcrumb a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.18s;
}
.spg-strip .woocommerce-breadcrumb a:hover { color: var(--peach-primary); }

/* Main section — explicit light background so body:#080812 doesn't bleed */
.spg-section {
  background: #f8f8fc;
  padding: 52px 0 88px;
}

/* 2-column layout */
.spg-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* ── Gallery ── */
.spg-gallery {
  position: sticky;
  top: calc(80px + 20px);
}
.spg-main {
  aspect-ratio: 3 / 4;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e4e4f0;
  box-shadow: 0 4px 32px rgba(0,0,0,0.07), 0 1px 4px rgba(0,0,0,0.04);
  margin-bottom: 12px;
  position: relative;
  cursor: zoom-in;
  transition: box-shadow 0.25s;
}
.spg-main:hover {
  box-shadow: 0 10px 48px rgba(240,90,40,0.14), 0 2px 8px rgba(0,0,0,0.06);
}
.spg-main--graded {
  background: linear-gradient(145deg, #1a1a2e 0%, #0d0d1a 100%);
  border-color: rgba(240,90,40,0.2);
}
.spg-main-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 0.1s;
  display: block;
}
.spg-zoom-hint {
  position: absolute;
  bottom: 12px; right: 12px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 20px;
  display: flex; align-items: center; gap: 5px;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
  letter-spacing: 0.02em;
}
.spg-main:hover .spg-zoom-hint { opacity: 1; }

.spg-thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}
.spg-thumb {
  width: 64px; height: 90px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.18s, transform 0.18s, box-shadow 0.18s;
}
.spg-thumb:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.spg-thumb.active,
.spg-thumb:hover { border-color: var(--peach-primary); }

/* ── Info column ── */
.spg-info { padding-top: 4px; }

/* Category + Stock row */
.spg-toprow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 8px;
}
.spg-cat {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--peach-primary);
  text-decoration: none;
}
.spg-cat:hover { text-decoration: underline; }

/* Stock badges */
.spg-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.03em;
}
.spg-badge--in  { background: rgba(74,222,128,0.1); color: #16a34a; border: 1px solid rgba(74,222,128,0.28); }
.spg-badge--out { background: rgba(239,68,68,0.08); color: #dc2626; border: 1px solid rgba(239,68,68,0.2); }
.spg-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: currentColor;
  animation: spgDotPulse 2s ease-in-out infinite;
}
@keyframes spgDotPulse { 0%,100%{opacity:1;} 50%{opacity:0.3;} }

/* Title */
.spg-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
}

/* Price */
.spg-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
}
.spg-price .price,
.spg-price .woocommerce-Price-amount {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--text-primary);
  font-family: var(--font-heading, inherit);
}
.spg-price .price del  { font-size: 1.1rem; color: var(--text-muted); font-weight: 400; }
.spg-price .price ins  { text-decoration: none; color: var(--peach-primary); }
.spg-sale-pill {
  background: #ff5252;
  color: #fff;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 6px;
  align-self: center;
}

/* Short description */
.spg-short-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 20px;
}
.spg-short-desc p { margin: 0 0 8px; }
.spg-short-desc p:last-child { margin-bottom: 0; }

/* Meta strip */
.spg-meta {
  display: flex;
  background: #fff;
  border: 1px solid #e4e4f0;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 24px;
}
.spg-meta-item {
  flex: 1;
  padding: 13px 16px;
  border-right: 1px solid #e4e4f0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.spg-meta-item:last-child { border-right: none; }
.spg-meta-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.spg-meta-val {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* Cart wrap */
.spg-cart-wrap { margin-bottom: 20px; }

/* Cart row: qty + ATC side by side */
.spg-cart-row {
  display: flex;
  gap: 12px;
  align-items: stretch;
  margin-bottom: 10px;
}
.spg-cart-row .qty-input-wrap { flex-shrink: 0; }

/* Add to Cart button */
.spg-atc-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  background: linear-gradient(135deg, #f05a28 0%, #ff7a3c 100%);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(240,90,40,0.32);
  transition: opacity 0.2s, transform 0.18s, box-shadow 0.2s;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.spg-atc-btn:hover {
  opacity: 0.91;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(240,90,40,0.42);
}
.spg-atc-btn:active { transform: translateY(0); opacity: 1; }

/* Secondary row: Buy Now + View Cart */
.spg-secondary {
  display: flex;
  gap: 10px;
  align-items: center;
}
.spg-buy-now {
  flex: 1;
  text-align: center;
  padding: 12px;
  background: #fff;
  border: 1.5px solid #dddded;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.spg-buy-now:hover {
  border-color: var(--peach-primary);
  color: var(--peach-primary);
  background: #fff8f5;
}
.spg-view-cart {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  padding: 12px 8px;
  transition: color 0.2s;
  white-space: nowrap;
}
.spg-view-cart:hover { color: var(--peach-primary); }

/* Sold out */
.spg-soldout {
  background: #fff5f5;
  border: 1px solid rgba(239,68,68,0.2);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  margin-bottom: 20px;
}
.spg-soldout p { font-weight: 600; margin-bottom: 14px; color: var(--text-primary); }

/* Trust badges 2×2 grid */
.spg-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 20px;
  background: #fff;
  border: 1px solid #e4e4f0;
  border-radius: 16px;
  margin-bottom: 28px;
}
.spg-trust-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-bottom: none !important;
  padding: 0 !important;
}
.spg-trust-ico {
  width: 20px !important;
  height: 20px !important;
  color: var(--peach-primary) !important;
  flex-shrink: 0;
  margin-top: 2px;
}
.spg-trust-txt {
  font-size: 0.8rem !important;
  color: var(--text-secondary) !important;
  line-height: 1.45 !important;
}
.spg-trust-txt strong {
  display: block;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  color: var(--text-primary) !important;
  margin-bottom: 2px;
}

/* Full product description */
.spg-full-desc {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #e4e4f0;
}
.spg-full-desc h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.spg-full-desc p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 8px;
}

/* Related products — dark section */
.spg-related {
  background: #0d0d18;
  padding: 72px 0 88px;
}
.spg-related .section-label { color: var(--peach-primary); }
.spg-related .section-title { color: #f5f5f7; }
.spg-related .section-header { margin-bottom: 36px; }

/* Responsive */
@media (max-width: 940px) {
  .spg-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .spg-gallery { position: static; }
  .spg-main { max-width: 480px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 860px) {
  .shc--2, .shc--3 { display: none; }
}
@media (max-width: 600px) {
  .shc { display: none !important; }
}
@media (max-width: 600px) {
  .spg-section { padding: 36px 0 64px; }
  .spg-cart-row { flex-direction: column; }
  .spg-atc-btn { height: 48px; width: 100%; }
  .spg-trust { grid-template-columns: 1fr; }
  .spg-meta { flex-direction: column; }
  .spg-meta-item {
    border-right: none;
    border-bottom: 1px solid #e4e4f0;
  }
  .spg-meta-item:last-child { border-bottom: none; }
  .spg-related { padding: 56px 0 64px; }
}

/* ── Footer — DARK ── */
.site-footer { background: #080812; border-top: none; }
.footer-col h4  { color: #f5f5f7; }
.footer-tagline,
.footer-col a,
.footer-legal a,
.footer-copy    { color: #888898; }
.footer-col a:hover    { color: var(--peach-primary); }
.footer-social a       { color: #888898; }
.footer-social a:hover { color: var(--peach-primary); }
.footer-bottom { border-top-color: rgba(255,255,255,0.06); }

/* ── CTA Band Ghost Button fix ── */
.section-cta-band .btn-ghost {
  color: rgba(255,255,255,0.75);
  border-color: rgba(255,255,255,0.22);
}
.section-cta-band .btn-ghost:hover {
  border-color: var(--peach-primary);
  color: var(--peach-primary);
  background: transparent;
}




