/** Shopify CDN: Minification failed

Line 46:0 All "@import" rules must come first

**/
/* ============================================================
   LUX POD CASE — Theme Stylesheet
   ============================================================ */
:root {
  --color-bg:           #080808;
  --color-bg-2:         #111111;
  --color-bg-3:         #1a1a1a;
  --color-purple:       #6B21A8;
  --color-purple-mid:   #7C3AED;
  --color-purple-light: #A855F7;
  --color-purple-dark:  #4C1D95;
  --color-purple-glow:  rgba(124,58,237,0.25);
  --color-white:        #ffffff;
  --color-off-white:    #f5f0ff;
  --color-muted:        #888888;
  --color-border:       #2a2a2a;
  --color-star:         #F59E0B;
  --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', 'DM Sans', sans-serif;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-purple: 0 8px 40px rgba(124,58,237,0.3);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--color-bg);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ============================================================
   UTILITIES
   ============================================================ */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 36px; font-family: var(--font-body); font-size: 13px;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: var(--radius-sm); transition: var(--transition); cursor: pointer; border: none;
}
.btn--purple { background: var(--color-purple-mid); color: #fff; }
.btn--purple:hover { background: var(--color-purple-light); transform: translateY(-2px); box-shadow: var(--shadow-purple); }
.btn--purple-dark { background: var(--color-purple-dark); color: #fff; }
.btn--purple-dark:hover { background: var(--color-purple-mid); }
.btn--outline { background: transparent; color: var(--color-white); border: 1.5px solid rgba(255,255,255,0.3); }
.btn--outline:hover { border-color: var(--color-purple-light); color: var(--color-purple-light); }
.btn--full { width: 100%; }
.btn--lg { padding: 18px 40px; font-size: 14px; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 500; letter-spacing: 0.01em; text-align: center; margin-bottom: 8px;
  color: #ffffff;
}
.section-subtitle { text-align: center; color: var(--color-muted); font-size: 14px; margin-bottom: 48px; }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  background: var(--color-purple-dark);
  padding: 10px 0; overflow: hidden; position: relative;
}
.announcement-bar__track {
  display: flex; gap: 0; white-space: nowrap;
  animation: announceTicker 28s linear infinite;
}
.announcement-bar__item {
  display: inline-flex; align-items: center; gap: 24px;
  padding: 0 40px; font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-white);
  flex-shrink: 0;
}
.announcement-bar__item .dot { width: 4px; height: 4px; background: var(--color-purple-light); border-radius: 50%; }
@keyframes announceTicker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(8,8,8,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  padding: 0 24px;
}
.site-header__inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; height: 64px;
}
.site-header__nav { display: flex; align-items: center; gap: 32px; }
.site-header__nav a {
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.75);
  transition: var(--transition);
}
.site-header__nav a:hover, .site-header__nav a.active { color: var(--color-purple-light); }
.site-header__logo {
  text-align: center; font-family: var(--font-display);
  font-size: 22px; font-weight: 500; letter-spacing: 0.05em;
  white-space: nowrap;
}
.site-header__logo img { max-height: 40px; margin: 0 auto; }
.site-header__actions { display: flex; align-items: center; gap: 20px; justify-content: flex-end; }
.site-header__actions button, .site-header__actions a {
  display: flex; align-items: center; color: rgba(255,255,255,0.8);
  transition: var(--transition); background: none; border: none; padding: 0; font-size: 13px;
}
.site-header__actions button:hover, .site-header__actions a:hover { color: var(--color-purple-light); }
.cart-count {
  background: var(--color-purple-mid); color: #fff;
  font-size: 10px; font-weight: 700; width: 18px; height: 18px;
  border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  margin-left: 4px;
}

/* Hamburger */
.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 24px; }
.nav-toggle span { display: block; width: 100%; height: 2px; background: var(--color-white); border-radius: 2px; transition: var(--transition); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 85vh; display: flex;
  align-items: center; overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  background-color: #100818;
}
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,8,8,0.85) 0%, rgba(76,29,149,0.4) 50%, rgba(8,8,8,0.7) 100%);
}
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__content {
  position: relative; z-index: 2;
  max-width: 600px; margin: 0 auto;
  text-align: center; padding: 80px 24px;
}
.hero__eyebrow {
  display: inline-block; background: rgba(124,58,237,0.25);
  border: 1px solid var(--color-purple-mid); border-radius: 99px;
  padding: 6px 18px; font-size: 11px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-purple-light);
  margin-bottom: 24px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 500; line-height: 1.15;
  margin-bottom: 20px; letter-spacing: -0.01em;
}
.hero__title em { font-style: italic; color: var(--color-purple-light); }
.hero__subtitle { font-size: 16px; color: rgba(255,255,255,0.7); margin-bottom: 36px; line-height: 1.7; }
.hero__cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero__badge {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 99px; padding: 8px 20px; font-size: 12px; white-space: nowrap;
}

/* ============================================================
   MEDIA SLIDER / GRID
   ============================================================ */
.media-grid { padding: 80px 0; background: var(--color-bg); }
.media-grid__title { margin-bottom: 48px; }
.media-grid__track {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.media-grid__item {
  position: relative; border-radius: var(--radius-md);
  overflow: hidden; aspect-ratio: 4/5;
  cursor: pointer; group: true;
}
.media-grid__item img, .media-grid__item video {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.media-grid__item:hover img,
.media-grid__item:hover video { transform: scale(1.04); }
.media-grid__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 50%);
}
.media-grid__label {
  position: absolute; bottom: 20px; left: 20px; right: 20px;
  font-family: var(--font-display); font-size: 18px; font-weight: 500;
  line-height: 1.3;
}
.media-grid__play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 56px; height: 56px; background: rgba(255,255,255,0.15);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.3);
  transition: var(--transition); pointer-events: none;
}
.media-grid__item:hover .media-grid__play { background: rgba(124,58,237,0.5); }

/* ============================================================
   MARQUEE / SALE BAR
   ============================================================ */
.marquee-bar {
  background: var(--color-purple-dark); padding: 14px 0;
  overflow: hidden; border-top: 1px solid rgba(168,85,247,0.3);
  border-bottom: 1px solid rgba(168,85,247,0.3);
}
.marquee-bar__track {
  display: flex; white-space: nowrap;
  animation: marqueeScroll 20s linear infinite;
}
.marquee-bar__item {
  display: inline-flex; align-items: center; gap: 16px;
  padding: 0 32px; font-size: 13px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--color-white); flex-shrink: 0;
}
.marquee-bar__item .star { color: var(--color-purple-light); font-size: 16px; }
@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-section { padding: 80px 0; background: var(--color-bg); }
.reviews-header { text-align: center; margin-bottom: 48px; }
.reviews-trustpilot-badge {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--color-bg-2); border: 1px solid var(--color-border);
  border-radius: 99px; padding: 10px 24px; margin-bottom: 16px;
}
.reviews-trustpilot-badge .tp-logo {
  font-size: 12px; font-weight: 700; letter-spacing: 0.05em;
  background: #00B67A; color: #fff; padding: 2px 8px; border-radius: 2px;
}
.reviews-trustpilot-badge .tp-score { font-size: 15px; font-weight: 700; }
.reviews-trustpilot-badge .tp-stars { color: #00B67A; letter-spacing: 2px; }
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.review-card {
  background: var(--color-bg-2); border: 1px solid var(--color-border);
  border-radius: var(--radius-md); padding: 24px;
  transition: var(--transition);
}
.review-card:hover { border-color: rgba(124,58,237,0.4); transform: translateY(-2px); }
.review-stars { color: #00B67A; font-size: 18px; margin-bottom: 8px; letter-spacing: 2px; }
.review-title { font-weight: 700; font-size: 14px; margin-bottom: 10px; }
.review-body { color: rgba(255,255,255,0.7); font-size: 13px; line-height: 1.65; margin-bottom: 16px; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-author__avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, var(--color-purple-dark), var(--color-purple-mid));
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; flex-shrink: 0;
}
.review-author__name { font-size: 13px; font-weight: 600; }
.review-author__verified { font-size: 11px; color: #00B67A; }

/* ============================================================
   COMPARISON / FEATURE IMAGE
   ============================================================ */
.comparison-section { padding: 80px 0; background: var(--color-bg-2); }
.comparison-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center;
}
.comparison-media { border-radius: var(--radius-lg); overflow: hidden; }
.comparison-content { padding: 20px 0; }
.comparison-content .section-title { text-align: left; font-size: clamp(24px, 3vw, 40px); }
.comparison-content .section-subtitle { text-align: left; margin-bottom: 32px; }
.comparison-features { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.comparison-features li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: rgba(255,255,255,0.8);
}
.comparison-features li::before {
  content: '✦'; color: var(--color-purple-light);
  flex-shrink: 0; margin-top: 1px; font-size: 12px;
}

/* ============================================================
   COMPATIBILITY SECTION
   ============================================================ */
.compat-section { padding: 80px 0; background: var(--color-bg); }
.compat-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px;
  margin-top: 48px;
}
.compat-badge {
  background: var(--color-bg-2); border: 1px solid var(--color-border);
  border-radius: var(--radius-md); padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
  transition: var(--transition);
}
.compat-badge:hover { border-color: var(--color-purple-mid); }
.compat-badge__icon { font-size: 20px; }
.compat-badge__name { font-size: 13px; font-weight: 600; }
.compat-badge__gen { font-size: 11px; color: var(--color-muted); }

/* ============================================================
   PRODUCT PAGE
   ============================================================ */
.product-page { padding: 40px 0 80px; }
.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }

/* Gallery */
.product-gallery { position: sticky; top: 80px; }
.product-gallery__main {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--color-bg-2); aspect-ratio: 1/1;
  margin-bottom: 12px; cursor: zoom-in;
}
.product-gallery__main img, .product-gallery__main video {
  width: 100%; height: 100%; object-fit: cover;
}
.product-gallery__thumbs { display: flex; gap: 8px; }
.product-gallery__thumb {
  width: 72px; height: 72px; border-radius: var(--radius-sm);
  overflow: hidden; cursor: pointer; border: 2px solid transparent;
  transition: var(--transition); flex-shrink: 0; background: var(--color-bg-2);
}
.product-gallery__thumb:hover { border-color: var(--color-purple-mid); }
.product-gallery__thumb.active { border-color: var(--color-purple-light); }
.product-gallery__thumb img, .product-gallery__thumb video {
  width: 100%; height: 100%; object-fit: cover;
}
.thumb-play {
  position: relative;
}
.thumb-play::after {
  content: '▶'; position: absolute; inset: 0; display: flex;
  align-items: center; justify-content: center; background: rgba(0,0,0,0.4);
  font-size: 16px; color: #fff;
}

