/* ═══════════════════════════════════════════════════════════════
   FilmTexture — Inner Pages Shared Styles
   Extends main.css — import after it
   ═══════════════════════════════════════════════════════════════ */

/* ──────────────────────────────────────────
   PAGE SHELL
────────────────────────────────────────── */
.page-wrap {
  padding-top: var(--nav-h);
  min-height: 100vh;
}

/* ──────────────────────────────────────────
   BREADCRUMB
────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 20px 0 0;
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.breadcrumb a,
.breadcrumb span {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  transition: color 0.15s ease;
}

.breadcrumb a:hover { color: rgba(255,255,255,0.7); }

.breadcrumb-sep {
  color: rgba(255,255,255,0.2);
  font-size: 10px;
}

.breadcrumb-current {
  color: rgba(255,255,255,0.55) !important;
}

/* ──────────────────────────────────────────
   CATEGORY HERO
────────────────────────────────────────── */
.cat-hero {
  position: relative;
  padding: clamp(80px, 10vh, 120px) 24px clamp(56px, 6vh, 72px);
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
  overflow: visible;
}

/* Ambient glow — category-colored radial gradient */
.cat-hero-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--cat-glow, rgba(201,168,76,0.08)) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(80px);
  z-index: 0;
}

/* Video background — behind cat-hero content */
.cat-hero--video {
  overflow: visible;
  padding-top: clamp(40px, 5vh, 64px);
  padding-bottom: 72px;
}

.cat-hero-video-wrap {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.cat-hero-video {
  width: 100vw;
  height: 100%;
  min-width: 177.78vh;
  min-height: 56.25vw;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: none;
}

.cat-hero-video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.55) 0%,
    rgba(10,10,10,0.35) 50%,
    rgba(10,10,10,0.75) 100%
  );
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .cat-hero-video-wrap iframe { display: none; }
}

/* Icon — small, centered above eyebrow */
.cat-hero-icon-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.03);
  margin: 0 auto 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.cat-hero-icon {
  width: 22px;
  height: 22px;
  color: rgba(255,255,255,0.45);
}

.cat-hero-eyebrow {
  position: relative;
  z-index: 1;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--accent-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}

.cat-hero-title {
  position: relative;
  z-index: 1;
  font-weight: 200;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 20px;
}


.cat-hero-sub {
  position: relative;
  z-index: 1;
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 400;
  color: var(--silver);
  line-height: 1.65;
  max-width: 50ch;
  margin: 0 auto;
}

/* Feature tags — small pills showing key specs */
.cat-hero-tags {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.cat-hero-tag {
  font-size: 11px;
  font-weight: 450;
  letter-spacing: 0.02em;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.40);
  background: rgba(255,255,255,0.025);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.cat-hero-tag:hover {
  border-color: rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.60);
}

/* Gradient divider line */
.cat-hero-divider {
  max-width: 1120px;
  margin: 0 auto 48px;
  padding: 0 24px;
}

.cat-hero-divider::after {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06) 20%, rgba(255,255,255,0.06) 80%, transparent);
}

/* Category-specific glow colors */
.cat-hero--color   { --cat-glow: rgba(201,168,76,0.06); }
.cat-hero--texture { --cat-glow: rgba(180,160,130,0.05); }
.cat-hero--sound   { --cat-glow: rgba(126,200,227,0.05); }
.cat-hero--tools   { --cat-glow: rgba(201,168,76,0.05); }

/* ──────────────────────────────────────────
   FILTER / SORT BAR
────────────────────────────────────────── */
.filter-bar {
  border-top: 0.5px solid rgba(255,255,255,0.08);
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
  padding: 0 24px;
  position: sticky;
  top: var(--nav-h);
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 90;
}

.filter-bar-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.filter-bar-inner::-webkit-scrollbar { display: none; }

.filter-pill {
  flex-shrink: 0;
  height: 44px;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.40);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: color 0.2s ease-out, background 0.2s ease-out;
  background: none;
  font-family: inherit;
  white-space: nowrap;
}

.filter-pill:hover {
  color: rgba(255,255,255,0.90);
}

.filter-pill.active {
  color: rgba(255,255,255,0.90);
  background: rgba(255,255,255,0.08);
}

/* ──────────────────────────────────────────
   PRODUCT GRID
────────────────────────────────────────── */
.product-section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 24px 32px;
}

/* Bundle inside cat-section: tighter spacing, match 3-card width */
.cat-section .product-section {
  padding: 0 0 24px 0;
}

.cat-section .pcard--bundle {
  max-width: 1060px;
}

.product-section-title {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
  margin-bottom: 24px;
}

.pgrid {
  display: flex;
  overflow-x: auto;
  overflow-y: clip;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  touch-action: pan-x pan-y;
  gap: 20px;
  padding: 8px 24px 24px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.pgrid::-webkit-scrollbar { display: none; }

/* Full-bleed scroll inside category sections (like homepage bestsellers) */
.cat-section .pgrid {
  width: 100vw;
  margin-left: calc(-1 * max(24px, calc((100vw - 1120px) / 2 + 24px)));
  padding: 8px max(20px, calc((100vw - 1120px) / 2 + 24px)) 24px max(24px, calc((100vw - 1120px) / 2 + 24px));
  scroll-padding-left: max(24px, calc((100vw - 1120px) / 2 + 24px));
}

.pgrid .pcard {
  flex: 0 0 340px;
  scroll-snap-align: start;
}

.pgrid--2 .pcard { flex: 0 0 420px; }
.pgrid--4 .pcard { flex: 0 0 280px; }

/* ──────────────────────────────────────────
   PGRID SCROLL ARROWS
────────────────────────────────────────── */
.pgrid-arrows {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 16px;
}

.pgrid-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.pgrid-arrow:hover:not(:disabled) {
  background: rgba(255,255,255,0.1);
  border-color: var(--border-hover);
  color: var(--white);
}
.pgrid-arrow:disabled {
  opacity: 0.25;
  cursor: default;
}

html[data-theme="light"] .pgrid-arrow {
  background: rgba(0,0,0,0.04);
  color: rgba(0,0,0,0.5);
}
html[data-theme="light"] .pgrid-arrow:hover:not(:disabled) {
  background: rgba(0,0,0,0.08);
  color: var(--white);
}

@media (max-width: 660px) {
  .pgrid-arrow { width: 36px; height: 36px; }
}

/* ──────────────────────────────────────────
   PRODUCT CARD (collection)
────────────────────────────────────────── */
.pcard {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s ease-out, box-shadow 0.3s ease-out, transform 0.3s ease-out;
  cursor: pointer;
}

.pcard:hover {
  border-color: var(--border-hover);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  transform: translateY(-4px);
}

.pcard-thumb {
  width: 100%;
  aspect-ratio: 16/13;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.pcard-thumb-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.pcard-thumb-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.6) 100%),
              linear-gradient(to bottom, transparent 60%, rgba(17,17,17,0.8) 100%);
}

.pcard-thumb-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.04em;
}

