/* ============================================
   HIGH END FIRE — Premium Collectables
   Dark 3D-glow aesthetic
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0A0A0A;
  --bg-card: #141414;
  --bg-card-hover: #1A1A1A;
  --primary: #E05C2A;
  --primary-light: #FF8C5A;
  --primary-gradient: linear-gradient(135deg, #E05C2A 0%, #FF8C5A 100%);
  --cta-gradient: linear-gradient(135deg, #E05C2A 0%, #FF7040 100%);
  --text: #F5F5F5;
  --text-secondary: #AAAAAA;
  --text-tertiary: #666666;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(224, 92, 42, 0.4);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --shadow-glow: 0 4px 30px rgba(224, 92, 42, 0.35);
  --shadow-glow-sm: 0 0 20px rgba(224, 92, 42, 0.25);
  --shadow-glow-subtle: 0 0 40px rgba(224, 92, 42, 0.10);
  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: 150ms ease;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Ambient Glows --- */
.ambient-glow {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
}

.ambient-glow--hero {
  width: 800px;
  height: 600px;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(224, 92, 42, 0.07) 0%, transparent 70%);
}

.ambient-glow--mid {
  width: 600px;
  height: 600px;
  top: 50%;
  right: -300px;
  background: radial-gradient(circle, rgba(224, 92, 42, 0.04) 0%, transparent 70%);
}

.ambient-glow--bottom {
  width: 700px;
  height: 500px;
  bottom: 0;
  left: -200px;
  background: radial-gradient(circle, rgba(224, 92, 42, 0.05) 0%, transparent 70%);
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* --- Gradient Text --- */
.gradient-text {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Pulse Dot --- */
.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ADE80;
  animation: pulse 2s infinite;
  margin-right: 8px;
  flex-shrink: 0;
}

.pulse-dot--red {
  background: #EF4444;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn--primary {
  background: var(--cta-gradient);
  color: #fff;
  border-radius: 100px;
  box-shadow: var(--shadow-glow);
}

.btn--primary:hover {
  box-shadow: 0 6px 40px rgba(224, 92, 42, 0.5);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 100px;
}

.btn--outline:hover {
  border-color: var(--text-secondary);
}

.btn--lg {
  padding: 14px 32px;
  font-size: 15px;
  letter-spacing: 0.5px;
}

.btn--sm {
  padding: 10px 20px;
  font-size: 13px;
}

.btn--xs {
  padding: 8px 16px;
  font-size: 12px;
  letter-spacing: 0.3px;
}

.btn--full {
  width: 100%;
}

/* --- Section Primitives --- */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 2px;
  white-space: nowrap;
}

.logo__icon {
  font-size: 24px;
  filter: drop-shadow(0 0 15px rgba(224, 92, 42, 0.5));
}

.logo__img {
  height: 60px;
  width: auto;
  display: block;
}

.footer .logo__img {
  height: 50px;
}

