/** Shopify CDN: Minification failed

Line 2719:0 Unexpected "}"

**/
/* ============================================================
   APERION — Premium Theme System
   Version 1.0.0 | One-Product Storefront
   ============================================================ */

/* Fonts are self-hosted via snippets/ap-fonts.liquid (no external CDN).
   Legacy display stack remapped: Space Grotesk -> General Sans. */

/* ============================================================
   GOLD SHIMMER SYSTEM
   ============================================================ */

@keyframes ap-gold-shine {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.ap-gold {
  background: linear-gradient(
    105deg,
    var(--ap-gold) 0%,
    var(--ap-gold-mid) 28%,
    var(--ap-gold-light) 50%,
    var(--ap-gold-mid) 72%,
    var(--ap-gold) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: ap-gold-shine 5s linear infinite;
}

/* Gold eyebrow variant — no line, gold text */
.ap-eyebrow--gold {
  color: var(--ap-gold);
  letter-spacing: 0.22em;
}
.ap-eyebrow--gold::before { display: none; }



/* ============================================================
   DESIGN TOKENS
   ============================================================ */

:root {
  /* Palette */
  --ap-black:      #080808;
  --ap-surface:    #111111;
  --ap-surface-2:  #181818;
  --ap-surface-3:  #222222;
  --ap-white:      #FFFFFF;
  --ap-off-white:  #E8E8E8;
  --ap-gray-1:     #AAAAAA;
  --ap-gray-2:     #666666;
  --ap-gray-3:     #333333;

  /* Borders */
  --ap-border:        rgba(255, 255, 255, 0.07);
  --ap-border-mid:    rgba(255, 255, 255, 0.12);
  --ap-border-strong: rgba(255, 255, 255, 0.22);

  /* Typography */
  --ap-font-display: 'General Sans', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  --ap-font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;

  /* Spacing */
  --ap-section-pad:    120px;
  --ap-section-pad-md: 80px;
  --ap-section-pad-sm: 48px;
  --ap-max-width:      1340px;
  --ap-gutter:         48px;
  --ap-gutter-sm:      24px;

  /* Motion */
  --ap-ease:         cubic-bezier(0.16, 1, 0.3, 1);
  --ap-ease-in:      cubic-bezier(0.4, 0, 1, 1);
  --ap-ease-out:     cubic-bezier(0, 0, 0.2, 1);
  --ap-dur-fast:     180ms;
  --ap-dur-mid:      400ms;
  --ap-dur-slow:     700ms;

  /* Z-layers */
  --ap-z-header: 100;
  --ap-z-drawer: 200;

  /* Gold accent */
  --ap-gold:       #C9A46A;
  --ap-gold-mid:   #E2C88A;
  --ap-gold-light: #F0DFBE;
}

/* ============================================================
   GLOBAL BASE
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }

html { background-color: var(--ap-black); scroll-behavior: smooth; }

body {
  background-color: var(--ap-black);
  color: var(--ap-off-white);
  font-family: var(--ap-font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ap-font-display);
  color: var(--ap-white);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
}

p { margin: 0; }

a {
  color: var(--ap-white);
  text-decoration: none;
  transition: opacity var(--ap-dur-fast) var(--ap-ease);
}
a:hover { opacity: 0.7; }

img { max-width: 100%; display: block; }

/* Dawn color scheme overrides */
.color-scheme-1, .color-scheme-2, .color-scheme-3,
[class*="color-"], .gradient {
  background-color: var(--ap-black) !important;
  color: var(--ap-off-white) !important;
}

/* ============================================================
   LAYOUT
   ============================================================ */

.ap-container {
  width: 100%;
  max-width: var(--ap-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--ap-gutter);
  padding-right: var(--ap-gutter);
}

.page-width {
  max-width: var(--ap-max-width) !important;
  padding-left: var(--ap-gutter) !important;
  padding-right: var(--ap-gutter) !important;
}

@media (max-width: 768px) {
  .ap-container,
  .page-width {
    padding-left: var(--ap-gutter-sm) !important;
    padding-right: var(--ap-gutter-sm) !important;
  }
}

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */

.ap-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ap-font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ap-gray-1);
  margin-bottom: 24px;
}
.ap-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--ap-gold);
  opacity: 0.5;
}

.ap-headline-xl {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.95;
}
.ap-headline-lg {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.ap-headline-md {
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.ap-headline-sm {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.2;
}

.ap-body-lg {
  font-size: 18px;
  line-height: 1.75;
  color: var(--ap-gray-1);
}
.ap-body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ap-gray-1);
}
.ap-caption {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ap-gray-2);
}

/* ============================================================
   BUTTONS
   ============================================================ */

.ap-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 40px;
  font-family: var(--ap-font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--ap-dur-mid) var(--ap-ease);
  border-radius: 0;
  white-space: nowrap;
}

.ap-btn-primary {
  background: var(--ap-white);
  color: var(--ap-black);
  border: 1px solid var(--ap-white);
}
.ap-btn-primary:hover {
  background: transparent;
  color: var(--ap-white);
  border-color: rgba(255,255,255,0.5);
  opacity: 1;
}
.ap-btn-primary:active {
  transform: scale(0.98);
}

.ap-btn-outline {
  background: transparent;
  color: var(--ap-white);
  border: 1px solid var(--ap-border-strong);
}
.ap-btn-outline:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.5);
  opacity: 1;
  color: var(--ap-white);
}

.ap-btn-ghost {
  background: transparent;
  color: var(--ap-gray-1);
  padding: 0;
  font-size: 11px;
  letter-spacing: 0.12em;
  border: none;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.ap-btn-ghost::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: var(--ap-gray-2);
  transition: background var(--ap-dur-fast);
}
.ap-btn-ghost:hover {
  color: var(--ap-white);
  opacity: 1;
}
.ap-btn-ghost:hover::after { background: var(--ap-white); }

.btn, .button, [class*="btn-"] { border-radius: 0 !important; }

/* ============================================================
   CARBON TEXTURE UTILITY
   ============================================================ */

.ap-carbon {
  position: relative;
  background-color: var(--ap-surface);
  isolation: isolate;
}
.ap-carbon::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,0.018) 0px,
      rgba(255,255,255,0.018) 1px,
      transparent 1px,
      transparent 7px
    ),
    repeating-linear-gradient(
      135deg,
      rgba(255,255,255,0.018) 0px,
      rgba(255,255,255,0.018) 1px,
      transparent 1px,
      transparent 7px
    );
  pointer-events: none;
  z-index: 0;
}
.ap-carbon > * { position: relative; z-index: 1; }

