@media (max-width: 768px) {
  .hamburger {
    display: block !important;
  }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(8, 7, 15, 0.97);
    backdrop-filter: blur(20px);
    padding: 24px 20px;
    border-bottom: 1px solid var(--border);
    gap: 20px;
    z-index: 99;
  }
}
:root {
  --bg: #08070f;
  --surface: #0f0d1a;
  --card: #13101f;
  --card2: #1a1628;
  --border: rgba(120, 80, 255, 0.13);
  --border2: rgba(120, 80, 255, 0.25);
  --white: #f0eeff;
  --muted: #7a7490;
  --muted2: #4a4460;
  --purple: #9b6dff;
  --purple2: #7847ff;
  --purple3: #c4a4ff;
  --glow: rgba(120, 60, 255, 0.18);
  --accent: #ff5cad;
  --font-d: "Bebas Neue", sans-serif;
  --font-b: "DM Sans", sans-serif;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-b);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── NOISE OVERLAY ── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 9999;
}

/* ── ANNOUNCE ── */
.announce-bar {
  background: linear-gradient(90deg, #1a0d2e, #0f0a1e, #1a0d2e);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  overflow: hidden;
  position: relative;
}
.announce-bar::before,
.announce-bar::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.announce-bar::before {
  left: 0;
  background: linear-gradient(to right, #1a0d2e, transparent);
}
.announce-bar::after {
  right: 0;
  background: linear-gradient(to left, #0f0a1e, transparent);
}
.announce-track {
  display: inline-flex;
  gap: 64px;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
}
@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.announce-item {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple3);
  display: flex;
  align-items: center;
  gap: 10px;
}
.announce-dot {
  width: 4px;
  height: 4px;
  background: var(--purple);
  border-radius: 50%;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 7, 15, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 68px;
}
.nav-logo {
  font-family: var(--font-d);
  font-size: 30px;
  letter-spacing: 0.08em;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-logo-x {
  color: var(--purple);
  position: relative;
}
.nav-logo-x::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple2), var(--accent));
  border-radius: 2px;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--purple);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.nav-links a:hover {
  color: var(--white);
}
.nav-links a:hover::after {
  transform: scaleX(1);
}
.nav-links .active {
  color: var(--white);
}
.nav-links .active::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  font-size: 18px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.2s;
}
.nav-icon-btn:hover {
  color: var(--white);
  background: var(--card2);
}
.nav-cart-btn {
  background: linear-gradient(135deg, var(--purple2), var(--purple));
  color: #fff;
  border: none;
  padding: 9px 22px;
  font-family: var(--font-b);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.2s;
  box-shadow: 0 0 20px rgba(120, 71, 255, 0.3);
}
.nav-cart-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 24px rgba(120, 71, 255, 0.5);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 80% at 70% 40%,
      rgba(100, 40, 200, 0.12) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 40% 50% at 20% 80%,
      rgba(60, 20, 120, 0.08) 0%,
      transparent 60%
    ),
    url("https://images.stockcake.com/public/2/b/5/2b5ffc99-4d5d-4ae7-a426-2335695b1ebc/intense-gym-workout-stockcake.jpg")
      center/cover no-repeat;
  z-index: 0;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  /* z-index: 1; */
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(120, 80, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 80, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}
/* Glowing orbs */
.hero-orb1 {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(120, 60, 255, 0.15) 0%,
    transparent 70%
  );
  top: -100px;
  right: 10%;
  pointer-events: none;
  z-index: 0;
  animation: orbFloat 8s ease-in-out infinite;
}
.hero-orb2 {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 92, 173, 0.1) 0%,
    transparent 70%
  );
  bottom: 10%;
  left: 5%;
  pointer-events: none;
  z-index: 0;
  animation: orbFloat 10s ease-in-out infinite reverse;
}
@keyframes orbFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-30px) scale(1.05);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px;
  max-width: 720px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--purple3);
  margin-bottom: 24px;
  padding: 6px 14px;
  border: 1px solid var(--border2);
  border-radius: 100px;
  background: rgba(120, 71, 255, 0.06);
}
.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--purple);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--purple);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%,
  100% {
    box-shadow: 0 0 6px var(--purple);
  }
  50% {
    box-shadow:
      0 0 14px var(--purple),
      0 0 24px rgba(120, 71, 255, 0.4);
  }
}

.hero-title {
  font-family: var(--font-d);
  font-size: clamp(78px, 10vw, 130px);
  line-height: 0.87;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}