.pcard-thumb-badge--new {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.7);
}
.pcard-thumb-badge--sale {
  background: rgba(169,17,1,0.2);
  border-color: rgba(169,17,1,0.4);
  color: #D94030;
  letter-spacing: 0.06em;
}
.pcard-thumb-badge--save {
  background: rgba(201,168,76,0.15);
  border-color: rgba(201,168,76,0.3);
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.pcard-body {
  padding: 28px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pcard-category {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
  margin-bottom: 8px;
}

.pcard-name {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.pcard-desc {
  font-size: 13px;
  color: var(--silver);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 12px;
}

.pcard-formats {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 18px;
}

.pcard-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 16px;
  margin-top: auto;
}

.pcard-price {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
}

.pcard-price sup {
  font-size: 11px;
  font-weight: 400;
  vertical-align: top;
  margin-top: 3px;
}

.pcard-cta {
  font-size: 13px;
  color: var(--gold);
  transition: color 0.15s ease;
}

.pcard:hover .pcard-cta { color: var(--amber); }

.pcard-cta[data-add-to-cart] {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all 0.2s ease;
  cursor: pointer;
}

.pcard:hover .pcard-cta[data-add-to-cart] {
  background: rgba(201, 168, 76, 0.12);
  border-color: rgba(201, 168, 76, 0.55);
  color: var(--gold);
  box-shadow: 0 2px 12px rgba(201, 168, 76, 0.15);
}

/* Bundle card (full width) */
.pcard--bundle {
  flex-direction: row;
  align-items: center;
}

.pcard--bundle .pcard-thumb {
  width: 340px;
  flex-shrink: 0;
  aspect-ratio: auto;
  min-height: 200px;
}

.pcard--bundle .pcard-body {
  flex-direction: row;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.pcard--bundle .pcard-text {
  flex: 1;
  min-width: 240px;
}

.pcard--bundle .pcard-name {
  font-size: 22px;
  font-weight: 300;
}

.pcard--bundle .pcard-footer {
  border: none;
  padding: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

/* ──────────────────────────────────────────
   COMPAT BADGES
────────────────────────────────────────── */
.compat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  margin-top: 8px;
}

.compat-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 500;
  color: rgba(255,255,255,0.35);
  background: none;
  padding: 0;
  border: none;
}

.compat-badge svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

/* ──────────────────────────────────────────
   SECTION DIVIDER
────────────────────────────────────────── */
.page-divider {
  height: 0.5px;
  background: rgba(255,255,255,0.07);
  margin: 0 24px;
}

/* ──────────────────────────────────────────
   BOTTOM CTA (bundle / all products)
────────────────────────────────────────── */
.bundle-cta {
  background: var(--surface);
  border-top: 0.5px solid rgba(255,255,255,0.08);
  padding: 80px 24px;
  text-align: center;
}

.bundle-cta-inner {
  max-width: 560px;
  margin: 0 auto;
}

.bundle-cta-title {
  font-weight: 600;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.1;
}

.bundle-cta-sub {
  font-size: 16px;
  color: var(--silver);
  margin-bottom: 32px;
  line-height: 1.55;
}

.bundle-cta-price {
  font-size: 14px;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}
.bundle-cta-price s {
  color: rgba(169,17,1,0.55);
  text-decoration: line-through;
}

.bundle-cta-price strong {
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
}

/* ──────────────────────────────────────────
   PRODUCT DETAIL PAGE
────────────────────────────────────────── */
.detail-hero {
  display: grid;
  grid-template-columns: 1fr 360px;
  column-gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}

.detail-left {
  grid-column: 1;
}

.detail-visual {
  border-radius: 20px;
  overflow: hidden;
  background: var(--surface);
  aspect-ratio: 16/10;
  position: relative;
  border: 1px solid rgba(255,255,255,0.07);
}

.detail-visual-bg {
  position: absolute;
  inset: 0;
}

.detail-sidebar {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  display: flex;
  flex-direction: column;
}

.detail-chip-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.detail-title {
  font-weight: 600;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}

.detail-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 24px;
}

.detail-price {
  font-size: 32px;
  font-weight: 500;
  color: var(--white);
}

.detail-price-original {
  font-size: 16px;
  color: rgba(169,17,1,0.5);
  text-decoration: line-through;
}

.detail-price-save {
  font-size: 13px;
  color: #6DC98A;
  background: rgba(60,180,100,0.1);
  padding: 2px 8px;
  border-radius: 100px;
}

.detail-desc {
  font-size: 15px;
  color: var(--silver);
  line-height: 1.65;
  margin-top: 24px;
  margin-bottom: 0;
}

.detail-includes {
  margin-top: 28px;
}

.detail-includes-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}

.detail-includes-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}

.detail-includes-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
}

.detail-includes-item::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent-dim);
  flex-shrink: 0;
}

.detail-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.detail-actions .cta-pill {
  width: 100%;
  justify-content: center;
  border-radius: 12px;
}

.detail-fine {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  text-align: center;
  margin-top: 10px;
}

/* Tabs */
.detail-tabs {
  max-width: 1200px;
  margin: 48px auto 0;
  padding: 0 24px;
}

.detail-tab-list {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

.detail-tab-list::-webkit-scrollbar { display: none; }

.detail-tab {
  height: 48px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.40);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: color 0.2s ease-out, background 0.2s ease-out;
  background: none;
  font-family: inherit;
  flex-shrink: 0;
  white-space: nowrap;
}

.detail-tab:hover { color: rgba(255,255,255,0.90); }
.detail-tab.active {
  color: var(--gold, #C9A84C);
  background: rgba(255,255,255,0.08);
}

.detail-tab-panels {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 64px;
  overflow-x: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* Overview grid */
.overview-grid {
  max-width: none;
}

/* Sidebar designed-for section */
.sidebar-designed-for {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

html[data-theme="light"] .sidebar-designed-for {
  border-top-color: rgba(0,0,0,0.06);
}

.detail-tab-panel { display: none; }
.detail-tab-panel.active { display: block; }

/* Spec table */
.spec-table {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  max-width: 640px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 0.5px solid rgba(255,255,255,0.06);
  gap: 16px;
}

.spec-row:last-child { border-bottom: none; }
.spec-row:nth-child(even) { background: rgba(255,255,255,0.02); }

.spec-row-label {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  flex-shrink: 0;
}

.spec-row-value {
  font-size: 13px;
  color: var(--white);
  text-align: right;
}

/* Grades gallery */
.grades-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 900px;
}

.grades-gallery-item {
  display: flex;
  flex-direction: column;
}

.grades-gallery-img {
  position: relative;
  aspect-ratio: 3 / 2;
  border-radius: 10px;
  overflow: hidden;
  background-color: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
}

.grades-gallery-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.grades-gallery-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.grades-gallery-caption {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-top: 8px;
  line-height: 1.4;
  letter-spacing: 0.01em;
}

@media (max-width: 768px) {
  .grades-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .grades-gallery { grid-template-columns: 1fr; }
}

/* Product Moodboard — full-bleed lego grid, no gaps, sharp corners */
#productMoodboard {
  margin-top: 80px;
  margin-bottom: 48px;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}

#productMoodboard:empty {
  display: none;
}

.moodboard-header {
  max-width: 1120px;
  margin: 0 auto 24px;
  padding: 0 24px;
}

.moodboard-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.moodboard-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
}

.moodboard {
  columns: 3;
  column-gap: 0;
}

.moodboard-item {
  position: relative;
  overflow: hidden;
  break-inside: avoid;
  text-decoration: none;
  display: block;
  cursor: pointer;
}
.moodboard-item--static {
  cursor: zoom-in;
  overflow: hidden;
}

.moodboard-item img {
  width: 100%;
  height: auto;
  display: block;
}

.moodboard-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 40%);
  display: flex;
  align-items: flex-end;
  padding: 14px 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.moodboard-item:hover .moodboard-overlay {
  opacity: 1;
}

.moodboard-overlay-label {
  font-size: 11px;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.02em;
}

/* Magnifying Glass Lens */
.moodboard-item--static.is-zooming {
  cursor: none;
}

.moodboard-lens-wrap {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10;
  will-change: transform;
}

.moodboard-lens {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  border: 1.5px solid rgba(255,255,255,0.25);
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.08),
    0 8px 32px rgba(0,0,0,0.35),
    0 2px 8px rgba(0,0,0,0.2),
    inset 0 0 0 1px rgba(255,255,255,0.06);
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(0.88);
  transition: opacity 0.15s ease, transform 0.2s var(--ease-out);
}

.moodboard-lens-wrap.is-active .moodboard-lens {
  opacity: 1;
  transform: scale(1);
}

.moodboard-lens-label {
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--silver);
  white-space: nowrap;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(0,0,0,0.5);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease 0.1s;
}

.moodboard-lens-wrap.is-active .moodboard-lens-label {
  opacity: 1;
}

