/* ============================================================
   LOGAN WOLF GRAY — Premium glassmorphic ecommerce
   ============================================================ */

:root {
  --bg-0: #03050b;
  --bg-1: #060a14;
  --bg-2: #0a1020;
  --bg-3: #0f172e;
  --ink: #f8fafc;
  --ink-2: #cbd5e1;
  --ink-3: #94a3b8;
  --ink-4: #64748b;
  --gold: #f4b942;
  --gold-2: #ffd87a;
  --gold-deep: #c08e1f;
  --cyan: #22d3ee;
  --violet: #a78bfa;
  --emerald: #4ade80;
  --rose: #fb7185;
  --line: rgba(255, 255, 255, 0.06);
  --line-2: rgba(255, 255, 255, 0.10);
  --line-3: rgba(255, 255, 255, 0.16);
  --glass: rgba(15, 23, 46, 0.55);
  --glass-2: rgba(15, 23, 46, 0.80);
  --shadow-1: 0 1px 0 rgba(255, 255, 255, 0.06) inset, 0 0 0 1px rgba(255, 255, 255, 0.05);
  --shadow-2: 0 20px 60px -10px rgba(0, 0, 0, 0.6), 0 1px 0 rgba(255, 255, 255, 0.06) inset;
  --shadow-glow-gold: 0 0 60px -10px rgba(244, 185, 66, 0.6);
  --shadow-glow-violet: 0 0 80px -20px rgba(167, 139, 250, 0.5);
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 24px;
  --r-xl: 32px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::selection { background: var(--gold); color: var(--bg-0); }

html { scroll-behavior: smooth; }

html, body {
  background: var(--bg-0);
  color: var(--ink);
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-feature-settings: "ss01", "cv11";
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

/* ============================================================
   ATMOSPHERIC BACKGROUND — aurora mesh + grain + stars
   ============================================================ */
.atmos {
  position: fixed; inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.atmos::before {
  content: "";
  position: absolute; inset: -20%;
  background:
    radial-gradient(ellipse 50% 40% at 15% 8%, rgba(167, 139, 250, 0.35), transparent 60%),
    radial-gradient(ellipse 45% 35% at 85% 10%, rgba(34, 211, 238, 0.22), transparent 60%),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(244, 185, 66, 0.18), transparent 65%),
    radial-gradient(ellipse 40% 30% at 90% 70%, rgba(74, 222, 128, 0.12), transparent 60%);
  filter: blur(40px);
  animation: drift 30s ease-in-out infinite alternate;
}
.atmos::after {
  /* Grain texture */
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' /%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.5 0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.04;
  mix-blend-mode: overlay;
}
@keyframes drift {
  0%   { transform: translate(0, 0) rotate(0); }
  50%  { transform: translate(-2%, 2%) rotate(2deg); }
  100% { transform: translate(2%, -1%) rotate(-1deg); }
}

#starfield {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}

/* Cursor spotlight */
.spotlight {
  position: fixed;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 185, 66, 0.08), transparent 60%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  mix-blend-mode: screen;
  filter: blur(20px);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

h1, h2, h3, h4 {
  font-family: "Unbounded", "Outfit", sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
}

h1 { font-size: clamp(2.75rem, 7vw, 5.5rem); letter-spacing: -0.04em; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); letter-spacing: -0.03em; }
h3 { font-size: 1.25rem; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 2;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px 0;
  transition: padding 0.3s ease, background 0.3s ease;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 18px 12px 16px;
  max-width: 1240px;
  margin: 0 auto;
  background: rgba(10, 16, 32, 0.6);
  backdrop-filter: blur(28px) saturate(150%);
  -webkit-backdrop-filter: blur(28px) saturate(150%);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  box-shadow: var(--shadow-1), 0 10px 40px -10px rgba(0, 0, 0, 0.5);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.brand-mark {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold-2), var(--gold) 50%, var(--gold-deep));
  border-radius: 12px;
  box-shadow: 0 6px 24px -4px rgba(244, 185, 66, 0.6), 0 0 0 1px rgba(244, 185, 66, 0.4) inset;
  position: relative;
  overflow: hidden;
}
.brand-mark::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4), transparent 50%);
}
.brand-mark svg { width: 22px; height: 22px; position: relative; z-index: 1; }

.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text small {
  font-size: 0.62rem;
  color: var(--ink-3);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-2);
  transition: all 0.2s;
  position: relative;
}

.nav-links a:hover { color: var(--ink); background: rgba(255, 255, 255, 0.06); }
.nav-links a.active { color: var(--ink); background: rgba(255, 255, 255, 0.08); }

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

.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 16px 9px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-3);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.2s;
}
.cart-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold);
  transform: translateY(-1px);
}
.cart-btn svg { width: 17px; height: 17px; }

.cart-count {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: var(--bg-0);
  font-size: 0.68rem;
  font-weight: 800;
  min-width: 19px; height: 19px;
  border-radius: 999px;
  display: grid; place-items: center;
  padding: 0 5px;
  box-shadow: 0 0 0 2px var(--bg-1);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-2), var(--gold) 60%, var(--gold-deep));
  color: var(--bg-0);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.4) inset,
    0 -1px 0 rgba(0, 0, 0, 0.15) inset,
    0 10px 30px -8px rgba(244, 185, 66, 0.5);
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.4), transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.4) inset,
    0 -1px 0 rgba(0, 0, 0, 0.15) inset,
    0 18px 40px -10px rgba(244, 185, 66, 0.7);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-3);
  color: var(--ink);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