.logo__accent {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__link {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 0.3px;
  transition: color var(--transition);
}

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

.nav__social {
  display: flex;
  align-items: center;
}

.nav__social svg {
  transition: color var(--transition);
}

.nav__social:hover svg {
  color: var(--primary);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.header__cta {
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 20px;
  margin-bottom: 32px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(58px, 11vw, 112px);
  line-height: 0.88;
  letter-spacing: 0.5px;
  margin-bottom: 28px;
}

.hero__subtitle {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto 40px;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.btn--yt {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 0, 0, 0.35);
  color: #FF0000;
  background: transparent;
  transition: background var(--transition), border-color var(--transition);
}
.btn--yt:hover {
  background: rgba(255, 0, 0, 0.08);
  border-color: rgba(255, 0, 0, 0.65);
}

.yt-subs {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.04em;
  text-align: center;
  margin-bottom: 44px;
}

/* Hero waving figurine mascot */
.hero__figurine {
  position: absolute;
  right: max(12px, calc(50% - 640px));
  bottom: 0;
  width: clamp(250px, 26vw, 390px);
  z-index: 0; /* sits behind .container (z-index:1) so hero copy stays on top */
  pointer-events: none;
  filter: drop-shadow(0 26px 44px rgba(0, 0, 0, 0.6));
  animation: heroFigFloat 6s ease-in-out infinite;
}
.hero__figurine::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4%;
  transform: translateX(-50%);
  width: 82%;
  height: 52%;
  background: radial-gradient(circle at 50% 65%, rgba(255, 107, 53, 0.4), transparent 70%);
  filter: blur(36px);
  z-index: -1;
}
.hero__figurine video,
.hero__figurine img {
  display: block;
  width: 100%;
  height: auto;
}
@keyframes heroFigFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@media (max-width: 1100px) {
  /* Stack the figurine in-flow below the hero copy (like the essetech hero) */
  .hero__figurine {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(320px, 76vw);
    margin: 20px auto 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero__figurine { animation: none; }
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.stat__number {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
}

.stat__label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.marquee__track {
  display: flex;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}

.marquee__track span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-tertiary);
  padding-right: 40px;
}

.diamond {
  color: var(--primary);
  font-style: normal;
  margin: 0 8px;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   TRUST STRIP
   ============================================ */
.trust-strip {
  padding: 40px 0;
  position: relative;
  z-index: 1;
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition);
}

.trust-badge:hover {
  border-color: var(--border-hover);
}

.trust-badge__icon {
  font-size: 24px;
  flex-shrink: 0;
}

.trust-badge__text strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 2px;
}

.trust-badge__text span {
  font-size: 11px;
  color: var(--text-tertiary);
}

/* ============================================
   PRODUCTS
   ============================================ */
.products-section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.products-section--alt {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stock-alert {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  margin-bottom: 32px;
  font-size: 13px;
  color: var(--text-secondary);
}

.stock-alert strong {
  color: #EF4444;
}

.stock-alert--neutral {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border);
}

/* ============================================
   FOUNDER / ABOUT SECTION
   ============================================ */
.founder-section {
  padding: 80px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.founder-section__inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 56px;
  align-items: start;
}
.founder-section__photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #0a0a0a;
  display: block;
}
.founder-section__copy .section-label {
  margin-bottom: 12px;
}
.founder-section__copy .section-title {
  margin-bottom: 24px;
}
.founder-section__copy p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 62ch;
}
.founder-section__socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.founder-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.founder-social:hover {
  color: var(--primary);
  border-color: var(--primary);
  background: rgba(224, 92, 42, 0.06);
}

@media (max-width: 860px) {
  .founder-section { padding: 56px 0; }
  .founder-section__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .founder-section__photo {
    max-width: 280px;
    margin: 0 auto;
  }
}

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

/* --- Product Card --- */
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.products-section--alt .product-card {
  background: var(--bg);
}

.product-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-glow-subtle);
  transform: translateY(-4px);
}

.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text);
}

.product-card__badge--hot {
  background: rgba(224, 92, 42, 0.3);
  border-color: rgba(224, 92, 42, 0.5);
  box-shadow: 0 0 15px rgba(224, 92, 42, 0.3);
}

.product-card__badge--soon {
  background: rgba(124, 58, 237, 0.25);
  border-color: rgba(124, 58, 237, 0.4);
}

.product-card--sold .product-card__image img {
  filter: grayscale(0.85) brightness(0.55);
}

.product-card--sold .price-shimmer {
  text-decoration: line-through;
  opacity: 0.55;
}

.product-card--sold:hover .product-card__image img {
  transform: none;
}

.product-card__stock {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #FCA5A5;
  animation: pulse 2.5s infinite;
}

.product-card__image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #0D0D0D;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card__image img {
  transform: scale(1.05);
}

.product-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-card__overlay {
  opacity: 1;
}

.product-card__image--placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
}

.coming-soon-icon {
  font-size: 48px;
  opacity: 0.6;
}

.coming-soon-text {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 3px;
  text-align: center;
  color: var(--text-tertiary);
  line-height: 1.2;
}

.product-card__info {
  padding: 20px;
}