/* ============================================================
   DIVIDERS
   ============================================================ */

.ap-divider {
  width: 100%;
  height: 1px;
  background: var(--ap-border);
}

/* ============================================================
   IMAGE PLACEHOLDERS
   ============================================================ */

.ap-placeholder {
  width: 100%;
  height: 100%;
  background: var(--ap-surface-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px dashed rgba(255,255,255,0.1);
}
.ap-placeholder__label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ap-gray-2);
  text-align: center;
  padding: 0 16px;
  max-width: 220px;
  line-height: 1.6;
}
.ap-placeholder__spec {
  font-size: 9px;
  color: var(--ap-gray-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */

.ap-reveal {
  opacity: 0;
  transform: translateY(24px);
  will-change: opacity, transform;
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.ap-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Slide variants for left/right panels */
.ap-reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  will-change: opacity, transform;
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.ap-reveal-right {
  opacity: 0;
  transform: translateX(32px);
  will-change: opacity, transform;
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.ap-reveal-left.is-visible,
.ap-reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}
/* Instant reveal — for elements already in viewport on load */
.ap-reveal.no-transition,
.ap-reveal-left.no-transition,
.ap-reveal-right.no-transition {
  transition-duration: 0ms !important;
  transition-delay: 0ms !important;
}
.ap-reveal-delay-1 { transition-delay: 80ms; }
.ap-reveal-delay-2 { transition-delay: 180ms; }
.ap-reveal-delay-3 { transition-delay: 280ms; }
.ap-reveal-delay-4 { transition-delay: 380ms; }
.ap-reveal-delay-5 { transition-delay: 480ms; }

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
#ap-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(
    90deg,
    var(--ap-gold) 0%,
    var(--ap-gold-mid) 50%,
    var(--ap-gold-light) 100%
  );
  z-index: 9999;
  pointer-events: none;
  transition: width 0.08s linear;
  transform-origin: left center;
}

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */

.ap-announcement-bar,
.announcement-bar-section {
  background-color: var(--ap-surface) !important;
  border-bottom: 1px solid var(--ap-border) !important;
}
.announcement-bar__message,
.announcement-bar__message h5,
.announcement-bar__message p,
.ap-announcement-bar .h5,
.announcement-bar .h5 {
  font-family: var(--ap-font-body) !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: var(--ap-gray-1) !important;
  padding: 11px 0 !important;
  text-align: center !important;
  margin: 0 !important;
}
.announcement-bar {
  justify-content: center !important;
}
.ap-announcement-bar a,
.announcement-bar__message a {
  color: var(--ap-white) !important;
  text-decoration: underline !important;
  text-underline-offset: 2px !important;
}

/* ============================================================
   HEADER
   ============================================================ */

/* ============================================================
   HEADER
   ============================================================ */

/* Strip Dawn's color-scheme gradient from the wrapper */
.ap-header-wrapper,
.header-wrapper {
  background: transparent !important;
}

.section-header {
  position: sticky !important;
  top: 0 !important;
  z-index: var(--ap-z-header) !important;
}

.header {
  background-color: rgba(8,8,8,0.97) !important;
  backdrop-filter: blur(32px) !important;
  -webkit-backdrop-filter: blur(32px) !important;
  border-bottom: 1px solid rgba(255,255,255,0.055) !important;
  padding: 0 var(--ap-gutter) !important;
  min-height: 72px !important;
  transition: border-color 0.4s ease !important;
}

/* ---- Grid: Logo left | Nav auto | [gap] | Icons right ---- */
@media screen and (min-width: 990px) {
  .header--middle-left {
    grid-template-areas: 'heading navigation icons' !important;
    grid-template-columns: auto 1fr auto !important;
    column-gap: 0 !important;
    align-items: center !important;
  }
  /* Nav anchors to the left after the logo */
  .header--middle-left .header__inline-menu {
    justify-self: start !important;
    padding-left: 32px !important;
  }
  /* Icons anchor to far right */
  .header--middle-left .header__icons {
    justify-self: end !important;
  }
}

/* Logo */
.header__heading {
  margin: 0 !important;
}
.header__heading-link,
.header > .header__heading-link {
  color: var(--ap-white) !important;
  text-decoration: none !important;
  padding: 0.5rem 0.75rem !important;
}
.header__heading-logo {
  max-height: 36px !important;
  width: auto !important;
  display: block !important;
}
.header__heading-logo-wrapper {
  display: flex !important;
  align-items: center !important;
}
/* Shop name text fallback */
.header__heading .h2,
.header__heading-link .h2 {
  font-family: var(--ap-font-display) !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  letter-spacing: 0.28em !important;
  text-transform: uppercase !important;
  color: var(--ap-white) !important;
  line-height: 1 !important;
}

/* Desktop nav links */
.header__inline-menu .list-menu__item--link {
  font-family: var(--ap-font-body) !important;
  font-size: 10.5px !important;
  font-weight: 500 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: var(--ap-gray-2) !important;
  padding: 6px 16px !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}
.header__inline-menu .list-menu__item--link:hover,
.header__inline-menu .list-menu__item--link[aria-current="page"] {
  color: var(--ap-white) !important;
  opacity: 1 !important;
}
.header__inline-menu .list-menu { gap: 0 !important; }

/* Hide the country/language localization from the header — it clutters the nav */
.header .desktop-localization-wrapper {
  display: none !important;
}

/* Header icons (search, account, cart) */
.header__icons {
  gap: 4px !important;
  padding-right: 0 !important;
}
.header__icon {
  color: var(--ap-gray-2) !important;
  transition: color 0.2s ease !important;
}
.header__icon:hover { color: var(--ap-white) !important; opacity: 1 !important; }
.header__icon svg, .header__icon .icon {
  width: 18px !important;
  height: 18px !important;
}

/* Cart count badge */
.cart-count-bubble {
  background: var(--ap-white) !important;
  color: var(--ap-black) !important;
  font-family: var(--ap-font-body) !important;
  font-size: 9px !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  min-width: 16px !important;
  height: 16px !important;
  border-radius: 0 !important;
}

/* Mobile drawer */
.menu-drawer {
  background-color: var(--ap-surface) !important;
  border-right: 1px solid var(--ap-border) !important;
}
.menu-drawer__navigation-items .list-menu__item--link {
  font-family: var(--ap-font-body) !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: var(--ap-gray-1) !important;
  padding: 18px 0 !important;
  border-bottom: 1px solid var(--ap-border) !important;
  display: block !important;
}
.menu-drawer__navigation-items .list-menu__item--link:hover {
  color: var(--ap-white) !important;
  opacity: 1 !important;
}
.menu-drawer__close-button { color: var(--ap-gray-1) !important; }

/* ============================================================
   HERO SECTION
   ============================================================ */

.ap-hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background-color: var(--ap-black);
}

