:root {
  --bg: #0d0d0f;
  --surface: #17171b;
  --surface-soft: #1f1f24;
  --text: #f3f3f4;
  --muted: #b2b4bd;
  --line: #2b2d34;
  --accent: #f59e0b;
  --zybar-blue: #4f7cff;
  --zybar-purple: #a855f7;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: #1a1a1e;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(80, 80, 90, 0.25), transparent),
    linear-gradient(180deg, #16161a 0%, #1a1a1e 40%, #141418 100%);
  line-height: 1.6;
}

.welcome-bar {
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.container {
  width: min(1140px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(22, 22, 26, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.header-wrap {
  padding: 0.85rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.zybar-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
}

.zybar-logo .logo-img {
  display: block;
  height: 36px;
  width: auto;
  object-fit: contain;
}

.zybar-logo .logo-icon {
  -webkit-text-fill-color: currentColor;
  opacity: 0.9;
  font-size: 1rem;
}

.main-nav {
  display: flex;
  gap: 1.5rem;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
}

.nav a:hover {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.currency {
  font-size: 0.9rem;
  color: var(--muted);
  cursor: pointer;
}

.icon-btn {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0.25rem;
  text-decoration: none;
  line-height: 1;
}

.icon-btn:hover {
  color: var(--text);
}

/* Poster hero - full width ZYBAR banner */
.poster-hero {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.poster-hero-inner {
  position: relative;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  max-height: 80vh;
  min-height: 420px;
  background: #0f0f12;
}

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

.poster-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 50%);
  color: #fff;
  text-align: center;
  padding: 2rem;
}

.poster-hero-overlay h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.poster-hero-overlay p {
  margin: 0 0 1.25rem;
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
}

/* ========== Global Trust Bar ========== */
.trust-bar {
  width: 100%;
  background: #050505;
  border-bottom: 1px solid #222;
  padding: 15px 1rem;
}

.trust-bar-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 1rem;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
}

.trust-bar-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #3498db;
}

.trust-bar-icon svg {
  width: 22px;
  height: 22px;
}

.trust-bar-text {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .trust-bar-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    justify-items: center;
    gap: 10px;
    text-align: center;
  }

  .trust-bar-item {
    flex-direction: column;
    gap: 0.35rem;
  }

  .trust-bar-icon svg {
    width: 26px;
    height: 26px;
  }

  .trust-bar-text {
    white-space: normal;
    font-size: 0.8rem;
  }
}

/* ========== Trending This Week ========== */
.trending-section {
  background: #0a0a0a;
  padding: 3rem 0 4rem;
}

.trending-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0;
}

.trending-title {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: "Inter", "Montserrat", sans-serif;
}

.trending-view-all {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  font-family: "Inter", "Montserrat", sans-serif;
}

.trending-view-all:hover {
  text-decoration: underline;
  color: var(--text);
}

.trending-divider {
  height: 1px;
  background: #333;
  margin: 0.75rem 0 1.5rem;
}

.trending-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.trending-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  font-family: "Inter", "Montserrat", sans-serif;
}

.trending-card:hover {
  transform: scale(1.02);
  box-shadow: 0 0 0 1px rgba(52, 152, 219, 0.2), 0 8px 32px rgba(0, 0, 0, 0.4);
}

.trending-card-image-link {
  display: block;
  position: relative;
  margin: -1rem -1rem 0.75rem;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  background: #121318;
  aspect-ratio: 1;
  max-height: 220px;
}

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

.trending-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #dc2626;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.trending-card-name {
  margin: 0 0 0.25rem;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text);
}

.trending-card-desc {
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.3;
}

