/* ============================================
   MAX4D STORE — Light theme + Mega menu + Homepage
   Applied on: / (boutique homepage) and /boutique
   ============================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
}

/* ─── Light theme variable overrides ─── */
.store-light {
  --bg: #f7f6f3;
  --surface: #efeee9;
  --surface-border: rgba(28, 25, 20, 0.08);
  --accent: #e86a12;
  --accent-hover: #f07d2a;
  --white: #14120f;
  --muted: #5c574e;
  --dim: #7a7468;
  --font: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Plus Jakarta Sans', 'Outfit', sans-serif;
  --r-card: 22px;
  --r-md: 16px;
  --r-sm: 12px;
  --r-btn: 100px;
  --ease: cubic-bezier(.4, 0, .2, 1);
  --shadow-tint: rgba(28, 25, 20, 0.08);
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
}

/* Remove noise overlay on light theme — exclude fixed/absolute chrome */
.store-light::before {
  display: none !important;
}

.store-light>*:not(.whatsapp-fab):not(.whatsapp-fab-kbd):not(.scroll-progress):not(.skip-link):not(.mega-mobile):not(.mega-wrap):not(.modal-overlay):not(.toast) {
  position: relative;
  z-index: 1;
}

/* Hard-lock chrome positioning — body/store-light stacking rules must not demote these */
.mega-mobile {
  position: fixed !important;
}
.mega-wrap {
  position: sticky !important;
}
.modal-overlay {
  position: fixed !important;
  z-index: 300 !important;
}
.toast {
  position: fixed !important;
  z-index: 350 !important;
}

/* ─── Light navbar ─── */
.store-light .navbar {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.store-light .navbar::before {
  display: none;
}

.store-light .navbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
}

.store-light .navbar-logo span {
  color: #1a1a1a;
}

.store-light .navbar-links a {
  color: #444;
}

.store-light .navbar-links a:hover {
  color: var(--accent);
}

.store-light .navbar-links a.active {
  color: var(--accent);
}

.store-light .navbar-cta {
  background: #1a1a1a;
  color: #fff;
}

.store-light .navbar-cta:hover {
  background: #333;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.store-light .navbar-hamburger {
  background: var(--surface);
  border-color: var(--surface-border);
}

.store-light .navbar-hamburger svg stroke {
  stroke: #1a1a1a;
}

/* Announcement bar removed site-wide */
.announcement-bar { display: none !important; height: 0 !important; min-height: 0 !important; padding: 0 !important; margin: 0 !important; overflow: hidden !important; border: 0 !important; }

/* Skip link — never reserve layout space */
.skip-link {
  position: absolute !important;
  left: 16px;
  top: -100px !important;
  z-index: 10000;
  width: auto;
  height: auto;
  margin: 0 !important;
  padding: 10px 18px;
  overflow: hidden;
  clip: auto;
  white-space: nowrap;
  background: #fff;
  color: #14120f;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(20, 18, 14, 0.16);
  transition: top .2s ease;
}

.skip-link:focus,
.skip-link:focus-visible {
  top: 12px !important;
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.announcement-bar {
  background: #14120f;
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin: 0;
  border: 0;
}

.announcement-bar .ab-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: abScroll 20s linear infinite;
}

.announcement-bar .ab-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.announcement-bar .ab-item .ab-flag {
  font-size: 16px;
}

.announcement-bar .ab-item .ab-code {
  background: var(--accent);
  padding: 2px 10px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .03em;
}

@keyframes abScroll {
  0% {
    transform: translateX(0);
  }

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

.announcement-bar:hover .ab-track {
  animation-play-state: paused;
}

/* ─── Mega menu ─── */
.mega-wrap {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: #14120f;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin: 0;
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}

.mega-wrap.scrolled {
  background: #14120f;
  box-shadow: 0 4px 20px rgba(20, 18, 14, 0.4);
}

.mega-navbar {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 20px;
  position: relative;
  z-index: 1;
  transition: padding .3s var(--ease);
  flex-wrap: nowrap;
  gap: 12px;
}

.mega-navbar.scrolled {
  padding: 5px 20px;
}

.mega-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  min-width: 0;
}

.mega-logo img {
  width: 24px;
  height: 24px;
  transition: all .3s;
  flex-shrink: 0;
}

.mega-logo span {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.01em;
  color: #fff;
  white-space: nowrap;
}

.mega-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.mega-nav-list {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin-left: 36px;
  margin-right: auto;
}

.mega-nav-item {
  position: static;
}

.mega-nav-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: all .2s var(--ease);
  background: none;
  border: none;
  font-family: var(--font);
}

.mega-nav-trigger:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.mega-nav-trigger .chev {
  transition: transform .25s var(--ease);
}

.mega-nav-item.open .mega-nav-trigger {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.mega-nav-item.open .chev {
  transform: rotate(180deg);
}

.mega-nav-trigger .hot-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ef4444;
  margin-left: 4px;
  animation: pulse 1.5s ease infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .4;
  }
}

/* Highlight for Services 3D */
.mega-nav-highlight {
  color: var(--accent) !important;
  font-weight: 600 !important;
}

.mega-nav-highlight:hover {
  background: rgba(232, 106, 18, 0.12) !important;
}

/* Mega panel (the dropdown) */
.mega-panel {
  position: absolute;
  top: 100%;
  left: 0;
  background: #f7f7f8;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-top: none;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  padding: 24px 32px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.1) transparent;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all .25s var(--ease);
}

.mega-panel::-webkit-scrollbar {
  width: 8px;
}

.mega-panel::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.mega-nav-item.open .mega-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.mega-panel-grid.two-col {
  grid-template-columns: 1fr 1fr;
}

.mega-panel-grid>* {
  min-width: 0;
}