.btn-block { width: 100%; }
.btn-lg { padding: 17px 32px; font-size: 1rem; }
.btn-sm { padding: 10px 16px; font-size: 0.85rem; }

.btn-magnetic { transition: transform 0.2s cubic-bezier(0.2, 1, 0.3, 1); }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  position: relative;
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, var(--bg-1), transparent 5%, transparent 95%, var(--bg-1)),
    rgba(10, 16, 32, 0.4);
  backdrop-filter: blur(10px);
  z-index: 2;
}
.marquee-track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
  width: max-content;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: "Unbounded", sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: -0.01em;
}
.marquee-item .dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold);
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 32px 0 70px;
  overflow: hidden;
}
.hero-logan-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  height: auto;
  max-height: 80vh;
  max-width: 32%;
  pointer-events: none;
  z-index: 0;
  filter:
    drop-shadow(-40px 0 60px rgba(3, 5, 11, 0.6));
  -webkit-mask-image: linear-gradient(180deg, black 0%, black 88%, transparent 100%);
  mask-image: linear-gradient(180deg, black 0%, black 88%, transparent 100%);
}
.hero .container { position: relative; z-index: 2; }

/* When Logan photo is present, text flows full-width and the printer stage hides */
.hero-grid.has-logan { grid-template-columns: 1fr; }
.hero-grid.has-logan .printer-stage { display: none; }
.hero-grid.has-logan > div:first-child {
  position: relative;
  z-index: 2;
  max-width: none;
}
.hero-grid.has-logan h1,
.hero-grid.has-logan .hero-stats {
  max-width: none;
}
.hero-grid.has-logan p.lead {
  max-width: 60%;
}
.hero-grid.has-logan h1 {
  text-shadow: 0 0 30px rgba(3, 5, 11, 0.7), 0 4px 20px rgba(3, 5, 11, 0.5);
}
.hero-grid.has-logan p.lead {
  text-shadow: 0 0 20px rgba(3, 5, 11, 0.6);
}

@media (max-width: 720px) {
  .hero-logan-bg { display: none; }
  .hero-grid.has-logan { grid-template-columns: 1fr; }
  .hero-grid.has-logan .printer-stage { display: grid; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-grid > * { min-width: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-3);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-2);
  backdrop-filter: blur(10px);
}
.eyebrow .pill-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 3px 9px;
  background: linear-gradient(135deg, rgba(244, 185, 66, 0.2), rgba(167, 139, 250, 0.18));
  border-radius: 999px;
  color: var(--gold-2);
  font-size: 0.7rem;
}
.eyebrow .pulse {
  width: 7px; height: 7px;
  background: var(--emerald);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--emerald);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero h1 { margin-top: 26px; }