/* Product info */
.product-info { display: flex; flex-direction: column; gap: 0; }
.product-badge-row { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.product-badge-stock {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.3);
  border-radius: 99px; padding: 5px 14px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: #EF4444;
}
.product-badge-stock .pulse {
  width: 7px; height: 7px; background: #EF4444; border-radius: 50%;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.product-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.product-rating__stars { color: var(--color-star); font-size: 16px; letter-spacing: 2px; }
.product-rating__count { font-size: 13px; color: var(--color-muted); }
.product-rating__count a { color: var(--color-purple-light); text-decoration: underline; }
.product-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 500; line-height: 1.2; margin-bottom: 16px;
}
.product-price-row { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.product-price { font-size: 28px; font-weight: 700; }
.product-price--compare {
  font-size: 20px; text-decoration: line-through;
  color: var(--color-muted); font-weight: 400;
}
.product-price--save {
  background: rgba(124,58,237,0.2); border: 1px solid var(--color-purple-mid);
  border-radius: 99px; padding: 3px 12px; font-size: 12px;
  font-weight: 700; color: var(--color-purple-light); letter-spacing: 0.05em;
}

/* Bundles */
.bundles-label { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; color: var(--color-muted); }
.bundles-grid { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.bundle-option {
  display: flex; align-items: center; justify-content: space-between;
  border: 1.5px solid var(--color-border); border-radius: var(--radius-md);
  padding: 14px 18px; cursor: pointer; transition: var(--transition);
  position: relative;
}
.bundle-option:hover { border-color: var(--color-purple-mid); }
.bundle-option.selected { border-color: var(--color-purple-mid); background: rgba(124,58,237,0.08); }
.bundle-option__left { display: flex; align-items: center; gap: 12px; }
.bundle-option__radio {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid var(--color-border); position: relative;
  flex-shrink: 0; transition: var(--transition);
}
.bundle-option.selected .bundle-option__radio {
  border-color: var(--color-purple-mid);
  background: var(--color-purple-mid);
}
.bundle-option.selected .bundle-option__radio::after {
  content: ''; position: absolute; inset: 3px;
  background: #fff; border-radius: 50%;
}
.bundle-option__qty { font-weight: 700; font-size: 14px; }
.bundle-option__desc { font-size: 12px; color: var(--color-muted); }
.bundle-option__price { font-weight: 700; font-size: 15px; }
.bundle-option__badge {
  position: absolute; top: -10px; right: 14px;
  background: var(--color-purple-mid); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 2px 10px; border-radius: 99px;
}

/* ATC */
.product-atc { margin-bottom: 16px; }
.product-atc .btn {
  height: 56px; font-size: 14px; letter-spacing: 0.12em;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-purple-dark), var(--color-purple-mid));
  color: #fff; box-shadow: 0 4px 20px rgba(124,58,237,0.35);
  transition: var(--transition);
}
.product-atc .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(124,58,237,0.5);
}

/* Trust badges */
.trust-badges {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 8px; margin-bottom: 20px;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 16px 0;
}
.trust-badge {
  display: flex; flex-direction: column; align-items: center;
  gap: 6px; text-align: center;
}
.trust-badge__icon { font-size: 22px; }
.trust-badge__label { font-size: 11px; font-weight: 600; letter-spacing: 0.05em; }
.trust-badge__sub { font-size: 10px; color: var(--color-muted); }

/* Accordion */
.accordions { display: flex; flex-direction: column; gap: 0; }
.accordion {
  border-bottom: 1px solid var(--color-border);
}
.accordion__trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0; font-size: 14px; font-weight: 600;
  color: var(--color-white); cursor: pointer; background: none; border: none;
  text-align: left; transition: var(--transition); font-family: var(--font-body);
}
.accordion__trigger:hover { color: var(--color-purple-light); }
.accordion__icon {
  width: 20px; height: 20px; border-radius: 50%;
  border: 1.5px solid var(--color-border); display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
  transition: var(--transition); font-size: 14px;
}
.accordion.open .accordion__icon { transform: rotate(45deg); border-color: var(--color-purple-light); color: var(--color-purple-light); }
.accordion__body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1), padding 0.35s;
  font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.7;
}
.accordion.open .accordion__body { max-height: 600px; padding-bottom: 16px; }

/* Customer UGC grid */
.ugc-section { padding: 60px 0; background: var(--color-bg); }
.ugc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 40px; }
.ugc-item { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 1/1; position: relative; }
.ugc-item img, .ugc-item video { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.ugc-item:hover img, .ugc-item:hover video { transform: scale(1.05); }
.ugc-item__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
  opacity: 0; transition: var(--transition);
}
.ugc-item:hover .ugc-item__overlay { opacity: 1; }

/* Feature section */
.features-section { padding: 80px 0; }
.features-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 48px; }
@media(max-width:768px) { .features-grid { grid-template-columns: 1fr 1fr; gap: 16px; } }
@media(max-width:480px) { .features-grid { grid-template-columns: 1fr; gap: 14px; margin-top: 28px; } }
.feature-card {
  background: var(--color-bg-2); border: 1px solid var(--color-border);
  border-radius: var(--radius-md); padding: 28px; text-align: center;
  transition: var(--transition);
}
.feature-card:hover { border-color: rgba(124,58,237,0.4); transform: translateY(-3px); }
.feature-card__icon { font-size: 32px; margin-bottom: 14px; }
.feature-card__title {
  font-size: 14px; font-weight: 700; margin-bottom: 8px;
  background: linear-gradient(135deg, #e2c4ff 0%, #c084fc 45%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 10px rgba(168,85,247,0.5));
}
.feature-card__desc { font-size: 12px; color: var(--color-muted); line-height: 1.6; }

@media(max-width:480px) {
  .feature-card { display: flex; align-items: flex-start; gap: 14px; padding: 16px; text-align: left; }
  .feature-card__icon { font-size: 28px; margin-bottom: 0; flex-shrink: 0; margin-top: 2px; }
  .feature-card__body { flex: 1; }
  .feature-card__title { font-size: 13px; margin-bottom: 4px; }
  .feature-card__desc { font-size: 11px; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page { padding: 80px 0; }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
@media(max-width: 768px) {
  .contact-page { padding: 44px 0 60px; }
  .contact-layout { grid-template-columns: 1fr; gap: 36px; }
  .contact-info__title { font-size: 30px !important; }
  .contact-form { padding: 24px 18px !important; }
}
.contact-name-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media(max-width: 500px) { .contact-name-row { grid-template-columns: 1fr; } }
.contact-info__eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--color-purple-light); margin-bottom: 16px;
}
.contact-info__title { font-family: var(--font-display); font-size: 40px; margin-bottom: 20px; line-height: 1.2; }
.contact-info__desc { color: rgba(255,255,255,0.65); line-height: 1.8; margin-bottom: 40px; }
.contact-channels { display: flex; flex-direction: column; gap: 16px; }
.contact-channel {
  display: flex; align-items: center; gap: 16px;
  background: var(--color-bg-2); border: 1px solid var(--color-border);
  border-radius: var(--radius-md); padding: 16px 20px;
}
.contact-channel__icon { font-size: 22px; }
.contact-channel__label { font-size: 11px; color: var(--color-muted); text-transform: uppercase; letter-spacing: 0.1em; }
.contact-channel__value { font-size: 14px; font-weight: 600; }
.contact-form { background: var(--color-bg-2); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 40px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px; color: rgba(255,255,255,0.7); }
.form-input, .form-textarea, .form-select {
  width: 100%; background: var(--color-bg); border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm); padding: 13px 16px; color: var(--color-white);
  font-family: var(--font-body); font-size: 14px;
  transition: var(--transition); outline: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--color-purple-mid); }
.form-textarea { height: 120px; resize: vertical; }
.form-select { appearance: none; }

/* ============================================================
   FAQ PAGE
   ============================================================ */
.faq-page { padding: 80px 0; max-width: 800px; margin: 0 auto; }
.faq-intro { text-align: center; margin-bottom: 60px; }
.faq-list { display: flex; flex-direction: column; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-bg-2); border-top: 1px solid var(--color-border);
  padding: 60px 0 30px;
}
.site-footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 48px;
}
.footer-brand__logo {
  font-family: var(--font-display); font-size: 22px; font-weight: 500; margin-bottom: 16px;
}
.footer-brand__desc { font-size: 13px; color: var(--color-muted); line-height: 1.7; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--color-border); display: flex;
  align-items: center; justify-content: center; font-size: 15px;
  transition: var(--transition);
}
.footer-social a:hover { border-color: var(--color-purple-mid); color: var(--color-purple-light); }
.footer-col__title {
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 20px; color: rgba(255,255,255,0.5);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 13px; color: rgba(255,255,255,0.65); transition: var(--transition); }
.footer-col ul a:hover { color: var(--color-purple-light); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--color-border); padding-top: 24px;
  font-size: 12px; color: var(--color-muted);
}
.footer-payments { display: flex; gap: 8px; align-items: center; }
.footer-payments img { height: 22px; opacity: 0.6; }
.payment-icon {
  height: 22px; border-radius: 3px; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12); padding: 0 6px;
  display: inline-flex; align-items: center; font-size: 10px;
  font-weight: 700; color: rgba(255,255,255,0.5); letter-spacing: 0.05em;
}

/* ============================================================
   CART DRAWER
   ============================================================ */