.mega-col-title {
  font-size: 13px;
  font-weight: 600;
  color: #4b5563;
  text-transform: none;
  letter-spacing: normal;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding-bottom: 8px;
  margin-bottom: 12px;
}

.mega-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 14px;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all .2s var(--ease);
}

.mega-link:hover {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.mega-link-img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  background: transparent;
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s var(--ease);
}
.mega-link-img.is-broken {
  background: linear-gradient(145deg, #f3f4f6, #e5e7eb);
}
.mega-link-img.is-broken::after {
  content: '';
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid #d1d5db;
  box-sizing: border-box;
}

.mega-link:hover .mega-link-img {
  transform: scale(1.05);
}

.mega-link-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.mega-link-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.mega-link-name {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
}

.mega-link-desc {
  font-size: 12px;
  color: #6b7280;
  font-weight: 400;
}

/* Mega featured card (right side of panel) */
.mega-featured {
  grid-column: -1;
  grid-row: 1 / span 3;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  text-decoration: none;
  transition: all 0.25s var(--ease);
}

.mega-featured:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.1);
}

.mega-featured-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity .3s, transform .4s var(--ease);
  padding: 10px;
}

.mega-featured:hover .mega-featured-img {
  opacity: 0.95;
  transform: scale(1.03);
}

.mega-featured-content {
  position: relative;
  z-index: 1;
  color: #111827;
}

.mega-featured-tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--accent);
}

.mega-featured-title {
  font-size: 16px;
  font-weight: 700;
  margin-top: 4px;
  line-height: 1.2;
  color: #111827;
}

.mega-featured-price {
  font-size: 13px;
  font-weight: 600;
  margin-top: 2px;
  color: #4b5563;
}

.mega-featured-cta {
  font-size: 12px;
  font-weight: 600;
  margin-top: 8px;
  color: var(--accent);
}

/* Color swatches in mega menu */
.mega-swatches {
  display: flex;
  gap: 6px;
  padding: 4px 12px 8px;
  flex-wrap: wrap;
}

.mega-swatch {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid #f7f7f8;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
  transition: transform .15s;
}

.mega-swatch:hover {
  transform: scale(1.15);
}

.mega-search-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: all .2s var(--ease);
}

.mega-search-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.mega-cart-btn {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: all .2s var(--ease);
}

.mega-cart-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.mega-cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 17px;
  height: 17px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  transform: scale(0);
  transition: transform .25s var(--ease);
}

.mega-cart-count.show {
  transform: scale(1);
}

.mega-hamburger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.mega-hamburger svg {
  stroke: #fff;
}

/* Mobile mega menu */
.mega-mobile {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #14120f;
  transform: translateX(100%);
  transition: transform .3s var(--ease);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.mega-mobile.open {
  transform: translateX(0);
}

.mega-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mega-mobile-close {
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  line-height: 1;
}

.mega-mobile-body {
  padding: 12px 20px;
}

.mega-mobile-section {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mega-mobile-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  width: 100%;
  background: none;
  border: none;
  font-family: var(--font);
}

.mega-mobile-trigger .chev {
  transition: transform .25s var(--ease);
}

.mega-mobile-section.open .mega-mobile-trigger .chev {
  transform: rotate(180deg);
}

.mega-mobile-links {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s var(--ease);
}

.mega-mobile-section.open .mega-mobile-links {
  max-height: 500px;
}

.mega-mobile-links a {
  display: block;
  padding: 10px 16px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  border-radius: 8px;
  transition: background .15s;
}

.mega-mobile-links a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent);
}

.mega-mobile-links a.mega-mobile-all {
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 4px;
}

.mega-mobile-cta {
  margin-top: 16px;
  padding: 14px;
  text-align: center;
  background: var(--accent);
  color: #fff;
  border-radius: 100px;
  font-weight: 600;
  text-decoration: none;
}

/* ─── Hero (store homepage) ─── */
.store-hero-home {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0c0d0e;
}

.store-hero-home .sh-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.store-hero-home .sh-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.6) 100%);
}

.store-hero-home .sh-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 20px 40px;
  max-width: 760px;
}

.store-hero-home .sh-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}

.store-hero-home .sh-title {
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 600;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -.02em;
}

.store-hero-home .sh-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 16px;
  line-height: 1.5;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.store-hero-home .sh-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 28px;
  flex-wrap: wrap;
}

.sh-btn-primary {
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .25s var(--ease);
}

.sh-btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 106, 18, 0.4);
}

.sh-btn-light {
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .25s var(--ease);
}

.sh-btn-light:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* ─── Service promo banner ─── */
.service-promo {
  max-width: var(--max-w);
  margin: -40px auto 0;
  padding: 0 20px;
  position: relative;
  z-index: 5;
}

.service-promo-card {
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2d2f 100%);
  border-radius: 20px;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.service-promo-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 106, 18, 0.15), transparent 70%);
  pointer-events: none;
}

.service-promo-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  z-index: 1;
}

.service-promo-tag {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.service-promo-title {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}

.service-promo-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 480px;
}

.service-promo-cta {
  padding: 12px 28px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 14px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .25s var(--ease);
  position: relative;
  z-index: 1;
}

.service-promo-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232, 106, 18, 0.35);
}

/* ─── Category showcase tiles ─── */
.cat-tiles-section {
  padding: 70px 20px 40px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.cat-tiles-header {
  text-align: left;
  margin-bottom: 28px;
  max-width: 520px;
}

.cat-tiles-header h2 {
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.025em;
  text-wrap: balance;
}

.cat-tiles-header p {
  font-size: 15.5px;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.55;
}

.cat-tiles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.cat-tile {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  aspect-ratio: 4/5;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: #fff;
  transition: transform .3s var(--ease), box-shadow .3s;
}

.cat-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.cat-tile .ct-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s var(--ease);
}

.cat-tile:hover .ct-bg {
  transform: scale(1.08);
}