.hero h1 .accent {
  background: linear-gradient(120deg, var(--gold-2) 0%, var(--gold) 30%, var(--violet) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}

.hero p.lead {
  font-size: 1.2rem;
  color: var(--ink-2);
  margin: 28px 0 36px;
  max-width: 540px;
  line-height: 1.6;
}

.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  color: var(--ink-3);
  font-size: 0.86rem;
}
.avatar-row { display: flex; }
.avatar-row span {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid var(--bg-0);
  margin-left: -8px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 0 0 1px var(--line-3);
}
.avatar-row span:first-child { margin-left: 0; }
.stars {
  color: var(--gold);
  letter-spacing: 1px;
  font-size: 0.95rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 56px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.hero-stats .stat { padding-right: 24px; border-right: 1px solid var(--line); }
.hero-stats .stat:last-child { border-right: none; }
.hero-stats .stat .num {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--ink), var(--gold-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-stats .stat .label {
  font-size: 0.78rem;
  color: var(--ink-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 8px;
  display: block;
  font-weight: 500;
}

/* Hero showcase — cinematic glass card with photo */
.hero-showcase {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--line-3);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 40px 100px -30px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  transform: perspective(1400px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.8s cubic-bezier(0.2, 0.9, 0.3, 1);
}
.hero-showcase:hover { transform: perspective(1400px) rotateY(-2deg) rotateX(1deg); }

.hero-showcase .bg-photo {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(180deg, rgba(3, 5, 11, 0.2) 0%, rgba(3, 5, 11, 0.4) 60%, rgba(3, 5, 11, 0.95) 100%),
    url("https://images.unsplash.com/photo-1564466809058-bf4114d55352?w=1200&q=85");
  background-size: cover;
  background-position: center;
  transition: transform 1.5s ease;
}
.hero-showcase:hover .bg-photo { transform: scale(1.05); }

.hero-showcase .top-tag {
  position: absolute;
  top: 22px; left: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  background: rgba(10, 16, 32, 0.7);
  border: 1px solid var(--line-3);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(20px);
}
.hero-showcase .top-tag .live {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 8px var(--emerald);
  animation: pulse 1.8s infinite;
}

.hero-showcase .product-info {
  position: absolute;
  bottom: 22px; left: 22px; right: 22px;
  padding: 18px 20px;
  background: rgba(10, 16, 32, 0.65);
  backdrop-filter: blur(28px) saturate(150%);
  -webkit-backdrop-filter: blur(28px) saturate(150%);
  border: 1px solid var(--line-3);
  border-radius: 18px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset;
}
.hero-showcase .product-info .row {
  display: flex; justify-content: space-between; align-items: end; gap: 14px;
}
.hero-showcase .product-info h3 {
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.hero-showcase .product-info small {
  color: var(--ink-3);
  font-size: 0.82rem;
}
.hero-showcase .product-info .price {
  font-family: "Unbounded", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-showcase .product-info .cta {
  margin-top: 14px;
  padding: 11px 14px;
  width: 100%;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: var(--bg-0);
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: filter 0.2s;
}
.hero-showcase .product-info .cta:hover { filter: brightness(1.1); }

.hero-showcase .floating-badge {
  position: absolute;
  background: rgba(10, 16, 32, 0.72);
  backdrop-filter: blur(22px) saturate(150%);
  border: 1px solid var(--line-3);
  border-radius: 14px;
  padding: 10px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  animation: floatY 5s ease-in-out infinite;
}
.hero-showcase .badge-A {
  top: 26%; right: -28px;
  animation-delay: 0s;
}
.hero-showcase .badge-B {
  top: 50%; left: -36px;
  animation-delay: 1.5s;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.floating-badge .ico {
  width: 32px; height: 32px;
  border-radius: 9px;
  display: grid; place-items: center;
  flex-shrink: 0;
  color: var(--bg-0);
}
.floating-badge .ico-gold { background: linear-gradient(135deg, var(--gold-2), var(--gold)); }
.floating-badge .ico-emerald { background: linear-gradient(135deg, var(--emerald), #16a34a); }
.floating-badge .ico-violet { background: linear-gradient(135deg, var(--violet), #7c3aed); color: white; }
.floating-badge small { display: block; font-size: 0.7rem; color: var(--ink-3); font-weight: 500; }

/* ============================================================
   SECTIONS
   ============================================================ */
section { padding: 70px 0; position: relative; z-index: 2; }

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.section-header h2 { margin-top: 18px; max-width: 700px; }
.section-header p {
  color: var(--ink-2);
  margin-top: 16px;
  max-width: 560px;
  font-size: 1.05rem;
}

/* ============================================================
   PRODUCT CARDS — tilt + spotlight
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.product-card {
  position: relative;
  background: linear-gradient(180deg, rgba(15, 23, 46, 0.7), rgba(10, 16, 32, 0.85));
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-1), 0 20px 50px -25px rgba(0, 0, 0, 0.6);
  transform-style: preserve-3d;
  will-change: transform;
}
.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    600px circle at var(--mx, -100px) var(--my, -100px),
    rgba(244, 185, 66, 0.1),
    transparent 40%
  );
  pointer-events: none;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1;
}
.product-card:hover::before { opacity: 1; }
.product-card:hover {
  border-color: rgba(244, 185, 66, 0.4);
  box-shadow: var(--shadow-1), 0 30px 70px -20px rgba(0, 0, 0, 0.7), 0 0 30px -5px rgba(244, 185, 66, 0.2);
}

.product-card .thumb {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  background: var(--bg-2);
}
.product-card .thumb::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(3, 5, 11, 0.4));
  pointer-events: none;
}

.product-card .thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.product-card:hover .thumb img { transform: scale(1.08); }

.product-card .tag {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(10, 16, 32, 0.75);
  color: var(--gold-2);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid rgba(244, 185, 66, 0.3);
  backdrop-filter: blur(10px);
  z-index: 2;
}

.product-card .quick-add {
  position: absolute;
  bottom: 14px; right: 14px;
  width: 40px; height: 40px;
  background: var(--gold);
  color: var(--bg-0);
  border-radius: 12px;
  display: grid; place-items: center;
  opacity: 0;
  transform: translateY(8px) scale(0.9);
  transition: all 0.3s cubic-bezier(0.2, 1, 0.3, 1);
  z-index: 3;
  box-shadow: 0 8px 20px -4px rgba(244, 185, 66, 0.6);
}
.product-card:hover .quick-add {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.quick-add:hover { background: var(--gold-2); }
.quick-add svg { width: 18px; height: 18px; }

.product-card .body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  position: relative;
  z-index: 2;
}

.product-card h3 {
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}
.product-card .price {
  font-family: "Unbounded", sans-serif;
  font-size: 1.35rem;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.product-card .meta {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.8rem; color: var(--ink-3);
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.product-card .meta .stock {
  display: inline-flex; align-items: center; gap: 6px;
}
.product-card .meta .stock::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 8px var(--emerald);
}

/* ============================================================
   STORY / FEATURES
   ============================================================ */
.feature-tile {
  background: linear-gradient(180deg, rgba(15, 23, 46, 0.6), rgba(10, 16, 32, 0.8));
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.feature-tile:hover {
  border-color: var(--line-3);
  transform: translateY(-3px);
}
.feature-tile .num {
  font-family: "Unbounded", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
  display: block;
  line-height: 1;
}
.feature-tile h3 { font-size: 1.2rem; margin-bottom: 8px; }
.feature-tile p { color: var(--ink-2); font-size: 0.95rem; line-height: 1.6; }

.feature-tile .icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(244, 185, 66, 0.2), rgba(167, 139, 250, 0.18));
  border: 1px solid var(--line-3);
  display: grid; place-items: center;
  margin-bottom: 18px;
  color: var(--gold);
}
.feature-tile .icon svg { width: 24px; height: 24px; }

/* Promise / story two-up */
.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.glass-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01)),
    rgba(10, 16, 32, 0.6);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid var(--line-3);
  border-radius: var(--r-xl);
  padding: 36px;
  box-shadow: var(--shadow-2);
  position: relative;
  overflow: hidden;
}
.glass-panel::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}
.glass-panel::after {
  content: "";
  position: absolute;
  bottom: -120px; right: -120px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(244, 185, 66, 0.18), transparent 70%);
  pointer-events: none;
}

.fact-list { list-style: none; margin-top: 22px; }
.fact-list li {
  display: flex; align-items: start; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.96rem;
  color: var(--ink-2);
}
.fact-list li:last-child { border-bottom: none; }
.fact-list li .check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald), #16a34a);
  display: grid; place-items: center;
  flex-shrink: 0;
  color: var(--bg-0);
  margin-top: 1px;
}
.fact-list li .check svg { width: 13px; height: 13px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review {
  background: linear-gradient(180deg, rgba(15, 23, 46, 0.55), rgba(10, 16, 32, 0.75));
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  padding: 28px;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s;
}
.review:hover { transform: translateY(-4px); border-color: var(--line-3); }
.review .quote-mark {
  font-family: "Unbounded", serif;
  font-size: 4rem;
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 12px;
  display: block;
  opacity: 0.5;
}
.review .stars { color: var(--gold); margin-bottom: 12px; }
.review p { color: var(--ink-2); font-size: 0.95rem; line-height: 1.65; }
.review .who {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 12px;
}
.review .who .av {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--bg-0);
}
.review .who strong { display: block; font-size: 0.92rem; }
.review .who small { color: var(--ink-3); font-size: 0.78rem; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  border-radius: var(--r-xl);
  padding: 72px 56px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at top left, rgba(167, 139, 250, 0.3), transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(244, 185, 66, 0.3), transparent 50%),
    linear-gradient(135deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--line-3);
  text-align: center;
  box-shadow: var(--shadow-2);
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M0 0h40v40H0z' fill='none' stroke='%23ffffff10'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}
.cta-banner h2 { position: relative; z-index: 1; }
.cta-banner h2 .accent {
  background: linear-gradient(120deg, var(--gold-2), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cta-banner p { position: relative; z-index: 1; color: var(--ink-2); margin: 18px auto 32px; max-width: 540px; font-size: 1.05rem; }
.cta-banner .row { position: relative; z-index: 1; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   SHOP TOOLBAR / FILTERS
   ============================================================ */
.shop-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  margin-bottom: 36px;
  padding: 16px 20px;
  background: rgba(15, 23, 46, 0.5);
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  backdrop-filter: blur(20px);
}

.filter-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.pill {
  padding: 8px 14px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--line-3);
  color: var(--ink-2);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s;
  text-transform: capitalize;
}
.pill:hover { border-color: rgba(244, 185, 66, 0.5); color: var(--ink); }
.pill.active {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: var(--bg-0);
  border-color: var(--gold);
  box-shadow: 0 6px 20px -4px rgba(244, 185, 66, 0.5);
}

.sort-select {
  background: rgba(10, 16, 32, 0.7);
  color: var(--ink);
  border: 1px solid var(--line-3);
  border-radius: 10px;
  padding: 9px 14px;
  font-size: 0.88rem;
  font-family: inherit;
  cursor: pointer;
}

/* ============================================================
   PRODUCT DETAIL
   ============================================================ */
.product-detail {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: start;
}

.product-detail .gallery {
  border-radius: var(--r-xl);
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line-3);
  aspect-ratio: 1;
  position: relative;
  box-shadow: var(--shadow-2);
}
.product-detail .gallery img { width: 100%; height: 100%; object-fit: cover; }
.product-detail .gallery::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.3));
}