.trending-card-pricing {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.trending-price-original {
  text-decoration: line-through;
  color: var(--muted);
  margin-right: 0.5rem;
}

.trending-price-sale {
  font-weight: 700;
  color: #3498db;
}

.trending-savings {
  display: inline-block;
  background: #dc2626;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

@media (max-width: 900px) {
  .trending-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .trending-title {
    font-size: 1.4rem;
  }

  .trending-header {
    flex-wrap: wrap;
  }
}

.section-eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--zybar-blue);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured-title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.featured-products {
  padding: 3rem 0;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

.featured-frame {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  background: #0f0f12;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 8px 32px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  aspect-ratio: 1;
}

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

.featured-frame:hover {
  box-shadow:
    0 0 0 1px rgba(79, 124, 255, 0.25),
    0 12px 40px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(79, 124, 255, 0.08);
}

.hero-browse {
  padding-top: 2.5rem;
  padding-bottom: 3rem;
  background: rgba(30, 30, 35, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* ========== Luxury "Light. Engineered as Art." section ========== */
.luxury-tagline {
  background: #050505;
  padding: 100px 15%;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.luxury-tagline::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(52, 152, 219, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.luxury-tagline-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.luxury-tagline-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 1.5rem;
  text-shadow: 0 0 40px rgba(52, 152, 219, 0.4), 0 0 80px rgba(52, 152, 219, 0.2);
}

.luxury-tagline-intro {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #cccccc;
  margin: 0 0 1rem;
}

.luxury-tagline-specs-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin: 2rem 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.luxury-specs-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  margin: 0 0 2.5rem;
}

.luxury-spec-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #cccccc;
}

.luxury-spec-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3498db;
  flex-shrink: 0;
}

.luxury-spec-divider {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.75rem;
  font-weight: 300;
  user-select: none;
}

.luxury-tagline-cta {
  display: inline-block;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 4px;
  transition: background 0.5s ease, border-color 0.5s ease, color 0.5s ease, box-shadow 0.5s ease;
}

.luxury-tagline-cta:hover {
  background: #3498db;
  border-color: #3498db;
  color: #fff;
  box-shadow: 0 0 24px rgba(52, 152, 219, 0.4);
}

@media (max-width: 768px) {
  .luxury-tagline {
    padding: 60px 8%;
  }

  .luxury-tagline-inner {
    text-align: center;
  }

  .luxury-tagline-heading {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

  .luxury-specs-bar {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .luxury-spec-divider {
    display: none;
  }

  .luxury-spec-item {
    flex-direction: row;
    justify-content: center;
    gap: 0.5rem;
  }
}

.hero-browse-wrap {
  text-align: center;
}

.hero-browse h1,
.hero-browse h2 {
  margin: 0 0 1rem;
}

.btn-shop {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.9);
  color: #fff;
  padding: 0.75rem 1.5rem;
}

.btn-shop:hover {
  background: rgba(255, 255, 255, 0.1);
  filter: none;
}

/* Light on/off comparison section */
.comparison-section {
  padding: 0;
  background: var(--surface);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  align-items: center;
}

.comparison-description-wrap {
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1e;
  background-image: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(40,40,48,0.5), transparent);
  min-height: 520px;
}

.comparison-description-img {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 12px;
}

.comparison-content {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #f8f9fa;
  color: #1a1a1a;
}

.comparison-content .eyebrow {
  color: var(--zybar-blue);
}

.comparison-content h2 {
  margin: 0 0 0.5rem;
  color: #1a1a1a;
}

.comparison-text {
  margin: 0 0 1.25rem;
  color: #555;
  max-width: 38ch;
}

.comparison-content .btn-outline {
  border-color: #333;
  color: #1a1a1a;
}

.comparison-content .btn {
  background: #1a1a1a;
  color: #fff;
}

.comparison-slider-wrap,
.comparison-overlay-wrap {
  padding: 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #1a1a1e;
  background-image: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(40,40,48,0.5), transparent);
  min-height: 520px;
}

/* Fixed 50/50 comparison with perfectly stacked images */
.comparison-overlay {
  --position: 50%;
  position: relative;
  width: 100%;
  max-width: 680px;
  aspect-ratio: 5/4;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  background: #111;
}

.comparison-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.comparison-image-a {
  /* Show left side up to slider position */
  clip-path: inset(0 calc(100% - var(--position)) 0 0);
}

.comparison-image-b {
  /* Show right side from slider position */
  clip-path: inset(0 0 0 var(--position));
}

.comparison-divider {
  position: absolute;
  left: var(--position);
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-1px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
  z-index: 2;
  cursor: ew-resize;
}

.comparison-divider::after {
  content: "< >";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #fff;
  color: #222;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.comparison-labels {
  margin: 0.75rem 0 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 680px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--muted);
}

@media (max-width: 900px) {
  .comparison-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .comparison-description-wrap {
    min-height: 360px;
    padding: 2rem 1.5rem;
  }

  .comparison-description-img {
    max-height: 400px;
  }

  .comparison-content {
    padding: 2rem 1.5rem;
  }

  .comparison-slider-wrap,
  .comparison-overlay-wrap {
    padding: 2rem 1.5rem;
    min-height: 380px;
  }

  .comparison-overlay {
    max-width: 100%;
  }

  .comparison-labels {
    max-width: 100%;
  }
}

/* ========== Technical Deep-Dive – 50/50 split (text left, image right) ========== */
.technical-deep-dive {
  background: #0a0a0a;
  padding: 100px 0;
}