/* ── Keyframes ── */
@keyframes fadeInUp {
  from { opacity:0; transform:translateY(24px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes fadeIn {
  from { opacity:0; }
  to   { opacity:1; }
}
@keyframes pulseGlow {
  0%,100% { box-shadow:0 0 0 0 rgba(124,58,237,0); }
  50%      { box-shadow:0 0 0 8px rgba(124,58,237,0.12); }
}
@keyframes shimmerSlide {
  0%   { transform:translateX(-100%) skewX(-15deg); }
  100% { transform:translateX(250%) skewX(-15deg); }
}

/* ── Scroll reveal ── */
.reveal { opacity:0; transform:translateY(22px); transition:opacity 0.55s ease, transform 0.55s ease; }
.reveal.is-visible { opacity:1; transform:translateY(0); }
.reveal-delay-1 { transition-delay:0.08s; }
.reveal-delay-2 { transition-delay:0.16s; }
.reveal-delay-3 { transition-delay:0.24s; }
.reveal-delay-4 { transition-delay:0.32s; }

/* ── Hero animations ── */
.hero__eyebrow { animation:fadeInUp 0.7s cubic-bezier(0.22,1,0.36,1) both; }
.hero__title   { animation:fadeInUp 0.85s cubic-bezier(0.22,1,0.36,1) 0.1s both; }
.hero__subtitle{ animation:fadeInUp 0.8s cubic-bezier(0.22,1,0.36,1) 0.2s both; }
.hero__cta     { animation:fadeInUp 0.8s cubic-bezier(0.22,1,0.36,1) 0.32s both; }
.hero__badge   { animation:fadeIn 1s ease 0.55s both; }
.hero__title em {
  font-style:italic;
  background: linear-gradient(135deg,#C4B5FD,#7C3AED);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  background-clip:text;
}

/* ── Button global polish ── */
.btn {
  position:relative; overflow:hidden;
  transition:transform 0.17s ease, box-shadow 0.17s ease, background 0.2s ease;
  cursor:pointer;
}
.btn::after {
  content:''; position:absolute;
  top:0; left:-60%; width:40%; height:100%;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,0.09),transparent);
  transform:skewX(-15deg);
  transition:left 0.55s ease;
  pointer-events:none;
}
.btn:hover::after { left:130%; }
.btn:active { transform:scale(0.97) !important; }
.btn--purple {
  background:linear-gradient(135deg,#7C3AED,#5B21B6);
  border:1px solid rgba(124,58,237,0.45);
}
.btn--purple:hover {
  background:linear-gradient(135deg,#8B5CF6,#6D28D9);
  box-shadow:0 10px 36px rgba(124,58,237,0.38);
  transform:translateY(-2px);
}
.btn--outline { background:transparent; border:1.5px solid rgba(255,255,255,0.18); color:rgba(255,255,255,0.8); }
.btn--outline:hover { border-color:rgba(255,255,255,0.38); color:#fff; transform:translateY(-2px); }
.btn--lg { height:56px; font-size:15px; font-weight:700; letter-spacing:0.04em; border-radius:12px; }
.btn--full { width:100%; }

/* ── Section headings ── */
.section-title {
  font-family:var(--font-display); font-size:clamp(28px,4vw,42px);
  font-weight:500; color:#fff; line-height:1.2; letter-spacing:-0.02em; margin-bottom:12px;
}
.section-subtitle {
  font-size:16px; color:rgba(255,255,255,0.52); line-height:1.6;
  max-width:540px; margin:0 auto;
}

/* ── Cart drawer ── */
/* ── Swatch refinements ── */
.pp-swatches {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.pp-swatch {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid rgba(255,255,255,0.1);
  padding: 0;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.25s;
  flex-shrink: 0;
  position: relative;
}
.pp-swatch:hover {
  transform: scale(1.15);
  border-color: rgba(255,255,255,0.4);
}
.pp-swatch.active {
  transform: scale(1.2);
  border-color: #fff;
  border-width: 2.5px;
}
.pp-swatch.active::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.95), 0 0 8px rgba(0,0,0,0.8);
}

/* ── ATC button refinement ── */
.pp-atc-btn {
  flex: 1;
  height: 50px;
  background: #fff;
  color: #000;
  border: none;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.pp-atc-btn:hover {
  background: rgba(255,255,255,0.92);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(255,255,255,0.18);
}
.pp-atc-btn:active { transform: scale(0.98); }
.pp-atc-btn:disabled { opacity: 0.35; cursor: not-allowed; }

/* ── Trust badges in product ── */
.pp-trust-block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.pp-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 14px 8px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  transition: border-color 0.2s, background 0.2s;
}
.pp-trust-item:hover {
  border-color: rgba(124,58,237,0.2);
  background: rgba(124,58,237,0.04);
}
.pp-trust-item svg {
  color: rgba(124,58,237,0.65);
}
.pp-trust-item span {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
}
.pp-trust-item small {
  font-size: 10px;
  color: rgba(255,255,255,0.32);
  line-height: 1.35;
}
@media(max-width:480px) {
  .pp-trust-block { grid-template-columns: 1fr 1fr; }
}

/* ── Header refinements ── */
.site-header {
  background: rgba(7,7,7,0.97);
}
.site-header__nav a {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

/* ── Section title ── */
.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: clamp(32px, 5vw, 52px);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.section-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  font-weight: 400;
  letter-spacing: 0;
}

/* ── Reviews grid card upgrade ── */
.review-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 24px;
}
.review-card__title {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.review-card__body {
  font-size: 13px;
  color: rgba(255,255,255,0.56);
  line-height: 1.7;
}

/* ── Better focus states ── */
*:focus-visible {
  outline: 2px solid rgba(124,58,237,0.55);
  outline-offset: 3px;
  border-radius: 5px;
}

/* ── Compatibility section ── */
.compat-section { background: rgba(255,255,255,0.01); }

/* ── Smoother link transitions ── */
a { transition: color 0.2s ease, opacity 0.2s ease; }

/* About page font override */
.about-hero__title,
.about-how__title,
.about-h2,
.about-faq__title,
.about-cta__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
}

/* Product page title */
.pp-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(30px, 4.5vw, 44px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 14px;
}
.pp-crumb {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 14px;
}

/* ── Media section purple glow border ── */
.media-mosaic__item {
  border: 1px solid rgba(124,58,237,0.15);
  box-shadow: 0 0 0 0 rgba(124,58,237,0);
  transition: transform 0.35s cubic-bezier(.22,1,.36,1), border-color 0.3s, box-shadow 0.3s;
}
.media-mosaic__item:hover {
  border-color: rgba(124,58,237,0.45) !important;
  box-shadow: 0 0 30px rgba(124,58,237,0.2), 0 16px 40px rgba(0,0,0,0.4) !important;
}

/* ── Announcement bar text ── */
.announcement-bar__item {
  font-family: 'Inter', sans-serif;
}

/* ── Marquee ── */
.marquee-bar__item {
  font-family: 'Inter', sans-serif;
}

/* ── Footer text fix ── */
.footer-col ul li a {
  color: rgba(255,255,255,0.62) !important;
}
.footer-col ul li a:hover {
  color: #fff !important;
}
.footer-col h4, .footer-col__title {
  color: rgba(255,255,255,0.38) !important;
}
.footer-brand__desc {
  color: rgba(255,255,255,0.45) !important;
}

/* ════════════════════════════════════════════
   GLOBAL HOVER & INTERACTION CSS
   Every click, every hover — feels alive
   ════════════════════════════════════════════ */

/* ── Universal smooth transitions ── */
*, *::before, *::after {
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}
a, button, [role="button"] {
  transition: color 0.22s, background 0.22s, border-color 0.22s,
              box-shadow 0.28s, transform 0.22s, opacity 0.22s;
}

/* ── Links — sliding underline ── */
.site-footer a:not(.policy-sidebar__btn):not(.footer-social__link),
.policy-content a {
  position: relative;
  display: inline;
}
.site-footer .footer-col a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(124,58,237,0.6);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.28s cubic-bezier(0.22,1,0.36,1);
}
.site-footer .footer-col a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ── Nav links — glow on hover ── */
.site-header__nav a {
  position: relative;
  padding-bottom: 2px;
}
.site-header__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #7C3AED;
  transform: translateX(-50%) scale(0);
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1);
  opacity: 0;
}
.site-header__nav a:hover::after,
.site-header__nav a.active::after {
  transform: translateX(-50%) scale(1);
  opacity: 1;
}

/* ── Cart icon pulse on hover ── */
.cart-icon-wrap:hover svg {
  filter: drop-shadow(0 0 6px rgba(124,58,237,0.6));
}
.cart-icon-wrap:hover .cart-count {
  transform: scale(1.15);
  box-shadow: 0 0 12px rgba(124,58,237,0.5);
}
.cart-count {
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s !important;
}

/* ── Buttons — lift + glow ── */
.btn--purple,
.pp-atc-btn,
.about-cta-btn,
.policy-sidebar__btn,
.cd-checkout-btn,
.cd-empty__cta {
  will-change: transform, box-shadow;
}
.btn--purple:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px rgba(124,58,237,0.4), 0 0 60px rgba(124,58,237,0.12) !important;
}
.btn--outline:hover {
  transform: translateY(-2px) !important;
}
button:active:not(:disabled),
.btn:active,
.pp-atc-btn:active {
  transform: scale(0.97) translateY(0) !important;
  box-shadow: none !important;
}

/* ── Colour swatches ── */
.pp-swatch {
  will-change: transform, box-shadow;
}
.pp-swatch:hover {
  transform: scale(1.18) !important;
  z-index: 1;
}
.pp-swatch.active {
  transform: scale(1.22) !important;
  animation: swatch-pop 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes swatch-pop {
  0% { transform: scale(1); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1.22); }
}

/* ── Product thumbnails ── */
.pp-thumb {
  will-change: transform, border-color;
}
.pp-thumb:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4) !important;
}
.pp-thumb.active {
  box-shadow: 0 0 0 2px #7C3AED, 0 0 20px rgba(124,58,237,0.25) !important;
}

/* ── Gallery main image hover ── */
.pp-gallery__main {
  will-change: transform;
}
.pp-gallery__main:hover {
  box-shadow: 0 24px 64px rgba(0,0,0,0.5) !important;
}

/* ── Review cards ── */
.review-card {
  will-change: transform, border-color;
}
.review-card:hover {
  transform: translateY(-5px) !important;
  border-color: rgba(124,58,237,0.25) !important;
  box-shadow: 0 20px 50px rgba(124,58,237,0.08), 0 8px 20px rgba(0,0,0,0.3) !important;
}

/* ── Media grid hover ── */
.media-mosaic__item {
  will-change: transform;
}
.media-mosaic__item:hover {
  transform: scale(1.02) translateY(-3px) !important;
  border-color: rgba(124,58,237,0.4) !important;
  box-shadow: 0 24px 56px rgba(0,0,0,0.5), 0 0 0 1px rgba(124,58,237,0.2) !important;
}

/* ── Steps hover ── */
.pex-step {
  will-change: transform, border-color;
}

/* ── About value cards ── */
.about-val:hover {
  transform: translateY(-5px) !important;
}
.about-stat:hover {
  transform: translateY(-4px) !important;
}

/* ── Compat cards ── */
.compat-card {
  will-change: transform;
}
.compat-card:hover {
  transform: translateY(-4px) !important;
}

/* ── Cart drawer items ── */
.cd-item {
  transition: background 0.18s !important;
}
.cd-item:hover {
  background: rgba(255,255,255,0.025) !important;
}

/* ── Qty buttons spring ── */
.cd-qty-btn, .pp-qty-btn {
  transition: background 0.15s, color 0.15s, transform 0.15s !important;
}
.cd-qty-btn:active, .pp-qty-btn:active {
  transform: scale(0.88) !important;
}

/* ── Addon rows ── */
.pp-addon, .addon-row {
  transition: border-color 0.2s, background 0.2s, transform 0.2s !important;
}
.pp-addon:hover .pp-addon-box,
.addon-row:hover {
  transform: translateX(3px) !important;
}