.ap-hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.ap-hero__bg-media {
  width: 100%;
  height: 110%; /* extra height so parallax doesn't show a gap */
  object-fit: cover;
  opacity: 0.5;
  will-change: transform;
  transform-origin: center top;
}
.ap-hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    108deg,
    rgba(8,8,8,0.95) 0%,
    rgba(8,8,8,0.65) 46%,
    rgba(8,8,8,0.1) 100%
  );
}

.ap-hero__product-visual {
  position: absolute;
  right: 0;
  top: 0;
  width: 46%;
  height: 100%;
  overflow: hidden;
  will-change: transform;
}
.ap-hero__product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center left;
}

.ap-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--ap-max-width);
  margin: 0 auto;
  padding: 0 var(--ap-gutter);
}

.ap-hero__inner {
  max-width: 560px;
  padding: 80px 0;
}

.ap-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  margin-bottom: 32px;
  /* Gold shimmer */
  background: linear-gradient(
    105deg,
    var(--ap-gold) 0%,
    var(--ap-gold-mid) 28%,
    var(--ap-gold-light) 50%,
    var(--ap-gold-mid) 72%,
    var(--ap-gold) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: ap-gold-shine 5s linear infinite;
}
.ap-hero__eyebrow::before { display: none; }

.ap-hero__headline {
  font-family: var(--ap-font-display);
  font-size: clamp(56px, 7.5vw, 108px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: var(--ap-white);
  margin-bottom: 36px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.6);
}
.ap-hero__headline em {
  font-style: normal;
  color: var(--ap-gray-2);
  font-weight: 300;
}

.ap-hero__subtext {
  font-size: 15px;
  line-height: 1.78;
  color: rgba(200,200,200,0.88);
  max-width: 380px;
  margin-bottom: 52px;
  font-weight: 300;
  letter-spacing: 0.01em;
}

.ap-hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.ap-hero__scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--ap-gray-3);
  font-family: var(--ap-font-body);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.ap-hero__scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, transparent, var(--ap-gray-3));
  animation: ap-scrollPulse 2.4s ease-in-out infinite;
}
@keyframes ap-scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

@media (max-width: 900px) {
  .ap-hero {
    min-height: 100svh;
    text-align: center;
  }
  .ap-hero__product-visual { display: none; }
  .ap-hero__bg-overlay {
    background: rgba(8,8,8,0.85);
  }
  .ap-hero__inner {
    max-width: 100%;
    padding: 100px 0 80px;
  }
  .ap-hero__eyebrow { justify-content: center; }
  .ap-hero__subtext { margin-left: auto; margin-right: auto; }
  .ap-hero__actions { justify-content: center; }
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */

.ap-marquee-section {
  border-top: 1px solid var(--ap-border);
  border-bottom: 1px solid var(--ap-border);
  background: var(--ap-surface);
  overflow: hidden;
  padding: 16px 0;
  user-select: none;
}
.ap-marquee-track {
  display: flex;
  width: max-content;
  animation: ap-marqueeScroll 32s linear infinite;
}
.ap-marquee-section:hover .ap-marquee-track {
  animation-play-state: paused;
}
@keyframes ap-marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.ap-marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 0 24px;
  font-family: var(--ap-font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ap-gray-2);
  white-space: nowrap;
}
.ap-marquee-sep {
  display: inline-block;
  width: 3px;
  height: 3px;
  background: var(--ap-gold);
  opacity: 0.6;
  border-radius: 50%;
}

/* ============================================================
   PRODUCT INTRO / VALUE PROP
   ============================================================ */

.ap-product-intro {
  padding: var(--ap-section-pad) 0;
  background: var(--ap-black);
}
.ap-product-intro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ap-product-intro__media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--ap-surface);
}
.ap-product-intro__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ap-ease);
}
.ap-product-intro__media:hover img { transform: scale(1.03); }
.ap-product-intro__media-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(8,8,8,0.82);
  backdrop-filter: blur(10px);
  padding: 7px 14px;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ap-gray-1);
}
.ap-product-intro__content {}
.ap-product-intro__body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ap-gray-1);
  margin-bottom: 48px;
}
.ap-product-intro__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--ap-border);
  margin-top: 0;
  border: 1px solid var(--ap-border);
}
.ap-stat {
  background: var(--ap-black);
  padding: 28px 24px;
}
.ap-stat__num {
  font-family: var(--ap-font-display);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(
    105deg,
    var(--ap-gold) 0%,
    var(--ap-gold-mid) 28%,
    var(--ap-gold-light) 50%,
    var(--ap-gold-mid) 72%,
    var(--ap-gold) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: ap-gold-shine 4s linear infinite;
}
.ap-stat__label {
  font-size: 11px;
  color: var(--ap-gray-2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .ap-product-intro__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .ap-product-intro__media {
    aspect-ratio: 3/2;
  }
}

/* ============================================================
   FEATURES
   ============================================================ */

.ap-features {
  padding: var(--ap-section-pad) 0;
  background: var(--ap-surface);
  border-top: 1px solid var(--ap-border);
  border-bottom: 1px solid var(--ap-border);
}
.ap-features__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 80px;
}
.ap-features__header .ap-eyebrow {
  justify-content: center;
}
.ap-features__header .ap-eyebrow::before { display: none; }

.ap-features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--ap-border);
}
.ap-feature-card {
  background: var(--ap-surface);
  padding: 52px 44px;
  transition: background 0.4s var(--ap-ease), border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.ap-feature-card:hover {
  background: var(--ap-surface-2);
  border-bottom-color: rgba(201,164,106,0.2);
}
.ap-feature-card:hover .ap-feature-card__icon {
  color: var(--ap-gold);
  transition: color 0.35s ease;
}

.ap-feature-card__icon {
  width: 32px;
  height: 32px;
  margin-bottom: 28px;
  color: var(--ap-gray-1);
  transition: color 0.35s ease;
}
.ap-feature-card__title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ap-white);
  margin-bottom: 12px;
}
.ap-feature-card__body {
  font-size: 14px;
  line-height: 1.78;
  color: var(--ap-gray-2);
}

/* Full-width feature */
.ap-feature-full {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--ap-black);
  border-top: 1px solid var(--ap-border);
}
.ap-feature-full__media {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--ap-surface-2);
}
.ap-feature-full__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ap-feature-full__content {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ap-surface);
}