.product-card__condition {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #4ADE80;
  margin-bottom: 8px;
}

.product-card__name {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.5px;
  line-height: 1.15;
  margin-bottom: 8px;
}

.product-card__desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.product-card__price {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.5px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-card__price small {
  font-size: 14px;
}

.product-card__price--soon {
  font-size: 18px;
  background: none;
  -webkit-text-fill-color: var(--text-tertiary);
  color: var(--text-tertiary);
}

/* ============================================
   FEATURES
   ============================================ */
.features-section {
  padding: 80px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  padding: 28px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
  position: relative;
}

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

.feature-card__step {
  font-family: var(--font-display);
  font-size: 48px;
  color: rgba(255, 255, 255, 0.04);
  position: absolute;
  top: 16px;
  right: 20px;
  line-height: 1;
}

.feature-card__icon {
  font-size: 28px;
  margin-bottom: 16px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(224, 92, 42, 0.1);
  border: 1px solid rgba(224, 92, 42, 0.2);
  border-radius: 12px;
}

.feature-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.feature-card__desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ============================================
   URGENCY CTA
   ============================================ */
.urgency-section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.urgency-card {
  position: relative;
  text-align: center;
  padding: 60px 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.urgency-card__glow {
  position: absolute;
  width: 500px;
  height: 300px;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(224, 92, 42, 0.12) 0%, transparent 70%);
  pointer-events: none;
  animation: pulse 3s infinite;
}

.urgency-card__text {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto 32px;
}

.urgency-card__counters {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 32px;
}

.urgency-counter {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.urgency-counter__number {
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 1;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.urgency-counter__label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--text-tertiary);
}

/* ============================================
   CONTACT
   ============================================ */
.contact-section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.contact-form {
  max-width: 640px;
  margin: 0 auto;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-tertiary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23666' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option {
  background: var(--bg-card);
  color: var(--text);
}

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

.contact-form__note {
  text-align: center;
  font-size: 12px;
  color: var(--text-tertiary);
  margin-top: 12px;
}

.contact-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 48px 24px;
  text-align: center;
}
.contact-success h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}
.contact-success p {
  color: var(--text-secondary);
}

.watchlist-error {
  color: #e05c2a;
  font-size: 13px;
  margin-top: 8px;
  text-align: center;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 60px 0 30px;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}

.footer__tagline {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-secondary);
  margin-top: 12px;
  max-width: 260px;
}

.footer__address {
  font-size: 12px;
  font-style: normal;
  color: var(--text-tertiary);
  margin-top: 8px;
  line-height: 1.7;
}

.footer__address a {
  color: var(--text-tertiary);
  transition: color var(--transition);
}

.footer__address a:hover {
  color: var(--primary);
}