.cat-tile .ct-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.75) 100%);
}

.cat-tile .ct-content {
  position: relative;
  z-index: 1;
}

.cat-tile .ct-name {
  font-size: 20px;
  font-weight: 700;
}

.cat-tile .ct-count {
  font-size: 13px;
  opacity: 0.8;
  margin-top: 2px;
}

.cat-tile .ct-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
}

/* ─── Help Me Choose quiz ─── */
.quiz-section {
  padding: 60px 20px;
  background: var(--surface);
}

.quiz-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.quiz-card {
  background: #fff;
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--surface-border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.quiz-visual {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1/1;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid var(--surface-border);
}

.quiz-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.quiz-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quiz-tag {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.quiz-title {
  font-size: 30px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.2;
}

.quiz-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
}

.quiz-cta {
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  background: #1a1a1a;
  color: #fff;
  text-decoration: none;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .25s var(--ease);
}

.quiz-cta:hover {
  background: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Quiz modal */
.quiz-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all .25s var(--ease);
}

.quiz-overlay.open {
  opacity: 1;
  visibility: visible;
}

.quiz-modal {
  background: #fff;
  border-radius: 24px;
  max-width: 560px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  transform: translateY(20px) scale(0.98);
  transition: transform .3s var(--ease);
}

.quiz-overlay.open .quiz-modal {
  transform: translateY(0) scale(1);
}

.quiz-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 22px;
  background: var(--surface);
  border: none;
  cursor: pointer;
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}

.quiz-close:hover {
  background: #ef4444;
  color: #fff;
}

.quiz-progress {
  display: flex;
  gap: 6px;
  margin-bottom: 24px;
}

.quiz-progress-bar {
  flex: 1;
  height: 4px;
  border-radius: 4px;
  background: var(--surface);
  transition: background .3s;
}

.quiz-progress-bar.active {
  background: var(--accent);
}

.quiz-progress-bar.done {
  background: #22c55e;
}

.quiz-step {
  display: none;
}

.quiz-step.active {
  display: block;
  animation: quizFade .3s var(--ease);
}

@keyframes quizFade {
  from {
    opacity: 0;
    transform: translateX(10px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.quiz-step h3 {
  font-size: 24px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.quiz-step p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quiz-option {
  padding: 16px 20px;
  border-radius: 14px;
  cursor: pointer;
  border: 2px solid var(--surface-border);
  background: #fff;
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  text-align: left;
  transition: all .2s var(--ease);
  font-family: var(--font);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.quiz-option:hover {
  border-color: var(--accent);
  background: rgba(232, 106, 18, 0.04);
}

.quiz-option.selected {
  border-color: var(--accent);
  background: rgba(232, 106, 18, 0.06);
}

.quiz-option .quiz-opt-icon {
  font-size: 20px;
}

.quiz-slider-wrap {
  padding: 10px 0;
}

.quiz-slider {
  width: 100%;
  height: 6px;
  border-radius: 6px;
  background: var(--surface);
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  margin: 16px 0;
}

.quiz-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(232, 106, 18, 0.3);
}

.quiz-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: none;
  background: var(--accent);
  cursor: pointer;
}

.quiz-slider-val {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  color: var(--accent);
}

.quiz-nav {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.quiz-btn {
  padding: 12px 24px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  font-family: var(--font);
  transition: all .2s var(--ease);
}

.quiz-btn-next {
  background: var(--accent);
  color: #fff;
  border: none;
}

.quiz-btn-next:hover {
  background: var(--accent-hover);
}

.quiz-btn-back {
  background: var(--surface);
  color: #555;
  border: 1px solid var(--surface-border);
}

.quiz-btn-back:hover {
  background: #e8e8e8;
}

.quiz-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Quiz results */
.quiz-results {
  display: none;
}

.quiz-results.active {
  display: block;
  animation: quizFade .3s var(--ease);
}

.quiz-results h3 {
  font-size: 24px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.quiz-results p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
}

.quiz-result-card {
  display: flex;
  gap: 16px;
  padding: 16px;
  border-radius: 14px;
  background: var(--surface);
  margin-bottom: 10px;
  text-decoration: none;
  transition: transform .2s var(--ease);
}

.quiz-result-card:hover {
  transform: translateX(4px);
}

.quiz-result-img {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  background: #fff;
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--surface-border);
}

.quiz-result-img img {
  max-width: 88%;
  max-height: 88%;
  object-fit: contain;
}

.quiz-result-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.quiz-result-name {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
}

.quiz-result-price {
  font-size: 16px;
  font-weight: 600;
  color: var(--accent);
}

.quiz-result-brand {
  font-size: 12px;
  color: var(--dim);
}

.quiz-restart {
  margin-top: 16px;
  width: 100%;
  padding: 12px;
  border-radius: 100px;
  background: var(--surface);
  color: #555;
  border: 1px solid var(--surface-border);
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  transition: all .2s;
}

.quiz-restart:hover {
  background: #e8e8e8;
}

/* ─── Featured products (store homepage) ─── */
.featured-home-section {
  padding: 60px 20px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.featured-home-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 16px;
}

.featured-home-header h2 {
  font-size: clamp(26px, 3vw, 32px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.025em;
}

.featured-home-header p {
  font-size: 15px;
  color: var(--muted);
  margin-top: 6px;
}

.featured-home-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  transition: gap .2s;
}

.featured-home-link:hover {
  gap: 8px;
}

.featured-home-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.fh-card {
  background: #fff;
  border: 1px solid var(--surface-border);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s, border-color .25s;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px var(--shadow-tint);
}

.fh-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(28, 25, 20, 0.1);
  border-color: rgba(232, 106, 18, 0.22);
}

.fh-card .fh-img {
  height: 200px;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 16px;
}

.fh-card .fh-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform .4s var(--ease);
}

.fh-card:hover .fh-img img {
  transform: scale(1.06);
}

.fh-card .fh-body {
  padding: 14px 16px 16px;
}

.fh-card .fh-brand {
  font-size: 11px;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.fh-card .fh-name {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 4px 0 8px;
  line-height: 1.3;
  min-height: 36px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.fh-card .fh-price {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
}

.fh-card .fh-price small {
  font-size: 11px;
  color: var(--dim);
  font-weight: 400;
}

/* ─── Trust strip (light) ─── */
.store-light .trust-section {
  background: #fdfdfd;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 60px 0;
}

.store-light .trust-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.store-light .trust-item {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.015);
}

.store-light .trust-item:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 106, 18, 0.35);
  box-shadow: 0 12px 32px rgba(232, 106, 18, 0.1);
}