/* Hide overlay when zooming */
.moodboard-item--static.is-zooming .moodboard-overlay {
  opacity: 0 !important;
}

@media (max-width: 768px) {
  .moodboard { columns: 2; }
  .moodboard-lens { width: 130px; height: 130px; }
}
@media (max-width: 480px) {
  .moodboard { columns: 1; }
  .moodboard-lens { width: 120px; height: 120px; }
}

/* Touch devices: hide lens cursor hint */
@media (hover: none) {
  .moodboard-item--static,
  .moodboard-item--static img {
    cursor: default;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    touch-action: pan-y;
  }
  .moodboard-lens-wrap {
    transition: transform 0.15s var(--ease-out);
  }
}

/* ──────────────────────────────────────────
   AI TOOLS PAGE
────────────────────────────────────────── */
.ai-hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 40px) 24px 80px;
  position: relative;
  overflow: hidden;
}

.ai-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(44,104,219,0.09) 0%, transparent 65%),
              radial-gradient(ellipse at 50% 100%, rgba(255,255,255,0.02) 0%, transparent 60%);
}

/* API pricing tiers */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.2s ease;
}

.pricing-card:hover {
  border-color: var(--border-hover);
}

.pricing-card--featured {
  border-color: rgba(255,255,255,0.15);
  background: linear-gradient(135deg, #151515 0%, #111111 60%);
}

.pricing-featured-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #000;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: 0 0 10px 10px;
}

.pricing-tier {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 16px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}

.pricing-amount {
  font-size: 38px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--white);
}

.pricing-unit {
  font-size: 13px;
  color: var(--silver);
}

.pricing-desc {
  font-size: 13px;
  color: var(--silver);
  line-height: 1.55;
  margin-bottom: 24px;
}

.pricing-divider {
  height: 0.5px;
  background: rgba(255,255,255,0.07);
  margin: 0 0 20px;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  margin-bottom: 28px;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}

.pricing-feature-check {
  color: var(--accent-dim);
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 12px;
}

.pricing-feature-check--dim {
  color: rgba(255,255,255,0.2);
}

/* ──────────────────────────────────────────
   VAULT PAGE
────────────────────────────────────────── */
.vault-hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 60px) 24px 80px;
  position: relative;
  overflow: hidden;
}

.vault-hero-title {
  font-weight: 600;
  font-size: clamp(56px, 10vw, 140px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 20px 0;
}

.vault-hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 400;
  color: var(--silver);
  max-width: 50ch;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* ──────────────────────────────────────────
   RESPONSIVE
────────────────────────────────────────── */
@media (max-width: 900px) {
  .pgrid {
    gap: 16px;
  }

  .cat-section .pgrid {
    width: 100vw;
    margin-left: 0;
    padding: 8px calc(100vw - 320px - 24px) 24px 24px;
    scroll-padding-left: 24px;
  }

  .pgrid .pcard {
    flex: 0 0 320px;
  }

  .pgrid--2 .pcard { flex: 0 0 340px; }
  .pgrid--4 .pcard { flex: 0 0 260px; }

  /* Bundle card — same size as regular cards in carousel */
  .pcard--bundle {
    flex: 0 0 320px;
    flex-direction: column;
  }

  .pcard--bundle .pcard-thumb {
    width: 100%;
    min-height: 140px;
  }

  .pcard--bundle .pcard-name {
    font-size: 17px;
  }

  /* Category / product sections: remove side padding so carousel goes edge-to-edge */
  .cat-section,
  .product-section {
    padding-left: 0;
    padding-right: 0;
  }

  .cat-section-title,
  .cat-section-subtitle,
  .product-section-title {
    padding-left: 24px;
    padding-right: 24px;
  }

  .detail-hero {
    grid-template-columns: 1fr;
  }

  /* Break containers so children become direct grid items for reorder */
  .detail-left,
  .detail-sidebar {
    display: contents;
  }

  /* Mobile order: title → photo → swatches → format → compat → app note → tags → CTA → tabs */
  .detail-hero              { gap: 0; }
  .detail-title             { order: 1; margin-bottom: 6px; }
  .product-social-proof     { order: 2; margin-bottom: 16px; }
  .detail-visual            { order: 3; margin-bottom: 16px; }
  .grade-swatches-row       { order: 4; margin-bottom: 4px; }
  [data-i18n="product.swatchHint"] { order: 5; margin-bottom: 16px; }
  .format-selector          { order: 6; margin-bottom: 16px; }
  .sound-mini-players       { order: 7; }
  .compat-row               { order: 8; margin-bottom: 12px; }
  .product-app-note         { order: 9; margin-bottom: 16px; }
  .detail-chip-row          { order: 10; margin-bottom: 20px; }
  .product-trust-badge      { order: 11; }
  .detail-actions           { order: 12; }
  .free-gate                { order: 13; }
  .detail-fine              { order: 14; }

  /* Mobilde gizle: designed-for, açıklama, whats included */
  .sidebar-designed-for     { display: none; }
  .detail-desc              { display: none; }
  .detail-includes          { display: none; }

  .detail-includes-list {
    grid-template-columns: 1fr;
  }

  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
}

@media (max-width: 600px) {
  .pgrid { padding-right: calc(100vw - 300px - 24px); }
  .pgrid .pcard { flex: 0 0 300px; }
  .pgrid--2 .pcard { flex: 0 0 300px; }
  .pgrid--4 .pcard { flex: 0 0 240px; }
  .pgrid--4 { padding-right: calc(100vw - 240px - 24px); }
  .pcard--bundle { flex: 0 0 300px; }
  .pcard--bundle .pcard-thumb { min-height: 120px; }

  .cat-hero { padding: 64px 20px 44px; }
  .cat-hero--video { padding-top: 40px; padding-bottom: 56px; }
  .cat-hero-glow { width: 360px; height: 300px; top: -80px; }
  .cat-hero-icon-wrap { width: 36px; height: 36px; border-radius: 10px; margin-bottom: 16px; }
  .cat-hero-icon { width: 18px; height: 18px; }
  .cat-hero-title { font-size: 36px; font-weight: 300; }
  .cat-hero-tags { gap: 6px; margin-top: 22px; }
  .cat-hero-tag { font-size: 10px; padding: 5px 11px; }
}

/* ──────────────────────────────────────────
   FORMAT SELECTOR (video product detail)
────────────────────────────────────────── */
.format-selector { margin-bottom: 28px; }

.format-selector-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 12px;
}

.format-options { display: flex; gap: 10px; }

.format-option {
  flex: 1;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 16px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
  text-align: left;
  font-family: inherit;
  color: inherit;
}

.format-option:hover {
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
}

.format-option.active {
  border-color: var(--gold);
  background: rgba(201,168,76,0.06);
}

.format-option-label {
  font-size: 14px;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 4px;
}

.format-option-sub {
  font-size: 11px;
  color: var(--silver);
  margin-bottom: 8px;
}

.format-option-price {
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
}

@media (max-width: 500px) {
  .format-options { flex-direction: row; }
  .format-option { padding: 12px; }
  .format-option-price { font-size: 15px; }
}

/* ──────────────────────────────────────────
   PHOTO GRID (photo product detail)
────────────────────────────────────────── */
.detail-visual--photo { padding: 0; }

.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border-radius: 18px;
  overflow: hidden;
}

.photo-grid-cell {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.photo-grid-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ──────────────────────────────────────────
   SECTION NAVIGATOR (color.html jump links)
────────────────────────────────────────── */
.section-nav-sentinel {
  height: 0;
  visibility: hidden;
  pointer-events: none;
}
.section-nav-spacer {
  margin-bottom: 48px;
}

/* ── Non-stuck: minimal pill tabs ── */
.section-nav {
  position: relative;
  z-index: 89;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  margin-bottom: 48px;
}

.section-nav-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 10px 28px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.45);
  border-radius: 100px;
  background: transparent;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.25s ease, background 0.25s ease;
}

.section-nav-tile:hover {
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.06);
}