.footer__links {
  display: flex;
  gap: 60px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__col h4 {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.footer__col a {
  font-size: 13px;
  color: var(--text-tertiary);
  transition: color var(--transition);
}

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

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__bottom p {
  font-size: 12px;
  color: var(--text-tertiary);
}

.footer__payment {
  font-size: 12px;
  color: var(--text-tertiary);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ============================================
   TOAST / NOTIFICATION
   ============================================ */
.toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  transform: translateY(120%);
  opacity: 0;
  transition: all 0.4s ease;
  max-width: 360px;
}

.toast--visible {
  transform: translateY(0);
  opacity: 1;
}

.toast__icon {
  font-size: 20px;
  flex-shrink: 0;
}

.toast__content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.toast__title {
  font-size: 13px;
  font-weight: 600;
}

.toast__message {
  font-size: 12px;
  color: var(--text-secondary);
}

.toast__close {
  background: none;
  border: none;
  color: var(--text-tertiary);
  font-size: 18px;
  cursor: pointer;
  padding: 0 0 0 8px;
  flex-shrink: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .nav {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
  }

  .nav--open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .header__cta {
    display: none;
  }

  .cart-drawer__panel {
    max-width: 100%;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hero__title {
    font-size: clamp(48px, 14vw, 80px);
  }

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

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

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

  .footer__top {
    flex-direction: column;
  }

  .footer__links {
    gap: 40px;
  }

  .urgency-card__counters {
    gap: 24px;
  }

  .urgency-counter__number {
    font-size: 32px;
  }
}

@media (max-width: 540px) {
  .products-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .trust-strip__grid {
    grid-template-columns: 1fr;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
  }

  .hero__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .footer__links {
    flex-direction: column;
    gap: 24px;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .urgency-card {
    padding: 40px 20px;
  }

  .urgency-card__counters {
    flex-direction: column;
    gap: 16px;
  }
}

/* ============================================
   CART TRIGGER (Header)
   ============================================ */
.cart-trigger {
  position: relative;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition);
}

.cart-trigger:hover {
  color: var(--primary);
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  font-size: 10px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  color: #fff;
  background: var(--primary);
  border-radius: 100px;
  padding: 0 5px;
  display: none;
}

/* ============================================
   CART DRAWER
   ============================================ */
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  visibility: hidden;
  pointer-events: none;
}

.cart-drawer--open {
  visibility: visible;
  pointer-events: auto;
}

.cart-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cart-drawer--open .cart-drawer__backdrop {
  opacity: 1;
}

.cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 420px;
  background: var(--bg);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.cart-drawer--open .cart-drawer__panel {
  transform: translateX(0);
}

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.cart-drawer__title {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.5px;
}

.cart-drawer__close {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 28px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color var(--transition);
}

.cart-drawer__close:hover {
  color: var(--text);
}

.cart-drawer__items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

.cart-drawer__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  color: var(--text-secondary);
}

.cart-drawer__empty p {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--text);
}

.cart-drawer__empty span {
  font-size: 13px;
  color: var(--text-tertiary);
}

.cart-drawer__footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}

.cart-drawer__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 600;
}

.cart-drawer__total span:last-child {
  font-family: var(--font-display);
  font-size: 24px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cart-drawer__secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 11px;
  color: var(--text-tertiary);
  letter-spacing: 0.3px;
}

/* The large-order note is a sentence, not a four-word trust badge — let it wrap
   and sit top-aligned against its icon rather than being centred on one line. */
.cart-drawer__secure--enquire {
  align-items: flex-start;
  text-align: left;
  line-height: 1.5;
}

/* --- Cart Item --- */
.cart-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item__image {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-xs);
  overflow: hidden;
  flex-shrink: 0;
  background: #0D0D0D;
}

.cart-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item__info {
  flex: 1;
  min-width: 0;
}

.cart-item__condition {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #4ADE80;
  margin-bottom: 2px;
}

.cart-item__name {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.3px;
  line-height: 1.2;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item__price {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-light);
}

.cart-item__remove {
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  color: var(--text-tertiary);
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}

.cart-item__remove:hover {
  border-color: #EF4444;
  color: #EF4444;
  background: rgba(239, 68, 68, 0.1);
}

.cart-item__each {
  font-weight: 500;
  color: var(--text-tertiary);
}

.cart-item__qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.cart-item__qty-btn {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 14px;
  line-height: 1;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition);
}

.cart-item__qty-btn:hover:not(:disabled) {
  border-color: var(--primary);
  color: var(--primary-light);
  background: rgba(232, 68, 37, 0.1);
}