.store-light .trust-icon-wrapper {
  background: rgba(232, 106, 18, 0.09);
  color: var(--accent);
  padding: 10px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.store-light .trust-item:hover .trust-icon-wrapper {
  background: var(--accent);
  color: #fff;
  transform: scale(1.05);
}

.store-light .trust-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  margin: 0;
}

.store-light .trust-item p {
  font-size: 13px;
  color: #4b5563;
  margin-top: 4px;
  line-height: 1.4;
}

/* Footer styles live in style.css (.site-footer / .store-home-footer / .footer) */

/* ─── WhatsApp FAB (light pages) ─── */
.store-light .whatsapp-fab,
body.store-light>a.whatsapp-fab {
  position: fixed !important;
  right: 24px !important;
  bottom: 24px !important;
  left: auto !important;
  top: auto !important;
  z-index: 9999 !important;
  background: #25D366 !important;
  color: #fff !important;
}

.store-light .whatsapp-fab svg {
  fill: #fff !important;
  color: #fff !important;
  width: 26px !important;
  height: 26px !important;
}

.store-light .whatsapp-fab:hover,
.store-light .whatsapp-fab:focus-visible {
  background: #1ebe57 !important;
  color: #fff !important;
  box-shadow: 0 12px 28px rgba(37, 211, 102, .45);
  transform: translateY(-2px);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .mega-panel {
    max-width: min(720px, calc(100vw - 40px));
    padding: 20px;
  }

  .mega-panel-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  .mega-swatches {
    grid-column: 1 / -1;
  }

  .mega-featured {
    grid-column: 1 / -1 !important;
    grid-row: auto;
    min-height: 160px;
  }

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

  .featured-home-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 860px) {
  .mega-panel {
    display: none;
  }

  .mega-nav-list {
    display: none;
  }

  .mega-hamburger {
    display: flex;
  }

  .store-hero-home {
    min-height: 460px;
  }

  .store-hero-home .sh-content {
    padding: 50px 20px 50px;
  }

  .store-hero-home .sh-title {
    font-size: clamp(30px, 7vw, 38px);
  }

  .store-hero-home .sh-sub {
    font-size: 16px;
  }

  .sh-btn-primary,
  .sh-btn-light {
    padding: 12px 24px;
    font-size: 14px;
  }

  .quiz-card {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }

  .quiz-visual {
    display: none;
  }

  .service-promo {
    margin-top: -24px;
  }

  .service-promo-card {
    flex-direction: column;
    text-align: center;
    padding: 24px;
    gap: 18px;
  }

  .service-promo-title {
    font-size: 22px;
  }

  .service-promo-desc {
    font-size: 13px;
  }

  .service-promo-cta {
    width: 100%;
    justify-content: center;
  }

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

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

  .cat-tiles-header h2 {
    font-size: 30px;
  }

  .quiz-title {
    font-size: 26px;
  }

  .quiz-desc {
    font-size: 14px;
  }

  .quiz-cta {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .announcement-bar {
    font-size: 11px;
    padding: 6px 12px;
    min-height: 32px;
  }

  .announcement-bar .ab-track {
    gap: 32px;
  }

  .mega-navbar {
    padding: 6px 12px;
  }

  .mega-navbar.scrolled {
    padding: 5px 12px;
  }

  .mega-logo img {
    width: 22px;
    height: 22px;
  }

  .mega-logo span {
    font-size: 14px;
  }

  .mega-search-btn,
  .mega-cart-btn,
  .mega-hamburger {
    width: 34px;
    height: 34px;
  }

  .mega-search-btn svg,
  .mega-cart-btn svg,
  .mega-hamburger svg {
    width: 16px;
    height: 16px;
  }

  .store-hero-home {
    min-height: 420px;
  }

  .store-hero-home .sh-content {
    padding: 40px 16px 40px;
  }

  .store-hero-home .sh-badge {
    font-size: 11px;
    padding: 6px 14px;
    margin-bottom: 14px;
  }

  .store-hero-home .sh-title {
    font-size: clamp(26px, 8vw, 32px);
  }

  .store-hero-home .sh-sub {
    font-size: 15px;
    margin-top: 12px;
  }

  .sh-btn-primary,
  .sh-btn-light {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
  }

  .cat-tiles-section {
    padding: 50px 16px 30px;
  }

  .cat-tiles-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .cat-tile {
    aspect-ratio: 16 / 9;
    padding: 18px;
  }

  .cat-tile .ct-name {
    font-size: 18px;
  }

  .cat-tile .ct-count {
    font-size: 12px;
  }

  .cat-tile .ct-link {
    margin-top: 6px;
  }

  .featured-home-section {
    padding: 40px 16px;
  }

  .featured-home-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .featured-home-header h2 {
    font-size: 26px;
  }

  .featured-home-header p {
    font-size: 14px;
  }

  .featured-home-link {
    font-size: 13px;
  }

  .fh-card .fh-img {
    height: 120px;
    padding: 12px;
  }

  .fh-card .fh-body {
    padding: 12px;
  }

  .fh-card .fh-brand {
    font-size: 10px;
  }

  .fh-card .fh-name {
    font-size: 12px;
    min-height: 30px;
    -webkit-line-clamp: 2;
  }

  .fh-card .fh-price {
    font-size: 14px;
  }

  .fh-card .fh-price small {
    display: none;
  }

  .quiz-section {
    padding: 40px 16px;
  }

  .quiz-card {
    padding: 24px 20px;
  }

  .quiz-title {
    font-size: 24px;
  }

  .quiz-desc {
    font-size: 14px;
  }

  .quiz-cta {
    padding: 12px 24px;
    font-size: 14px;
  }

  .quiz-modal {
    padding: 24px 18px;
    border-radius: 20px;
  }

  .quiz-step h3 {
    font-size: 20px;
  }

  .quiz-option {
    padding: 14px 16px;
    font-size: 14px;
  }

  .quiz-slider-val {
    font-size: 24px;
  }

  .quiz-btn {
    padding: 10px 18px;
    font-size: 13px;
  }

  .quiz-result-name {
    font-size: 13px;
  }

  .quiz-result-price {
    font-size: 14px;
  }

  .quiz-result-img {
    width: 64px;
    height: 64px;
  }

  .trust-section {
    padding: 40px 0;
  }

  .trust-inner {
    padding: 0 16px;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .trust-item {
    gap: 12px;
  }

  .trust-item h4 {
    font-size: 14px;
  }

  .trust-item p {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .trust-inner {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px) {
  .cat-tiles-header h2 {
    font-size: 24px;
  }

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

  .featured-home-header .featured-home-link {
    margin-top: 4px;
  }

  .mega-mobile-header {
    padding: 12px 16px;
  }

  .mega-mobile-body {
    padding: 8px 16px;
  }

  .mega-mobile-trigger {
    font-size: 15px;
    padding: 12px 0;
  }

  .mega-mobile-links a {
    padding: 8px 14px;
    font-size: 14px;
  }

  .mega-mobile-cta {
    padding: 12px;
  }
}

/* ============================================
   LIGHT-THEME REFINEMENTS (redesign pass)
   ============================================ */

/* Outline button must be visible on light backgrounds */
.store-light .btn-outline {
  color: #111827;
  border-color: var(--surface-border);
}

.store-light .btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Heavier, tighter headlines for presence */
.store-light .section-header h2,
.store-light .feature-text h3,
.store-light .cta-content h2 {
  font-weight: 700;
  letter-spacing: -.02em;
}

.store-light .section-header h2 {
  text-wrap: balance;
}

/* Break the generic 3-column steps grid into an asymmetric 2+1 layout with step numbers */
.store-light .steps-grid {
  counter-reset: step;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.store-light .step-card {
  counter-increment: step;
}

.store-light .step-card::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .08em;
  display: inline-block;
  margin-bottom: 6px;
}

.store-light .steps-grid .step-card:nth-child(3) {
  grid-column: 1 / -1;
}

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

  .store-light .steps-grid .step-card:nth-child(3) {
    grid-column: auto;
  }
}

/* FAQ: fix hardcoded dark answer background for light theme */
.store-light .faq-answer {
  background: #fff;
}

.store-light .faq-question {
  background: var(--surface);
}

.store-light .faq-question:hover,
.store-light .faq-question[aria-expanded="true"] {
  background: #ececed;
}

/* Trust strip: editorial inline feel instead of 4 equal cards */
.store-light .trust-section {
  padding: 52px 0;
}

.store-light .trust-inner {
  gap: 0;
}

.store-light .trust-item {
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  padding: 8px 24px;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}

.store-light .trust-item:first-child {
  border-left: none;
  padding-left: 0;
}

.store-light .trust-item:hover {
  transform: none;
  border-color: var(--accent);
  box-shadow: none;
}

.store-light .trust-icon-wrapper {
  width: 38px;
  height: 38px;
  padding: 8px;
  border-radius: 10px;
}

@media (max-width: 900px) {
  .store-light .trust-inner {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .store-light .trust-item {
    border-left: none;
    padding: 14px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
  }

  .store-light .trust-item:first-child {
    border-top: none;
  }
}

/* Pillar cards: remove dark contour border on light theme */
.store-light .pillar-card {
  border: none;
}

.store-light .pillar-card:hover {
  border: none;
}

/* Academy cards: fix hover bg + shadow for light theme */
.store-light .academy-card:hover {
  background: #fff;
  border-color: rgba(232, 106, 18, 0.25);
  box-shadow: 0 8px 30px rgba(17, 24, 39, 0.08);
}

/* ─── Clean split banner (shared by /home, /store, /3d-printing) ─── */
.clean-banner {
  max-width: var(--max-w);
  margin: 16px auto 0;
  padding: 36px 28px 44px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(232, 106, 18, 0.08), transparent 55%),
    linear-gradient(165deg, #ffffff 0%, #faf9f6 100%);
  border: 1px solid var(--surface-border);
  border-radius: 28px;
  box-shadow: 0 18px 48px var(--shadow-tint);
  position: relative;
  overflow: hidden;
}

/* Keep main tight under sticky nav (no extra top gap from default margins) */
main#main,
.store-light main:not(.catalog) {
  margin: 0;
  padding: 0;
}

.store-light main.catalog {
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
}

.clean-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url('/images/rR6HYXBrMmX4cRpXfXUOvpvpB0.png');
  background-repeat: repeat;
  background-size: 161px;
  mix-blend-mode: multiply;
}

.clean-banner-content {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  z-index: 1;
}

.clean-banner-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .04em;
  text-transform: none;
  width: fit-content;
  padding: 6px 12px 6px 10px;
  background: rgba(232, 106, 18, 0.08);
  border-radius: 100px;
}

.clean-banner-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(232, 106, 18, 0.15);
}

.clean-banner h1 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.02;
  color: var(--white);
  margin: 18px 0 0;
  text-wrap: balance;
}