.product-detail .info h1 { font-size: clamp(2rem, 4vw, 2.85rem); margin-bottom: 14px; }
.product-detail .price-row {
  display: flex; align-items: baseline; gap: 18px;
  margin: 14px 0 28px;
  flex-wrap: wrap;
}
.product-detail .price-big {
  font-family: "Unbounded", sans-serif;
  font-size: 2.5rem; font-weight: 700;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.03em;
}
.product-detail .stock-badge {
  font-size: 0.85rem; color: var(--emerald);
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.3);
  border-radius: 999px;
}
.product-detail .stock-badge::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--emerald); box-shadow: 0 0 8px var(--emerald);
}

.product-detail .desc {
  color: var(--ink-2); font-size: 1.02rem; line-height: 1.75;
  margin-bottom: 28px;
}

.qty-row { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; flex-wrap: wrap; }
.qty-stepper {
  display: inline-flex; align-items: center;
  background: rgba(10, 16, 32, 0.6);
  border: 1px solid var(--line-3);
  border-radius: 12px;
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.qty-stepper button {
  width: 44px; height: 48px; font-size: 1.25rem; color: var(--ink);
  transition: background 0.15s;
}
.qty-stepper button:hover { background: rgba(255, 255, 255, 0.06); }
.qty-stepper input {
  width: 56px; height: 48px;
  background: transparent; border: none; text-align: center;
  color: var(--ink); font-weight: 600; font-size: 1rem; font-family: inherit;
}

.product-detail .features-list {
  list-style: none;
  padding: 22px;
  background: rgba(15, 23, 46, 0.5);
  border: 1px solid var(--line-2);
  border-radius: 16px;
  margin-top: 24px;
  backdrop-filter: blur(10px);
}
.product-detail .features-list li {
  display: flex; gap: 12px; padding: 8px 0;
  font-size: 0.94rem; color: var(--ink-2);
  align-items: start;
}
.product-detail .features-list li svg {
  width: 18px; color: var(--emerald); flex-shrink: 0; margin-top: 3px;
  background: rgba(74, 222, 128, 0.15);
  border-radius: 50%;
  padding: 3px;
  box-sizing: content-box;
}

/* ============================================================
   CART PAGE
   ============================================================ */
.cart-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 36px;
  align-items: start;
}