.hero-title .line-white {
  color: var(--white);
}
.hero-title .line-purple {
  background: linear-gradient(
    135deg,
    var(--purple3) 0%,
    var(--purple) 50%,
    var(--accent) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-title .line-outline {
  -webkit-text-stroke: 1.5px rgba(155, 109, 255, 0.4);
  color: transparent;
}

.hero-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 44px;
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--purple2) 0%, var(--purple) 100%);
  color: #fff;
  border: none;
  padding: 16px 40px;
  font-family: var(--font-b);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s;
  box-shadow: 0 4px 24px rgba(120, 71, 255, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(120, 71, 255, 0.55);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border2);
  padding: 16px 40px;
  font-family: var(--font-b);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s;
}
.btn-ghost:hover {
  background: rgba(120, 71, 255, 0.08);
  border-color: var(--purple);
  color: var(--purple3);
}

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-family: var(--font-d);
  font-size: 36px;
  line-height: 1;
  background: linear-gradient(135deg, var(--white), var(--purple3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat-label {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}
.hero-athlete-emoji {
  font-size: 180px;
  opacity: 0.07;
  position: absolute;
  right: 10%;
  animation: breathe 5s ease-in-out infinite;
}
@keyframes breathe {
  0%,
  100% {
    transform: scale(1) translateY(0);
    opacity: 0.07;
  }
  50% {
    transform: scale(1.04) translateY(-12px);
    opacity: 0.1;
  }
}
.hero-video-label {
  position: relative;
  z-index: 2;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(155, 109, 255, 0.4);
  border: 1px dashed rgba(120, 71, 255, 0.2);
  padding: 10px 20px;
}
.hero-fade-left {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 200px;
  background: linear-gradient(to right, var(--bg), transparent);
  z-index: 2;
}
*/

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 80px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
}
.scroll-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(to right, var(--purple), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scaleX(1);
  }
  50% {
    opacity: 1;
    transform: scaleX(1.3);
  }
}
.scroll-txt {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted2);
}

/* ── MARQUEE ── */
.marquee-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  overflow: hidden;
}
.marquee-track {
  display: inline-flex;
  gap: 56px;
  animation: marquee 24s linear infinite;
  white-space: nowrap;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.marquee-item {
  font-family: var(--font-d);
  font-size: 18px;
  letter-spacing: 0.08em;
  color: var(--muted2);
  display: flex;
  align-items: center;
  gap: 18px;
  transition: color 0.2s;
}
.marquee-item:hover {
  color: var(--purple3);
}
.m-dot {
  width: 5px;
  height: 5px;
  background: linear-gradient(135deg, var(--purple), var(--accent));
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── SECTIONS ── */
.section {
  padding: 100px 48px;
}
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: "";
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, var(--purple), var(--accent));
}
.section-title {
  font-family: var(--font-d);
  font-size: clamp(44px, 5vw, 68px);
  line-height: 0.92;
  letter-spacing: 0.02em;
}
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
}
.section-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.section-link:hover {
  color: var(--purple3);
}
.section-link::after {
  content: "→";
  transition: transform 0.2s;
}
.section-link:hover::after {
  transform: translateX(4px);
}

/* ── CATEGORY GRID ── */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.cat-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--card);
  aspect-ratio: 3/4;
}
.cat-card:first-child {
  grid-column: span 2;
  grid-row: span 1;
  aspect-ratio: unset;
  min-height: 460px;
}
.cat-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cat-card:hover .cat-bg {
  transform: scale(1.06);
}
.cat-card:nth-child(1) .cat-bg {
  background: linear-gradient(135deg, #140e24, #0d0a1a);
}
.cat-card:nth-child(2) .cat-bg {
  background: linear-gradient(135deg, #0e1020, #0a0a1a);
}
.cat-card:nth-child(3) .cat-bg {
  background: linear-gradient(135deg, #140e1c, #0a0a14);
}
.cat-card:nth-child(4) .cat-bg {
  background: linear-gradient(135deg, #10100e, #0a0a0a);
}
.cat-card:nth-child(5) .cat-bg {
  background: linear-gradient(135deg, #0e1418, #0a0d10);
}

.cat-icon-bg {
  font-size: 110px;
  opacity: 0.85;
  position: absolute;
   inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.4s,
    transform 0.6s;
}
.cat-icon-bg img {
  max-width: 100%;    
  max-height: 100%;     
  width: 100%;       
  height: 100%; 
  display: block;
   object-position: center top;       
  object-fit: cover; 
  object-position: center top;
}
.cat-card:hover .cat-icon-bg {
  opacity: 0.1;
  transform: scale(1.1) rotate(-5deg);
}
.cat-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 60% at 50% 80%,
    rgba(120, 71, 255, 0.08),
    transparent
  );
  transition: opacity 0.4s;
  opacity: 0;
}
.cat-card:hover .cat-glow {
  opacity: 1;
}
.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8, 7, 15, 0.92) 0%,
    rgba(8, 7, 15, 0.2) 50%,
    transparent 100%
  );
}
.cat-border-glow {
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  transition: border-color 0.4s;
  pointer-events: none;
  z-index: 3;
}
.cat-card:hover .cat-border-glow {
  border-color: rgba(120, 71, 255, 0.3);
}
.cat-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  z-index: 2;
}
.cat-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--purple2), var(--purple));
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 10px;
}
.cat-name {
  font-family: var(--font-d);
  font-size: 30px;
  letter-spacing: 0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.cat-count {
  font-size: 12px;
  color: var(--muted);
  font-weight: 300;
}
.cat-arrow-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(120, 71, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple3);
  font-size: 16px;
  opacity: 0;
  transform: translateY(-4px);
  transition: all 0.3s;
  z-index: 3;
}
.cat-card:hover .cat-arrow-btn {
  opacity: 1;
  transform: translateY(0);
}