@media (max-width: 900px) {
  .ap-features__grid { grid-template-columns: 1fr; }
  .ap-feature-full { grid-column: span 1; grid-template-columns: 1fr; }
  .ap-feature-full__media { aspect-ratio: 3/2; }
  .ap-feature-card { padding: 36px 28px; }
  .ap-feature-full__content { padding: 36px 28px; }
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */

.ap-hiw {
  padding: var(--ap-section-pad) 0;
  background: var(--ap-black);
}
.ap-hiw__header {
  margin-bottom: 72px;
}
.ap-hiw__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--ap-border);
  border: 1px solid var(--ap-border);
}
.ap-hiw__step {
  background: var(--ap-black);
  padding: 44px 32px;
  position: relative;
}
.ap-hiw__step-num {
  font-family: var(--ap-font-display);
  font-size: 72px;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 24px;
  user-select: none;
  display: block;
  background: linear-gradient(
    105deg,
    rgba(201,164,106,0.25) 0%,
    var(--ap-gold) 30%,
    var(--ap-gold-mid) 50%,
    var(--ap-gold) 70%,
    rgba(201,164,106,0.25) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: ap-gold-shine 6s linear infinite;
}
.ap-hiw__step-title {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ap-white);
  margin-bottom: 10px;
}
.ap-hiw__step-body {
  font-size: 13px;
  line-height: 1.7;
  color: var(--ap-gray-1);
}

.ap-hiw__visual {
  margin-top: 72px;
  aspect-ratio: 21/9;
  background: var(--ap-surface);
  overflow: hidden;
  border: 1px solid var(--ap-border);
  position: relative;
}
.ap-hiw__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .ap-hiw__steps { grid-template-columns: repeat(2, 1fr); }
  .ap-hiw__visual { aspect-ratio: 4/3; }
}
@media (max-width: 600px) {
  .ap-hiw__steps { grid-template-columns: 1fr; }
}

/* ============================================================
   INSTALLATION
   ============================================================ */

.ap-install {
  padding: var(--ap-section-pad) 0;
  background: var(--ap-surface);
  border-top: 1px solid var(--ap-border);
}
.ap-install__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}

.ap-install__media {
  position: relative;
}
.ap-install__media-main {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--ap-black);
}
.ap-install__media-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ap-install__badge {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 112px;
  height: 112px;
  background: var(--ap-white);
  color: var(--ap-black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.ap-install__badge-num {
  font-family: var(--ap-font-display);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(
    105deg,
    var(--ap-gold) 0%,
    var(--ap-gold-mid) 50%,
    var(--ap-gold) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: ap-gold-shine 4s linear infinite;
}
.ap-install__badge-label {
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}

.ap-install__content {}
.ap-install__steps {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
  border-top: 1px solid var(--ap-border);
}
.ap-install__step-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--ap-border);
  align-items: flex-start;
}
.ap-install__step-num {
  font-family: var(--ap-font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--ap-gray-2);
  letter-spacing: 0.08em;
  min-width: 24px;
  padding-top: 3px;
}
.ap-install__step-text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ap-gray-1);
}
.ap-install__step-text strong {
  color: var(--ap-white);
  font-weight: 500;
  display: block;
  margin-bottom: 2px;
}

@media (max-width: 900px) {
  .ap-install__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ============================================================
   COMPATIBILITY
   ============================================================ */

.ap-compat {
  padding: var(--ap-section-pad) 0;
  background: var(--ap-black);
  border-top: 1px solid var(--ap-border);
}
.ap-compat__header { margin-bottom: 64px; }

.ap-compat__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--ap-border);
  margin-bottom: 32px;
  border: 1px solid var(--ap-border);
}
.ap-compat-card {
  background: var(--ap-black);
  padding: 40px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: background var(--ap-dur-mid) var(--ap-ease);
}
.ap-compat-card:hover { background: var(--ap-surface); }

.ap-compat-card__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--ap-surface);
  border: 1px solid var(--ap-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ap-gray-1);
}
.ap-compat-card__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--ap-white);
  margin-bottom: 6px;
}
.ap-compat-card__body {
  font-size: 13px;
  line-height: 1.65;
  color: var(--ap-gray-2);
}

.ap-compat__note {
  border: 1px solid var(--ap-border);
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--ap-gray-1);
  background: var(--ap-surface);
}
.ap-compat__note-dot {
  width: 6px;
  height: 6px;
  background: var(--ap-gray-2);
  border-radius: 50%;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .ap-compat__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   LAUNCH OFFER / BUNDLE
   ============================================================ */

.ap-bundle {
  padding: var(--ap-section-pad) 0;
  background: var(--ap-surface);
  border-top: 1px solid var(--ap-border);
  border-bottom: 1px solid var(--ap-border);
  position: relative;
  overflow: hidden;
}
.ap-bundle::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(201,164,106,0.055) 0%, transparent 65%);
  pointer-events: none;
}

.ap-bundle__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ap-bundle__content {}
.ap-bundle__tag {
  display: inline-block;
  background: transparent;
  border: 1px solid rgba(201,164,106,0.4);
  font-family: var(--ap-font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 14px;
  margin-bottom: 28px;
  /* Gold shimmer on the text */
  background: linear-gradient(
    105deg,
    var(--ap-gold) 0%,
    var(--ap-gold-mid) 28%,
    var(--ap-gold-light) 50%,
    var(--ap-gold-mid) 72%,
    var(--ap-gold) 100%
  ) text;
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: ap-gold-shine 5s linear infinite;
}
.ap-bundle__title {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ap-white);
  margin-bottom: 16px;
}
.ap-bundle__body {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ap-gray-1);
  margin-bottom: 36px;
}
.ap-bundle__includes {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  border-top: 1px solid var(--ap-border);
}
.ap-bundle__include-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--ap-border);
  font-size: 13px;
  color: var(--ap-gray-1);
}
.ap-bundle__include-item::before {
  content: '';
  width: 14px;
  height: 1px;
  background: var(--ap-gray-3);
  flex-shrink: 0;
}
.ap-bundle__include-item strong {
  color: var(--ap-white);
  font-weight: 500;
}

.ap-bundle__price {
  font-family: var(--ap-font-display);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--ap-white);
  margin-bottom: 24px;
  line-height: 1;
}
.ap-bundle__price-note {
  font-family: var(--ap-font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--ap-gray-2);
  margin-left: 10px;
}

.ap-bundle__media {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--ap-black);
  position: relative;
}
.ap-bundle__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ap-ease);
}
.ap-bundle__media:hover img { transform: scale(1.03); }