.panel {
  background: linear-gradient(180deg, rgba(15, 23, 46, 0.6), rgba(10, 16, 32, 0.85));
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  padding: 32px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-1);
}
.panel h2 { font-size: 1.45rem; margin-bottom: 22px; }
.panel h3 { margin-bottom: 18px; font-size: 1.1rem; }

.cart-item {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.cart-item:last-child { border-bottom: none; }

.cart-item .thumb {
  width: 88px; height: 88px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
}
.cart-item .thumb img { width: 100%; height: 100%; object-fit: cover; }

.cart-item .meta strong { display: block; margin-bottom: 4px; font-size: 1rem; }
.cart-item .meta small { color: var(--ink-3); }

.cart-item .controls {
  display: flex; align-items: center; gap: 16px;
}

.cart-item .line-price {
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  min-width: 80px;
  text-align: right;
  font-size: 1.05rem;
}

.remove-btn {
  width: 34px; height: 34px;
  border-radius: 10px;
  display: grid; place-items: center;
  color: var(--ink-3);
  transition: all 0.15s;
  border: 1px solid transparent;
}
.remove-btn:hover {
  background: rgba(251, 113, 133, 0.12);
  color: var(--rose);
  border-color: rgba(251, 113, 133, 0.3);
}

.empty-cart {
  text-align: center;
  padding: 80px 20px;
  color: var(--ink-2);
}
.empty-cart .icon-wolf {
  width: 72px; height: 72px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  display: grid; place-items: center;
  opacity: 0.7;
}
.empty-cart h3 { margin-bottom: 12px; font-size: 1.4rem; }

/* Forms */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.form-row.single { grid-template-columns: 1fr; }

label {
  font-size: 0.78rem;
  color: var(--ink-3);
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

input[type="text"], input[type="email"], input[type="tel"], select {
  width: 100%;
  padding: 13px 16px;
  border-radius: 12px;
  background: rgba(10, 16, 32, 0.6);
  border: 1px solid var(--line-3);
  color: var(--ink);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
  backdrop-filter: blur(10px);
}

input:focus, select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(244, 185, 66, 0.18);
  background: rgba(10, 16, 32, 0.8);
}

.shipping-options { display: grid; gap: 10px; }

.shipping-option {
  display: flex; align-items: center; gap: 14px;
  padding: 16px;
  background: rgba(10, 16, 32, 0.5);
  border: 1px solid var(--line-3);
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.15s;
  backdrop-filter: blur(10px);
}
.shipping-option:hover { border-color: rgba(244, 185, 66, 0.5); }
.shipping-option.selected {
  border-color: var(--gold);
  background: rgba(244, 185, 66, 0.06);
  box-shadow: 0 0 0 3px rgba(244, 185, 66, 0.1);
}
.shipping-option input { accent-color: var(--gold); width: 18px; height: 18px; }
.shipping-option .label { flex: 1; }
.shipping-option .label strong { display: block; }
.shipping-option .label small { color: var(--ink-3); font-size: 0.82rem; }
.shipping-option .price {
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.shipping-option.free .price {
  background: linear-gradient(135deg, var(--emerald), #16a34a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Order summary */
.summary-row {
  display: flex; justify-content: space-between;
  padding: 12px 0;
  font-size: 0.96rem;
  color: var(--ink-2);
}
.summary-row strong { color: var(--ink); font-weight: 600; }

.summary-total {
  display: flex; justify-content: space-between;
  padding-top: 18px;
  margin-top: 14px;
  border-top: 1px solid var(--line-3);
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}
.summary-total .amount {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.coupon-row { display: flex; gap: 8px; margin: 16px 0; }
.coupon-row input { flex: 1; }

.free-ship-meter {
  margin-top: 14px;
  padding: 12px 14px;
  background: rgba(74, 222, 128, 0.06);
  border: 1px solid rgba(74, 222, 128, 0.18);
  border-radius: 12px;
  font-size: 0.86rem;
  color: var(--emerald);
}
.free-ship-meter .bar {
  margin-top: 8px;
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  overflow: hidden;
}
.free-ship-meter .bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--emerald), var(--cyan));
  transition: width 0.4s ease;
  border-radius: inherit;
}

/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position: fixed;
  bottom: 28px; right: 28px;
  background: rgba(10, 16, 32, 0.85);
  backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid var(--gold);
  border-radius: 14px;
  padding: 14px 20px 14px 14px;
  display: flex; align-items: center; gap: 12px;
  font-weight: 500;
  font-size: 0.92rem;
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.5), 0 0 30px -5px rgba(244, 185, 66, 0.3);
  z-index: 100;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.2, 1, 0.3, 1), opacity 0.3s;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast .check {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald), #16a34a);
  display: grid; place-items: center;
  color: var(--bg-0);
  flex-shrink: 0;
}
.toast .check svg { width: 14px; height: 14px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  margin-top: 100px;
  padding: 80px 0 32px;
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.4));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-3);
  margin-bottom: 20px;
  font-weight: 600;
}

