*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold:        #D4AF37;
  --gold-light:  #f0cc5a;
  --gold-dim:    rgba(212, 175, 55, 0.1);
  --gold-border: rgba(212, 175, 55, 0.2);
  --bg:          #060606;
  --bg-2:        #0d0d0d;
  --bg-card:     #0f0f0f;
  --bg-card-h:   #141414;
  --text:        #efefef;
  --muted:       #555;
  --muted-2:     #888;
  --radius:      14px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.intro-active {
  overflow: hidden;
}

/* ── INTRO / SPLASH ───────────────────────────────────── */
.intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.intro.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.intro-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.04em;
  opacity: 0;
  transform: scale(0.8);
  animation: introLogoIn 0.8s 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.intro-logo span {
  background: linear-gradient(135deg, #D4AF37 0%, #f5d878 50%, #b8922a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes introLogoIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.intro-bar {
  width: 160px;
  height: 3px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
  opacity: 0;
  animation: fadeIn 0.4s 0.6s ease forwards;
}

.intro-bar-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 4px;
  animation: introFill 1.6s 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes introFill {
  to { width: 100%; }
}

.intro-tagline {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0;
  animation: fadeUp 0.5s 1s ease forwards;
}

/* ── NAV ──────────────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.3s, border-color 0.3s;
}

.nav.scrolled {
  background: rgba(6, 6, 6, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gold-border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.logo span { color: var(--gold); }

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  color: var(--muted-2);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

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

@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 0 8px rgba(212, 175, 55, 0.15); }
  50%      { box-shadow: 0 0 20px rgba(212, 175, 55, 0.4); }
}

.nav-cta {
  padding: 0.5rem 1.25rem;
  background: var(--gold);
  color: #000;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 8px;
  text-transform: uppercase;
  transition: background 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  animation: ctaGlow 2.5s ease-in-out infinite;
}

.nav-cta:hover {
  background: var(--gold-light);
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.35);
}

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 6rem;
  position: relative;
  overflow: hidden;
}

/* Animated background orbs */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(40px, -30px) scale(1.08); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(-35px, 25px) scale(1.05); }
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
  top: -15%;
  left: 50%;
  transform: translateX(-50%);
  animation: orbFloat1 9s ease-in-out infinite;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.07) 0%, transparent 70%);
  bottom: 10%;
  right: 10%;
  animation: orbFloat2 12s ease-in-out infinite;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(212, 175, 55, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

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

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem 0.4rem 0.75rem;
  border: 1px solid var(--gold-border);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted-2);
  margin-bottom: 1.75rem;
  background: rgba(212, 175, 55, 0.05);
  opacity: 0;
  animation: fadeUp 0.5s 0.1s ease forwards;
}

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

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

.hero-content h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3rem, 7.5vw, 6rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.6s 0.2s ease forwards;
}

/* Gold text gradient — animated shimmer */
@keyframes gradShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.grad {
  background: linear-gradient(135deg, #D4AF37 0%, #f5d878 25%, #b8922a 50%, #f5d878 75%, #D4AF37 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradShift 4s ease-in-out infinite;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--muted-2);
  margin-bottom: 2.5rem;
  font-weight: 400;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.6s 0.3s ease forwards;
}

.hero-actions {
  display: flex;
  gap: 0.875rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.6s 0.4s ease forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.9rem 2.25rem;
  background: var(--gold);
  color: #000;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 10px;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  overflow: hidden;
  position: relative;
}

@keyframes idleShine {
  0%, 100% { left: -75%; }
  50%      { left: 125%; }
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: skewX(-25deg);
  animation: idleShine 3s ease-in-out infinite;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.35);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 0.9rem 2.25rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--muted-2);
  font-weight: 500;
  font-size: 0.875rem;
  text-decoration: none;
  border-radius: 10px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.btn-ghost:hover {
  border-color: var(--gold-border);
  color: var(--text);
  background: rgba(212, 175, 55, 0.05);
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 1;
  opacity: 0;
  animation: fadeIn 1s 1s ease forwards;
}

.hero-scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}

/* ── TICKER ───────────────────────────────────────────── */
.ticker-wrap {
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 0.875rem 0;
  background: var(--bg-2);
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ticker-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
  align-items: center;
}