@media (max-width: 900px) {
  .ap-bundle__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .ap-bundle__media {
    order: -1;
    aspect-ratio: 16/9;
  }
}

/* ============================================================
   BRAND STORY
   ============================================================ */

.ap-story {
  padding: var(--ap-section-pad) 0;
  background: var(--ap-black);
}
.ap-story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}
.ap-story__media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--ap-border);
}
.ap-story__media-item {
  overflow: hidden;
  background: var(--ap-surface);
}
.ap-story__media-item:first-child {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
}
.ap-story__media-item:not(:first-child) {
  aspect-ratio: 1;
}
.ap-story__media-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ap-ease);
}
.ap-story__media-item:hover img { transform: scale(1.04); }

.ap-story__content { padding-top: 8px; }
.ap-story__pull-quote {
  font-family: var(--ap-font-display);
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.4;
  color: var(--ap-off-white);
  margin-bottom: 36px;
  padding-left: 24px;
  border-left: 2px solid var(--ap-gold);
  /* Soft gold glow on the border */
  box-shadow: -4px 0 24px -4px rgba(201,164,106,0.3);
}
.ap-story__body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ap-gray-1);
  margin-bottom: 40px;
}
.ap-story__sig-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ap-white);
  margin-bottom: 3px;
}
.ap-story__sig-role {
  font-size: 11px;
  color: var(--ap-gray-2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .ap-story__inner { grid-template-columns: 1fr; gap: 48px; }
}

/* ============================================================
   FAQ
   ============================================================ */

.ap-faq {
  padding: var(--ap-section-pad) 0;
  background: var(--ap-surface);
  border-top: 1px solid var(--ap-border);
}
.ap-faq__inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 96px;
  align-items: start;
}
.ap-faq__left {
  position: sticky;
  top: 100px;
}
.ap-faq__left-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ap-white);
  margin-bottom: 20px;
}
.ap-faq__left-body {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ap-gray-1);
  margin-bottom: 36px;
}

.ap-faq__list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--ap-border);
}
.ap-faq__item {
  border-bottom: 1px solid var(--ap-border);
}
.ap-faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  user-select: none;
  gap: 20px;
}
.ap-faq__q-text {
  font-size: 15px;
  font-weight: 500;
  color: var(--ap-off-white);
  transition: color var(--ap-dur-fast);
  line-height: 1.4;
}
.ap-faq__question:hover .ap-faq__q-text { color: var(--ap-white); }
.ap-faq__item.is-open .ap-faq__q-text { color: var(--ap-white); }

.ap-faq__toggle {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  position: relative;
  color: var(--ap-gray-2);
}
.ap-faq__toggle::before,
.ap-faq__toggle::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: all var(--ap-dur-mid) var(--ap-ease);
}
.ap-faq__toggle::before {
  width: 12px; height: 1px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.ap-faq__toggle::after {
  width: 1px; height: 12px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.ap-faq__item.is-open .ap-faq__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.ap-faq__item.is-open .ap-faq__toggle { color: var(--ap-white); }

.ap-faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--ap-dur-slow) var(--ap-ease);
}
.ap-faq__item.is-open .ap-faq__answer { max-height: 500px; }
.ap-faq__a-text {
  padding: 0 24px 24px 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--ap-gray-1);
}

@media (max-width: 900px) {
  .ap-faq__inner { grid-template-columns: 1fr; gap: 48px; }
  .ap-faq__left { position: static; }
}

/* ============================================================
   PREORDER CTA
   ============================================================ */

.ap-preorder {
  padding: var(--ap-section-pad) 0;
  background: var(--ap-black);
  border-top: 1px solid var(--ap-border);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ap-preorder::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 1200px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(201,164,106,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.ap-preorder__inner {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}
.ap-preorder__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ap-gold);
  margin-bottom: 28px;
  justify-content: center;
}
.ap-preorder__eyebrow::before,
.ap-preorder__eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: rgba(201,164,106,0.4);
}
.ap-preorder__headline {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.0;
  color: var(--ap-white);
  margin-bottom: 24px;
}
.ap-preorder__subtext {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ap-gray-1);
  margin-bottom: 48px;
}
.ap-preorder__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.ap-preorder__note {
  font-size: 11px;
  color: var(--ap-gray-2);
  letter-spacing: 0.06em;
}

/* ============================================================
   TRUST / SHIPPING / SUPPORT
   ============================================================ */

.ap-trust {
  background: var(--ap-surface);
  border-top: 1px solid var(--ap-border);
}
.ap-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--ap-border);
}
.ap-trust-item {
  background: var(--ap-surface);
  padding: 52px 36px 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  transition: background var(--ap-dur-mid) var(--ap-ease);
}
.ap-trust-item:hover { background: var(--ap-surface-2); }
.ap-trust-item:hover .ap-trust-item__icon { color: var(--ap-gold); }

.ap-trust-item__icon {
  width: 32px;
  height: 32px;
  color: var(--ap-gray-1);
  transition: color 0.25s ease;
}
.ap-trust-item__icon svg { width: 100%; height: 100%; }
.ap-trust-item__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--ap-white);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 0;
}
.ap-trust-item__body {
  font-size: 13px;
  line-height: 1.72;
  color: var(--ap-gray-2);
  margin-top: 8px;
}

@media (max-width: 900px) {
  .ap-trust__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .ap-trust__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PROMO BANNER
   ============================================================ */

.ap-promo-banner {
  user-select: none;
  border-top: 1px solid var(--ap-border);
  border-bottom: 1px solid var(--ap-border);
  overflow: hidden;
  position: relative;
}
.ap-promo-banner__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 520px;
}

/* LEFT: Content */
.ap-promo-banner__content {
  padding: 72px 0 72px;
  padding-right: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ap-promo-banner__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ap-gold);
  margin-bottom: 24px;
}

.ap-promo-banner__headline {
  font-family: var(--ap-font-display);
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: var(--ap-white);
  margin-bottom: 20px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
}
.ap-promo-banner__headline-before {
  display: block;
  font-size: 0.65em;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--ap-gray-1);
  margin-bottom: 4px;
}
.ap-promo-banner__headline-name {
  display: block;
}
.ap-promo-banner__headline-after {
  display: block;
  font-size: 0.5em;
  font-weight: 300;
  letter-spacing: 0;
  color: var(--ap-gray-2);
  margin-top: 6px;
}

.ap-promo-banner__subtext {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ap-gray-1);
  max-width: 420px;
  margin-bottom: 32px;
}

.ap-promo-banner__pills {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}
.ap-promo-banner__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ap-gray-1);
  letter-spacing: 0.02em;
}
.ap-promo-banner__pill svg {
  flex-shrink: 0;
  color: var(--ap-gold);
}