.footer ul { list-style: none; display: grid; gap: 12px; }
.footer ul a { color: var(--ink-2); font-size: 0.92rem; transition: color 0.15s; }
.footer ul a:hover { color: var(--gold); }

.footer .col-brand p { color: var(--ink-3); font-size: 0.92rem; max-width: 340px; margin-top: 18px; line-height: 1.6; }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 28px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  font-size: 0.84rem;
  color: var(--ink-3);
}

/* ============================================================
   SUCCESS PAGE
   ============================================================ */
.success-wrap {
  text-align: center;
  padding: 100px 24px;
}
.success-icon {
  width: 96px; height: 96px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald), var(--cyan));
  display: grid; place-items: center;
  box-shadow: 0 0 80px -10px rgba(74, 222, 128, 0.5), 0 1px 0 rgba(255, 255, 255, 0.3) inset;
  position: relative;
}
.success-icon::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(74, 222, 128, 0.3);
  animation: ripple 2s infinite;
}
@keyframes ripple {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}
.success-icon svg { width: 48px; color: var(--bg-0); }
.success-wrap h1 { margin-bottom: 18px; }
.success-wrap p { color: var(--ink-2); max-width: 560px; margin: 0 auto 36px; font-size: 1.05rem; }

/* ============================================================
   SCROLL REVEAL — drop-into-place
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.7s cubic-bezier(0.2, 1.1, 0.3, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-left { transform: translateX(-50px); }
.reveal-left.in { transform: translateX(0); }
.reveal-right { transform: translateX(50px); }
.reveal-right.in { transform: translateX(0); }

/* Stagger children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 1, 0.3, 1);
}
.reveal-stagger.in > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.05s; }
.reveal-stagger.in > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.15s; }
.reveal-stagger.in > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.25s; }
.reveal-stagger.in > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.35s; }
.reveal-stagger.in > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.45s; }
.reveal-stagger.in > *:nth-child(n+6) { opacity: 1; transform: translateY(0); transition-delay: 0.55s; }

/* ============================================================
   TEXT GLOW & EFFECTS
   ============================================================ */
.hero h1 .accent,
.cta-banner h2 .accent,
.wolf-feature h2 .accent {
  filter: drop-shadow(0 0 30px rgba(244, 185, 66, 0.25)) drop-shadow(0 0 60px rgba(167, 139, 250, 0.15));
}

h1, h2 {
  text-shadow: 0 0 40px rgba(255, 255, 255, 0.04);
}

.eyebrow {
  animation: subtleFloat 6s ease-in-out infinite;
}
@keyframes subtleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

/* Gradient shimmer on headlines */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hero h1 .accent {
  background-size: 200% 200%;
  animation: gradientShift 8s ease-in-out infinite;
}

/* Number counters glow */
.hero-stats .num,
.spec-sheet .num {
  filter: drop-shadow(0 0 20px rgba(244, 185, 66, 0.2));
}

/* Card hover lift becomes more dramatic */
.product-card {
  transition: transform 0.5s cubic-bezier(0.2, 1, 0.3, 1), border-color 0.3s, box-shadow 0.4s;
}

/* Button shimmer continuous */
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 40%, rgba(255, 255, 255, 0.18), transparent 60%);
  transform: translateX(-100%);
  animation: btnShimmer 3.5s ease-in-out infinite;
  pointer-events: none;
  mix-blend-mode: overlay;
}
@keyframes btnShimmer {
  0%, 70%, 100% { transform: translateX(-100%); }
  40% { transform: translateX(100%); }
}

/* Floating badges/dots glow */
.printer-tag, .floating-badge {
  filter: drop-shadow(0 0 24px rgba(244, 185, 66, 0.18));
}

/* Live dot pulses harder */
.live-dot {
  animation: livePulse 1.5s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 8px var(--emerald), 0 0 16px rgba(74, 222, 128, 0.6); }
  50% { box-shadow: 0 0 14px var(--emerald), 0 0 30px rgba(74, 222, 128, 0.8); }
}

/* ============================================================
   TIGHTER SPACING
   ============================================================ */

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid, .story-grid, .product-detail, .cart-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .review-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .hero-showcase { transform: none; max-width: 540px; margin: 0 auto; }
  .hero-showcase:hover { transform: none; }
  .hero-showcase .badge-A { right: 12px; }
  .hero-showcase .badge-B { left: 12px; }
}