.technical-deep-dive-wrap {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: min(100%, calc(100% - 2rem));
  padding: 0 1rem;
  gap: 2.5rem;
}

.technical-deep-dive-content {
  flex: 1;
  min-width: 0;
  padding-left: 1.5rem;
  border-left: 2px solid #3498db;
  font-family: "Inter", "Montserrat", sans-serif;
}

.technical-deep-dive-title {
  margin: 0 0 0.5rem;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: "Inter", "Montserrat", sans-serif;
}

.technical-deep-dive-subtitle {
  margin: 0 0 1.5rem;
  font-size: 1.1rem;
  font-weight: 500;
  font-style: italic;
  color: #3498db;
  font-family: "Inter", "Montserrat", sans-serif;
}

.technical-deep-dive-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.75;
  font-family: "Inter", "Montserrat", sans-serif;
}

.technical-deep-dive-list li {
  margin: 0 0 0.75rem;
}

.technical-deep-dive-list li strong {
  color: var(--text);
  font-weight: 600;
}

.technical-deep-dive-media {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.technical-deep-dive-img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 12px;
  box-shadow:
    0 0 20px rgba(52, 152, 219, 0.25),
    0 0 40px rgba(52, 152, 219, 0.15);
}

@media (max-width: 768px) {
  .technical-deep-dive-wrap {
    flex-direction: column;
    gap: 2rem;
  }

  .technical-deep-dive-content {
    order: 2;
    padding-left: 1.25rem;
    padding-right: 0;
  }

  .technical-deep-dive-media {
    order: 1;
    width: 100%;
  }

  .technical-deep-dive-img {
    max-height: 360px;
  }

  .technical-deep-dive-title {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
  }
}

/* ========== Power & Compatibility – 50/50 split (image left, text right) ========== */
.power-compatibility {
  background: #0a0a0a;
  padding: 80px 0 100px;
  margin-top: 80px;
}

.power-compatibility-wrap {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: min(100%, calc(100% - 2rem));
  padding: 0 1rem;
  gap: 2.5rem;
}

.power-compatibility-media {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.power-compatibility-img {
  width: 100%;
  height: auto;
  max-height: 440px;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 12px;
}

.power-compatibility-content {
  flex: 1;
  min-width: 0;
  font-family: "Inter", "Montserrat", sans-serif;
}

.power-compatibility-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: "Inter", "Montserrat", sans-serif;
}

.power-compatibility-subtitle {
  margin: 0 0 1.5rem;
  font-size: 1.1rem;
  font-weight: 500;
  font-style: italic;
  color: #3498db;
  font-family: "Inter", "Montserrat", sans-serif;
}

.power-compatibility-list {
  margin: 0 0 1.5rem;
  padding-left: 0;
  list-style: none;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.75;
  font-family: "Inter", "Montserrat", sans-serif;
}

.power-compatibility-list li {
  margin: 0 0 0.65rem;
}

.power-compatibility-list li strong {
  color: var(--text);
  font-weight: 600;
}

.power-compatibility-callout {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: rgba(15, 15, 18, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}

.power-compatibility-callout-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 700;
}

.power-compatibility-callout-text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--muted);
  font-family: "Inter", "Montserrat", sans-serif;
}

@media (max-width: 768px) {
  .power-compatibility-wrap {
    flex-direction: column;
    gap: 2rem;
  }

  .power-compatibility-media {
    order: 1;
    width: 100%;
  }

  .power-compatibility-content {
    order: 2;
  }

  .power-compatibility-img {
    max-height: 320px;
  }
}