.section-nav-tile.active {
  color: var(--white);
  background: var(--surface);
}
.section-nav-tile.active .section-nav-title {
  color: var(--white);
}
.section-nav-tile.active .section-nav-count {
  color: rgba(201,168,76,0.65);
}

.section-nav-title {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

.section-nav-desc {
  display: none;
}
.section-nav-count {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.25);
}

/* ── Stuck: fixed compact bar ── */
.section-nav--stuck {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  margin-bottom: 0;
  padding: 6px 24px;
  gap: 2px;
  background: rgba(0,0,0,0.80);
  backdrop-filter: saturate(150%) blur(16px);
  -webkit-backdrop-filter: saturate(150%) blur(16px);
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
}

.section-nav--stuck .section-nav-tile {
  flex-direction: row;
  font-size: 12px;
  padding: 5px 14px;
  gap: 0;
}
.section-nav--stuck .section-nav-count {
  display: none;
}
.section-nav--stuck .section-nav-tile:hover {
  background: rgba(255,255,255,0.06);
}
.section-nav--stuck .section-nav-tile.active {
  background: var(--surface);
}

/* ── Mobile ── */
@media (max-width: 600px) {
  .section-nav { gap: 2px; padding: 10px 12px; }
  .section-nav-tile { font-size: 12px; padding: 8px 16px; gap: 2px; }
  .section-nav-count { font-size: 9px; }
  .section-nav--stuck { padding: 6px 12px; }
  .section-nav--stuck .section-nav-tile { padding: 5px 10px; font-size: 11px; gap: 0; }
  .section-nav--stuck .section-nav-count { display: none; }
}

/* ──────────────────────────────────────────
   CATEGORY SECTION TITLES (color.html)
────────────────────────────────────────── */
.cat-section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px 48px;
  scroll-margin-top: calc(var(--nav-h) + 60px);
}

.cat-section-subtitle[id] {
  scroll-margin-top: calc(var(--nav-h) + 60px);
}

/* Section header with gold left accent */
.cat-section-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-left: 24px;
}

.cat-section-header::before {
  content: '';
  width: 3px;
  height: 28px;
  border-radius: 2px;
  background: var(--gold, #C9A84C);
  flex-shrink: 0;
}

.cat-section-header-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
}

.cat-section-header-count {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.35);
  margin-left: auto;
  padding-right: 24px;
}

html[data-theme="light"] .cat-section-header-title { color: var(--base); }
html[data-theme="light"] .cat-section-header-count { color: rgba(0,0,0,0.35); }

.cat-section-title {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
  margin-bottom: 32px;
}

.cat-section-subtitle {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
  margin-bottom: 20px;
  margin-top: 40px;
}

.cat-section-subtitle:first-child { margin-top: 0; }

/* ── Section filtering (tab show/hide) ── */
.cat-section[data-section] {
  display: none;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.cat-section[data-section].cat-section--visible {
  opacity: 1;
  transform: none;
}

/* ── Tabbed sections: horizontal scroll (same as other category pages) ── */

/* ── Showcase gallery (full-bleed 3-column masonry like Visual Archive) ── */
.cat-section .showcase {
  display: block;
  align-items: initial;
  overflow: visible;
  padding: 48px 0 48px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  transform: none;
}
.showcase-header {
  display: block;
  max-width: 1120px;
  margin: 0 auto 24px;
  padding: 0 24px;
}
.showcase-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.showcase-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin: 0;
}
.showcase-track {
  columns: 3;
  column-gap: 0;
}
.showcase-track:empty { display: none; }

