/* ════════════════════════════════
   HERO
════════════════════════════════ */
.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 140px 24px 0;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 50% 0%, rgba(123,47,247,0.3) 0%, transparent 70%),
    radial-gradient(ellipse 45% 35% at 15% 85%, rgba(255,107,53,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 45% 35% at 85% 85%, rgba(0,198,255,0.12) 0%, transparent 60%),
    #080810;
  z-index: 0;
}
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  z-index: 0;
}

.hero-content { position: relative; z-index: 1; max-width: 680px; }

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 30px;
  padding: 6px 16px;
  color: rgba(255,255,255,0.65);
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}
.hero-pill-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--success);
  animation: pulse-dot 1.6s infinite;
}
@keyframes pulse-dot { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 9vw, 100px);
  line-height: 0.93;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 20px;
}
.hero-title .outline {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,0.55);
}
.hero-title .hl { color: var(--accent2); -webkit-text-fill-color: var(--accent2); -webkit-text-stroke: none; }

.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  max-width: 460px;
  margin: 0 auto 36px;
  font-weight: 300;
}

.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.btn-hero-primary {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.4px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s;
  font-family: 'DM Sans', sans-serif;
}
.btn-hero-primary:hover { background: #9b4fff; transform: translateY(-2px); color: #fff; }

.btn-hero-ghost {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 14px 32px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s;
  font-family: 'DM Sans', sans-serif;
}
.btn-hero-ghost:hover { border-color: rgba(255,255,255,0.5); color: #fff; }

.hero-stats {
  position: relative; z-index: 1;
  display: flex; gap: 44px;
  margin-top: auto;
  padding: 32px 24px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}
.hero-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 38px; color: #fff;
  letter-spacing: 1px; line-height: 1;
}
.hero-stat-num span { color: var(--accent2); }
.hero-stat-label {
  font-size: 11px; color: rgba(255,255,255,0.35);
  letter-spacing: 1.2px; text-transform: uppercase; margin-top: 4px;
}

/* ─── BRANDS BAR ─── */
.brands-bar {
  background: rgba(255,255,255,0.025);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 13px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.brand-tag {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: 2.5px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
  cursor: default;
}
.brand-tag:hover { color: #fff; }

/* ─── HOME SHOP WRAPPER ─── */
div#shop-section.woocommerce {
  background: #f0f0f6;
  border-radius: 32px 32px 0 0;
  margin-top: -2px;
  padding: 48px 0 80px;
}
div#shop-section .woocommerce {
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
}
.woocommerce .shop-inner,
.shop-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