.ap-promo-banner__cta-wrap {
  margin-top: 4px;
}

/* RIGHT: Media */
.ap-promo-banner__media {
  position: relative;
  overflow: hidden;
  background: var(--ap-surface-2);
  min-height: 420px;
}
.ap-promo-banner__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.ap-promo-banner__badge {
  position: absolute;
  bottom: 28px;
  right: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(8,8,8,0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--ap-border-mid);
  padding: 10px 18px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ap-gray-1);
  white-space: nowrap;
}
.ap-promo-banner__badge svg {
  color: var(--ap-gold);
  flex-shrink: 0;
}

/* Allow selected text in selectable elements */
.ap-selectable {
  user-select: text;
  -webkit-user-select: text;
}

@media (max-width: 900px) {
  .ap-promo-banner__inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .ap-promo-banner__content {
    padding: 56px 0 40px;
    padding-right: 0;
  }
  .ap-promo-banner__media {
    min-height: 320px;
    order: -1;
  }
  .ap-promo-banner__headline {
    font-size: clamp(32px, 10vw, 52px);
  }
}
@media (max-width: 480px) {
  .ap-promo-banner__content { padding: 48px 0 36px; }
  .ap-promo-banner__headline { font-size: 34px; }
  .ap-promo-banner__media { min-height: 260px; }
  .ap-promo-banner__badge {
    bottom: 16px;
    right: 16px;
    font-size: 10px;
    padding: 8px 14px;
  }
}

/* ============================================================
   PRODUCT PAGE — OVERRIDES
   ============================================================ */

.product-info,
.product-info.section-main-product {
  background-color: var(--ap-black) !important;
  padding-top: 0 !important;
}

.product {
  gap: 80px !important;
  align-items: start !important;
}

/* Gallery area */
.product__media-wrapper {
  background: var(--ap-surface) !important;
}
.product-media-container,
.product__media {
  background: var(--ap-surface) !important;
  border: none !important;
  border-radius: 0 !important;
}

/* Product title */
.product__title h1,
.product__title .h2 {
  font-family: var(--ap-font-display) !important;
  font-size: clamp(30px, 3.2vw, 44px) !important;
  font-weight: 600 !important;
  letter-spacing: -0.03em !important;
  color: var(--ap-white) !important;
  line-height: 1.05 !important;
  margin-bottom: 16px !important;
}

/* Price */
.price .price-item,
.price__regular .price-item--regular,
.price--large .price-item {
  font-family: var(--ap-font-display) !important;
  font-size: 28px !important;
  font-weight: 600 !important;
  letter-spacing: -0.03em !important;
  color: var(--ap-white) !important;
}
/* Sale price = the new lower price (should be prominent, white) */
.price--on-sale .price-item--sale {
  color: var(--ap-white) !important;
  font-size: 28px !important;
  font-weight: 600 !important;
}
/* Compare-at price = the old crossed-out price */
.price--on-sale .price-item--regular,
.price .price-item--regular.price-item--last {
  color: var(--ap-gray-1) !important;
  font-size: 16px !important;
  text-decoration: line-through !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
}

/* Variant labels */
.product-form__input .form__label,
.variant-picker .form__label {
  font-family: var(--ap-font-body) !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: var(--ap-gray-1) !important;
}

/* Add to cart */
.product-form__submit,
button[name="add"] {
  background: var(--ap-white) !important;
  color: var(--ap-black) !important;
  border: 1px solid var(--ap-white) !important;
  border-radius: 0 !important;
  font-family: var(--ap-font-body) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  padding: 22px 48px !important;
  min-height: auto !important;
  width: 100% !important;
  transition: background 0.22s ease, color 0.22s ease !important;
  cursor: pointer !important;
}
.product-form__submit:hover,
button[name="add"]:hover {
  background: transparent !important;
  color: var(--ap-white) !important;
}
.product-form__submit:active,
button[name="add"]:active {
  transform: scale(0.99) !important;
}

/* Quantity selector */
.quantity__input {
  font-family: var(--ap-font-body) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: var(--ap-white) !important;
  background: var(--ap-surface-2) !important;
  border: 1px solid var(--ap-border) !important;
  border-radius: 0 !important;
}
.quantity {
  border: 1px solid var(--ap-border) !important;
  border-radius: 0 !important;
  background: var(--ap-surface-2) !important;
}
.quantity__button {
  color: var(--ap-gray-1) !important;
  background: transparent !important;
}
.quantity__button:hover { color: var(--ap-white) !important; }

/* Form spacing */
.product-form__input { margin-bottom: 20px !important; }
.product-form__buttons {
  margin-top: 28px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
}

/* Buy now / dynamic checkout */
.shopify-payment-button__button {
  border-radius: 0 !important;
}
.shopify-payment-button__button--unbranded {
  background: var(--ap-surface-2) !important;
  color: var(--ap-white) !important;
  border: 1px solid var(--ap-border-mid) !important;
  border-radius: 0 !important;
  padding: 20px !important;
  font-family: var(--ap-font-body) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
}

/* Product description */
.product__description {
  font-size: 15px !important;
  line-height: 1.82 !important;
  color: var(--ap-gray-1) !important;
  border-top: 1px solid var(--ap-border) !important;
  padding-top: 28px !important;
  margin-top: 28px !important;
}
.product__description p { margin-bottom: 0.85em !important; }
.product__description strong { color: var(--ap-white) !important; font-weight: 600 !important; }
.product__description ul { padding-left: 16px !important; }
.product__description li { margin-bottom: 6px !important; }

/* Product vendor / caption */
.product__text.caption-with-letter-spacing {
  font-size: 10px !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  color: var(--ap-gold) !important;
  opacity: 0.8 !important;
}

/* Thumbnails */
.thumbnail-list__item--active,
.product__thumbnail.is-active {
  border: 1px solid var(--ap-border-strong) !important;
}

/* ============================================================
   PRODUCT DETAIL SECTION
   ============================================================ */

.ap-product-detail {
  background: var(--ap-surface);
  border-top: 1px solid var(--ap-border);
  border-bottom: 1px solid var(--ap-border);
  padding: 0 0 var(--ap-section-pad);
}
.ap-product-detail__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--ap-border);
}
.ap-product-detail__col {
  background: var(--ap-surface);
  padding: 52px 44px;
}
.ap-product-detail__col-label {
  font-family: var(--ap-font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ap-gray-2);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--ap-border);
}