/* ── Accordion triggers ── */
.accordion__trigger {
  transition: color 0.2s, background 0.2s !important;
}
.accordion__trigger:hover {
  background: rgba(255,255,255,0.02) !important;
  padding-left: 22px !important;
}

/* ── Shipping protection toggle ── */
.cd-protect__inner {
  transition: all 0.25s cubic-bezier(0.22,1,0.36,1) !important;
}
.cd-protect:hover .cd-protect__inner {
  border-color: rgba(124,58,237,0.4) !important;
  background: rgba(124,58,237,0.06) !important;
  transform: translateX(2px) !important;
}

/* ── Footer social ── */
.footer-social__link:hover {
  transform: translateY(-3px) !important;
}

/* ── Header cart open button hover ── */
.cd-header__close:hover {
  transform: rotate(90deg) !important;
}

/* ── Mobile drawer links ── */
.mobile-drawer__link:hover {
  padding-left: 28px !important;
}
.mobile-drawer__link svg {
  transition: transform 0.22s, opacity 0.22s !important;
}
.mobile-drawer__link:hover svg {
  transform: translateX(5px) !important;
}

/* ── Hamburger hover ── */
.hamburger:hover .hamburger__line {
  background: rgba(124,58,237,0.9) !important;
}

/* ── Select dropdown ── */
.pp-select:hover {
  border-color: rgba(124,58,237,0.4) !important;
}

/* ── Policy sidebar links ── */
.policy-sidebar__links a:hover {
  transform: translateX(4px) !important;
}

/* ── Logo hover ── */
.logo-text:hover {
  text-shadow: 0 0 40px rgba(255,255,255,0.2), 0 0 20px rgba(124,58,237,0.5) !important;
}
.footer-logo:hover .footer-logo__text {
  opacity: 0.8;
}
.footer-logo:hover .footer-logo__dot {
  text-shadow: 0 0 20px rgba(124,58,237,0.8);
}

/* ── Cursor dot (optional subtle ring on interactive) ── */
a:hover, button:hover, [role="button"]:hover, label:hover {
  cursor: pointer;
}

/* ── Trust badge tiles hover ── */
.pp-trust-item:hover {
  transform: translateY(-3px) !important;
  border-color: rgba(124,58,237,0.25) !important;
  background: rgba(124,58,237,0.06) !important;
}

/* ── Announcement bar item hover ── */
.announcement-bar__item:hover {
  color: rgba(255,255,255,0.95) !important;
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease !important;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Page transition fade-in ── */
#MainContent {
  animation: page-in 0.4s ease both;
}
@keyframes page-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Input focus glow ── */
.pp-select:focus,
input:focus,
textarea:focus,
select:focus {
  outline: none !important;
  border-color: rgba(124,58,237,0.55) !important;
  box-shadow: 0 0 0 3px rgba(124,58,237,0.12), 0 0 20px rgba(124,58,237,0.06) !important;
}

/* ════════════════════════════════════════════
   GLOBAL HOVER & INTERACTION CSS — Aesthetic
   ════════════════════════════════════════════ */

/* ── Smooth cursor on all interactive ── */
a, button, [role="button"], label[for], select, input[type="checkbox"], .pp-swatch, .gen-chip, .colour-swatch {
  cursor: pointer;
}

/* ── Link hover underline sweep ── */
.site-footer a,
.policy-content a,
.footer-col ul li a {
  position: relative;
  display: inline-block;
}

/* ── Button ripple on click ── */
.btn--purple,
.pp-atc-btn,
.cd-checkout-btn,
.btn-atc,
.about-cta-btn {
  position: relative;
  overflow: hidden;
}
.btn--purple::after,
.pp-atc-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.btn--purple:active::after,
.pp-atc-btn:active::after {
  opacity: 1;
}

/* ── Card hover lift — universal ── */
.review-card,
.about-step,
.about-value,
.feature-card,
.compat-card,
.about-stat,
.pp-trust-item,
.footer-trust-badge,
.policy-sidebar__card {
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1),
              border-color 0.3s ease,
              box-shadow 0.3s ease;
}
.review-card:hover,
.about-step:hover,
.about-value:hover,
.feature-card:hover,
.about-stat:hover {
  transform: translateY(-6px);
}
.pp-trust-item:hover {
  transform: translateY(-3px) scale(1.01);
}

/* ── Nav link glow on hover ── */
.site-header__nav a {
  position: relative;
}
.site-header__nav a::before {
  content: '';
  position: absolute;
  bottom: -3px; left: 50%; right: 50%;
  height: 1px;
  background: #A855F7;
  transition: left 0.25s ease, right 0.25s ease;
}
.site-header__nav a:hover::before,
.site-header__nav a.active::before {
  left: 0; right: 0;
}

/* ── Swatch glow pulse on active ── */
.pp-swatch.active,
.colour-swatch.active {
  animation: swatch-glow 2.5s ease-in-out infinite;
}
@keyframes swatch-glow {
  0%, 100% { box-shadow: 0 0 8px var(--sw, rgba(124,58,237,0.5)); }
  50%       { box-shadow: 0 0 20px var(--sw, rgba(124,58,237,0.7)); }
}

/* ── Input focus glow ── */
.pp-select:focus,
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: rgba(124,58,237,0.55) !important;
  box-shadow: 0 0 0 3px rgba(124,58,237,0.12), 0 0 16px rgba(124,58,237,0.08) !important;
  transition: border-color 0.2s, box-shadow 0.25s;
}

/* ── Model chip selected glow ── */
.model-chip.active,
.gen-chip.active {
  box-shadow: 0 0 0 3px rgba(124,58,237,0.15), 0 0 18px rgba(124,58,237,0.12);
  transition: all 0.2s;
}

/* ── Thumb active glow ── */
.pp-thumb.active,
.product-gallery__thumb.active {
  box-shadow: 0 0 0 2px #7C3AED, 0 0 16px rgba(124,58,237,0.25);
}

/* ── Qty button hover ── */
.pp-qty-btn:hover,
.cd-qty-btn:hover {
  background: rgba(124,58,237,0.18);
  color: #fff;
}

/* ── ATC button shimmer sweep ── */
.pp-atc-btn::before,
.btn-atc::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  transform: skewX(-15deg);
  transition: left 0.6s ease;
  pointer-events: none;
}
.pp-atc-btn:hover::before,
.btn-atc:hover::before { left: 160%; }

/* ── Cart icon wiggle on add ── */
@keyframes cart-wiggle {
  0%, 100% { transform: rotate(0); }
  20% { transform: rotate(-8deg); }
  40% { transform: rotate(8deg); }
  60% { transform: rotate(-4deg); }
  80% { transform: rotate(4deg); }
}
.cart-icon-wrap.wiggle { animation: cart-wiggle 0.5s ease; }

/* ── Section headings fade-in on scroll ── */
.section-title, .pp-title, .about-h1, .about-h2 {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* ── Mobile drawer link active ── */
.mobile-drawer__link {
  transition: background 0.18s, border-color 0.18s, color 0.18s, transform 0.18s;
}

/* ── Addon row ── */
.pp-addon-box, .addon-row {
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.pp-addon-box:hover, .addon-row:hover {
  box-shadow: 0 0 14px rgba(124,58,237,0.1);
}

/* ── Purchase popup ── */
.purchase-popup {
  transition: transform 0.45s cubic-bezier(.22,1,.36,1), opacity 0.45s ease, box-shadow 0.3s;
}
.purchase-popup:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.6), 0 0 0 1px rgba(124,58,237,0.2) !important;
}

/* ── Cart item hover left glow ── */
.cd-item {
  transition: background 0.2s;
}

/* ── Marquee icon spin ── */
.marquee-bar__icon {
  transition: transform 0.3s ease;
}
.marquee-bar__item:hover .marquee-bar__icon {
  transform: rotate(180deg);
  color: rgba(124,58,237,0.8);
}

/* ── Policy sidebar card hover ── */
.policy-sidebar__card {
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.policy-sidebar__card:hover {
  border-color: rgba(124,58,237,0.3) !important;
  box-shadow: 0 8px 32px rgba(124,58,237,0.08);
  transform: translateY(-3px);
}

/* ── Policy link arrow slide ── */
.policy-links a {
  transition: all 0.2s cubic-bezier(0.22,1,0.36,1);
}

/* ════════════════════════════════════════════════════════
   MASSIVE GLOBAL UPGRADE — v14
   Hero, Header glow, Mobile, Reviews, Product, Cart, All
════════════════════════════════════════════════════════ */

/* ── Header pulsating glow border ── */
.site-header {
  background: rgba(7,7,12,0.97) !important;
  border-bottom: 1px solid rgba(124,58,237,0.2) !important;
  box-shadow:
    0 1px 0 rgba(124,58,237,0.15),
    0 4px 32px rgba(0,0,0,0.4) !important;
  position: relative !important;
}
.site-header::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(124,58,237,0.5) 30%, rgba(168,85,247,0.6) 50%, rgba(124,58,237,0.5) 70%, transparent 100%);
  animation: header-glow-sweep 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes header-glow-sweep {
  0%, 100% { opacity: 0.4; transform: scaleX(0.8); }
  50% { opacity: 1; transform: scaleX(1); }
}

/* ── Mobile header — centre logo, hamburger right ── */
@media(max-width:768px) {
  .site-header__inner {
    grid-template-columns: 48px 1fr 48px !important;
    height: 58px !important;
    padding: 0 !important;
  }
  .site-header {
    padding: 0 16px !important;
  }
  .site-header__nav { display: none !important; }
  .site-header__logo {
    grid-column: 2 !important;
    text-align: center !important;
  }
  .site-header__actions {
    grid-column: 3 !important;
    justify-content: flex-end !important;
    gap: 12px !important;
  }
  .site-header__actions .header-icon[href="/account"] { display: none !important; }
  .hamburger { display: flex !important; }
}

/* ── Global deep background purple atmosphere ── */
body::before {
  background:
    radial-gradient(ellipse 80% 40% at 50% -5%, rgba(124,58,237,0.12), transparent 55%),
    radial-gradient(ellipse 40% 50% at -5% 50%, rgba(76,29,149,0.07), transparent 50%),
    radial-gradient(ellipse 40% 50% at 105% 60%, rgba(76,29,149,0.07), transparent 50%),
    radial-gradient(ellipse 60% 40% at 50% 105%, rgba(30,10,60,0.35), transparent 55%) !important;
}

/* ── Moving purple particles background ── */
.site-header::before {
  content: '';
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(ellipse 200% 100% at 50% 50%, rgba(124,58,237,0.04), transparent);
  animation: header-bg-shift 8s ease-in-out infinite alternate;
}
@keyframes header-bg-shift {
  0% { background-position: 0% 50%; opacity: 0.5; }
  100% { background-position: 100% 50%; opacity: 1; }
}