.showcase-slide {
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  cursor: pointer;
  break-inside: avoid;
}
.showcase-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  background: var(--surface);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.showcase-slide:hover img {
  transform: scale(1.015);
}
/* hover overlay */
.showcase-slide::after {
  content: attr(data-hover-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 14px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 40%);
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.showcase-slide:hover::after {
  opacity: 1;
}
.showcase-caption {
  display: none;
}
@media (max-width: 768px) {
  .showcase-track { columns: 2; }
}
@media (max-width: 480px) {
  .showcase-track { columns: 1; }
  .showcase { padding-top: 32px; }
}

html[data-theme="light"] .showcase-slide::after { background: linear-gradient(to top, rgba(255,255,255,0.5) 0%, transparent 40%); color: #111; }
html[data-theme="light"] .showcase-title { color: var(--text); }

/* ──────────────────────────────────────────
   LIGHT THEME OVERRIDES
────────────────────────────────────────── */
html[data-theme="light"] .breadcrumb a,
html[data-theme="light"] .breadcrumb span {
  color: rgba(0,0,0,0.35);
}
html[data-theme="light"] .breadcrumb a:hover { color: rgba(0,0,0,0.7); }
html[data-theme="light"] .breadcrumb-sep { color: rgba(0,0,0,0.2); }
html[data-theme="light"] .breadcrumb-current { color: rgba(0,0,0,0.55) !important; }

html[data-theme="light"] .filter-bar {
  border-top-color: rgba(0,0,0,0.08);
  border-bottom-color: rgba(0,0,0,0.08);
  background: #fff;
}
html[data-theme="light"] .filter-pill { color: rgba(0,0,0,0.40); }
html[data-theme="light"] .filter-pill:hover { color: rgba(0,0,0,0.80); }
html[data-theme="light"] .filter-pill.active {
  color: rgba(0,0,0,0.85);
  background: rgba(0,0,0,0.06);
}

html[data-theme="light"] .product-section-title { color: rgba(0,0,0,0.40); }

html[data-theme="light"] .pcard {
  border-color: rgba(0,0,0,0.10);
}
html[data-theme="light"] .pcard:hover {
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
html[data-theme="light"] .pcard-category { color: rgba(0,0,0,0.40); }
html[data-theme="light"] .pcard-formats { color: rgba(0,0,0,0.35); }
html[data-theme="light"] .pcard-footer { border-top-color: rgba(0,0,0,0.10); }
html[data-theme="light"] .pcard-cta[data-add-to-cart] { border-color: rgba(201, 168, 76, 0.2); }
html[data-theme="light"] .pcard:hover .pcard-cta[data-add-to-cart] { background: rgba(201, 168, 76, 0.06); border-color: rgba(201, 168, 76, 0.35); }
html[data-theme="light"] .pcard-thumb-badge {
  background: rgba(255,255,255,0.75);
  border-color: rgba(0,0,0,0.10);
  color: rgba(0,0,0,0.60);
}
html[data-theme="light"] .pcard-thumb-badge--new {
  background: rgba(0,0,0,0.06);
  border-color: rgba(0,0,0,0.12);
  color: rgba(0,0,0,0.65);
}

html[data-theme="light"] .compat-badge {
  color: rgba(0,0,0,0.45);
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.08);
}
html[data-theme="light"] .page-divider { background: rgba(0,0,0,0.07); }
html[data-theme="light"] .bundle-cta { border-top-color: rgba(0,0,0,0.08); }
html[data-theme="light"] .bundle-cta-price { color: rgba(0,0,0,0.35); }

html[data-theme="light"] .detail-visual { border-color: rgba(0,0,0,0.08); }
html[data-theme="light"] .detail-includes-title { color: rgba(0,0,0,0.35); }
html[data-theme="light"] .detail-includes-item { color: rgba(0,0,0,0.60); }
html[data-theme="light"] .detail-fine { color: rgba(0,0,0,0.30); }
html[data-theme="light"] .detail-tabs { border-bottom: none; }
html[data-theme="light"] .detail-tab-panels { border-bottom-color: rgba(0,0,0,0.06); }
html[data-theme="light"] .reviews-inner { border-top-color: rgba(0,0,0,0.06); }
html[data-theme="light"] .detail-tab { color: rgba(0,0,0,0.40); }
html[data-theme="light"] .detail-tab:hover { color: rgba(0,0,0,0.80); }
html[data-theme="light"] .detail-tab.active {
  color: var(--gold, #C9A84C);
  background: rgba(0,0,0,0.06);
}

html[data-theme="light"] .spec-table { border-color: rgba(0,0,0,0.08); }
html[data-theme="light"] .spec-row { border-bottom-color: rgba(0,0,0,0.06); }
html[data-theme="light"] .spec-row:nth-child(even) { background: rgba(0,0,0,0.02); }
html[data-theme="light"] .spec-row-label { color: rgba(0,0,0,0.45); }
html[data-theme="light"] .grades-gallery-caption { color: rgba(0,0,0,0.40); }
html[data-theme="light"] .grades-gallery-img { background-color: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.08); }
html[data-theme="light"] .moodboard-title { color: var(--text); }

html[data-theme="light"] .pricing-card { border-color: rgba(0,0,0,0.08); }
html[data-theme="light"] .pricing-card--featured {
  border-color: rgba(0,0,0,0.12);
  background: linear-gradient(135deg, #E6E6E6 0%, #EBEBEB 60%);
}
html[data-theme="light"] .pricing-divider { background: rgba(0,0,0,0.07); }
html[data-theme="light"] .pricing-feature { color: rgba(0,0,0,0.55); }
html[data-theme="light"] .pricing-feature-check--dim { color: rgba(0,0,0,0.20); }

html[data-theme="light"] .format-selector-title { color: rgba(0,0,0,0.35); }
html[data-theme="light"] .format-option {
  background: rgba(0,0,0,0.02);
  border-color: rgba(0,0,0,0.10);
}
html[data-theme="light"] .format-option:hover {
  border-color: rgba(0,0,0,0.18);
  background: rgba(0,0,0,0.03);
}
html[data-theme="light"] .format-option.active {
  border-color: var(--white);
  background: rgba(0,0,0,0.03);
}

html[data-theme="light"] .section-nav-tile {
  color: rgba(0,0,0,0.45);
}
html[data-theme="light"] .section-nav-count { color: rgba(0,0,0,0.25); }
html[data-theme="light"] .section-nav-tile:hover {
  color: rgba(0,0,0,0.85);
  background: rgba(0,0,0,0.05);
}
html[data-theme="light"] .section-nav-tile.active {
  color: var(--base);
  background: var(--surface);
}
html[data-theme="light"] .section-nav-tile.active .section-nav-title {
  color: var(--base);
}
html[data-theme="light"] .section-nav-tile.active .section-nav-count {
  color: rgba(139,114,48,0.55);
}
html[data-theme="light"] .section-nav--stuck {
  background: rgba(255,255,255,0.80);
  border-bottom-color: rgba(0,0,0,0.08);
}
html[data-theme="light"] .section-nav--stuck .section-nav-tile:hover {
  background: rgba(0,0,0,0.05);
}
html[data-theme="light"] .section-nav--stuck .section-nav-tile.active {
  background: var(--surface);
}

html[data-theme="light"] .cat-hero-glow { opacity: 0.5; }
html[data-theme="light"] .cat-hero-icon-wrap {
  border-color: rgba(0,0,0,0.06);
  background: rgba(0,0,0,0.025);
}
html[data-theme="light"] .cat-hero-tag {
  border-color: rgba(0,0,0,0.08);
  color: rgba(0,0,0,0.40);
  background: rgba(0,0,0,0.02);
}
html[data-theme="light"] .cat-hero-tag:hover {
  border-color: rgba(0,0,0,0.14);
  color: rgba(0,0,0,0.60);
}
html[data-theme="light"] .cat-hero-divider::after {
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.06) 20%, rgba(0,0,0,0.06) 80%, transparent);
}
html[data-theme="light"] .cat-hero--color   { --cat-glow: rgba(201,168,76,0.08); }
html[data-theme="light"] .cat-hero--texture { --cat-glow: rgba(140,120,90,0.06); }
html[data-theme="light"] .cat-hero--sound   { --cat-glow: rgba(100,170,200,0.07); }
html[data-theme="light"] .cat-hero--tools   { --cat-glow: rgba(201,168,76,0.06); }

html[data-theme="light"] .cat-section-title {
  color: rgba(0,0,0,0.40);
}
html[data-theme="light"] .cat-section-subtitle { color: rgba(0,0,0,0.40); }

/* ──────────────────────────────────────────
   AUDIO PREVIEW SECTION
────────────────────────────────────────── */
.audio-preview-section {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px 64px;
}

.audio-preview-header {
  text-align: center;
  margin-bottom: 40px;
}

.audio-preview-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #7EC8E3;
  display: block;
  margin-bottom: 12px;
}

.audio-preview-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 10px;
}

.audio-preview-sub {
  font-size: 16px;
  color: var(--silver);
  line-height: 1.5;
}

/* Sample list */
.audio-samples {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.audio-sample {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.audio-sample:hover {
  background: var(--surface-hover);
  border-color: var(--border-hover);
}

/* Play button */
.audio-sample-play {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
  color: var(--white);
}

.audio-sample-play:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.18);
}

.audio-sample-play:active {
  transform: scale(0.94);
}

.audio-sample.is-playing .audio-sample-play {
  background: rgba(126,200,227,0.12);
  border-color: rgba(126,200,227,0.3);
  color: #7EC8E3;
}

/* Play/Pause icon toggle */
.audio-icon--pause { display: none; }
.audio-sample.is-playing .audio-icon--play { display: none; }
.audio-sample.is-playing .audio-icon--pause { display: block; }

/* Info */
.audio-sample-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 130px;
  flex-shrink: 0;
}

.audio-sample-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
}

.audio-sample-meta {
  font-size: 11px;
  color: var(--silver);
}

/* Waveform */
.audio-sample-wave {
  flex: 1;
  height: 32px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 4px;
}

.audio-wave-bars {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 100%;
  width: 100%;
}

.audio-wave-bar {
  flex: 1;
  background: rgba(255,255,255,0.12);
  border-radius: 1px;
  min-width: 2px;
  transition: background 0.1s ease;
}

.audio-wave-bar.is-played {
  background: rgba(126,200,227,0.5);
}

.audio-wave-progress {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: rgba(126,200,227,0.08);
  border-radius: 4px;
  transition: width 0.1s linear;
}

/* Duration */
.audio-sample-dur {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  flex-shrink: 0;
  min-width: 28px;
  text-align: right;
}

/* Product detail audio samples */
.product-audio-samples {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px 48px;
}

.product-audio-header {
  margin-bottom: 20px;
}

.product-audio-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #7EC8E3;
  display: block;
  margin-bottom: 6px;
}

.product-audio-title {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--white);
}