@media (max-width: 720px) {
  .nav-inner { padding: 10px 12px 10px 12px; gap: 8px; }
  .brand-text small { display: none; }
  section { padding: 64px 0; }
  .hero { padding: 32px 0 60px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .container { padding: 0 18px; }
  .panel { padding: 22px; }
  .glass-panel { padding: 26px; }
  .cart-item { grid-template-columns: 72px 1fr; gap: 14px; }
  .cart-item .controls { grid-column: 1 / -1; justify-content: space-between; }
  .cta-banner { padding: 48px 24px; }
  .feature-tile { padding: 24px 22px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-stats .stat:nth-child(3) { grid-column: 1 / -1; padding-top: 20px; border-top: 1px solid var(--line); }
}

/* ============================================================
   SHOWCASE STRIP (auto-scrolling) + HERO SLIDER + 3D PRINTER
   ============================================================ */

.showcase-strip {
  position: relative;
  overflow: hidden;
  padding: 24px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent);
}
.showcase-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: scrollX 50s linear infinite;
}
.showcase-track:hover { animation-play-state: paused; }
.showcase-card {
  width: 220px; height: 220px;
  flex-shrink: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line-2);
  background: var(--bg-2);
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.5);
  position: relative;
  transition: transform 0.3s;
}
.showcase-card:hover { transform: scale(1.04); }
.showcase-card img { width: 100%; height: 100%; object-fit: cover; }
.showcase-card .label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 12px 14px;
  background: linear-gradient(180deg, transparent, rgba(3,5,11,0.9));
  font-size: 0.86rem; font-weight: 600;
}
.showcase-card .price-mini {
  font-family: "Unbounded", sans-serif;
  color: var(--gold-2); font-size: 0.78rem; display: block; margin-top: 2px;
}
@keyframes scrollX {
  to { transform: translateX(-50%); }
}

/* Hero rotating product card */
.hero-slider {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  height: auto;
}
.hero-slider .slide {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 18px;
  background: rgba(10, 16, 32, 0.7);
  backdrop-filter: blur(28px) saturate(150%);
  border: 1px solid var(--line-3);
  border-radius: 18px;
  animation: fadeUp 0.6s ease;
}
.hero-slider .slide img {
  width: 52px; height: 52px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid var(--line-3);
}
.hero-slider .slide-meta { flex: 1; }
.hero-slider .slide-meta small {
  font-size: 0.66rem; color: var(--gold-2);
  letter-spacing: 0.15em; text-transform: uppercase;
  font-weight: 700;
}
.hero-slider .slide-meta h4 {
  font-size: 1.05rem;
  margin-top: 4px;
  letter-spacing: -0.01em;
}
.hero-slider .slide-price {
  font-family: "Unbounded", sans-serif;
  font-size: 1.25rem; font-weight: 700;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Animated 3D printer */
.printer-stage {
  position: relative;
  aspect-ratio: 1 / 1.05;
  border-radius: var(--r-xl);
  background:
    radial-gradient(ellipse at top, rgba(244, 185, 66, 0.18), transparent 60%),
    linear-gradient(180deg, var(--bg-3), var(--bg-1));
  border: 1px solid var(--line-3);
  overflow: hidden;
  box-shadow: var(--shadow-2);
  display: grid;
  place-items: center;
}
.printer-stage::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at center, black, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black, transparent 70%);
}
.printer-stage svg { width: 88%; height: 88%; position: relative; z-index: 1; }
.printer-video, .printer-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.printer-video { z-index: 1; }
.printer-fallback { z-index: 0; }
.printer-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse at top, rgba(244, 185, 66, 0.2), transparent 55%),
    linear-gradient(180deg, rgba(3, 5, 11, 0.25) 0%, rgba(3, 5, 11, 0.05) 35%, rgba(3, 5, 11, 0.65) 100%);
}
.printer-laser {
  position: absolute;
  z-index: 3;
  top: 18%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, #f4b942, rgba(244, 185, 66, 0.4) 40%, transparent 70%);
  box-shadow: 0 0 30px 8px rgba(244, 185, 66, 0.6), 0 0 60px 16px rgba(244, 185, 66, 0.25);
  pointer-events: none;
  animation: laserMove 5s ease-in-out infinite;
}
@keyframes laserMove {
  0%, 100% { transform: translate(-50%, 0); }
  25% { transform: translate(-180%, 8px); }
  50% { transform: translate(-50%, 16px); }
  75% { transform: translate(80%, 8px); }
}
.printer-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 60%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 60%, black, transparent);
  mix-blend-mode: overlay;
  opacity: 0.7;
}

@keyframes printHead {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(60px); }
  50% { transform: translateX(0); }
  75% { transform: translateX(-60px); }
}
@keyframes printRise {
  0% { height: 0; opacity: 0; }
  100% { height: 100%; opacity: 1; }
}
.print-head { animation: printHead 6s ease-in-out infinite; transform-origin: center; }
.print-creature { animation: printRise 8s ease-out infinite; transform-origin: bottom; }

.printer-tag {
  position: absolute;
  padding: 8px 14px;
  background: rgba(10, 16, 32, 0.7);
  border: 1px solid var(--line-3);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-2);
  backdrop-filter: blur(20px);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.printer-tag .live-dot {
  width: 7px; height: 7px;
  background: var(--emerald);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--emerald);
  animation: pulse 1.6s infinite;
}
.printer-tag.tl { top: 18px; left: 18px; }
.printer-tag.br {
  bottom: 18px; right: 18px;
  color: var(--ink); border-color: rgba(255,255,255,0.16);
}

/* Size pill on cards */
.size-pill {
  display: inline-block;
  padding: 4px 9px;
  background: rgba(167, 139, 250, 0.12);
  border: 1px solid rgba(167, 139, 250, 0.3);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #c4b5fd;
  letter-spacing: 0.04em;
}