/* ── Reviews section - add colour ── */
.reviews-section {
  background: linear-gradient(180deg, #070710, #0a0818) !important;
  position: relative;
}
.reviews-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,182,122,0.3), transparent);
}
.review-card {
  background: rgba(255,255,255,0.02) !important;
  border: 1px solid rgba(255,255,255,0.07) !important;
  border-radius: 16px !important;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1),
              border-color 0.35s, box-shadow 0.35s !important;
  position: relative; overflow: hidden;
}
.review-card::before {
  content: '';
  position: absolute; top: 0; left: -100%; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, #00B67A, transparent);
  transition: left 0.5s ease;
}
.review-card:hover::before { left: 0; }
.review-card:hover {
  transform: translateY(-8px) !important;
  border-color: rgba(0,182,122,0.3) !important;
  box-shadow: 0 20px 60px rgba(0,182,122,0.08), 0 0 0 1px rgba(0,182,122,0.1) !important;
}
.rc-star--filled { color: #00B67A !important; }
.tp-star { color: #00B67A !important; }

/* Sale banner above reviews */
.reviews-section .section-title {
  position: relative;
}

/* ── Swatch glow - better selected state ── */
.pp-swatch {
  position: relative;
  transition: transform 0.25s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s, border-color 0.2s !important;
}
.pp-swatch.active {
  transform: scale(1.25) !important;
  box-shadow:
    0 0 0 2px #fff,
    0 0 0 4px rgba(255,255,255,0.15),
    0 0 24px var(--glow, rgba(124,58,237,0.6)),
    0 0 48px var(--glow, rgba(124,58,237,0.3)) !important;
  border-color: transparent !important;
}
.pp-swatch::after {
  text-shadow: 0 1px 4px rgba(0,0,0,1), 0 0 10px rgba(0,0,0,0.8) !important;
  font-size: 12px !important;
}

/* ── Product page mobile ── */
@media(max-width:880px) {
  .pp-layout { grid-template-columns: 1fr !important; gap: 24px !important; }
  .pp-gallery-col { position: static !important; }
  .pp-gallery__main { aspect-ratio: 4/3 !important; max-height: 360px; }
  .pp-bundle-block { margin-top: 16px; }
  .pp-trust-strip {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }
  .pp-trust-divider { display: none !important; }
  .pp-payments { justify-content: flex-start !important; }
}
@media(max-width:480px) {
  .pp-swatches { gap: 8px !important; }
  .pp-swatch { width: 28px !important; height: 28px !important; }
  .pp-atc-btn { height: 56px !important; font-size: 13px !important; }
  .pp-trust-strip { grid-template-columns: 1fr 1fr !important; }
}

/* ── Bundle section upgrade ── */
.pp-bundle-block {
  border-color: rgba(124,58,237,0.25) !important;
  background: rgba(124,58,237,0.03) !important;
}
.pp-bundle-opt--selected {
  background: rgba(124,58,237,0.1) !important;
  box-shadow: inset 0 0 20px rgba(124,58,237,0.05) !important;
}
.pp-bundle-opt--selected .pp-bundle-opt__name { color: #fff !important; }
.pp-bundle-opt {
  transition: background 0.2s, box-shadow 0.2s !important;
}
.pp-case2 { overflow: hidden; max-height: 0; transition: max-height 0.5s cubic-bezier(0.22,1,0.36,1) !important; }
.pp-case2.visible { max-height: 700px !important; }

/* ── Cart shipping protection ── */
.cd-protect-row {
  background: rgba(124,58,237,0.04);
  border: 1px solid rgba(124,58,237,0.18);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  cursor: default;
}
.cd-protect-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #10B981;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: 100px;
  padding: 3px 10px;
  white-space: nowrap;
  flex-shrink: 0;
}
.cd-protect-info { flex: 1; min-width: 0; }
.cd-protect-name { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.cd-protect-desc { font-size: 11px; color: rgba(255,255,255,0.38); }

/* ── All pages - richer backgrounds ── */
.policy-page, .about-wrap, .contact-page {
  background: linear-gradient(180deg, #07070c 0%, #0a0815 100%);
  min-height: 100vh;
  position: relative;
}
.policy-page::before, .about-wrap::before {
  content: '';
  position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: -1;
  background:
    radial-gradient(ellipse 70% 40% at 50% 0%, rgba(124,58,237,0.1), transparent 55%),
    radial-gradient(ellipse 50% 60% at 0% 80%, rgba(76,29,149,0.06), transparent 50%);
  pointer-events: none;
}

/* ── About page stats glow ── */
.about-stat:hover .about-stat__num {
  text-shadow: 0 0 30px rgba(168,85,247,0.4);
}
.about-step--1:hover { box-shadow: 0 20px 60px rgba(6,214,160,0.1) !important; }
.about-step--2:hover { box-shadow: 0 20px 60px rgba(245,158,11,0.1) !important; }
.about-step--3:hover { box-shadow: 0 20px 60px rgba(139,92,246,0.1) !important; }

/* ── Compatibility section ── */
.compat-card {
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), border-color 0.3s, box-shadow 0.3s !important;
}
.compat-card:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(124,58,237,0.35) !important;
  box-shadow: 0 16px 48px rgba(124,58,237,0.12) !important;
}

/* ── Media grid glows ── */
.media-mosaic__item {
  border: 1px solid rgba(124,58,237,0.12) !important;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), border-color 0.3s, box-shadow 0.3s !important;
}
.media-mosaic__item:hover {
  border-color: rgba(124,58,237,0.4) !important;
  box-shadow: 0 0 40px rgba(124,58,237,0.18), 0 24px 64px rgba(0,0,0,0.5) !important;
}

/* ── Footer payment logos upgrade ── */
.pay-icon {
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  padding: 4px 10px !important;
  height: 28px !important;
  display: inline-flex !important;
  align-items: center !important;
  border-radius: 6px !important;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s !important;
}
.pay-icon:hover {
  background: rgba(255,255,255,0.1) !important;
  border-color: rgba(255,255,255,0.2) !important;
  box-shadow: 0 0 12px rgba(255,255,255,0.06) !important;
}

/* ── ATC button glow ── */
.pp-atc-btn {
  box-shadow: 0 4px 20px rgba(255,255,255,0.1) !important;
}
.pp-atc-btn:hover {
  box-shadow: 0 12px 48px rgba(255,255,255,0.25) !important;
}

/* ── Contact form styling ── */
.contact-page .form-input:focus,
.contact-page .form-textarea:focus,
.contact-page .form-select:focus {
  border-color: rgba(124,58,237,0.5) !important;
  box-shadow: 0 0 0 3px rgba(124,58,237,0.1), 0 0 20px rgba(124,58,237,0.08) !important;
}

/* ── Cart drawer extra features ── */
.cart-drawer__inner::before {
  content: '';
  position: absolute; top: 0; right: 0; width: 1px; height: 100%;
  background: linear-gradient(180deg, transparent, rgba(124,58,237,0.3) 20%, rgba(168,85,247,0.2) 50%, rgba(124,58,237,0.3) 80%, transparent);
  pointer-events: none; z-index: 1;
}

/* ── Selection colour ── */
::selection { background: rgba(124,58,237,0.3) !important; color: #fff !important; }

/* ── Hero fix for existing system ── */
.hero__title { color: #fff !important; }
.hero__subtitle { color: rgba(255,255,255,0.55) !important; }

/* ── Shipping protection included in cart ── */
.cd-protect-included {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  background: rgba(16,185,129,0.06);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: 12px;
  margin-bottom: 14px;
}
.cd-protect-icon {
  width: 30px; height: 30px; border-radius: 8px; flex-shrink: 0;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.2);
  display: flex; align-items: center; justify-content: center;
  color: #10B981;
}
.cd-protect-body { flex: 1; min-width: 0; }
.cd-protect-title { display: block; font-size: 12px; font-weight: 700; color: #fff; margin-bottom: 1px; }
.cd-protect-sub { display: block; font-size: 10px; color: rgba(255,255,255,0.38); }
.cd-protect-free {
  font-size: 11px; font-weight: 800; color: #10B981;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: 100px; padding: 3px 10px;
  letter-spacing: 0.08em; flex-shrink: 0;
}

/* ── Footer payment logos ── */
.footer-payments { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.fp-icon {
  height: 24px; border-radius: 5px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 8px; min-width: 44px;
  transition: background 0.2s, border-color 0.2s;
}
.fp-icon:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }

/* ── Hero overrides to ensure text shows white ── */
.hero { background: #07070c !important; }
.hero .hero__title { color: #ffffff !important; }
.hero .hero__subtitle { color: rgba(255,255,255,0.6) !important; }

/* ── Announcement bar fix ── */
.announcement-bar { background: linear-gradient(135deg, #0d0620, #1a0a3e, #0d1a30) !important; }

/* ── PP bundle opt label fix ── */
.pp-bundle-label { display: flex; align-items: center; gap: 8px !important; }

/* ── Mobile product layout ── */
@media(max-width:640px) {
  .pp-bundle-options { flex-direction: column; }
  .pp-bundle-opt { padding: 12px 12px; }
  .pp-case2.visible { max-height: 800px !important; }
}

/* ══════════════════════════════════════════════
   CONVERSION BOOSTERS + POPUP UPGRADE — v19
══════════════════════════════════════════════ */

/* ── Sticky ATC bar on mobile for product page ── */
@media(max-width:768px){
  .pp-sticky-bar{
    position:fixed;bottom:0;left:0;right:0;z-index:900;
    padding:12px 16px;
    background:rgba(8,6,16,0.97);
    border-top:1px solid rgba(124,58,237,0.2);
    backdrop-filter:blur(16px);
    display:flex;gap:12px;align-items:center;
    transform:translateY(100%);
    transition:transform 0.35s cubic-bezier(0.22,1,0.36,1);
    box-shadow:0 -4px 30px rgba(0,0,0,0.5);
  }
  .pp-sticky-bar.visible{transform:translateY(0)}
  .pp-sticky-price{
    display:flex;flex-direction:column;flex-shrink:0;
  }
  .pp-sticky-price strong{font-size:18px;font-weight:800;color:#fff;line-height:1}
  .pp-sticky-price span{font-size:10px;color:rgba(255,255,255,0.3);text-decoration:line-through}
  .pp-sticky-atc{
    flex:1;height:46px;border-radius:10px;
    background:#fff;color:#000;border:none;
    font-family:'Inter',sans-serif;font-size:13px;font-weight:800;
    letter-spacing:0.06em;text-transform:uppercase;cursor:pointer;
    transition:background 0.2s,box-shadow 0.2s;
  }
  .pp-sticky-atc:hover{background:rgba(255,255,255,0.9);box-shadow:0 4px 20px rgba(255,255,255,0.2)}
}

/* ── Scarcity / urgency badge on product ── */
.pp-scarcity{
  display:inline-flex;align-items:center;gap:8px;
  font-size:12px;font-weight:600;color:rgba(255,165,0,0.9);
  background:rgba(255,165,0,0.07);
  border:1px solid rgba(255,165,0,0.2);
  border-radius:100px;padding:5px 14px;
  margin-bottom:16px;
}
.pp-scarcity-dot{
  width:6px;height:6px;border-radius:50%;background:rgba(255,165,0,0.9);
  animation:scarcity-pulse 1.5s ease-in-out infinite;
}
@keyframes scarcity-pulse{
  0%,100%{opacity:1;transform:scale(1)}
  50%{opacity:0.5;transform:scale(0.7)}
}

/* ── Bundle "Popular" badge animation ── */
.pp-bundle-opt__badge{
  animation:badge-shimmer 3s ease-in-out infinite;
}
@keyframes badge-shimmer{
  0%,100%{box-shadow:0 0 6px rgba(124,58,237,0.3)}
  50%{box-shadow:0 0 16px rgba(168,85,247,0.6)}
}

/* ── Review stars glow ── */
.pp-stars{
  animation:stars-glow 3s ease-in-out infinite;
  display:inline-block;
}
@keyframes stars-glow{
  0%,100%{text-shadow:0 0 4px rgba(251,191,36,0.3)}
  50%{text-shadow:0 0 12px rgba(251,191,36,0.7),0 0 24px rgba(251,191,36,0.3)}
}

/* ── ATC btn shimmer animation ── */
@keyframes atc-shimmer{
  0%{left:-100%}
  100%{left:200%}
}
.pp-atc-btn:not(:hover)::before{
  animation:atc-shimmer 4s ease-in-out infinite;
}

/* ── Sale tag counter pulse ── */
.pp-sale-tag{
  animation:sale-pulse 2s ease-in-out infinite;
}
@keyframes sale-pulse{
  0%,100%{box-shadow:0 2px 10px rgba(22,163,74,0.3)}
  50%{box-shadow:0 2px 20px rgba(22,163,74,0.6),0 0 40px rgba(22,163,74,0.2)}
}

/* ── Improved swatch hover ── */
.pp-swatch:hover{
  transform:scale(1.2) !important;
  box-shadow:0 0 16px var(--glow,rgba(124,58,237,0.5)) !important;
}
.pp-swatch.active{
  box-shadow:
    0 0 0 2.5px #fff,
    0 0 0 5px rgba(255,255,255,0.1),
    0 0 24px var(--glow,rgba(124,58,237,0.6)),
    0 0 48px var(--glow,rgba(124,58,237,0.25)) !important;
}

/* ── Cart item count badge animate on update ── */
#cd-count{
  transition:transform 0.2s cubic-bezier(0.34,1.56,0.64,1);
}
.cart-count-bump #cd-count{
  transform:scale(1.4);
}

/* ── Newsletter section ── */
.newsletter-section{
  position:relative;
  isolation:isolate;
}

/* ── Smoother global transitions ── */
a,button,.pp-swatch,.pp-bundle-opt,.compat-chip{
  transition-timing-function:cubic-bezier(0.22,1,0.36,1);
}

/* ── Better focus states for accessibility/conversion ── */
.nl-input:focus,.pp-select:focus{
  outline:none;
  border-color:rgba(124,58,237,0.6) !important;
  box-shadow:0 0 0 3px rgba(124,58,237,0.12) !important;
}

/* ── Mobile product page spacing ── */
@media(max-width:880px){
  .pp-wrap{padding:20px 0 100px}
  .pp-gallery__main{aspect-ratio:4/3 !important}
}

/* ══════════════════════════════════════════════════════════
   LUXPOD — SICK ANIMATIONS + CONVERSION UPGRADES
══════════════════════════════════════════════════════════ */

/* ── 1. Page load fade-in ── */
@keyframes page-in {
  from { opacity:0; transform:translateY(8px); }
  to   { opacity:1; transform:translateY(0); }
}
body { animation: page-in 0.5s ease both; }

/* ── 2. Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1),
              transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── 3. Magnetic button effect (JS adds transform inline) ── */
.pp-atc-btn, .nl-submit, .cd-checkout-btn, .hero-btn--primary {
  will-change: transform;
}

/* ── 4. Cursor glow trail (JS renders canvas) ── */
#cursor-glow {
  position: fixed;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.06) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  transition: opacity 0.3s;
  top: 0; left: 0;
  mix-blend-mode: screen;
}

/* ── 5. Floating particles (JS driven) ── */
#particle-canvas {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none; opacity: 0.35;
}

/* ── 6. Hero title word-by-word animation ── */
.hero__title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: word-in 0.6s cubic-bezier(0.22,1,0.36,1) both;
}
@keyframes word-in {
  to { opacity:1; transform:translateY(0); }
}

/* ── 7. Swatch tooltip ── */
.pp-swatch { position: relative; }
.pp-swatch::before {
  content: attr(title);
  position: absolute; bottom: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) scale(0.85);
  background: rgba(10,8,20,0.95);
  border: 1px solid rgba(124,58,237,0.25);
  color: rgba(255,255,255,0.85);
  font-size: 10px; font-weight: 600;
  padding: 4px 10px; border-radius: 6px;
  white-space: nowrap; letter-spacing: 0.04em;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 10;
}
.pp-swatch:hover::before {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

/* ── 8. Cart item shimmer on add ── */
@keyframes item-shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.cd-item--new {
  background: linear-gradient(90deg,
    rgba(124,58,237,0.0) 0%,
    rgba(124,58,237,0.08) 30%,
    rgba(168,85,247,0.1) 50%,
    rgba(124,58,237,0.08) 70%,
    rgba(124,58,237,0.0) 100%
  );
  background-size: 200% 100%;
  animation: item-shimmer 1.2s ease once;
}

/* ── 9. Announcement bar text glow pulse ── */
.announcement-bar__item {
  animation: text-glow-pulse 5s ease-in-out infinite;
}
@keyframes text-glow-pulse {
  0%,100% { text-shadow: none; }
  50%     { text-shadow: 0 0 20px rgba(168,85,247,0.35); }
}

/* ── 10. Feature icons float ── */
.about-feature-item svg,
.pp-trust-icon svg {
  animation: icon-float 3s ease-in-out infinite;
}
.about-feature-item:nth-child(2) svg { animation-delay: 0.5s; }
.about-feature-item:nth-child(3) svg { animation-delay: 1s; }
.about-feature-item:nth-child(4) svg { animation-delay: 1.5s; }
@keyframes icon-float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-4px); }
}