/* Poster gallery - ZYBAR lookbook */
.poster-gallery {
  background: rgba(15, 15, 18, 0.6);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.gallery-title {
  margin: 0 0 1.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.poster-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.poster-gallery-item {
  border-radius: 16px;
  overflow: hidden;
  background: #121318;
  border: 1px solid rgba(255,255,255,0.06);
  aspect-ratio: 4/3;
  max-height: 280px;
}

.poster-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.poster-gallery-item-wide {
  grid-column: span 2;
  aspect-ratio: 21/9;
  max-height: 220px;
}

.poster-gallery-item-wide img {
  object-fit: cover;
  object-position: center;
}

.poster-gallery-item-wide img {
  object-fit: cover;
  object-position: center;
}

/* ========== Brand Impact Split – 50/50 text + image ========== */
.brand-impact-split {
  padding: 100px 0;
  background: #0f0f0f;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.brand-impact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  min-height: 420px;
  align-items: stretch;
}

.brand-impact-text {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 2rem 2rem 3rem;
}

.brand-impact-text-inner {
  border-left: 3px solid #3498db;
  padding-left: 20px;
  max-width: 500px;
}

.brand-impact-title {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 0.5rem;
}

.brand-impact-subtitle {
  color: #3498db;
  font-style: italic;
  font-size: 1.2rem;
  margin: 0 0 2rem;
}

.brand-impact-desc {
  color: #fff;
  font-size: 1rem;
  line-height: 1.8;
  margin: 0 0 1.5rem;
  max-width: 500px;
}

.brand-impact-cta {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 15px 40px;
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.brand-impact-cta:hover {
  background: #3498db;
  border-color: #3498db;
  color: #fff;
}

.brand-impact-image-wrap {
  display: flex;
  align-items: stretch;
  padding: 1rem 3rem 1rem 1rem;
}

/* Scroll animation initial state */
.brand-impact-text,
.brand-impact-image-wrap {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.brand-impact-split.is-visible .brand-impact-text,
.brand-impact-split.is-visible .brand-impact-image-wrap {
  opacity: 1;
  transform: translateY(0);
}

.brand-impact-glass {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.brand-impact-glass:hover {
  box-shadow: 0 0 24px rgba(52, 152, 219, 0.35);
  border-color: rgba(52, 152, 219, 0.4);
}

.brand-impact-img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 768px) {
  .brand-impact-split {
    padding: 60px 0;
  }

  .brand-impact-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    min-height: auto;
    padding: 0 1rem;
  }

  .brand-impact-text {
    order: 2;
    padding: 2rem 1rem;
  }

  .brand-impact-text-inner {
    padding-left: 12px;
  }

  .brand-impact-title {
    font-size: clamp(1.35rem, 4vw, 1.75rem);
  }

  .brand-impact-image-wrap {
    order: 1;
    padding: 0 1rem 1rem;
  }

  .brand-impact-glass {
    min-height: 260px;
  }

  .brand-impact-img {
    min-height: 260px;
  }
}

/* ========== Product Feature – 50/50 split (image left, copy right) ========== */
.product-feature {
  background: #0f0f0f;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* ---- Scroll-triggered reveal: initial state ---- */
.product-feature-media {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-feature-content {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.15s, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
}

.product-feature-title {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease 0.25s, transform 0.5s ease 0.25s, color 0.2s;
}

.product-feature-subtitle {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease 0.35s, transform 0.5s ease 0.35s, color 0.2s;
}

.product-feature-list li {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.product-feature-list li:nth-child(1) { transition-delay: 0.45s; }
.product-feature-list li:nth-child(2) { transition-delay: 0.55s; }
.product-feature-list li:nth-child(3) { transition-delay: 0.65s; }
.product-feature-list li:nth-child(4) { transition-delay: 0.75s; }

.product-feature-callout {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease 0.85s, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.85s;
}

/* ---- Visible state (added by JS when in viewport) ---- */
.product-feature.is-visible .product-feature-media,
.product-feature.is-visible .product-feature-content {
  opacity: 1;
  transform: translateX(0);
}

.product-feature.is-visible .product-feature-title,
.product-feature.is-visible .product-feature-subtitle {
  opacity: 1;
  transform: translateY(0);
}

.product-feature.is-visible .product-feature-list li {
  opacity: 1;
  transform: translateX(0);
}

.product-feature.is-visible .product-feature-callout {
  opacity: 1;
  transform: translateY(0);
}

/* ---- LED glow pulse (continuous subtle motion) ---- */
@keyframes product-feature-glow {
  0%, 100% {
    box-shadow:
      0 0 0 1px rgba(52, 152, 219, 0.2),
      0 0 40px rgba(52, 152, 219, 0.15),
      0 0 80px rgba(52, 152, 219, 0.08),
      0 12px 48px rgba(0, 0, 0, 0.5);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(52, 152, 219, 0.3),
      0 0 56px rgba(52, 152, 219, 0.22),
      0 0 100px rgba(52, 152, 219, 0.12),
      0 12px 48px rgba(0, 0, 0, 0.5);
  }
}

.product-feature-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 420px;
}

.product-feature-header {
  text-align: center;
  margin-bottom: 60px;
}

.product-feature-heading {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
  letter-spacing: 0.02em;
  font-family: "Inter", "Montserrat", sans-serif;
}

.product-feature-heading-subtitle {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: #3498db;
  font-family: "Inter", "Montserrat", sans-serif;
}

.product-feature-media {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #0f0f0f;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 1px rgba(52, 152, 219, 0.15),
    0 0 40px rgba(52, 152, 219, 0.12),
    0 0 80px rgba(52, 152, 219, 0.06),
    0 12px 48px rgba(0, 0, 0, 0.5);
  animation: product-feature-glow 4s ease-in-out infinite;
}

.product-feature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-feature-media:hover .product-feature-img {
  transform: scale(1.02);
}

.product-feature-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem 0;
}

.product-feature-title {
  margin: 0 0 0.35rem;
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: "Inter", "Montserrat", sans-serif;
}

.product-feature-subtitle {
  margin: 0 0 1.25rem;
  font-size: 1.15rem;
  font-weight: 500;
  font-style: italic;
  color: #3498db;
  font-family: "Inter", "Montserrat", sans-serif;
}

.product-feature-list {
  margin: 0 0 1.5rem;
  padding-left: 0;
  list-style: none;
  color: var(--text);
  font-size: 1.1rem;
  line-height: 1.75;
  font-family: "Inter", "Montserrat", sans-serif;
}

.product-feature-list li {
  margin: 0 0 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.product-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3498db;
}

.product-feature-list li strong {
  color: var(--text);
  font-weight: 600;
}

.product-feature-callout {
  margin: 0;
  padding: 1.25rem 1.5rem;
  background: rgba(52, 152, 219, 0.08);
  border-left: 4px solid #3498db;
  border-radius: 0 8px 8px 0;
}

.product-feature-callout-label {
  margin: 0 0 0.4rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #3498db;
  font-family: "Inter", "Montserrat", sans-serif;
}

.product-feature-callout-text {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--muted);
  font-family: "Inter", "Montserrat", sans-serif;
}

.product-feature-callout {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-feature-callout:hover {
  transform: translateX(4px);
  box-shadow: 4px 0 0 0 #3498db;
}

@media (prefers-reduced-motion: reduce) {
  .product-feature-media,
  .product-feature-content,
  .product-feature-title,
  .product-feature-subtitle,
  .product-feature-list li,
  .product-feature-callout {
    transition-duration: 0.01ms;
  }
  .product-feature-media {
    animation: none;
  }
  .product-feature.is-visible .product-feature-media,
  .product-feature.is-visible .product-feature-content,
  .product-feature.is-visible .product-feature-title,
  .product-feature.is-visible .product-feature-subtitle,
  .product-feature.is-visible .product-feature-list li,
  .product-feature.is-visible .product-feature-callout {
    opacity: 1;
    transform: none;
  }
  .product-feature-media,
  .product-feature-content {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 768px) {
  .product-feature-wrap {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    min-height: auto;
  }

  .product-feature-media {
    min-height: 240px;
    aspect-ratio: 16/10;
  }

  .product-feature-content {
    padding: 0.5rem 0 1rem;
  }

  .product-feature-callout {
    margin-top: 0.25rem;
  }
}

.section {
  padding: 4rem 0;
}

.hero {
  padding-top: 5.5rem;
  padding-bottom: 3rem;
}

h1 {
  margin: 0 0 0.8rem;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.12;
}

h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.hero p {
  color: var(--muted);
  max-width: 65ch;
  margin: 0 0 1.2rem;
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: #1b1304;
  font-weight: 700;
  text-decoration: none;
  border-radius: 12px;
  padding: 0.68rem 1rem;
  border: 1px solid transparent;
}

.btn:hover {
  filter: brightness(1.06);
}

.btn-outline {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

.section-head {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.section-head a {
  color: var(--muted);
  text-decoration: none;
}

.products-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
}

.product-image-link {
  display: block;
  margin-bottom: 0.65rem;
  border-radius: 12px;
  overflow: hidden;
  background: #121318;
  aspect-ratio: 1;
  max-height: 260px;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.product-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.03rem;
}

.product-card a {
  color: #d8d9df;
  text-decoration: none;
}

.product-card a:hover {
  text-decoration: underline;
}

.tag {
  margin: 0 0 0.5rem;
  display: inline-block;
  background: #272932;
  border: 1px solid #3a3d49;
  color: #d4d6dd;
  border-radius: 999px;
  font-size: 0.75rem;
  padding: 0.2rem 0.55rem;
}

.price {
  margin: 0.65rem 0 0;
  font-weight: 700;
}

.features {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(23, 23, 27, 0.5);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-grid article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
}

.feature-grid h3 {
  margin: 0 0 0.5rem;
}

.feature-grid p {
  margin: 0;
  color: var(--muted);
}

.story-wrap {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.3rem;
}

/* Product showcase - two column: image left (textured), details right */
.product-showcase-wrap {
  padding: 0 0 3rem;
}

/* Reserve space when sticky bar is present on product page */
body:has(.pdp-sticky-bar) .product-showcase-wrap {
  padding-bottom: 5rem;
}

.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
  align-items: stretch;
}

.product-showcase-image {
  position: relative;
  background: #15151a;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% 50%, rgba(40, 40, 48, 0.6) 0%, transparent 55%),
    linear-gradient(180deg, #1c1c22 0%, #121218 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.product-showcase-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}

.product-showcase-image-inner {
  position: relative;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-showcase-image-inner img {
  width: auto;
  max-width: 100%;
  max-height: min(75vh, 520px);
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 8px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 4px 24px rgba(0, 0, 0, 0.5),
    0 24px 64px rgba(0, 0, 0, 0.4);
}

.product-showcase-details {
  padding: 2rem 2.5rem 2rem 2rem;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-showcase-details h1 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.6rem, 3.5vw, 2rem);
  line-height: 1.2;
}

.product-showcase-details .product-price {
  margin: 0 0 1.25rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.product-features {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0;
  color: var(--text);
  font-size: 0.95rem;
}

.product-features li span:first-child {
  flex-shrink: 0;
}

.product-showcase-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.product-showcase-actions .wishlist-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: #e91e8c;
  font-size: 1.1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.product-showcase-actions .wishlist-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

.product-option-label {
  display: block;
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}

.product-size-options {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.product-size-options button,
.product-size-options .size-option {
  padding: 0.6rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}

.product-size-options button:hover,
.product-size-options .size-option:hover {
  background: rgba(255, 255, 255, 0.06);
}

.product-size-options button.selected,
.product-size-options .size-option.selected {
  background: var(--text);
  border-color: var(--text);
  color: var(--bg);
}

.product-cart-row {
  display: flex;
  gap: 0.75rem;
  align-items: stretch;
  margin-bottom: 1rem;
}

.product-quantity {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: var(--surface);
}

.product-quantity button {
  width: 44px;
  height: 44px;
  border: none;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 1.2rem;
  cursor: pointer;
  line-height: 1;
}

.product-quantity button:hover {
  background: rgba(255, 255, 255, 0.08);
}

.product-quantity span {
  min-width: 2.5rem;
  text-align: center;
  font-weight: 600;
}

.product-add-cart {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0 1.25rem;
  background: var(--text);
  color: var(--bg);
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: filter 0.15s;
}

.product-add-cart:hover {
  filter: brightness(1.1);
}

.product-paypal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.85rem 1.25rem;
  background: #ffc439;
  color: #1a1a1a;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  margin-bottom: 0.75rem;
}

.product-paypal:hover {
  filter: brightness(1.05);
}

.product-more-payment {
  display: block;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
}

.product-more-payment:hover {
  color: var(--text);
}

/* ========== Product Description (poster-style sections) ========== */
.pdp-section {
  padding: 3rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.pdp-core-features-intro {
  text-align: center;
  padding-top: 3.5rem;
  padding-bottom: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.pdp-core-features-heading {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.75rem;
  letter-spacing: 0.02em;
}

.pdp-core-features-lead {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
  max-width: 42ch;
  margin-left: auto;
  margin-right: auto;
}

.pdp-section h2 {
  margin: 0 0 1.5rem;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
}

.pdp-description-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 1.5rem;
  align-items: start;
}

.pdp-description-single {
  border-radius: 12px;
  overflow: hidden;
  background: #111;
  aspect-ratio: 3/4;
}

.pdp-description-single img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pdp-comparison-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #111;
  aspect-ratio: 4/3;
  --position: 50%;
}

.pdp-comparison-wrap .comparison-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.pdp-comparison-wrap .comparison-image-a { clip-path: inset(0 calc(100% - var(--position)) 0 0); }
.pdp-comparison-wrap .comparison-image-b { clip-path: inset(0 0 0 var(--position)); }

.pdp-comparison-divider {
  position: absolute;
  left: var(--position, 50%);
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-1px);
  background: rgba(255,255,255,0.9);
  z-index: 2;
  cursor: ew-resize;
}

.pdp-comparison-divider::after {
  content: "‹ ›";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  color: #111;
  display: grid;
  place-items: center;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  pointer-events: none;
}

.pdp-problem-solution {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.pdp-problem-solution .pdp-copy p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1rem;
}

.pdp-problem-solution .pdp-copy ul {
  margin: 0.5rem 0 0;
  padding-left: 1.25rem;
  color: var(--text);
}

.pdp-problem-solution .pdp-artwork img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 12px;
}

.pdp-secret {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.pdp-secret h2 { margin-bottom: 1rem; }

.pdp-secret-list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}

.pdp-secret-list li {
  padding: 0.4rem 0;
  color: var(--text);
  font-size: 1.05rem;
}

.pdp-glow-diagram {
  background: linear-gradient(180deg, #0f1620 0%, #1a2332 100%);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.08);
}

.pdp-glow-diagram-inner { display: flex; flex-direction: column; align-items: center; gap: 1rem; }

.pdp-glow-layers {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 200px;
}

.pdp-glow-layer {
  height: 32px;
  border-radius: 8px;
  background: rgba(79, 124, 255, 0.25);
  border: 1px solid rgba(79, 124, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.9);
}

.pdp-tagline { text-align: center; margin-bottom: 2rem; }
.pdp-tagline h2 { margin: 0 0 0.35rem; font-size: clamp(1.75rem, 4vw, 2.5rem); line-height: 1.2; }
.pdp-tagline .pdp-tagline-accent { color: var(--accent); }
.pdp-tagline p { margin: 0; color: var(--muted); font-size: 1rem; }

.pdp-light-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

.pdp-light-card {
  border-radius: 12px;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255,255,255,0.06);
}

.pdp-light-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.pdp-light-card figcaption { padding: 1rem; text-align: center; }
.pdp-light-card .pdp-light-label { display: block; font-weight: 700; font-size: 0.85rem; letter-spacing: 0.06em; margin-bottom: 0.25rem; }
.pdp-light-card .pdp-light-desc { font-size: 0.9rem; color: var(--muted); margin: 0; }

.pdp-power {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: start;
}

.pdp-power-benefits h3 { margin: 0 0 0.5rem; font-size: 1.1rem; }
.pdp-power-benefits ul { margin: 0; padding-left: 1.25rem; color: var(--text); }
.pdp-power-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #c00;
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
}

.pdp-power-other {
  padding: 1rem;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.pdp-power-other p { margin: 0; font-size: 0.9rem; color: var(--muted); }

.pdp-customization {
  background: linear-gradient(180deg, #0c0e14 0%, #12151c 100%);
  padding: 3rem 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06);
}

.pdp-customization h2 { text-align: center; margin-bottom: 0.5rem; }
.pdp-customization .pdp-custom-subtitle { text-align: center; color: var(--muted); font-size: 1rem; margin: 0 0 2rem; }
.pdp-custom-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.pdp-custom-step {
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.06);
}

.pdp-custom-step-num { display: block; font-size: 1.5rem; font-weight: 800; color: var(--muted); margin-bottom: 0.5rem; }
.pdp-custom-step-icon { font-size: 2rem; margin-bottom: 0.5rem; line-height: 1; }
.pdp-custom-step-title { font-size: 0.9rem; font-weight: 600; color: var(--text); }

.pdp-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(22, 22, 26, 0.95);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 -8px 32px rgba(0,0,0,0.4);
}

.pdp-sticky-bar .pdp-sticky-thumb {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: #111;
}

.pdp-sticky-bar .pdp-sticky-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pdp-sticky-bar .pdp-sticky-info { flex: 1; min-width: 0; }
.pdp-sticky-bar .pdp-sticky-title { font-size: 0.95rem; font-weight: 700; margin: 0 0 0.1rem; }
.pdp-sticky-bar .pdp-sticky-meta { font-size: 0.8rem; color: var(--muted); margin: 0; }
.pdp-sticky-bar .pdp-sticky-price { font-size: 1.1rem; font-weight: 700; white-space: nowrap; }
.pdp-sticky-bar .pdp-sticky-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.25rem;
  background: var(--text);
  color: var(--bg);
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
}

.pdp-sticky-bar .pdp-sticky-cta:hover { filter: brightness(1.1); }

@media (max-width: 900px) {
  .pdp-description-grid,
  .pdp-problem-solution,
  .pdp-secret,
  .pdp-power { grid-template-columns: 1fr; }
  .pdp-power-vs { margin: 0 auto; }
  .pdp-custom-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .pdp-custom-steps { grid-template-columns: 1fr; }
  .pdp-light-compare { grid-template-columns: 1fr; }
}

/* Product page: features section below the fold (scroll down) */
.product-features-section {
  padding: 3rem 1.5rem 4rem;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.product-features-section .container {
  max-width: 900px;
  margin: 0 auto;
}

.product-features-section h2 {
  margin: 0 0 1.5rem;
  font-size: clamp(1.35rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--text);
}

.product-features-section .product-features {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 2rem;
}

.product-features-section .product-features li {
  padding: 0.5rem 0;
  font-size: 1rem;
}

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

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: start;
}

.product-detail-image-wrap {
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: #121318;
}

.product-detail-image {
  width: 100%;
  display: block;
  object-fit: cover;
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  font-weight: 600;
}

.story-wrap h3 {
  margin: 1.3rem 0 0.5rem;
}

.story-wrap p,
.story-wrap li {
  color: var(--muted);
}

.policy-page {
  padding: 100px 1rem 4rem;
  max-width: 720px;
  margin: 0 auto;
}

.policy-page h1 {
  font-family: 'Inter', 'Montserrat', sans-serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  margin: 0 0 2rem;
}

.policy-page .policy-intro {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 2rem;
}

.policy-page p,
.policy-page li {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 1rem;
}

.policy-page h2 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin: 2rem 0 0.75rem;
}

.policy-page ul {
  margin: 0 0 1rem;
  padding-left: 1.5rem;
}

.policy-page a {
  color: #3498db;
  text-decoration: none;
}

.policy-page a:hover {
  text-decoration: underline;
}

.policy-form {
  margin: 2rem 0;
  max-width: 420px;
}

.policy-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin: 1rem 0 0.4rem;
}

.policy-form label:first-of-type {
  margin-top: 0;
}

.policy-form input,
.policy-form textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  font-size: 1rem;
  font-family: inherit;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  box-sizing: border-box;
}