/* Logo wordmark — wolf logo image */
.logo-mark {
  width: 44px; height: 44px;
  border-radius: 12px;
  position: relative;
  display: grid; place-items: center;
  background: #000;
  border: 1px solid rgba(167, 139, 250, 0.35);
  box-shadow: 0 6px 20px -4px rgba(167, 139, 250, 0.4), 0 0 30px -8px rgba(34, 211, 238, 0.4), 0 1px 0 rgba(255,255,255,0.08) inset;
  overflow: hidden;
}
.logo-mark img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.logo-mark svg { width: 24px; height: 24px; position: relative; z-index: 1; }

/* Wolf logo as a feature background section */
.wolf-feature {
  position: relative;
  padding: 130px 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.wolf-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/logo.png");
  background-size: 55% auto;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.65;
  filter: drop-shadow(0 0 80px rgba(167, 139, 250, 0.6));
  pointer-events: none;
  z-index: 0;
}
.wolf-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at center, transparent 35%, rgba(3, 5, 11, 0.7) 85%),
    linear-gradient(180deg, rgba(3, 5, 11, 0.5) 0%, transparent 25%, transparent 75%, rgba(3, 5, 11, 0.5) 100%);
  pointer-events: none;
  z-index: 0;
}
.wolf-feature .wolf-feature-content {
  background: rgba(3, 5, 11, 0.55);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-3);
  border-radius: var(--r-xl);
  padding: 40px 48px;
  box-shadow: var(--shadow-2);
}
.wolf-feature .container { position: relative; z-index: 1; }
.wolf-feature-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.wolf-feature h2 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  letter-spacing: -0.03em;
}
.wolf-feature h2 .accent {
  background: linear-gradient(120deg, #22d3ee 0%, #a78bfa 50%, #fb7185 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.wolf-feature p {
  font-size: 1.1rem;
  color: var(--ink-2);
  margin: 20px auto 32px;
  max-width: 560px;
  line-height: 1.65;
}

/* Section subtitle (lead) */
.section-lead {
  color: var(--ink-2);
  font-size: 1.08rem;
  max-width: 640px;
  margin-top: 14px;
  line-height: 1.6;
}

/* Print spec sheet */
.spec-sheet {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 28px;
  background: linear-gradient(180deg, rgba(15, 23, 46, 0.5), rgba(10, 16, 32, 0.7));
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  backdrop-filter: blur(10px);
  margin-top: 50px;
}
.spec-sheet .spec {
  padding: 0 22px;
  border-right: 1px solid var(--line);
}
.spec-sheet .spec:last-child { border-right: none; }
.spec-sheet .spec:first-child { padding-left: 0; }
.spec-sheet .num {
  font-family: "Unbounded", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
}
.spec-sheet .label {
  font-size: 0.78rem;
  color: var(--ink-3);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 500;
}

@media (max-width: 720px) {
  .spec-sheet { grid-template-columns: 1fr 1fr; gap: 16px; padding: 22px; }
  .spec-sheet .spec { padding: 0; border-right: none; border-bottom: 1px solid var(--line); padding-bottom: 16px; }
  .spec-sheet .spec:nth-last-child(-n+2) { border-bottom: none; padding-bottom: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   PRODUCTION POLISH — type tuning, mobile nav, a11y, chrome
   ============================================================ */

/* Unbounded is a wide display face — tune scale + tracking for it */
h1, h2, h3, h4 {
  letter-spacing: -0.015em;
  text-wrap: balance;
}
h1 { font-size: clamp(2rem, 4.6vw, 3.4rem); line-height: 1.12; }
h2 { font-size: clamp(1.5rem, 3vw, 2.35rem); line-height: 1.18; }
h3 { font-size: 1.15rem; }
.hero h1 { letter-spacing: -0.02em; }
.section-lead, p.lead { text-wrap: pretty; }

/* Custom scrollbar — match the dark chrome */
html { scrollbar-width: thin; scrollbar-color: rgba(148, 163, 184, 0.3) transparent; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-0); }
::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.25);
  border-radius: 999px;
  border: 2px solid var(--bg-0);
}
::-webkit-scrollbar-thumb:hover { background: rgba(244, 185, 66, 0.45); }

/* Visible keyboard focus */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 6px;
}
.btn:focus-visible, .pill:focus-visible, .cart-btn:focus-visible { outline-offset: 2px; }

/* Skip link for keyboard users */
.skip-link {
  position: fixed;
  top: -60px; left: 16px;
  z-index: 200;
  padding: 12px 20px;
  background: var(--gold);
  color: var(--bg-0);
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; }

/* Selection */
::selection { background: var(--gold); color: var(--bg-0); }

/* ============================================================
   MOBILE NAVIGATION — hamburger + glass dropdown
   ============================================================ */
.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line-3);
  background: rgba(255, 255, 255, 0.05);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s;
}
.nav-toggle:hover { border-color: var(--gold); }
.nav-toggle span {
  display: block;
  width: 18px; height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.2s;
}
.nav.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav-inner { position: relative; }
  .nav-inner nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0; right: 0;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 60;
  }
  .nav.menu-open .nav-inner nav {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 10px;
    background: rgba(10, 16, 32, 0.94);
    backdrop-filter: blur(28px) saturate(150%);
    -webkit-backdrop-filter: blur(28px) saturate(150%);
    border: 1px solid var(--line-3);
    border-radius: 20px;
    box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.7);
  }
  .nav-links a {
    display: block;
    padding: 13px 16px;
    font-size: 1rem;
    border-radius: 12px;
  }
}