.clean-banner h1 .br {
  color: var(--accent);
}

.clean-banner-sub {
  font-size: 16.5px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 48ch;
  margin: 16px 0 0;
  font-weight: 400;
}

.clean-banner-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
  font-size: 13.5px;
  color: var(--dim);
}

.clean-banner-rating .stars {
  color: #d4a017;
  letter-spacing: 2px;
  font-size: 15px;
}

.clean-banner-rating .g-badge {
  font-weight: 600;
  color: var(--white);
}

.clean-banner-rating a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.clean-banner-rating a:hover {
  text-decoration: underline;
}

.clean-banner-rating .sep {
  color: rgba(28, 25, 20, 0.18);
}

.clean-banner-ctas {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.clean-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 26px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: transform .25s var(--ease), background .2s, box-shadow .25s, border-color .2s, color .2s;
}

.clean-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.clean-btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 22px rgba(232, 106, 18, 0.28);
}

.clean-btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(232, 106, 18, 0.36);
}

.clean-btn-primary:active {
  transform: scale(.98);
}

.clean-btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(28, 25, 20, 0.14);
}

.clean-btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(232, 106, 18, 0.04);
  transform: translateY(-2px);
}

.clean-btn-ghost:active {
  transform: scale(.98);
}

.clean-banner-img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 24px 44px rgba(28, 25, 20, 0.16));
  position: relative;
  z-index: 1;
  transition: transform .5s var(--ease);
}