.cart-item__qty-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.cart-item__qty-value {
  min-width: 18px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.cart-item__qty-max {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.cart-item__subtotal {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

/* Bigger tap targets for the quantity stepper on touch screens */
@media (max-width: 768px) {
  .cart-item__qty {
    gap: 10px;
    margin-top: 10px;
  }

  .cart-item__qty-btn {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
}

/* --- Cart Notification --- */
.cart-notification {
  position: fixed;
  top: 80px;
  right: 24px;
  z-index: 1100;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--bg-card);
  border: 1px solid rgba(74, 222, 128, 0.3);
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  transform: translateX(120%);
  opacity: 0;
  transition: all 0.3s ease;
}

.cart-notification span {
  color: #4ADE80;
  font-weight: 700;
}

.cart-notification--visible {
  transform: translateX(0);
  opacity: 1;
}

/* Error variant — stock and listing problems raised at checkout */
.cart-notification--error {
  border-color: rgba(239, 68, 68, 0.4);
  max-width: min(360px, calc(100vw - 48px));
  align-items: flex-start;
  line-height: 1.45;
}

.cart-notification--error span {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.15);
  color: #FCA5A5;
  font-size: 12px;
}

/* --- Spinner (checkout button) --- */
.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  visibility: hidden;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.lightbox--open {
  visibility: visible;
  pointer-events: auto;
}

.lightbox__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox--open .lightbox__backdrop {
  opacity: 1;
}

/* Main panel */
.lightbox__panel {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  width: 100%;
  max-width: 1000px;
  max-height: 90vh;
  transform: scale(0.95);
  opacity: 0;
  transition: all 0.3s ease;
}

.lightbox--open .lightbox__panel {
  transform: scale(1);
  opacity: 1;
}

/* Left: image column */
.lightbox__left {
  position: relative;
  flex: 0 0 540px;
  display: flex;
  flex-direction: column;
  background: #080808;
}

.lightbox__main-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 0;
  position: relative;
  cursor: zoom-in;
}

.lightbox__main-image.is-zoomed {
  cursor: zoom-out;
}

.lightbox__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s cubic-bezier(.25,.46,.45,.94);
  display: block;
  transform-origin: 0 0;
  user-select: none;
  -webkit-user-drag: none;
  touch-action: none;
}

/* Zoom hint badge */
.lightbox__zoom-hint {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(10,10,10,0.8);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 6px;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 6;
}

.lightbox__main-image.is-zoomed .lightbox__zoom-hint {
  opacity: 0;
  transform: translateY(8px);
}

/* Image counter (mobile) */
.lightbox__counter {
  display: none;
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10,10,10,0.7);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 1px;
  z-index: 6;
  pointer-events: none;
}