/* Light theme */
html[data-theme="light"] .product-audio-eyebrow { color: #2E6B8A; }
html[data-theme="light"] .audio-preview-eyebrow { color: #2E6B8A; }
html[data-theme="light"] .audio-sample { background: rgba(0,0,0,0.02); }
html[data-theme="light"] .audio-sample-play { background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.1); }
html[data-theme="light"] .audio-sample.is-playing .audio-sample-play { background: rgba(46,107,138,0.1); border-color: rgba(46,107,138,0.25); color: #2E6B8A; }
html[data-theme="light"] .audio-wave-bar { background: rgba(0,0,0,0.1); }
html[data-theme="light"] .audio-wave-bar.is-played { background: rgba(46,107,138,0.4); }
html[data-theme="light"] .audio-sample-dur { color: rgba(0,0,0,0.3); }

/* Responsive */
@media (max-width: 660px) {
  .audio-sample {
    flex-wrap: wrap;
    gap: 10px;
  }
  .audio-sample-wave {
    order: 4;
    width: 100%;
    flex: none;
  }
  .audio-sample-info {
    min-width: 0;
    flex: 1;
  }
}

/* ──────────────────────────────────────────
   SOUND PRODUCT — VISUAL + MINI PLAYERS
────────────────────────────────────────── */
.detail-visual--sound {
  aspect-ratio: 16/10;
}

.sound-visual-bg {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.sound-visual-icon {
  opacity: 0.6;
}

.sound-visual-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.25);
}

.sound-mini-players {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 12px;
}

.mini-player {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.mini-player:hover {
  background: rgba(255,255,255,0.06);
}

.mini-player.is-playing {
  border-color: rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
}

.mini-player-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.mini-player:hover .mini-player-btn {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
}

.mini-player.is-playing .mini-player-btn {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

.mini-player-icon { display: block; }
.mini-player-icon--pause { display: none; }
.mini-player.is-playing .mini-player-icon--play { display: none; }
.mini-player.is-playing .mini-player-icon--pause { display: block; }

.mini-player-name {
  flex: 1;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.70);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mini-player.is-playing .mini-player-name {
  color: var(--white);
}

.mini-player-dur {
  font-size: 11px;
  color: rgba(255,255,255,0.30);
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}

/* Light theme */
html[data-theme="light"] .sound-visual-label { color: rgba(0,0,0,0.25); }
html[data-theme="light"] .mini-player { background: rgba(0,0,0,0.02); border-color: rgba(0,0,0,0.06); }
html[data-theme="light"] .mini-player:hover { background: rgba(0,0,0,0.04); }
html[data-theme="light"] .mini-player.is-playing { background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.12); }
html[data-theme="light"] .mini-player-btn { background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.1); color: rgba(0,0,0,0.5); }
html[data-theme="light"] .mini-player-name { color: rgba(0,0,0,0.60); }
html[data-theme="light"] .mini-player.is-playing .mini-player-name { color: rgba(0,0,0,0.85); }
html[data-theme="light"] .mini-player-dur { color: rgba(0,0,0,0.30); }

/* ──────────────────────────────────────────
   CARD MINI AUDIO PLAYER
────────────────────────────────────────── */
.pcard-mini-player {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  margin: 8px 0 4px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  cursor: default;
}

.pcard-mini-player .audio-sample-play {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
  color: var(--white);
}

.pcard-mini-player .audio-sample-play:hover {
  background: rgba(201,168,76,0.12);
  border-color: rgba(201,168,76,0.25);
  color: var(--gold);
}

.pcard-mini-player.is-playing .audio-sample-play {
  background: rgba(201,168,76,0.15);
  border-color: rgba(201,168,76,0.35);
  color: var(--gold);
}

.pcard-mini-player .audio-sample-wave {
  flex: 1;
  height: 20px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 3px;
}

.pcard-mini-player .audio-wave-bar.is-played {
  background: rgba(201,168,76,0.5);
}

.pcard-mini-player .audio-wave-progress {
  background: rgba(201,168,76,0.06);
}

.pcard-mini-player .audio-sample-dur {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  flex-shrink: 0;
}

/* Mini player light theme */
html[data-theme="light"] .pcard-mini-player {
  background: rgba(0,0,0,0.02);
  border-color: rgba(0,0,0,0.06);
}
html[data-theme="light"] .pcard-mini-player .audio-sample-play {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.1);
  color: var(--text);
}
html[data-theme="light"] .pcard-mini-player .audio-sample-play:hover {
  background: rgba(201,168,76,0.1);
  border-color: rgba(201,168,76,0.25);
  color: #9A8030;
}
html[data-theme="light"] .pcard-mini-player.is-playing .audio-sample-play {
  background: rgba(201,168,76,0.12);
  border-color: rgba(201,168,76,0.3);
  color: #9A8030;
}
html[data-theme="light"] .pcard-mini-player .audio-wave-bar.is-played {
  background: rgba(201,168,76,0.45);
}
html[data-theme="light"] .pcard-mini-player .audio-sample-dur {
  color: rgba(0,0,0,0.3);
}

/* ──────────────────────────────────────────
   FREE PACK BADGE + EMAIL GATE
────────────────────────────────────────── */
.pcard-thumb-badge--free {
  background: rgba(201,168,76,0.18);
  color: var(--gold);
  font-weight: 600;
}

.free-gate {
  margin-top: 16px;
  padding: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 12px;
}

.free-gate__title {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
}

.free-gate__input {
  width: 100%;
  padding: 10px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: var(--white);
  font-size: 14px;
  font-family: inherit;
  margin-bottom: 10px;
  transition: border-color 0.15s ease;
}

.free-gate__input:focus {
  outline: none;
  border-color: var(--gold);
}

.free-gate__input::placeholder {
  color: rgba(255,255,255,0.25);
}

.free-gate__submit {
  width: 100%;
  cursor: pointer;
}

.free-gate__msg {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  margin-top: 8px;
  text-align: center;
}

/* Light theme */
html[data-theme="light"] .free-gate {
  background: rgba(0,0,0,0.02);
  border-color: rgba(201,168,76,0.15);
}
html[data-theme="light"] .free-gate__input {
  background: rgba(0,0,0,0.03);
  border-color: rgba(0,0,0,0.1);
  color: var(--text);
}
html[data-theme="light"] .free-gate__input::placeholder {
  color: rgba(0,0,0,0.25);
}
html[data-theme="light"] .free-gate__msg {
  color: rgba(0,0,0,0.3);
}

/* ──────────────────────────────────────────
   PRODUCT SOCIAL PROOF (rating + downloads)
   Rendered by product-init.js below .detail-title
────────────────────────────────────────── */
.product-social-proof {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  margin-bottom: 14px;
  font-size: 12px;
  line-height: 1;
}

.product-social-proof__stars {
  color: var(--gold);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.product-social-proof__sep {
  color: rgba(255,255,255,0.20);
  font-size: 11px;
  user-select: none;
}

.product-social-proof__downloads {
  color: rgba(255,255,255,0.45);
  font-size: 12px;
}

/* ──────────────────────────────────────────
   PRODUCT TRUST BADGE
   Rendered by product-init.js before .detail-actions
────────────────────────────────────────── */
.product-trust-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 14px;
  padding: 0;
  background: none;
  border: none;
  width: fit-content;
}

.product-trust-badge__icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  color: var(--gold);
  opacity: 0.85;
}

.product-trust-badge__text {
  font-size: 12px;
  color: rgba(255,255,255,0.52);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

/* Light theme overrides */
html[data-theme="light"] .product-social-proof__sep {
  color: rgba(0,0,0,0.18);
}
html[data-theme="light"] .product-social-proof__downloads {
  color: rgba(0,0,0,0.42);
}
html[data-theme="light"] .product-trust-badge {
  background: rgba(168,135,46,0.07);
  border-color: rgba(168,135,46,0.18);
}
html[data-theme="light"] .product-trust-badge__text {
  color: rgba(0,0,0,0.48);
}

/* Responsive */
@media (max-width: 480px) {
  .product-trust-badge {
    width: 100%;
  }
  .product-trust-badge__text {
    white-space: normal;
  }
}

/* ──────────────────────────────────────────
   COLOR PALETTE STRIP
   Rendered by product-init.js before .compat-row
────────────────────────────────────────── */
.color-palette-strip {
  margin-bottom: 20px;
}

.color-palette-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
}

.color-palette-bar {
  display: flex;
  gap: 10px;
}

.color-palette-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.color-palette-block {
  width: 100%;
  height: 32px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.06);
}

.color-palette-label {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.02em;
}

html[data-theme="light"] .color-palette-title {
  color: var(--text);
}
html[data-theme="light"] .color-palette-block {
  border-color: rgba(0,0,0,0.08);
}
html[data-theme="light"] .color-palette-label {
  color: rgba(0,0,0,0.35);
}

/* ──────────────────────────────────────────
   PRODUCT APP NOTE
   Rendered by product-init.js after .detail-includes-list
────────────────────────────────────────── */
.product-app-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.50);
  line-height: 1.45;
}

.product-app-note__icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  color: rgba(255,255,255,0.30);
}

.product-app-note strong {
  color: var(--white);
  font-weight: 500;
}