/* ── PRODUCT GRID ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}
.product-card:hover {
  border-color: var(--border2);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(80, 30, 160, 0.25);
}
.product-img {
  aspect-ratio: 3/4;
  background: var(--card2);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 70% at 50% 60%,
    rgba(120, 71, 255, 0.07),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s;
}
.product-card:hover .product-img-glow {
  opacity: 1;
}
.product-emoji {
  /* font-size: 72px; */
    inset: 0;
  position: absolute;
  opacity: 0.5;
  transition:
    transform 0.5s,
    opacity 0.3s;
}
.product-emoji img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.product-card:hover .product-emoji {
  transform: scale(1.1);
  opacity: 0.85;
}
.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}
.badge-new {
  background: linear-gradient(135deg, var(--purple2), var(--purple));
  color: #fff;
}
.badge-sale {
  background: linear-gradient(135deg, #c0255c, var(--accent));
  color: #fff;
}
.badge-hot {
  background: linear-gradient(135deg, #ff6b35, #ff3300);
  color: #fff;
}

.quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--purple2), var(--purple));
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.product-card:hover .quick-add {
  transform: translateY(0);
}

.wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: rgba(8, 7, 15, 0.7);
  border: 1px solid var(--border2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.3s;
  cursor: pointer;
}
.product-card:hover .wishlist-btn {
  opacity: 1;
}