/* Image prev/next arrows (within product) */
.lightbox__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: rgba(10, 10, 10, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.lightbox__arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.lightbox__arrow--prev { left: 12px; }
.lightbox__arrow--next { right: 12px; }

/* Thumbnail strip */
.lightbox__thumbs {
  display: flex;
  gap: 6px;
  padding: 10px 12px;
  overflow-x: auto;
  background: #0D0D0D;
  flex-shrink: 0;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.lightbox__thumbs::-webkit-scrollbar {
  height: 4px;
}

.lightbox__thumbs::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

.lightbox__thumb {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  background: #111;
  transition: border-color var(--transition);
}

.lightbox__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lightbox__thumb--active,
.lightbox__thumb:hover {
  border-color: var(--primary);
}

/* Right: info column */
.lightbox__right {
  flex: 1;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
  min-width: 0;
}

.lightbox__condition {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #4ADE80;
}

.lightbox__name {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 28px);
  letter-spacing: 0.5px;
  line-height: 1.15;
}

.lightbox__price-row {
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.lightbox__price {
  font-family: var(--font-display);
  font-size: 34px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Enquiry-only pieces show "Enquire for price" instead of a figure — matches
   .product-card__price--soon on the card grid. */
.lightbox__price--enquire {
  font-size: 24px;
  background: none;
  -webkit-text-fill-color: var(--text-tertiary);
  color: var(--text-tertiary);
}

/* Product navigation (between products) */
.lightbox__nav-products {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.lightbox__prod-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 12px;
  border-radius: 100px;
  padding: 6px 14px;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.lightbox__prod-nav:hover {
  border-color: var(--primary);
  color: var(--text);
}

.lightbox__prod-counter {
  font-size: 11px;
  color: var(--text-tertiary);
  letter-spacing: 1px;
  white-space: nowrap;
}

/* Close button */
.lightbox__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  font-size: 22px;
  line-height: 1;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.lightbox__close:hover {
  background: var(--bg-card-hover);
  color: var(--text);
  border-color: rgba(255,255,255,0.2);
}

/* Zoom hint on product card images */
.product-card__zoom-hint {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 4;
  background: rgba(10, 10, 10, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.product-card:hover .product-card__zoom-hint,
.product-card__zoom-hint--mobile {
  opacity: 0.7;
}

/* Responsive lightbox — Fullscreen mobile experience */
@media (max-width: 768px) {
  .lightbox {
    padding: 0;
    align-items: stretch;
  }

  .lightbox__panel {
    flex-direction: column;
    max-width: 100%;
    max-height: 100vh;
    height: 100vh;
    height: 100dvh;
    border-radius: 0;
    border: none;
    background: #000;
  }

  .lightbox__left {
    flex: 1;
    min-height: 0;
    max-height: none;
    position: relative;
    touch-action: none;
    -webkit-touch-callout: none;
    overflow: hidden;
  }

  .lightbox__main-image {
    touch-action: none;
    -webkit-user-select: none;
    user-select: none;
    overflow: hidden;
  }

  .lightbox__img {
    pointer-events: auto;
    touch-action: none;
  }

  /* Fullscreen: compact info bar at bottom */
  .lightbox__right {
    flex: none;
    padding: 14px 16px;
    gap: 6px;
    background: rgba(10,10,10,0.98);
    border-top: 1px solid rgba(255,255,255,0.08);
    max-height: 35vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .lightbox__condition {
    font-size: 9px;
  }

  .lightbox__price-row {
    padding-top: 8px;
  }

  .lb-add-to-cart {
    padding: 12px !important;
    font-size: 14px !important;
  }

  .lightbox__price {
    font-size: 26px;
  }

  .lightbox__price--enquire {
    font-size: 19px;
  }

  .lightbox__name {
    font-size: 18px;
  }

  .lightbox__close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 24px;
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.15);
    z-index: 10;
  }

  /* Image counter visible on mobile */
  .lightbox__counter {
    display: block;
  }

  /* Arrows: larger touch targets on mobile */
  .lightbox__arrow {
    width: 44px;
    height: 44px;
    background: rgba(0,0,0,0.5);
  }

  .lightbox__arrow--prev { left: 8px; }
  .lightbox__arrow--next { right: 8px; }

  /* Hide arrows and UI when zoomed (user is panning) */
  .lightbox__left.is-zoomed-parent .lightbox__arrow {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
  }
  .lightbox__left.is-zoomed-parent .lightbox__counter {
    opacity: 0;
  }
  .lightbox__left.is-zoomed-parent .lightbox__thumbs {
    opacity: 0;
    pointer-events: none;
  }

  /* Zoom hint: animate in/out on mobile */
  .lightbox__zoom-hint {
    opacity: 0;
    transform: translateY(8px);
    bottom: 14px;
    left: 50%;
    right: auto;
    transform: translateX(-50%) translateY(8px);
    font-size: 13px;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(224,92,42,0.85);
    border-color: rgba(224,92,42,0.3);
    color: #fff;
    font-weight: 600;
  }

  .lightbox__zoom-hint--show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  /* Thumbnails: horizontal scroll strip at bottom of image area */
  .lightbox__thumbs {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px 12px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    z-index: 5;
  }

  .lightbox__thumb {
    width: 48px;
    height: 48px;
    border-radius: 6px;
  }

  /* Hide product nav on mobile (use swipe instead) */
  .lightbox__nav-products {
    display: none;
  }
}

/* ============================================
   ANIMATIONS ON SCROLL
   ============================================ */
.product-card,
.feature-card,
.trust-badge {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color var(--transition), box-shadow 0.3s ease;
}

.product-card.visible,
.feature-card.visible,
.trust-badge.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-section {
  padding: 80px 0;
}
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.faq-item[open] {
  border-color: rgba(224,92,42,0.3);
  box-shadow: 0 0 20px rgba(224,92,42,0.05);
}
.faq-item__question {
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}
.faq-item__question::-webkit-details-marker {
  display: none;
}
.faq-item__question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--accent);
  font-weight: 300;
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.3s ease;
}
.faq-item[open] .faq-item__question::after {
  content: '−';
}
.faq-item__question h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  margin: 0;
  line-height: 1.5;
}
.faq-item__answer {
  padding: 0 24px 20px;
}
.faq-item__answer p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}
.faq-item__answer strong {
  color: var(--text);
}
@media (max-width: 768px) {
  .faq-item__question {
    padding: 16px 18px;
  }
  .faq-item__answer {
    padding: 0 18px 16px;
  }
  .faq-item__question h3 {
    font-size: 0.92rem;
  }
}

/* ============================================
   DYNAMIC INTERACTIVE EFFECTS
   ============================================ */

/* --- Scroll Progress Bar --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #E05C2A, #FF8C5A, #E05C2A);
  background-size: 200% 100%;
  animation: scrollGradient 2s linear infinite;
  z-index: 9999;
  width: 0%;
  transition: width 0.05s linear;
  box-shadow: 0 0 12px rgba(224, 92, 42, 0.6);
}
@keyframes scrollGradient {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* --- Cursor Glow --- */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle, rgba(224, 92, 42, 0.08) 0%, rgba(224, 92, 42, 0.03) 30%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: opacity 0.4s ease;
  mix-blend-mode: screen;
  opacity: 0;
  will-change: transform;
}
@media (max-width: 768px) {
  .cursor-glow {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(224, 92, 42, 0.12) 0%, rgba(224, 92, 42, 0.04) 30%, transparent 70%);
  }
}