/* ── 11. Review card stagger entrance (JS triggers) ── */
.review-card {
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition: opacity 0.55s cubic-bezier(0.22,1,0.36,1),
              transform 0.55s cubic-bezier(0.22,1,0.36,1);
}
.review-card.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ── 12. Compatibility chip pop-in ── */
.compat-chip {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.compat-chip.revealed {
  opacity: 1;
  transform: scale(1);
}

/* ── 13. Price counter flash when bundle switches ── */
@keyframes price-flash {
  0%   { transform: scale(1);    color: #fff; }
  40%  { transform: scale(1.12); color: #A855F7; }
  100% { transform: scale(1);    color: #fff; }
}
.pp-price.flash { animation: price-flash 0.4s cubic-bezier(0.22,1,0.36,1); }

/* ── 14. Checkout button living border ── */
.cd-checkout-btn {
  position: relative;
}
.cd-checkout-btn::after {
  content: '';
  position: absolute; inset: -1px;
  border-radius: 13px;
  background: linear-gradient(135deg, #7C3AED, #A855F7, #6D28D9, #C084FC, #7C3AED);
  background-size: 300% 300%;
  animation: border-spin 4s ease-in-out infinite;
  z-index: -1; opacity: 0;
  transition: opacity 0.3s;
}
.cd-checkout-btn:hover::after { opacity: 1; }
@keyframes border-spin {
  0%,100% { background-position: 0% 50%; }
  50%     { background-position: 100% 50%; }
}

/* ── 15. Hero CTA button pulse ring ── */
.hero-btn--primary {
  position: relative;
}
.hero-btn--primary::after {
  content: '';
  position: absolute; inset: -3px;
  border-radius: 7px;
  border: 1px solid rgba(255,255,255,0.2);
  animation: btn-ring 2.5s ease-in-out infinite;
  opacity: 0; pointer-events: none;
}
@keyframes btn-ring {
  0%   { opacity: 0; transform: scale(1); }
  50%  { opacity: 0.6; }
  100% { opacity: 0; transform: scale(1.06); }
}

/* ── 16. Cart drawer item slide-in stagger ── */
.cd-item:nth-child(1) { animation-delay: 0s; }
.cd-item:nth-child(2) { animation-delay: 0.08s; }
.cd-item:nth-child(3) { animation-delay: 0.16s; }
.cd-item:nth-child(4) { animation-delay: 0.24s; }

/* ── 17. Bundle Popular badge shimmer ── */
.pp-bundle-opt__badge {
  background: linear-gradient(135deg, #7C3AED, #A855F7, #6D28D9);
  background-size: 200% 200%;
  animation: badge-glow 3s ease-in-out infinite;
}
@keyframes badge-glow {
  0%,100% { background-position:0% 50%; box-shadow:0 0 8px rgba(124,58,237,0.4); }
  50%     { background-position:100% 50%; box-shadow:0 0 18px rgba(168,85,247,0.7); }
}

/* ── 18. Global link hover underline draw ── */
.footer-col ul li a {
  position: relative;
  display: inline-block;
}
.footer-col ul li a::after {
  content: '';
  position: absolute; bottom: -1px; left: 0; right: 100%;
  height: 1px;
  background: rgba(168,85,247,0.5);
  transition: right 0.25s ease;
}
.footer-col ul li a:hover::after { right: 0; }

/* ── 19. Product section ambient glow blob ── */
.pp-gallery-col::before {
  content: '';
  position: absolute; top: 20%; left: -30%;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.08), transparent 70%);
  filter: blur(60px); pointer-events: none; z-index: -1;
  animation: blob-drift 10s ease-in-out infinite alternate;
}
.pp-gallery-col { position: relative; }
@keyframes blob-drift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(20px, -20px) scale(1.1); }
}

/* ── 20. Urgency scarcity badge attention wobble ── */
.pp-scarcity {
  animation: scarcity-wobble 8s ease-in-out infinite;
}
@keyframes scarcity-wobble {
  0%,90%,100% { transform: translateX(0); }
  92%  { transform: translateX(-3px); }
  94%  { transform: translateX(3px); }
  96%  { transform: translateX(-2px); }
  98%  { transform: translateX(2px); }
}

/* ══════════════════════════════════════════════════════
   LUXPOD CONVERSION UPGRADES
   ══════════════════════════════════════════════════════ */

/* ── Bigger tap targets on mobile ── */
@media(max-width:768px) {
  .cd-qty-btn { width: 36px !important; height: 36px !important; }
  .cart-drawer__close { width: 40px !important; height: 40px !important; }
  .cd-item__remove { width: 28px !important; height: 28px !important; }
  a, button { -webkit-tap-highlight-color: transparent; }
}

/* ── Feature cards desktop hover ── */
.feature-card {
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1),
              border-color 0.3s, box-shadow 0.3s !important;
}

/* ── Cart items — clear min-height:0 for flex scroll ── */
.cart-drawer__items {
  min-height: 0 !important;
}

/* ── Announcement bar pulse ── */
.announcement-bar {
  position: relative; overflow: hidden;
}
.announcement-bar::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(124,58,237,0.12) 50%, transparent 100%);
  animation: ann-sweep 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes ann-sweep {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* ── Cart checkout button — stronger on mobile ── */
@media(max-width:480px) {
  .cd-checkout-btn {
    height: 56px !important;
    font-size: 13px !important;
    border-radius: 14px !important;
  }
}

/* ── Hero section — tighter mobile padding ── */
@media(max-width:480px) {
  .hero-banner { min-height: 85vh !important; }
  .hero__title { font-size: clamp(34px, 9vw, 52px) !important; }
  .hero__sub { font-size: 14px !important; }
}

/* ── Review cards mobile ── */
@media(max-width:640px) {
  .reviews-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ── Product page mobile improvements ── */
@media(max-width:640px) {
  .pp-rating-row { gap: 6px !important; flex-wrap: wrap !important; }
  .pp-price { font-size: 28px !important; }
  .pp-trust-strip { gap: 8px !important; }
}

/* ── Footer mobile ── */
@media(max-width:640px) {
  .footer__grid { grid-template-columns: 1fr !important; gap: 32px !important; }
}

/* ── Quantity button accessibility ── */
.cd-qty-btn:focus-visible,
.cart-drawer__close:focus-visible,
.cd-item__remove:focus-visible {
  outline: 2px solid rgba(124,58,237,0.6);
  outline-offset: 2px;
}

/* ── "SALE" badge pulse on product page ── */
.pp-badge {
  animation: badge-pulse 3s ease-in-out infinite !important;
}
@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239,68,68,0.4); }
  50%       { box-shadow: 0 0 0 6px rgba(239,68,68,0); }
}