.ap-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ap-feature-list__item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--ap-border);
  align-items: flex-start;
}
.ap-feature-list__item::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--ap-gray-2);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}
.ap-feature-list__item-content {
  font-size: 14px;
  color: var(--ap-gray-1);
  line-height: 1.65;
}
.ap-feature-list__item-content strong {
  color: var(--ap-white);
  font-weight: 500;
  display: block;
  margin-bottom: 2px;
}

.ap-included-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ap-included-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--ap-border);
}
.ap-included-item__check {
  width: 14px;
  height: 14px;
  border: 1px solid var(--ap-border-strong);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ap-included-item__check::after {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--ap-white);
}
.ap-included-item__name {
  font-size: 14px;
  color: var(--ap-gray-1);
  flex: 1;
}
.ap-included-item__note {
  font-size: 11px;
  color: var(--ap-gray-2);
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  .ap-product-detail__inner { grid-template-columns: 1fr; }
  .ap-product-detail__col { padding: 36px 24px; }
}

/* ============================================================
   CART DRAWER
   ============================================================ */

cart-drawer,
.cart-drawer {
  background-color: var(--ap-surface) !important;
  border-left: 1px solid var(--ap-border-mid) !important;
}
.cart-drawer__header {
  background: var(--ap-surface) !important;
  border-bottom: 1px solid var(--ap-border) !important;
  padding: 22px 28px !important;
}
.cart-drawer__header h2,
.cart-drawer__heading {
  font-family: var(--ap-font-display) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  color: var(--ap-white) !important;
  margin: 0 !important;
}
.cart-drawer__close {
  color: var(--ap-gray-2) !important;
  transition: color 0.2s ease !important;
}
.cart-drawer__close:hover { color: var(--ap-white) !important; }

.cart-items,
.cart-drawer__form {
  background: var(--ap-surface) !important;
}
.cart-item__name,
.cart-item__name a {
  font-family: var(--ap-font-display) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em !important;
  color: var(--ap-white) !important;
}
.cart-item {
  padding: 22px 0 !important;
  border-bottom: 1px solid var(--ap-border) !important;
}
.cart-item__price-wrapper {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
}
.cart-item__price .price-item {
  font-family: var(--ap-font-display) !important;
  color: var(--ap-white) !important;
}

.cart-drawer__footer {
  background: var(--ap-surface) !important;
  border-top: 1px solid var(--ap-border) !important;
  padding: 20px 28px 28px !important;
}
.totals__subtotal {
  font-family: var(--ap-font-body) !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: var(--ap-gray-1) !important;
}
.totals__subtotal-value {
  font-family: var(--ap-font-display) !important;
  font-size: 22px !important;
  font-weight: 600 !important;
  letter-spacing: -0.02em !important;
  color: var(--ap-white) !important;
}
.cart-drawer__footer .cart__cta .button,
.cart-drawer__footer #checkout,
#checkout {
  background: var(--ap-white) !important;
  color: var(--ap-black) !important;
  border: none !important;
  border-radius: 0 !important;
  font-family: var(--ap-font-body) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  padding: 20px !important;
  transition: background 0.2s ease !important;
  cursor: pointer !important;
  width: 100% !important;
}
.cart-drawer__footer .cart__cta .button:hover,
.cart-drawer__footer #checkout:hover {
  background: var(--ap-off-white) !important;
}

/* Cart trust grid — injected via JS */
.ap-cart-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--ap-border);
}
.ap-cart-trust-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--ap-font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ap-gray-2);
  padding: 8px 10px;
  background: var(--ap-surface-2);
  border: 1px solid var(--ap-border);
  line-height: 1.3;
}
.ap-cart-trust-pill svg {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
  color: var(--ap-gray-1);
}

/* ============================================================
   STICKY ADD TO CART (PRODUCT PAGE)
   ============================================================ */

.ap-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(8,8,8,0.98);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border-top: 1px solid var(--ap-border-mid);
  padding: 14px var(--ap-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.ap-sticky-cta.is-visible { transform: translateY(0); }

.ap-sticky-cta__product {
  display: flex;
  align-items: center;
  gap: 16px;
}
.ap-sticky-cta__name {
  font-family: var(--ap-font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ap-white);
}
.ap-sticky-cta__price {
  font-family: var(--ap-font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ap-gray-1);
}
.ap-sticky-cta__btn {
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .ap-sticky-cta {
    padding: 14px var(--ap-gutter-sm);
    flex-direction: column;
    gap: 12px;
  }
  .ap-sticky-cta__product { display: none; }
  .ap-sticky-cta__btn { width: 100%; }
}

/* ============================================================
   FOOTER (CUSTOM APERION FOOTER)
   ============================================================ */

.ap-footer {
  background: var(--ap-surface);
  border-top: 1px solid var(--ap-border);
}
.ap-footer__top {
  padding: 72px 0 56px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.6fr;
  gap: 40px;
  border-bottom: 1px solid var(--ap-border);
  align-items: start;
}
.ap-footer__brand-name {
  font-family: var(--ap-font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ap-white);
  margin-bottom: 24px;
  display: block;
}
.ap-footer__social {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.ap-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--ap-border);
  color: var(--ap-gray-2);
  transition: all var(--ap-dur-fast);
}
.ap-footer__social-link:hover {
  border-color: var(--ap-border-strong);
  color: var(--ap-white);
  opacity: 1;
}

.ap-footer__col-title {
  font-family: var(--ap-font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ap-gray-2);
  margin-bottom: 20px;
}
.ap-footer__col-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ap-footer__col-links a {
  font-size: 13px;
  color: var(--ap-gray-2);
  transition: color 0.2s ease;
  text-decoration: none;
  line-height: 1.4;
}
.ap-footer__col-links a:hover {
  color: var(--ap-gray-1);
  opacity: 1;
}

/* ---- CTA Card ---- */
.ap-footer__cta-card {
  position: relative;
  background: var(--ap-surface-2);
  border: 1px solid var(--ap-border);
  overflow: hidden;
  min-height: 220px;
  display: flex;
  flex-direction: column;
}
.ap-footer__cta-card-image {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 55%;
  pointer-events: none;
}
.ap-footer__cta-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center left;
  opacity: 0.35;
  display: block;
}
/* Fade the image so left content is legible */
.ap-footer__cta-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--ap-surface-2) 40%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}
.ap-footer__cta-card-content {
  position: relative;
  z-index: 2;
  padding: 32px 28px 32px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
}
.ap-footer__cta-card-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ap-gold);
  margin-bottom: 10px;
}
.ap-footer__cta-card-title {
  font-family: var(--ap-font-display);
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ap-white);
  margin-bottom: 8px;
  line-height: 1.15;
}
.ap-footer__cta-card-body {
  font-size: 12px;
  line-height: 1.6;
  color: var(--ap-gray-1);
  margin-bottom: 20px;
  max-width: 200px;
}
.ap-footer__cta-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: 12px 24px;
  background: var(--ap-gold);
  color: #0a0800;
  font-family: var(--ap-font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease;
}
.ap-footer__cta-card-btn:hover {
  background: var(--ap-gold-mid);
  opacity: 1;
}