html[data-theme="light"] .product-app-note {
  background: rgba(0,0,0,0.02);
  border-color: rgba(0,0,0,0.06);
  color: rgba(0,0,0,0.45);
}
html[data-theme="light"] .product-app-note__icon {
  color: rgba(0,0,0,0.25);
}
html[data-theme="light"] .product-app-note strong {
  color: var(--text);
}

/* ── Touch devices: disable hover transforms ── */
@media (hover: none) {
  .pcard:hover {
    transform: none;
    box-shadow: none;
    border-color: rgba(255,255,255,0.10);
  }
}

/* ═══════════════════════════════════════════════════════════════
   Texture Preview — Interactive overlay demo
   ═══════════════════════════════════════════════════════════════ */

.tex-preview {
  max-width: 960px;
  margin: 0 auto 56px;
  padding: 0 20px;
}

.tex-preview--large {
  max-width: 1120px;
  margin-top: 24px;
  margin-bottom: 72px;
  padding: 0 24px;
}

.tex-preview-stage {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md, 16px);
  overflow: hidden;
  background: #0a0a0a;
}

.tex-preview-stage img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tex-preview-stage video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.tex-preview-stage video.active {
  opacity: 1;
}

.tex-preview-stage video[data-blend="overlay"] {
  mix-blend-mode: overlay;
}

.tex-preview-stage video[data-blend="screen"] {
  mix-blend-mode: screen;
}

.tex-preview-controls {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.tex-preview-pill {
  padding: 8px 18px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
  -webkit-user-select: none;
}

.tex-preview-pill:hover {
  border-color: rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.06);
}

.tex-preview-pill.active {
  border-color: var(--gold, #C9A84C);
  color: var(--gold, #C9A84C);
  background: rgba(201,168,76,0.08);
  box-shadow: 0 0 12px rgba(201,168,76,0.10);
}

.tex-preview-hint {
  text-align: center;
  margin-top: 14px;
  font-size: 12px;
  color: rgba(255,255,255,0.32);
  letter-spacing: 0.01em;
}

/* Light theme */
html[data-theme="light"] .tex-preview-pill {
  border-color: rgba(0,0,0,0.12);
  background: rgba(0,0,0,0.03);
  color: rgba(0,0,0,0.50);
}
html[data-theme="light"] .tex-preview-pill:hover {
  border-color: rgba(0,0,0,0.22);
  color: rgba(0,0,0,0.70);
  background: rgba(0,0,0,0.05);
}
html[data-theme="light"] .tex-preview-pill.active {
  border-color: var(--gold, #C9A84C);
  color: #8a7230;
  background: rgba(201,168,76,0.08);
}
html[data-theme="light"] .tex-preview-hint {
  color: rgba(0,0,0,0.32);
}

/* Responsive */
@media (max-width: 600px) {
  .tex-preview {
    margin-bottom: 40px;
    padding: 0 16px;
  }
  .tex-preview-controls {
    gap: 8px;
  }
  .tex-preview-pill {
    padding: 7px 14px;
    font-size: 12px;
  }
}

/* Reduced motion: hide video overlays */
@media (prefers-reduced-motion: reduce) {
  .tex-preview-stage video {
    display: none;
  }
}

/* ──────────────────────────────────────────
   FAQ PAGE
────────────────────────────────────────── */
.faq-section {
  margin-bottom: 32px;
}

.faq-heading {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  list-style: none;
  transition: color 0.15s ease;
}

.faq-q::-webkit-details-marker { display: none; }
.faq-q::marker { display: none; content: ''; }

.faq-q::after {
  content: '+';
  flex-shrink: 0;
  margin-left: 16px;
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
  transition: transform 0.2s ease, color 0.2s ease;
}

.faq-item[open] .faq-q::after {
  content: '−';
  color: var(--gold);
}

.faq-q:hover {
  color: #fff;
}

.faq-a {
  padding: 0 0 18px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
}

/* ── FAQ light theme ── */
html[data-theme="light"] .faq-heading {
  color: rgba(0,0,0,0.4);
  border-bottom-color: rgba(0,0,0,0.08);
}
html[data-theme="light"] .faq-item {
  border-bottom-color: rgba(0,0,0,0.08);
}
html[data-theme="light"] .faq-q {
  color: rgba(0,0,0,0.8);
}
html[data-theme="light"] .faq-q::after {
  color: rgba(0,0,0,0.25);
}
html[data-theme="light"] .faq-q:hover {
  color: #000;
}
html[data-theme="light"] .faq-a {
  color: rgba(0,0,0,0.5);
}

/* ──────────────────────────────────────────
   PRODUCT REVIEWS
────────────────────────────────────────── */
.reviews-section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px 64px;
}

.reviews-inner {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 48px;
}

/* When moodboard is empty (texture/sound products), tab-panels border-bottom
   and reviews-inner border-top sit adjacent — remove the duplicate */
#productMoodboard:empty + .reviews-section .reviews-inner {
  border-top: none;
}

.reviews-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.reviews-title {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
}

.reviews-summary {
  display: flex;
  align-items: center;
  gap: 8px;
}

.reviews-avg {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

.reviews-stars {
  display: flex;
  gap: 1px;
}

.reviews-count {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.review-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 20px;
}

.review-card-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}

.review-star {
  font-size: 13px;
  color: rgba(255,255,255,0.15);
}

.review-star--filled {
  color: var(--gold);
}

.review-card-text {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}

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

.review-card-name {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
}

.review-card-role {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

.review-card-role::before {
  content: '\00B7';
  margin-right: 8px;
}

/* ── Reviews light theme ── */
html[data-theme="light"] .reviews-inner {
  border-top-color: rgba(0,0,0,0.08);
}
html[data-theme="light"] .reviews-title {
  color: rgba(0,0,0,0.4);
}
html[data-theme="light"] .reviews-avg {
  color: rgba(0,0,0,0.85);
}
html[data-theme="light"] .reviews-count {
  color: rgba(0,0,0,0.35);
}
html[data-theme="light"] .review-card {
  background: rgba(0,0,0,0.02);
  border-color: rgba(0,0,0,0.08);
}
html[data-theme="light"] .review-star {
  color: rgba(0,0,0,0.12);
}
html[data-theme="light"] .review-card-text {
  color: rgba(0,0,0,0.6);
}
html[data-theme="light"] .review-card-name {
  color: rgba(0,0,0,0.75);
}
html[data-theme="light"] .review-card-role {
  color: rgba(0,0,0,0.35);
}

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


/* ═══════════════════════════════════════════════════════════
   BLOG
   ═══════════════════════════════════════════════════════════ */

/* ── Blog hero ── */
.blog-hero {
  text-align: center;
  padding: 48px 24px 40px;
  max-width: 640px;
  margin: 0 auto;
}
.blog-hero h1 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.blog-hero p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

/* ── Blog grid (listing) ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  max-width: 960px;
  margin: 0 auto 80px;
  padding: 0 24px;
}
.blog-grid--sm {
  max-width: 100%;
  margin-bottom: 0;
}

/* ── Blog card ── */
.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--surface, #1A1A1A);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: var(--white, #F5F5F0);
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.blog-card:hover {
  border-color: rgba(255,255,255,0.14);
  transform: translateY(-2px);
}

.blog-card-img {
  aspect-ratio: 16/9;
  background: rgba(255,255,255,0.03);
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 10px;
}
.blog-card-cat {
  color: var(--gold, #C9A84C);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.blog-card-dot { opacity: 0.4; }

.blog-card-title {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.35;
  margin-bottom: 8px;
}

.blog-card-excerpt {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-read {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
}


/* ── Blog article (single post) ── */
.blog-article {
  max-width: 680px;
  margin: 0 auto 64px;
  padding: 0 24px;
}

.blog-article-header {
  padding: 40px 0 32px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 32px;
}

.blog-article-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.blog-article-category {
  color: var(--gold, #C9A84C);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.blog-article-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}

.blog-article-title {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

/* Article body typography */
.blog-article-body h2 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 36px 0 12px;
}
.blog-article-body h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 28px 0 8px;
}
.blog-article-body p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 20px;
}

/* ── Related posts on article page ── */
.blog-related {
  max-width: 960px;
  margin: 0 auto 80px;
  padding: 0 24px;
}
.blog-related-title {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}


/* ── Blog light theme ── */
html[data-theme="light"] .blog-hero p {
  color: rgba(0,0,0,0.45);
}
html[data-theme="light"] .blog-card {
  background: rgba(0,0,0,0.02);
  border-color: rgba(0,0,0,0.08);
}
html[data-theme="light"] .blog-card:hover {
  border-color: rgba(0,0,0,0.16);
}
html[data-theme="light"] .blog-card-img {
  background: rgba(0,0,0,0.04);
}
html[data-theme="light"] .blog-card-meta {
  color: rgba(0,0,0,0.35);
}
html[data-theme="light"] .blog-card-title {
  color: rgba(0,0,0,0.85);
}
html[data-theme="light"] .blog-card-excerpt {
  color: rgba(0,0,0,0.5);
}
html[data-theme="light"] .blog-card-read {
  color: rgba(0,0,0,0.3);
}
html[data-theme="light"] .blog-article-meta {
  color: rgba(0,0,0,0.4);
}
html[data-theme="light"] .blog-article-dot {
  background: rgba(0,0,0,0.2);
}
html[data-theme="light"] .blog-article-title {
  color: rgba(0,0,0,0.9);
}
html[data-theme="light"] .blog-article-header {
  border-color: rgba(0,0,0,0.08);
}
html[data-theme="light"] .blog-article-body h2,
html[data-theme="light"] .blog-article-body h3 {
  color: rgba(0,0,0,0.85);
}
html[data-theme="light"] .blog-article-body p {
  color: rgba(0,0,0,0.6);
}
html[data-theme="light"] .blog-related-title {
  color: rgba(0,0,0,0.35);
}

@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-article-title {
    font-size: 26px;
  }
  .blog-hero h1 {
    font-size: 26px;
  }
}


/* ═══════════════════════════════════════════════════════════
   COMMUNITY GALLERY
   ═══════════════════════════════════════════════════════════ */

/* ── Hero ── */
.community-hero {
  text-align: center;
  padding: 48px 24px 40px;
  max-width: 640px;
  margin: 0 auto;
}
.community-hero h1 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.community-hero p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

/* ── Gallery grid ── */
.community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  max-width: 1120px;
  margin: 0 auto 64px;
  padding: 0 24px;
}

/* ── Card ── */
.community-card {
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface, #1A1A1A);
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.community-card:hover {
  border-color: rgba(255,255,255,0.14);
  transform: translateY(-2px);
}

.community-card-img {
  position: relative;
  aspect-ratio: 16/10;
  background: rgba(255,255,255,0.03);
  overflow: hidden;
}
.community-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}
.community-card:hover .community-card-img img {
  transform: scale(1.03);
}
.community-card-img--fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
}
.community-card-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
}

/* When image fails, always show overlay */
.community-card-img--fallback .community-card-overlay {
  opacity: 1;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 80%);
}