.clean-banner:hover .clean-banner-img {
  transform: scale(1.02) translateY(-4px);
}

.clean-banner-product-tag {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 20px;
  font-size: 13px;
  color: var(--dim);
  padding: 10px 14px;
  width: fit-content;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--surface-border);
  border-radius: 12px;
  backdrop-filter: blur(8px);
}

.clean-banner-product-tag strong {
  color: var(--white);
  font-size: 13.5px;
  font-weight: 700;
}

.clean-banner-product-tag a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  font-size: 12.5px;
}

.clean-banner-product-tag a:hover {
  text-decoration: underline;
}

/* ─── Home paths (asymmetric dual CTA) ─── */
.paths {
  max-width: var(--max-w);
  margin: -20px auto 0;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 14px;
  position: relative;
  z-index: 5;
}

.path {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 24px;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid var(--surface-border);
  border-radius: 18px;
  box-shadow: 0 10px 28px var(--shadow-tint);
  transition: transform .25s var(--ease), box-shadow .25s, border-color .25s, background .25s;
}

.path:hover {
  transform: translateY(-3px);
  border-color: rgba(232, 106, 18, 0.28);
  box-shadow: 0 16px 36px rgba(28, 25, 20, 0.1);
}

.path:active {
  transform: scale(0.995);
}

.path:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.path-thumb {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 14px;
  overflow: hidden;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--surface-border);
}

.path-thumb img {
  max-width: 86%;
  max-height: 86%;
  object-fit: contain;
  transition: transform .35s var(--ease);
}

.path:hover .path-thumb img {
  transform: scale(1.08);
}

.path-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  flex: 1;
}

.path-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.path-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
}

.path-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.path-go {
  margin-left: auto;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: transform .25s var(--ease), background .25s, color .25s;
}

.path:hover .path-go {
  background: var(--accent);
  color: #fff;
  transform: translateX(3px);
}

/* ─── Inline trust line ─── */
.trustline {
  max-width: var(--max-w);
  margin: 36px auto 0;
  padding: 0 20px;
  text-align: center;
}

.trustline p {
  font-size: 13.5px;
  color: var(--dim);
  line-height: 1.7;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 16px;
  align-items: center;
}

.trustline p strong {
  color: var(--white);
  font-weight: 700;
}

.trustline p .sep {
  color: rgba(28, 25, 20, 0.16);
}

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

.trustline a:hover {
  text-decoration: underline;
}

/* ─── Home featured strip ─── */
.home-featured {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 56px 20px 0;
}

.home-featured-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.home-featured-header h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: -.025em;
  color: var(--white);
  margin: 0;
}

.home-featured-header p {
  font-size: 14.5px;
  color: var(--muted);
  margin: 6px 0 0;
}

.home-featured-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap .2s;
}

.home-featured-link:hover {
  gap: 8px;
}

.home-featured-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 14px;
}

.hf-card {
  background: #fff;
  border: 1px solid var(--surface-border);
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s, border-color .25s;
  box-shadow: 0 6px 20px var(--shadow-tint);
}

.hf-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(28, 25, 20, 0.1);
  border-color: rgba(232, 106, 18, 0.2);
}

.hf-card.hf-lead {
  grid-row: span 1;
}

.hf-img {
  height: 180px;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  overflow: hidden;
}

.hf-card.hf-lead .hf-img {
  height: 220px;
}

.hf-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform .4s var(--ease);
}

.hf-card:hover .hf-img img {
  transform: scale(1.06);
}

.hf-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.hf-brand {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.hf-name {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  letter-spacing: -.01em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hf-price {
  margin-top: auto;
  padding-top: 10px;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  font-variant-numeric: tabular-nums;
}

.hf-price small {
  font-size: 11px;
  font-weight: 500;
  color: var(--dim);
  margin-left: 2px;
}

.hf-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 6px;
  background: var(--white);
  color: #fff;
}

.hf-card {
  position: relative;
}

.hf-tag.hot {
  background: var(--accent);
}

.hf-tag.new {
  background: #1a1a1a;
}

/* ─── Home category chips ─── */
.home-cats {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px 20px 0;
}

.home-cats-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.home-cats-header h2 {
  font-size: clamp(22px, 2.8vw, 28px);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--white);
  margin: 0;
}