/* --- Card Spotlight Effect --- */
.card-spotlight {
  position: relative;
  overflow: hidden;
}
.card-spotlight::before {
  content: '';
  position: absolute;
  top: var(--spot-y, -100%);
  left: var(--spot-x, -100%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(224, 92, 42, 0.12) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.card-spotlight:hover::before,
.card-spotlight:active::before {
  opacity: 1;
}
@media (max-width: 768px) {
  .card-spotlight::before {
    width: 200px;
    height: 200px;
  }
}

/* --- Animated Border Glow on Cards --- */
.glow-border {
  position: relative;
}
.glow-border::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: conic-gradient(from var(--border-angle, 0deg), transparent 60%, rgba(224, 92, 42, 0.5) 78%, rgba(255, 140, 90, 0.4) 88%, transparent 95%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.glow-border:hover::after {
  opacity: 1;
  animation: rotateBorderAngle 3s linear infinite;
}
@property --border-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
@keyframes rotateBorderAngle {
  0% { --border-angle: 0deg; }
  100% { --border-angle: 360deg; }
}

/* --- Magnetic Button --- */
.btn-magnetic {
  transition: transform 0.2s cubic-bezier(.25,.46,.45,.94), box-shadow 0.3s ease;
}

/* --- Floating Particles --- */
.fire-particle {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0;
  animation: fireFloat linear infinite;
}
@keyframes fireFloat {
  0% {
    transform: translateY(0) scale(0);
    opacity: 0;
  }
  10% { opacity: 0.6; transform: translateY(-10vh) scale(1); }
  50% { opacity: 0.3; }
  100% {
    transform: translateY(-60vh) scale(0);
    opacity: 0;
  }
}

/* --- Section Reveal Slide --- */
.section-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(.25,.46,.45,.94), transform 0.8s cubic-bezier(.25,.46,.45,.94);
}
.section-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Price Shimmer --- */
.price-shimmer {
  position: relative;
  overflow: hidden;
}
.price-shimmer::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  animation: priceShimmer 3s ease-in-out infinite;
}
@keyframes priceShimmer {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

/* --- Tilt 3D for product cards --- */
.tilt-3d {
  transition: transform 0.15s ease-out, box-shadow 0.3s ease;
  transform-style: preserve-3d;
}
.tilt-3d:hover {
  box-shadow: 0 25px 60px rgba(224, 92, 42, 0.15), 0 0 30px rgba(224, 92, 42, 0.05);
}

/* --- Stat Counter Pulse --- */
.stat-pulse {
  animation: statPulse 2s ease-in-out infinite;
}
@keyframes statPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* --- Interactive Grid Background --- */
.interactive-grid {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.3;
}
.grid-dot {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(224, 92, 42, 0.15);
  border-radius: 50%;
  transition: all 0.4s ease;
}
.grid-dot.active {
  background: rgba(224, 92, 42, 0.8);
  transform: scale(4);
  box-shadow: 0 0 15px rgba(224, 92, 42, 0.5);
}

/* --- Glowing text for hero --- */
.text-glow {
  text-shadow: 0 0 40px rgba(224, 92, 42, 0.3), 0 0 80px rgba(224, 92, 42, 0.1);
}

/* --- Hover reveal for section titles --- */
.title-underline {
  position: relative;
  display: inline-block;
}
.title-underline::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--primary-gradient);
  border-radius: 2px;
  transition: width 0.6s cubic-bezier(.25,.46,.45,.94);
}
.title-underline.revealed::after {
  width: 100%;
}