.ticker-wrap:hover .ticker-track {
  animation-play-state: paused;
}

.ticker-track span {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.tick-dot {
  color: var(--gold) !important;
  font-size: 0.5rem !important;
  opacity: 0.6;
}

/* ── PRODUCTS ─────────────────────────────────────────── */
.products {
  padding: 7rem 2rem 8rem;  position: relative;
  overflow: hidden;
}

.particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;}

.container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  opacity: 0.8;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

/* ── FILTERS ──────────────────────────────────────────── */
.filters {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  background: var(--bg-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 0.375rem;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.filter-btn {
  padding: 0.55rem 1.25rem;
  background: transparent;
  border: none;
  color: var(--muted-2);
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

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

.filter-btn.active {
  background: var(--gold);
  color: #000;
  font-weight: 700;
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.25);
}

.filter-count {
  font-size: 0.7rem;
  font-weight: 600;
  opacity: 0.7;
}

/* ── LOADER BAR ───────────────────────────────────────── */
@keyframes loaderSlide {
  0%   { left: -40%; width: 40%; }
  50%  { left: 20%; width: 60%; }
  100% { left: 100%; width: 40%; }
}

.loader-bar {
  width: 100%;
  height: 3px;
  background: rgba(212, 175, 55, 0.08);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 2rem;
  position: relative;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.loader-bar.hidden {
  opacity: 0;
  pointer-events: none;
}

.loader-bar-fill {
  position: absolute;
  top: 0;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
  border-radius: 4px;
  animation: loaderSlide 1.2s ease-in-out infinite;
}

/* ── SCROLL REVEAL ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* staggered card entrance */
.product-card {
  opacity: 0;
  transform: translateY(30px) scale(0.97);
  animation: none;
}

.product-card.card-visible {
  animation: cardIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes cardIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ── GRID ─────────────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

/* ── CARD ─────────────────────────────────────────────── */
.product-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s, background 0.3s;
}

/* left gold accent bar */
.product-card::after {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 2px;
  background: var(--gold);
  border-radius: 0 2px 2px 0;
  opacity: 0;
  transition: opacity 0.3s, top 0.3s, bottom 0.3s;
}

/* top shine — idle shimmer */
@keyframes cardShimmer {
  0%   { left: -100%; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.5), transparent);
  animation: cardShimmer 5s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 0.3s);
}

.product-card:hover {
  border-color: var(--gold-border);
  background: var(--bg-card-h);
  transform: translateY(-6px) scale(1.02);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px var(--gold-border),
    0 8px 32px rgba(212, 175, 55, 0.08),
    0 0 80px -20px rgba(212, 175, 55, 0.12);
}

.product-card:hover::before { animation-duration: 1.5s; }
.product-card:hover::after  { opacity: 1; top: 15%; bottom: 15%; }

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  background: rgba(212, 175, 55, 0.08);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.product-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  flex-grow: 1;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.25rem;
}

.product-price {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.01em;
}

.btn-buy {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 1.1rem;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-radius: 7px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.btn-buy:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
  transform: translateX(3px);
}

/* Buy button arrow slide */
.btn-buy {
  overflow: hidden;
  position: relative;
}

@keyframes idleShineDim {
  0%, 100% { left: -75%; }
  50%      { left: 125%; }
}

.btn-buy::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: skewX(-25deg);
  animation: idleShineDim 4s 0.5s ease-in-out infinite;
}

/* empty state */
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted);
  padding: 4rem;
  font-size: 0.95rem;
}

/* ── FOOTER ───────────────────────────────────────────── */
.footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 4rem 2rem 2.5rem;
  background: var(--bg-2);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.footer-brand .logo {
  display: inline-block;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}

.footer-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.footer-links a {
  color: var(--muted-2);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 1.5rem;
  text-align: center;
}

.footer-bottom p {
  color: var(--muted);
  font-size: 0.8rem;
}

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero-content h1 { letter-spacing: -0.03em; }
  .filters { width: 100%; }
  .footer-top { flex-direction: column; gap: 2rem; }
}

@media (max-width: 640px) {
  .product-grid { grid-template-columns: 1fr 1fr; }
  .nav-cta { display: none; }
}

@media (max-width: 420px) {
  .product-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
}