/* ══════════════════════════════════════════════════════════
   LUXPOD — BUG FIXES + CONVERSION UPGRADES v21
   ══════════════════════════════════════════════════════════ */

/* ── FIX 1: Toast popup — reliable slide-up animation ── */
#lp-toast {
  will-change: transform, opacity !important;
  -webkit-backface-visibility: hidden !important;
  backface-visibility: hidden !important;
  isolation: isolate !important;
  /* Change to slide-UP from bottom (more reliable cross-browser) */
  transform: translateY(calc(100% + 60px)) !important;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1) !important,
              opacity 0.4s ease !important;
}
#lp-toast.lp-show {
  transform: translateY(0) !important;
  opacity: 1 !important;
  pointer-events: all !important;
}

/* ── FIX 2: Cart drawer — prevent edge artifact ("1" showing) ── */
.cart-drawer:not(.open) .cart-drawer__inner {
  visibility: hidden !important;
  pointer-events: none !important;
}
.cart-drawer.open .cart-drawer__inner {
  visibility: visible !important;
}
/* Prevent overflow bleed from cart drawer */
.cart-drawer {
  overflow: hidden !important;
}

/* ── FIX 3: Contact page form — white text everywhere ── */
.form-input,
.form-textarea,
.form-select {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  caret-color: #ffffff;
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255,255,255,0.32) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.32) !important;
  opacity: 1 !important;
}
.form-select option {
  background-color: #111111 !important;
  color: #ffffff !important;
}
/* Fix select dropdown chevron for dark backgrounds */
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.45)' stroke-width='1.8' stroke-linecap='round' fill='none'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  padding-right: 42px !important;
}
/* Contact page specific text color fixes */
.contact-info__title,
.contact-info__desc,
.contact-channel__value,
.contact-channel__label {
  color: inherit;
}
.contact-info__title { color: #ffffff !important; }
.contact-info__desc { color: rgba(255,255,255,0.6) !important; }
.contact-channel__value { color: #ffffff !important; }
.contact-channel__label { color: rgba(255,255,255,0.4) !important; }

/* ══════════════════════════════════════════════════════════
   NEW: PRESS/MEDIA BAR — "As Seen On"
   ══════════════════════════════════════════════════════════ */
.press-bar {
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  background: rgba(255,255,255,0.01);
  overflow: hidden;
}
.press-bar__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  text-align: center;
  margin-bottom: 20px;
}
.press-bar__track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding: 0 24px;
}
.press-bar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.35;
  transition: opacity 0.3s ease;
  white-space: nowrap;
  text-decoration: none;
  color: #fff;
}
.press-bar__item:hover { opacity: 0.7; }
.press-bar__item-icon {
  font-size: 18px;
  line-height: 1;
}
.press-bar__item-name {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════════════════════
   NEW: SOCIAL PROOF STRIP — Aggregate stats
   ══════════════════════════════════════════════════════════ */
.sp-strip {
  padding: 48px 0;
  background: linear-gradient(135deg, rgba(124,58,237,0.06), rgba(76,29,149,0.04), rgba(124,58,237,0.06));
  border-top: 1px solid rgba(124,58,237,0.12);
  border-bottom: 1px solid rgba(124,58,237,0.12);
}
.sp-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}
@media(max-width:640px) { .sp-strip__grid { grid-template-columns: repeat(2, 1fr); gap: 1px; } }
.sp-stat {
  text-align: center;
  padding: 20px 24px;
  position: relative;
}
.sp-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,0.06);
}
@media(max-width:640px) {
  .sp-stat:nth-child(2n)::after { display: none; }
  .sp-stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.04); }
}
.sp-stat__num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 500;
  color: #ffffff;
  display: block;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  line-height: 1;
}
.sp-stat__num em {
  font-style: italic;
  background: linear-gradient(135deg, #e2c4ff, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sp-stat__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.sp-stat__stars {
  color: #F59E0B;
  font-size: 14px;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 4px;
}

/* ══════════════════════════════════════════════════════════
   NEW: LIVE ACTIVITY BAR
   ══════════════════════════════════════════════════════════ */
.live-bar {
  position: fixed;
  top: 64px; /* below header */
  left: 0; right: 0;
  z-index: 800;
  pointer-events: none;
}
.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(10,8,20,0.9);
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  margin: 8px auto;
  max-width: max-content;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: all;
  animation: live-pill-in 0.5s cubic-bezier(0.22,1,0.36,1) both;
  animation-delay: 2s;
  opacity: 0;
}
@keyframes live-pill-in {
  from { opacity: 0; transform: translateX(-50%) translateY(-10px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.live-pill__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34,197,94,0.8);
  animation: live-blink 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
.live-pill__count {
  color: #ffffff;
  font-weight: 800;
}
.live-pill__divider {
  opacity: 0.25;
  margin: 0 4px;
}
.live-pill__fire { font-size: 13px; }

/* ══════════════════════════════════════════════════════════
   NEW: INFLUENCER / SOCIAL PROOF WALL
   ══════════════════════════════════════════════════════════ */
.social-wall {
  padding: 80px 0;
  background: var(--color-bg);
  overflow: hidden;
}
.social-wall__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
@media(max-width: 768px) { .social-wall__grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width: 480px) { .social-wall__grid { grid-template-columns: 1fr 1fr; gap: 10px; } }

.sw-card {
  background: var(--color-bg-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), border-color 0.3s, box-shadow 0.3s;
}
.sw-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124,58,237,0.35);
  box-shadow: 0 20px 60px rgba(124,58,237,0.12), 0 0 0 1px rgba(124,58,237,0.1);
}
.sw-card__media {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #1a0a2e, #0e0a1a, #0a0815);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sw-card__placeholder {
  font-size: 48px;
  opacity: 0.15;
}
.sw-card__platform {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,0,0,0.6);
  border-radius: 8px;
  padding: 5px 8px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  gap: 5px;
}
.sw-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.sw-card:hover .sw-card__overlay { opacity: 1; }
.sw-card__views {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 5px;
  opacity: 0;
  transition: opacity 0.3s ease 0.05s;
}
.sw-card:hover .sw-card__views { opacity: 1; }
.sw-card__body {
  padding: 16px;
}
.sw-card__handle {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.sw-card__handle .verified {
  color: #A855F7;
  font-size: 10px;
}
.sw-card__text {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
}
.sw-card__text strong {
  color: rgba(255,255,255,0.85);
}

/* Play button overlay */
.sw-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%) scale(0.9);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 18px;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), background 0.3s;
  pointer-events: none;
}
.sw-card:hover .sw-play-btn {
  transform: translate(-50%,-50%) scale(1.05);
  background: rgba(124,58,237,0.5);
}

/* ══════════════════════════════════════════════════════════
   NEW: COUNTDOWN URGENCY BANNER
   ══════════════════════════════════════════════════════════ */
.urgency-banner {
  background: linear-gradient(135deg, #2d0a4e, #1a0a3e, #0d1a40);
  border-top: 1px solid rgba(168,85,247,0.2);
  border-bottom: 1px solid rgba(168,85,247,0.2);
  padding: 14px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.urgency-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(124,58,237,0.08), transparent);
  animation: ann-sweep 4s ease-in-out infinite;
  pointer-events: none;
}
.urgency-banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.urgency-banner__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(239,68,68,0.15);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f87171;
  flex-shrink: 0;
}
.urgency-banner__text {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
}
.urgency-banner__timer {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.ub-seg {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 3px 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  min-width: 32px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}
.ub-colon {
  color: rgba(255,255,255,0.4);
  font-weight: 700;
  font-size: 14px;
}
@media(max-width:480px) {
  .urgency-banner__inner { gap: 10px; }
  .urgency-banner__text { font-size: 12px; }
}

/* ══════════════════════════════════════════════════════════
   NEW: SATISFACTION GUARANTEE BLOCK
   ══════════════════════════════════════════════════════════ */
.guarantee-block {
  padding: 64px 0;
  background: linear-gradient(180deg, var(--color-bg-2), var(--color-bg));
  position: relative;
  overflow: hidden;
}
.guarantee-block::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,58,237,0.3), transparent);
}
.guarantee-inner {
  max-width: 780px; margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}
.guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(16,185,129,0.06);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: 100px;
  padding: 8px 20px 8px 10px;
  margin-bottom: 24px;
}
.guarantee-badge__icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.25);
  display: flex; align-items: center; justify-content: center;
  color: #10B981; font-size: 15px;
}
.guarantee-badge__text {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #10B981;
}
.guarantee-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 500;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.2;
}
.guarantee-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin-bottom: 36px;
}
.guarantee-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media(max-width:600px) { .guarantee-pillars { grid-template-columns: 1fr; } }
.guarantee-pillar {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.guarantee-pillar:hover {
  border-color: rgba(16,185,129,0.2);
  transform: translateY(-3px);
}
.guarantee-pillar__icon { font-size: 28px; margin-bottom: 10px; }
.guarantee-pillar__title { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.guarantee-pillar__desc { font-size: 11px; color: rgba(255,255,255,0.35); line-height: 1.5; }

/* ══════════════════════════════════════════════════════════
   NEW: FLOATING RATING BADGE (Bottom Right)
   ══════════════════════════════════════════════════════════ */
#floating-rating {
  position: fixed;
  bottom: 88px;
  right: 20px;
  z-index: 9400;
  background: rgba(10,8,20,0.92);
  border: 1px solid rgba(168,85,247,0.25);
  border-radius: 14px;
  padding: 10px 14px;
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 0 1px rgba(168,85,247,0.08);
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s;
  animation: float-badge-in 0.6s cubic-bezier(0.22,1,0.36,1) 3s both;
  text-decoration: none;
  display: block;
}
@keyframes float-badge-in {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}
#floating-rating:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.6), 0 0 0 1px rgba(168,85,247,0.2);
}
.fr-stars {
  color: #F59E0B;
  font-size: 13px;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 3px;
}
.fr-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
  display: block;
}
.fr-label strong {
  color: #ffffff;
}
@media(max-width:480px) {
  #floating-rating { bottom: 80px; right: 12px; }
}


/* ══════════════════════════════════════════════════════════
   LUXPOD — CRITICAL FIXES v22
   ══════════════════════════════════════════════════════════ */

/* ══ ROOT FIX: Body animation used transform which hijacks position:fixed ══
   When body has transform, ALL fixed children position relative to body not viewport.
   This caused the toast to appear stuck. Replace with opacity-only animation. */
body {
  animation: page-in-safe 0.45s ease both !important;
}
@keyframes page-in-safe {
  from { opacity: 0; }
  to   { opacity: 1; }
}
/* Kill the old transform-based animations so they don't conflict */
@keyframes page-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ══ ROOT FIX: Cart count "1" floating to top-right of cart drawer ══
   .cart-count has position:absolute set in header.liquid which bleeds onto
   #cd-count (which also has class cart-count). Force it back inline. */
#cd-count {
  position: relative !important;
  top: auto !important;
  right: auto !important;
  left: auto !important;
  bottom: auto !important;
  margin-left: 0 !important;
}

/* ══ GLOW EFFECTS — Titles ══ */
.section-title {
  text-shadow:
    0 0 40px rgba(168,85,247,0.22),
    0 0 80px rgba(124,58,237,0.1) !important;
}
.hero__title,
.pp-title {
  text-shadow:
    0 0 60px rgba(168,85,247,0.28),
    0 0 120px rgba(124,58,237,0.12) !important;
}
.hero__title em {
  filter: drop-shadow(0 0 18px rgba(168,85,247,0.6)) !important;
}
/* Section subtitle — subtle, readable */
.section-subtitle {
  color: rgba(255,255,255,0.48) !important;
  letter-spacing: 0.01em;
}
/* Guarantee & contact titles */
.guarantee-title,
.contact-info__title,
.about-hero__title,
.nl-title {
  text-shadow:
    0 0 50px rgba(168,85,247,0.25),
    0 0 100px rgba(124,58,237,0.1) !important;
}
/* Social proof large numbers */
.sp-stat__num {
  text-shadow: 0 0 30px rgba(168,85,247,0.35) !important;
}
/* Footer logo */
.footer-logo__text {
  text-shadow: 0 0 30px rgba(168,85,247,0.2);
}

/* ══ CONSISTENT PAGE BACKGROUNDS ══
   Every page gets the same deep purple-dark atmosphere.
   Transparent inner divs so body::before glow shows through. */

/* Global body backdrop — always visible */
body {
  background: #07070c !important;
}
body::before {
  content: '' !important;
  position: fixed !important;
  inset: 0 !important;
  z-index: -1 !important;
  background:
    radial-gradient(ellipse 90% 45% at 50% -5%, rgba(124,58,237,0.14), transparent 55%),
    radial-gradient(ellipse 45% 55% at -8% 50%, rgba(76,29,149,0.08), transparent 50%),
    radial-gradient(ellipse 45% 55% at 108% 55%, rgba(76,29,149,0.07), transparent 50%),
    radial-gradient(ellipse 65% 45% at 50% 108%, rgba(30,10,60,0.35), transparent 55%) !important;
  pointer-events: none !important;
}

/* Remove opaque backgrounds from page wrappers so the atmosphere shows through */
.contact-page,
.about-wrap,
.policy-page {
  background: transparent !important;
}
.contact-page::before,
.about-wrap::before,
.policy-page::before {
  display: none !important;
}

/* Give non-hero sections subtle borders to separate them visually */
.sp-strip,
.press-bar,
.guarantee-block,
.reviews-section,
.features-section,
.compat-section,
.ugc-section,
.nl-section {
  position: relative;
}

/* ══ NEW SECTION GLOW UPGRADES ══ */

/* Social proof strip — glowing numbers */
.sp-strip {
  background: linear-gradient(135deg,
    rgba(124,58,237,0.06),
    rgba(76,29,149,0.04),
    rgba(124,58,237,0.06)) !important;
}
.sp-stat__num em {
  filter: drop-shadow(0 0 12px rgba(168,85,247,0.5));
}

/* Guarantee block */
.guarantee-title {
  background: linear-gradient(135deg, #ffffff 10%, #e2c4ff 55%, #c084fc 100%);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}
/* Fix: text-shadow won't work on gradient text, use filter instead */
.guarantee-title {
  filter: drop-shadow(0 0 18px rgba(168,85,247,0.25));
  text-shadow: none !important;
}

/* Section titles — gradient on key sections */
.sp-strip .section-title,
.press-bar .section-title,
.social-wall .section-title,
.guarantee-block .section-title,
.reviews-section .section-title,
.features-section .section-title,
.nl-section .nl-title {
  background: linear-gradient(135deg, #ffffff 0%, #e9d5ff 50%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 16px rgba(168,85,247,0.3));
}

/* ══ GUARANTEE PILLARS — glow on hover ══ */
.guarantee-pillar:hover {
  box-shadow: 0 0 0 1px rgba(16,185,129,0.2), 0 12px 40px rgba(16,185,129,0.08) !important;
}
.guarantee-pillar__icon {
  display: block;
  filter: drop-shadow(0 0 10px rgba(168,85,247,0.3));
  font-size: 30px;
  margin-bottom: 12px;
  transition: filter 0.3s ease;
}
.guarantee-pillar:hover .guarantee-pillar__icon {
  filter: drop-shadow(0 0 18px rgba(16,185,129,0.5));
}

/* ══ PRESS BAR — upgraded glow ══ */
.press-bar__item:hover {
  opacity: 0.85 !important;
  filter: drop-shadow(0 0 8px rgba(168,85,247,0.4));
}
.press-bar {
  background: rgba(255,255,255,0.01) !important;
  position: relative;
  overflow: hidden;
}
.press-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(124,58,237,0.05), transparent);
  pointer-events: none;
}

/* ══ CONTACT PAGE UPGRADES ══ */
.contact-info__eyebrow {
  text-shadow: 0 0 20px rgba(168,85,247,0.4);
}
.contact-info__title {
  background: linear-gradient(135deg, #ffffff 0%, #e9d5ff 55%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(168,85,247,0.25));
  text-shadow: none !important;
}
.contact-form {
  background: rgba(255,255,255,0.025) !important;
  border: 1px solid rgba(124,58,237,0.2) !important;
  position: relative;
  overflow: hidden;
}
.contact-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168,85,247,0.5), transparent);
}
.contact-channel {
  background: rgba(255,255,255,0.025) !important;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s !important;
}
.contact-channel:hover {
  border-color: rgba(124,58,237,0.3) !important;
  box-shadow: 0 0 20px rgba(124,58,237,0.08) !important;
  transform: translateX(4px) !important;
}

/* ══ ABOUT PAGE UPGRADES ══ */
.about-hero__title {
  background: linear-gradient(135deg, #ffffff 0%, #e9d5ff 55%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(168,85,247,0.3));
  text-shadow: none !important;
}

/* ══ POLICY PAGES UPGRADES ══ */
.policy-title {
  text-shadow: 0 0 40px rgba(168,85,247,0.22) !important;
}

/* ══ FAQ PAGE UPGRADES ══ */
.faq-page .section-title {
  background: linear-gradient(135deg, #ffffff 0%, #e9d5ff 55%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 16px rgba(168,85,247,0.3));
}

/* ══ HERO BADGE glow ══ */
.hero__badge {
  box-shadow: 0 0 20px rgba(124,58,237,0.15) !important;
}

/* ══ Urgency banner glow ══ */
.urgency-banner {
  box-shadow: 0 2px 30px rgba(124,58,237,0.12) !important;
}

/* ══ Marquee text glow ══ */
.marquee-bar__item {
  text-shadow: 0 0 20px rgba(168,85,247,0.2);
}

/* ══ Review card title glow ══ */
.review-card .review-title,
.review-card .review-card__title {
  text-shadow: 0 0 20px rgba(255,255,255,0.1);
}

/* ══ Feature card title — already gradient, add filter ══ */
.feature-card__title {
  filter: drop-shadow(0 0 12px rgba(168,85,247,0.45)) !important;
}

/* ══ Compatibility badge hover glow ══ */
.compat-badge:hover,
.compat-card:hover {
  box-shadow: 0 0 24px rgba(124,58,237,0.15), 0 8px 32px rgba(0,0,0,0.3) !important;
}

/* ══ Floating rating badge — glow ══ */
#floating-rating {
  box-shadow:
    0 8px 32px rgba(0,0,0,0.5),
    0 0 0 1px rgba(168,85,247,0.12),
    0 0 20px rgba(124,58,237,0.1) !important;
}
.fr-stars {
  text-shadow: 0 0 12px rgba(245,158,11,0.6);
}