/* --- Tap Ripple (mobile touch feedback) --- */
@keyframes tapRipple {
  0% { width: 0; height: 0; opacity: 0.5; }
  100% { width: 300px; height: 300px; opacity: 0; }
}

/* --- Mobile-Specific Optimisations --- */
@media (max-width: 768px) {
  .fire-particle {
    will-change: transform, opacity;
  }

  .tilt-3d {
    transition: transform 0.2s ease-out;
  }

  .glow-border::after {
    display: block;
  }

  .glow-border:active::after {
    opacity: 1;
    animation: rotateBorderAngle 3s linear infinite;
  }

  .interactive-grid {
    opacity: 0.2;
  }

  .section-reveal {
    transform: translateY(25px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .btn-magnetic {
    transition: transform 0.15s ease;
  }

  .scroll-progress {
    height: 2px;
  }

  .text-glow {
    text-shadow: 0 0 25px rgba(224, 92, 42, 0.25), 0 0 50px rgba(224, 92, 42, 0.08);
  }

  .price-shimmer::after {
    animation: priceShimmer 4s ease-in-out infinite;
  }
}

/* ============================================
   WATCHLIST CTA (inline + exit popup)
   ============================================ */
.watchlist-cta {
  padding: 80px 0;
  background: #010101;
}
.watchlist-cta__card {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 32px;
  border: 1px solid rgba(253, 108, 77, 0.25);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(253,108,77,0.04), rgba(253,108,77,0));
}
.watchlist-cta__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.05;
  margin: 16px 0 12px;
}
.watchlist-cta__subhead {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto 28px;
}
.watchlist-form {
  display: flex;
  gap: 10px;
  max-width: 520px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.watchlist-form__input {
  flex: 1 1 240px;
  padding: 14px 18px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font: inherit;
  font-size: 15px;
}
.watchlist-form__input::placeholder { color: rgba(255, 255, 255, 0.35); }
.watchlist-form__input:focus {
  outline: none;
  border-color: #FD6C4D;
  background: rgba(255, 255, 255, 0.08);
}
.watchlist-form__submit { flex: 0 0 auto; white-space: nowrap; }
.watchlist-cta__fineprint {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 16px;
  letter-spacing: 0.04em;
}

.exit-popup {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0s linear 0.25s;
}
.exit-popup[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.25s ease, visibility 0s linear 0s;
}
.exit-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
}
.exit-popup__card {
  position: relative;
  max-width: 520px;
  width: 100%;
  padding: 48px 32px 40px;
  background: #010101;
  border: 1px solid rgba(253, 108, 77, 0.35);
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(253, 108, 77, 0.12);
}
.exit-popup__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  transition: color var(--transition), background var(--transition);
}
.exit-popup__close:hover { color: #fff; background: rgba(255, 255, 255, 0.08); }

.watchlist-success {
  color: #FD6C4D;
  font-weight: 500;
  margin-top: 8px;
}

/* Deep links from the newsletter land on a specific card (#<product-id>).
   Without this the fixed header sits over the card you were sent to. */
.product-card[id] {
  scroll-margin-top: 100px;
}