.home-cats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.home-cat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 16px 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--surface-border);
  text-decoration: none;
  color: inherit;
  transition: transform .2s var(--ease), border-color .2s, box-shadow .2s;
}

.home-cat:hover {
  transform: translateY(-2px);
  border-color: rgba(232, 106, 18, 0.25);
  box-shadow: 0 8px 20px var(--shadow-tint);
}

.home-cat-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(232, 106, 18, 0.08);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-cat-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.01em;
}

.home-cat-count {
  font-size: 12px;
  color: var(--dim);
}

/* ─── Home service band ─── */
.home-service {
  max-width: var(--max-w);
  margin: 48px auto 0;
  padding: 0 20px;
}

.home-service-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  background: #14120f;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 48px rgba(20, 18, 14, 0.18);
}

.home-service-text {
  padding: 40px 40px 44px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.home-service-text::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(232, 106, 18, 0.18), transparent 70%);
  pointer-events: none;
}

.home-service-tag {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .04em;
  text-transform: uppercase;
  position: relative;
}

.home-service-text h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: -.025em;
  color: #fff;
  line-height: 1.1;
  margin: 0;
  position: relative;
  text-wrap: balance;
}

.home-service-text p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
  max-width: 42ch;
  margin: 0;
  position: relative;
}

.home-service-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
  position: relative;
}

.home-service-actions .clean-btn-primary {
  box-shadow: 0 8px 22px rgba(232, 106, 18, 0.35);
}

.home-service-actions .clean-btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  background: transparent;
}

.home-service-actions .clean-btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.home-service-visual {
  position: relative;
  min-height: 260px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 28px 24px 8px;
}

.home-service-visual img {
  max-width: 100%;
  max-height: 280px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.45));
}

/* ─── Store vertical service panel ─── */
.store-service-panel {
  width: 100%;
  min-width: 0;
  position: sticky;
  top: 88px;
  align-self: start;
  max-height: calc(100vh - 110px);
}

.store-service-card {
  display: flex;
  flex-direction: column;
  min-height: min(520px, calc(100vh - 120px));
  background: #14120f;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 48px rgba(20, 18, 14, 0.18);
}

.store-service-text {
  padding: 24px 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

.store-service-text::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -30%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(232, 106, 18, 0.18), transparent 70%);
  pointer-events: none;
}

.store-service-text .home-service-tag {
  position: relative;
}

.store-service-text h2 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.025em;
  color: #fff;
  line-height: 1.15;
  margin: 0;
  position: relative;
  text-wrap: balance;
}

.store-service-text p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.55;
  margin: 0;
  position: relative;
}

.store-service-text .home-service-actions {
  flex-direction: column;
  margin-top: 6px;
  gap: 8px;
}

.store-service-text .home-service-actions .clean-btn {
  width: 100%;
  justify-content: center;
  text-align: center;
  font-size: 13px;
  padding: 11px 16px;
}

.store-service-visual {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 8px 16px 24px;
  background: transparent;
  margin-top: auto;
}

.store-service-visual img {
  max-width: 100%;
  max-height: 220px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.45));
}

@media (max-width: 1280px) {
  .store-service-text {
    padding: 22px 18px 16px;
  }

  .store-service-text h2 {
    font-size: 19px;
  }

  .store-service-visual img {
    max-height: 160px;
  }
}

@media (max-width: 1100px) {
  .store-service-panel {
    grid-column: 1 / -1;
    position: static;
    margin-top: 8px;
  }

  .store-service-card {
    flex-direction: row;
    align-items: center;
  }

  .store-service-text {
    flex: 1.2;
    padding: 28px 24px 28px 28px;
  }

  .store-service-text .home-service-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .store-service-text .home-service-actions .clean-btn {
    width: auto;
  }

  .store-service-visual {
    flex: 0.8;
    padding: 20px 24px;
    min-height: 180px;
  }

  .store-service-visual img {
    max-height: 180px;
  }
}

@media (max-width: 1024px) {
  .store-service-panel {
    width: 100%;
    position: static;
    margin-top: 28px;
  }

  .store-service-card {
    flex-direction: row;
    align-items: center;
  }

  .store-service-text {
    flex: 1.2;
    padding: 28px 24px 28px 28px;
  }

  .store-service-text .home-service-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .store-service-text .home-service-actions .clean-btn {
    width: auto;
  }

  .store-service-visual {
    flex: 0.8;
    padding: 20px 24px;
    min-height: 180px;
  }

  .store-service-visual img {
    max-height: 180px;
  }
}

@media (max-width: 640px) {
  .store-service-card {
    flex-direction: column;
  }

  .store-service-text {
    padding: 22px 18px 14px;
  }

  .store-service-text .home-service-actions {
    flex-direction: column;
  }

  .store-service-text .home-service-actions .clean-btn {
    width: 100%;
  }

  .store-service-visual {
    padding: 4px 20px 24px;
  }
}

/* ─── Clients ticker (Ils nous font confiance) ─── */
.svc-clients {
  max-width: var(--max-w);
  margin: 28px auto 0;
  padding: 0 20px;
}

.svc-clients-inner {
  background: #14120f;
  border-radius: 18px;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 32px rgba(20, 18, 14, 0.12);
}

.svc-clients-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.48);
  letter-spacing: .06em;
  white-space: nowrap;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding-right: 24px;
  flex-shrink: 0;
  text-transform: uppercase;
}

.svc-clients-scroll {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  position: relative;
}

.svc-clients .ticker-track {
  gap: 48px;
  width: max-content;
  animation: ticker 22s linear infinite;
}

.svc-clients .ticker-track img {
  height: 30px;
  opacity: 0.72;
  transition: opacity .25s;
}

.svc-clients .ticker-track img:hover {
  opacity: 1;
}

.svc-clients-scroll:hover .ticker-track {
  animation-play-state: paused;
}