/* Overlay — shows on hover */
.community-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.community-card:hover .community-card-overlay {
  opacity: 1;
}
.community-card-caption {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Footer info */
.community-card-footer {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.community-card-author {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.community-card-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--white, #F5F5F0);
}
.community-card-role {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

.community-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
}
.community-card-product {
  color: var(--gold, #C9A84C);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.15s ease;
}
.community-card-product:hover { opacity: 0.7; }

.community-card-location {
  color: rgba(255,255,255,0.3);
}
.community-card-location::before {
  content: '\00B7';
  margin-right: 10px;
}

/* ── Submit section ── */
.community-submit {
  max-width: 560px;
  margin: 0 auto 80px;
  padding: 0 24px;
}
.community-submit-inner {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 36px 32px;
  text-align: center;
}
.community-submit-inner h2 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.community-submit-inner > p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin-bottom: 24px;
}

.community-submit-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}
.community-submit-form input,
.community-submit-form textarea {
  width: 100%;
  padding: 11px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: var(--white, #F5F5F0);
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.15s ease;
}
.community-submit-form input:focus,
.community-submit-form textarea:focus {
  outline: none;
  border-color: var(--gold, #C9A84C);
}
.community-submit-form input::placeholder,
.community-submit-form textarea::placeholder {
  color: rgba(255,255,255,0.25);
}
.community-submit-form textarea {
  resize: vertical;
  min-height: 72px;
}

.community-submit-btn {
  margin-top: 6px;
  width: 100%;
  text-align: center;
}
.community-submit-btn--done {
  background: rgba(255,255,255,0.08) !important;
  border-color: rgba(255,255,255,0.12) !important;
  color: var(--gold, #C9A84C) !important;
  cursor: default;
}

.community-submit-note {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  margin-top: 14px;
}

/* ── Community light theme ── */
html[data-theme="light"] .community-hero p {
  color: rgba(0,0,0,0.45);
}
html[data-theme="light"] .community-card {
  background: rgba(0,0,0,0.02);
  border-color: rgba(0,0,0,0.08);
}
html[data-theme="light"] .community-card:hover {
  border-color: rgba(0,0,0,0.16);
}
html[data-theme="light"] .community-card-img {
  background: rgba(0,0,0,0.04);
}
html[data-theme="light"] .community-card-role {
  color: rgba(0,0,0,0.35);
}
html[data-theme="light"] .community-card-location {
  color: rgba(0,0,0,0.3);
}
html[data-theme="light"] .community-submit-inner {
  background: rgba(0,0,0,0.02);
  border-color: rgba(0,0,0,0.08);
}
html[data-theme="light"] .community-submit-inner > p {
  color: rgba(0,0,0,0.45);
}
html[data-theme="light"] .community-submit-form input,
html[data-theme="light"] .community-submit-form textarea {
  background: rgba(0,0,0,0.03);
  border-color: rgba(0,0,0,0.1);
  color: var(--text);
}
html[data-theme="light"] .community-submit-form input::placeholder,
html[data-theme="light"] .community-submit-form textarea::placeholder {
  color: rgba(0,0,0,0.25);
}
html[data-theme="light"] .community-submit-note {
  color: rgba(0,0,0,0.3);
}

/* ── Community responsive ── */
@media (max-width: 600px) {
  .community-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .community-hero h1 {
    font-size: 26px;
  }
  .community-submit-inner {
    padding: 28px 20px;
  }
}

/* ── Touch devices ── */
@media (hover: none) {
  .community-card-overlay { opacity: 1; }
  .community-card:hover { transform: none; }
}

/* ──────────────────────────────────────────
   TOOLS HUB
────────────────────────────────────────── */
.tools-hub {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px 100px;
}

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

.tools-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s ease-out, box-shadow 0.25s ease-out, transform 0.25s ease-out;
}
.tools-card:hover {
  border-color: rgba(255,255,255,0.15);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  transform: translateY(-2px);
}

.tools-card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.5);
}

.tools-card-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.tools-card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--silver);
  flex: 1;
  margin-bottom: 20px;
}
.tools-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.tools-card-tag {
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.06);
}
.tools-card-cta {
  font-size: 14px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: -0.01em;
}

@media (max-width: 860px) {
  .tools-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* Light theme */
html[data-theme="light"] .tools-card {
  border-color: rgba(0,0,0,0.08);
}
html[data-theme="light"] .tools-card:hover {
  border-color: rgba(0,0,0,0.15);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
html[data-theme="light"] .tools-card-icon {
  color: rgba(0,0,0,0.55);
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.10);
}
html[data-theme="light"] .tools-card-tag {
  background: rgba(0,0,0,0.04);
  color: rgba(0,0,0,0.45);
  border-color: rgba(0,0,0,0.08);
}
html[data-theme="light"] .tools-card-title {
  color: rgba(0,0,0,0.85);
}
html[data-theme="light"] .tools-card-desc {
  color: rgba(0,0,0,0.55);
}