.product-info {
  padding: 16px;
}
.product-type {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 5px;
}
.product-name {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--white);
  line-height: 1.3;
}
.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}
.stars {
  font-size: 11px;
  color: var(--purple3);
  letter-spacing: 1px;
}
.rating-count {
  font-size: 11px;
  color: var(--muted);
}
.product-prices {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.price-now {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}
.price-old {
  font-size: 12px;
  color: var(--muted2);
  text-decoration: line-through;
}
.price-sale {
  color: var(--accent) !important;
}
.color-dots {
  display: flex;
  gap: 6px;
}
.c-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.c-dot:hover,
.c-dot.active {
  border-color: var(--white);
  transform: scale(1.15);
}

/* ── FEATURES STRIP ── */
.features-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.feature-item {
  padding: 32px 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}
.feature-item:last-child {
  border-right: none;
}
.feature-item:hover {
  background: rgba(120, 71, 255, 0.04);
}
.feature-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(120, 71, 255, 0.1);
  border: 1px solid var(--border2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.feature-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.feature-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  font-weight: 300;
}

/* ── PROMO BANNER ── */
.promo-section {
  margin: 0 48px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.promo-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
  border-radius: 12px;
}
.promo-card-1 {
  background: linear-gradient(135deg, #0f0820 0%, #180d38 100%);
}
.promo-card-2 {
  background: linear-gradient(135deg, #1a0820 0%, #2a0a20 100%);
}
.promo-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.promo-card-1 .promo-orb {
  width: 300px;
  height: 300px;
  top: -60px;
  right: -60px;
  background: radial-gradient(circle, rgba(120, 71, 255, 0.2), transparent 70%);
}
.promo-card-2 .promo-orb {
  width: 300px;
  height: 300px;
  top: -60px;
  right: -60px;
  background: radial-gradient(
    circle,
    rgba(255, 92, 173, 0.18),
    transparent 70%
  );
}
.promo-big-text {
  position: absolute;
  font-family: var(--font-d);
  font-size: 200px;
  line-height: 1;
  opacity: 0.05;
  right: -10px;
  top: -20px;
  letter-spacing: -0.05em;
}
.promo-content {
  position: relative;
  z-index: 2;
  padding: 40px;
}
.promo-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.promo-card-1 .promo-eyebrow {
  color: var(--purple3);
}
.promo-card-2 .promo-eyebrow {
  color: var(--accent);
}
.promo-title {
  font-family: var(--font-d);
  font-size: 52px;
  line-height: 0.9;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.promo-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 300px;
  font-weight: 300;
}
.btn-outline-purple {
  display: inline-block;
  background: transparent;
  color: var(--purple3);
  border: 1px solid var(--border2);
  padding: 13px 32px;
  font-family: var(--font-b);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s;
}
.btn-outline-purple:hover {
  background: rgba(120, 71, 255, 0.1);
  border-color: var(--purple);
}
.btn-outline-pink {
  display: inline-block;
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(255, 92, 173, 0.3);
  padding: 13px 32px;
  font-family: var(--font-b);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s;
}
.btn-outline-pink:hover {
  background: rgba(255, 92, 173, 0.08);
  border-color: var(--accent);
}

/* ── REVIEWS ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.review-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple2), var(--accent));
  opacity: 0;
  transition: opacity 0.3s;
}
.review-card:hover {
  border-color: var(--border2);
  transform: translateY(-3px);
}
.review-card:hover::before {
  opacity: 1;
}
.review-stars {
  font-size: 13px;
  color: var(--purple3);
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.review-text {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(240, 238, 255, 0.75);
  margin-bottom: 20px;
  font-style: italic;
  font-weight: 300;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple2), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.review-name {
  font-size: 13px;
  font-weight: 600;
}
.review-meta {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

/* ── NEWSLETTER ── */
.newsletter-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 96px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(120, 71, 255, 0.07),
    transparent 70%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.newsletter-inner {
  position: relative;
  z-index: 1;
}
.newsletter-section p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 36px;
  font-weight: 300;
}
.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border2);
}
.newsletter-form input {
  flex: 1;
  background: var(--card);
  border: none;
  padding: 16px 22px;
  color: var(--white);
  font-family: var(--font-b);
  font-size: 14px;
  outline: none;
}
.newsletter-form input::placeholder {
  color: var(--muted2);
}
.newsletter-form button {
  background: linear-gradient(135deg, var(--purple2), var(--purple));
  color: #fff;
  border: none;
  padding: 16px 30px;
  font-family: var(--font-b);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.newsletter-form button:hover {
  opacity: 0.88;
}

/* ── FOOTER ── */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 64px 48px 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: var(--font-d);
  font-size: 30px;
  letter-spacing: 0.08em;
  color: var(--white);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 16px;
}
.footer-logo span {
  color: var(--purple);
}
.footer-brand p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  max-width: 260px;
  font-weight: 300;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.social-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s;
}
.social-btn:hover {
  border-color: var(--border2);
  background: rgba(120, 71, 255, 0.08);
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
}
.footer-col li {
  margin-bottom: 10px;
}
.footer-col a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 300;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--white);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 12px;
  color: var(--muted2);
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  font-size: 12px;
  color: var(--muted2);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom-links a:hover {
  color: var(--muted);
}

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero stagger */
.hero-content > * {
  animation: fadeUp 0.8s ease forwards;
  opacity: 0;
}
.hero-content > *:nth-child(1) {
  animation-delay: 0.1s;
}
.hero-content > *:nth-child(2) {
  animation-delay: 0.25s;
}
.hero-content > *:nth-child(3) {
  animation-delay: 0.4s;
}
.hero-content > *:nth-child(4) {
  animation-delay: 0.55s;
}
.hero-content > *:nth-child(5) {
  animation-delay: 0.7s;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cat-card:first-child {
    grid-column: span 2;
  }
  .features-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-item:nth-child(2) {
    border-right: none;
  }
  .feature-item:nth-child(3) {
    border-top: 1px solid var(--border);
  }
  .feature-item:nth-child(4) {
    border-top: 1px solid var(--border);
    border-right: none;
  }
}
@media (max-width: 768px) {
  nav {
    padding: 0 20px;
  }
  .nav-links {
    display: none;
  }
  .hero-content {
    padding: 0 24px;
  }
  .hero-right {
    display: none;
  }
  .section {
    padding: 64px 20px;
  }
  .promo-section {
    grid-template-columns: 1fr;
    margin: 0 20px 40px;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .newsletter-section {
    padding: 64px 20px;
  }
}