/* ---- Bottom bar ---- */
.ap-footer__bottom {
  padding: 22px 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.ap-footer__copyright {
  font-size: 11px;
  color: var(--ap-gray-3);
  letter-spacing: 0.06em;
  font-style: italic;
}
.ap-footer__policies {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.ap-footer__policies a {
  font-size: 11px;
  color: var(--ap-gray-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s ease;
}
.ap-footer__policies a:hover {
  color: var(--ap-gray-1);
  opacity: 1;
}
.ap-footer__copy-right {
  font-size: 11px;
  color: var(--ap-gray-3);
  letter-spacing: 0.06em;
  text-align: right;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .ap-footer__top {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
  }
  .ap-footer__cta-card { grid-column: span 3; }
}
@media (max-width: 760px) {
  .ap-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding: 48px 0 40px;
  }
  .ap-footer__brand-col { grid-column: span 2; }
  .ap-footer__cta-card { grid-column: span 2; }
  .ap-footer__bottom {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
  }
  .ap-footer__copyright { text-align: center; }
  .ap-footer__copy-right { text-align: center; }
}
@media (max-width: 480px) {
  .ap-footer__top { grid-template-columns: 1fr; }
  .ap-footer__brand-col { grid-column: span 1; }
  .ap-footer__cta-card { grid-column: span 1; }
}

/* ============================================================
   GLOBAL MISC OVERRIDES
   ============================================================ */

/* Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--ap-black); }
::-webkit-scrollbar-thumb { background: var(--ap-surface-3); border-radius: 2px; }

/* Focus */
:focus-visible {
  outline: 1px solid rgba(255,255,255,0.35) !important;
  outline-offset: 3px !important;
}

/* Dawn heading overrides */
.h0, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--ap-font-display) !important;
}

/* Remove Dawn borders/radius */
.product-media-container,
.card,
.card__inner,
.card-wrapper { border-radius: 0 !important; }

/* Input / form resets */
input, textarea, select {
  font-family: var(--ap-font-body) !important;
  background: var(--ap-surface-2) !important;
  border: 1px solid var(--ap-border) !important;
  color: var(--ap-white) !important;
  border-radius: 0 !important;
}
input::placeholder,
textarea::placeholder { color: var(--ap-gray-2) !important; }
input:focus,
textarea:focus { border-color: var(--ap-border-strong) !important; outline: none !important; }

/* =============================================
   SUPPRESS SHOPIFY DEFAULT CONSENT BANNER
   We use our own — kill the default one.
   ============================================= */
#shopify-pc-banner,
.shopify-privacy-consent,
.shopify-privacy-consent-container,
.shopify-cookie-consent,
[id^="shopify-pc"] {
  display: none !important;
  pointer-events: none !important;
}

/* =============================================
   COOKIE CONSENT BANNER
   ============================================= */
}

/* ============================================================
   PRODUCT GUARANTEE STRIP
   (injected via JS after add-to-cart button)
   ============================================================ */
.ap-product-guarantees {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 16px;
}
.ap-product-guarantee {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  background: var(--ap-surface-2);
  border: 1px solid var(--ap-border);
  transition: border-color 0.2s ease;
}
.ap-product-guarantee:hover {
  border-color: var(--ap-border-mid);
}
.ap-product-guarantee svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  color: var(--ap-gray-1);
}
.ap-product-guarantee span {
  font-family: var(--ap-font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ap-gray-1);
  line-height: 1.3;
}
@media (max-width: 480px) {
  .ap-product-guarantees {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   GUARANTEE STRIP (Top of product detail section)
   ============================================================ */
.ap-guarantee-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--ap-border);
  background: var(--ap-black);
}
.ap-guarantee-strip__item {
  padding: 28px 28px 24px;
  border-right: 1px solid var(--ap-border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ap-guarantee-strip__item:last-child { border-right: none; }
.ap-guarantee-strip__label {
  font-family: var(--ap-font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ap-white);
}
.ap-guarantee-strip__desc {
  font-size: 12px;
  line-height: 1.6;
  color: var(--ap-gray-2);
}
.ap-guarantee-strip__icon {
  width: 20px;
  height: 20px;
  color: var(--ap-gray-1);
}
.ap-guarantee-strip__icon svg { width: 100%; height: 100%; }

@media (max-width: 900px) {
  .ap-guarantee-strip { grid-template-columns: repeat(2, 1fr); }
  .ap-guarantee-strip__item:nth-child(2) { border-right: none; }
  .ap-guarantee-strip__item:nth-child(3),
  .ap-guarantee-strip__item:nth-child(4) { border-top: 1px solid var(--ap-border); }
}
@media (max-width: 480px) {
  .ap-guarantee-strip { grid-template-columns: 1fr; }
  .ap-guarantee-strip__item { border-right: none; border-top: 1px solid var(--ap-border); }
  .ap-guarantee-strip__item:first-child { border-top: none; }
}

/* ============================================================
   ANNOUNCEMENT BAR REFINEMENT
   ============================================================ */
.announcement-bar {
  background: var(--ap-black) !important;
  border-bottom: 1px solid var(--ap-border) !important;
}
.announcement-bar__message {
  font-family: var(--ap-font-body) !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: var(--ap-gray-1) !important;
  padding: 11px 0 !important;
}
.announcement-bar__message a {
  color: var(--ap-gray-1) !important;
  text-decoration: none !important;
}

/* =====================================================
   HERO TRUST PILLS
   ===================================================== */
.ap-hero__trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 28px;
}
.ap-hero__trust-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ap-font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ap-gray-1);
}
.ap-hero__trust-pill svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  color: var(--ap-gold);
}
@media (max-width: 600px) {
  .ap-hero__trust-pills {
    gap: 8px 16px;
    margin-top: 22px;
  }
  .ap-hero__trust-pill {
    font-size: 10.5px;
  }
}

/* Guarantee strip icon hover: gold */
.ap-guarantee-strip__item:hover .ap-guarantee-strip__icon {
  color: var(--ap-gold);
}
.ap-guarantee-strip__icon {
  transition: color 0.3s ease;
}