.home-spacer {
  height: 64px;
}

@media (max-width: 960px) {
  .home-featured-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hf-card.hf-lead {
    grid-column: 1 / -1;
  }

  .hf-card.hf-lead .hf-img {
    height: 200px;
  }

  .home-cats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .home-service-card {
    grid-template-columns: 1fr;
  }

  .home-service-visual {
    min-height: 180px;
    padding: 8px 20px 20px;
  }

  .home-service-visual img {
    max-height: 200px;
  }
}

@media (max-width: 860px) {
  .clean-banner {
    grid-template-columns: 1fr;
    padding: 18px 16px 20px;
    gap: 12px;
    margin: 8px 10px 0;
    border-radius: 18px;
  }

  .clean-banner-img {
    max-height: 180px;
    order: -1;
  }

  .clean-banner h1 {
    font-size: clamp(24px, 7vw, 30px);
    margin-top: 10px;
  }

  .clean-banner-sub {
    font-size: 14px;
    margin-top: 8px;
    line-height: 1.5;
  }

  .clean-banner-rating {
    margin-top: 10px;
    gap: 6px;
    font-size: 12px;
  }

  .clean-banner-ctas {
    margin-top: 14px;
    gap: 8px;
  }

  .clean-btn {
    padding: 10px 16px;
    font-size: 13px;
  }

  .clean-banner-product-tag {
    margin-top: 10px;
    padding: 8px 10px;
    font-size: 12px;
  }

  .paths {
    grid-template-columns: 1fr;
    margin-top: 10px;
    padding: 0 10px;
    gap: 8px;
  }

  .path-go {
    display: none;
  }

  .path {
    padding: 12px 12px;
    gap: 10px;
    border-radius: 14px;
  }

  .home-featured {
    padding: 28px 12px 0;
  }

  .home-cats {
    padding: 24px 12px 0;
  }

  .home-service {
    padding: 24px 12px 0;
  }

  .svc-clients {
    padding: 0 12px;
    margin-top: 20px;
  }

  .svc-clients-inner {
    padding: 12px 12px;
    gap: 10px;
  }

  .svc-clients-label {
    padding-right: 10px;
    font-size: 9px;
  }

  .svc-clients .ticker-track {
    gap: 20px;
  }

  .svc-clients .ticker-track img {
    height: 20px;
  }

  .trustline {
    padding-left: 10px;
    padding-right: 10px;
  }

  .home-featured-header {
    margin-bottom: 12px;
  }
}

@media (max-width: 560px) {
  .home-featured-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .hf-img {
    height: 110px;
    padding: 8px;
  }

  .hf-card.hf-lead .hf-img {
    height: 140px;
  }

  .hf-body {
    padding: 8px 10px 10px;
    gap: 2px;
  }

  .hf-name {
    font-size: 12px;
  }

  .hf-price {
    font-size: 13px;
  }

  .hf-tag {
    font-size: 9px;
    padding: 2px 6px;
  }

  .home-cats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .home-cat {
    padding: 12px 10px;
  }

  .home-service-text {
    padding: 18px 16px 20px;
  }

  .home-service-actions {
    flex-direction: column;
    gap: 8px;
  }

  .home-service-actions .clean-btn {
    width: 100%;
    justify-content: center;
  }

  .home-featured-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 12px;
  }

  .home-featured-header h2,
  .home-cats-header h2 {
    font-size: 20px;
  }

  .path-thumb {
    width: 48px;
    height: 48px;
    border-radius: 10px;
  }

  .path-title {
    font-size: 14px;
  }

  .path-desc {
    font-size: 12px;
  }

  .path-label {
    font-size: 10px;
  }

  .home-spacer {
    height: 28px;
  }

  .trustline {
    padding: 12px 10px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .clean-banner {
    margin: 6px 8px 0;
    padding: 14px 12px 16px;
    border-radius: 14px;
  }

  .clean-banner-img {
    max-height: 150px;
  }

  .clean-banner-ctas {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .clean-btn {
    flex: 1 1 auto;
    min-width: calc(50% - 4px);
    justify-content: center;
    padding: 9px 12px;
    font-size: 12.5px;
  }

  .home-cats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .home-cat {
    padding: 10px 6px;
  }

  .home-cat-name {
    font-size: 11px;
  }

  .home-cat-count {
    font-size: 10px;
  }
}

/* ─── Light subpages (blog, services, legal, cities, etc.) ─── */
.store-light .subpage-hero {
  padding: 28px 16px 40px;
  background: transparent;
}
.store-light .subpage-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 10px 30px rgba(20,18,14,0.05);
  color: #14120f;
}
.store-light .subpage-title,
.store-light .subpage-card h1,
.store-light .subpage-card h2,
.store-light .subpage-card h3,
.store-light .subpage-card h4 {
  color: #14120f;
}
.store-light .subpage-card p,
.store-light .subpage-card li,
.store-light .subpage-lead {
  color: #5c574e;
}
.store-light .subpage-card a {
  color: var(--accent);
}

@media (max-width: 768px) {
  .store-light .subpage-hero {
    padding: 16px 10px 28px;
  }
  .store-light .subpage-card {
    padding: 22px 16px !important;
    border-radius: 16px !important;
    gap: 16px !important;
  }
  .store-light .subpage-title,
  .store-light .subpage-card h1 {
    font-size: clamp(26px, 8vw, 34px) !important;
    line-height: 1.1 !important;
  }
  .store-light .subpage-card h2 {
    font-size: 18px !important;
  }
  .store-light .subpage-card p,
  .store-light .subpage-card li {
    font-size: 14px;
    line-height: 1.55;
  }
}

@media (max-width: 480px) {
  .store-light .subpage-card {
    padding: 16px 12px !important;
    border-radius: 14px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .svc-clients .ticker-track {
    animation: none;
  }
}