.policy-form input::placeholder,
.policy-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.policy-form textarea {
  resize: vertical;
  min-height: 100px;
}

.policy-form button[type="submit"] {
  margin-top: 1.25rem;
}

.cta-row {
  margin: 0.9rem 0 0.8rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

/* ========== Value Proposition – 4-card grid ========== */
.value-proposition {
  padding: 100px 0;
  background: #0f0f0f;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.value-proposition-title {
  font-family: 'Inter', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  margin: 0 0 60px;
}

.value-proposition-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.value-prop-card {
  background: #111827;
  border: 1px solid rgba(52, 152, 219, 0.2);
  border-radius: 12px;
  padding: 40px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 4px 24px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.value-proposition.is-visible .value-prop-card {
  opacity: 1;
  transform: translateY(0);
}

.value-proposition.is-visible .value-prop-card:nth-child(1) { transition-delay: 0.1s; }
.value-proposition.is-visible .value-prop-card:nth-child(2) { transition-delay: 0.2s; }
.value-proposition.is-visible .value-prop-card:nth-child(3) { transition-delay: 0.3s; }
.value-proposition.is-visible .value-prop-card:nth-child(4) { transition-delay: 0.4s; }

.value-prop-card:hover {
  transform: translateY(-6px);
  border-color: #3498db;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 12px 40px rgba(0, 0, 0, 0.4);
}

.value-prop-icon {
  display: block;
  color: #3498db;
  margin-bottom: 1.25rem;
}

.value-prop-icon svg {
  display: block;
}

.value-prop-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.75rem;
  line-height: 1.3;
}

.value-prop-card-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

@media (max-width: 1024px) {
  .value-proposition-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .value-proposition {
    padding: 60px 0;
  }

  .value-proposition-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 2rem;
  }

  .value-proposition-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .value-prop-card {
    padding: 28px;
  }
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-wrap {
  padding: 1.2rem 0 1.6rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  color: var(--muted);
}

.footer-copyright {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-wrap .footer-copyright a,
.footer-wrap a {
  color: #d8d9df;
}

.footer-policies {
  flex-shrink: 0;
}

.footer-policies-title {
  font-family: 'Inter', 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 0.5rem;
}

.footer-policies-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-policies-list li {
  margin: 0;
  padding: 0;
}

.footer-policies-list li::before {
  content: "– ";
  color: rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

.footer-policies-list a {
  font-family: 'Inter', 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  padding: 8px 0;
  display: inline-block;
  transition: color 0.2s ease;
}

.footer-policies-list a:hover {
  color: #3498db;
}

@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 700px) {
  .header-wrap {
    flex-wrap: wrap;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: center;
  }

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

  .poster-gallery-grid {
    grid-template-columns: 1fr;
  }

  .poster-gallery-item-wide {
    grid-column: span 1;
    aspect-ratio: 16/10;
  }

  .feature-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }

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

  .product-showcase {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .product-showcase-image {
    min-height: 50vh;
  }

  .product-showcase-details {
    padding: 1.5rem 1rem 2rem;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}
