:root {
  --bg-dark: #0a0a0a;
  --bg-mid: #111111;
  --bg-card: #1a1a1a;
  --fg: #e8e8e8;
  --fg-dim: #888888;
  --fg-muted: #555555;
  --accent: #d4a24e;
  --accent-bright: #e8b85c;
  --accent-dim: #8b6d33;
  --border: #222222;
  --radius: 4px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg-dark);
  color: var(--fg);
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-mark {
  color: var(--accent);
  font-size: 18px;
}

.logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 3px;
  color: var(--fg);
}

.nav-tagline {
  font-size: 13px;
  color: var(--fg-dim);
  letter-spacing: 1px;
}

/* HERO */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 162, 78, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 162, 78, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  max-width: 780px;
  text-align: center;
}

.hero-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--accent);
  margin-bottom: 32px;
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  color: #ffffff;
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--fg-dim);
  max-width: 600px;
  margin: 0 auto;
}

.hero-stripe {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

/* STATS */
.stats {
  padding: 80px 24px;
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.stat-card {
  background: var(--bg-card);
  padding: 48px 32px;
  text-align: center;
}

.stat-number {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}

.stat-label {
  font-size: 14px;
  color: var(--fg-dim);
  line-height: 1.5;
}

/* CATEGORIES */
.categories {
  padding: 100px 24px;
}

.categories-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.categories h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 60px;
}

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

.cat-card {
  background: var(--bg-card);
  padding: 40px 32px;
  border-left: 3px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}

.cat-card:hover {
  border-left-color: var(--accent);
  background: #1f1f1f;
}

.cat-icon {
  font-size: 24px;
  color: var(--accent);
  margin-bottom: 16px;
}

.cat-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}

.cat-card p {
  font-size: 14px;
  color: var(--fg-dim);
  line-height: 1.6;
}

/* HOW */
.how {
  padding: 100px 24px;
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.how-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.how h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 60px;
}

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

.how-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-dim);
  line-height: 1;
  margin-bottom: 20px;
}

.how-step h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
}

.how-step p {
  font-size: 15px;
  color: var(--fg-dim);
  line-height: 1.65;
}

/* CLOSING */
.closing {
  padding: 120px 24px;
  text-align: center;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 24px;
}

.closing-text {
  font-size: 17px;
  color: var(--fg-dim);
  line-height: 1.75;
}

/* FOOTER */
.footer {
  padding: 40px 24px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--fg-muted);
}

.footer-brand .logo-mark {
  color: var(--accent-dim);
}

.footer-copy {
  font-size: 13px;
  color: var(--fg-muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

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

  .how-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero {
    min-height: 80vh;
    padding: 100px 20px 60px;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero-sub {
    font-size: 16px;
  }

  .stat-number {
    font-size: 2.4rem;
  }

  .nav-tagline {
    display: none;
  }

  .footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .categories h2,
  .how h2,
  .closing h2 {
    font-size: 1.6rem;
  }
}

/* ===========================
   LANDING PAGE ADDITIONS
   =========================== */

/* Nav CTA button */
.nav-cta {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--bg-dark);
  background: var(--accent);
  padding: 8px 18px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--accent-bright); }

/* Hero CTA buttons */
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* Category cards with links */
.cat-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.cat-card-link:hover { border-left-color: var(--accent); background: #1f1f1f; }
.cat-cta {
  display: inline-block;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.5px;
}

/* ===========================
   SHARED BUTTON COMPONENTS
   =========================== */

.btn-primary {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--bg-dark);
  background: var(--accent);
  padding: 12px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.btn-primary:hover { background: var(--accent-bright); }
.btn-primary:active { transform: scale(0.98); }

.btn-secondary {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--accent);
  background: transparent;
  padding: 12px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--accent-dim);
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: var(--accent); }

.btn-ghost {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--fg-dim);
  background: transparent;
  padding: 12px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--fg-muted); color: var(--fg); }

.btn-hero { font-size: 15px; padding: 14px 32px; }

.inline-link { color: var(--accent); text-decoration: none; }
.inline-link:hover { text-decoration: underline; }

/* ===========================
   SHOP PAGES
   =========================== */

/* Shop hero */
.shop-hero {
  position: relative;
  padding: 140px 24px 80px;
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.shop-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 162, 78, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 162, 78, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.shop-hero-inner {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.shop-hero-inner h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}
.shop-hero-inner .hero-sub {
  margin-bottom: 36px;
}
.shop-search-form {
  display: flex;
  gap: 8px;
  max-width: 520px;
  margin: 0 auto;
}
.shop-search-input {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--fg);
  font-size: 14px;
  font-family: 'Outfit', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}
.shop-search-input:focus { border-color: var(--accent-dim); }
.shop-search-input::placeholder { color: var(--fg-muted); }
.shop-search-btn {
  background: var(--accent);
  color: var(--bg-dark);
  border: none;
  padding: 12px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  font-family: 'Space Grotesk', sans-serif;
  cursor: pointer;
  transition: background 0.2s;
}
.shop-search-btn:hover { background: var(--accent-bright); }

/* Layout */
.shop-main { padding-top: 64px; min-height: 80vh; }
.shop-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.shop-section { padding: 80px 0; }
.shop-section-dark { background: var(--bg-mid); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 48px;
}

/* Breadcrumb */
.breadcrumb-wrap {
  background: var(--bg-mid);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--fg-muted);
}
.breadcrumb-link { color: var(--fg-dim); text-decoration: none; }
.breadcrumb-link:hover { color: var(--accent); }
.breadcrumb-sep { color: var(--fg-muted); }
.breadcrumb-current { color: var(--fg); }

/* Category header */
.category-header {
  padding: 48px 0 32px;
}
.category-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.category-desc { color: var(--fg-dim); font-size: 15px; margin-bottom: 12px; max-width: 680px; }
.category-count { font-size: 13px; color: var(--fg-muted); }

/* Shop layout (sidebar + content) */
.shop-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  padding-top: 32px;
  padding-bottom: 80px;
}

/* Sidebar */
.shop-sidebar { }
.sidebar-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--fg-muted);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.sidebar-cat-list { list-style: none; }
.sidebar-cat-list li { margin-bottom: 4px; }
.sidebar-cat-link {
  display: block;
  font-size: 14px;
  color: var(--fg-dim);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: var(--radius);
  border-left: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  line-height: 1.4;
}
.sidebar-cat-link:hover { color: var(--fg); }
.sidebar-cat-link.active { color: var(--accent); border-left-color: var(--accent); background: rgba(212,162,78,0.06); }

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2px;
}
.product-grid-sm {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

/* Product card */
.product-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  text-decoration: none;
  color: inherit;
  border: 1px solid transparent;
  border-bottom: 1px solid var(--border);
  transition: border-color 0.2s, background 0.2s;
  position: relative;
}
.product-card:hover { border-color: var(--accent-dim); background: #1f1f1f; }

.product-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--bg-mid);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
}
.product-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.product-img-icon { font-size: 32px; color: var(--fg-muted); }

.product-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--accent);
  color: var(--bg-dark);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 8px;
  border-radius: 2px;
}
.product-badge-featured { background: var(--bg-dark); color: var(--accent); border: 1px solid var(--accent-dim); }

.product-info { padding: 16px; flex: 1; }
.product-brand {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--accent);
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}
.product-brand-lg { font-size: 13px; }
.product-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.3;
  margin-bottom: 12px;
}
.product-pricing { display: flex; flex-direction: column; gap: 2px; }
.product-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
}
.product-retail {
  font-size: 12px;
  color: var(--fg-muted);
  text-decoration: line-through;
}

/* Product detail page */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding-top: 48px;
  padding-bottom: 80px;
}
.product-detail-img { }
.product-detail-photo {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  object-fit: contain;
  aspect-ratio: 1;
  background: var(--bg-mid);
  padding: 32px;
}
.product-detail-placeholder {
  aspect-ratio: 1;
  background: var(--bg-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.product-detail-placeholder-icon { font-size: 64px; color: var(--fg-muted); }
.product-detail-placeholder-text { font-size: 13px; color: var(--fg-muted); font-family: 'Space Grotesk', sans-serif; letter-spacing: 2px; }

.product-detail-info { }
.product-detail-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin: 8px 0 8px;
}
.product-sku { font-size: 12px; color: var(--fg-muted); margin-bottom: 24px; }

/* Price block */
.price-block {
  background: var(--bg-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 28px;
}
.price-main { margin-bottom: 16px; }
.price-our-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--fg-muted);
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}
.price-our {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.price-comparison {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.price-retail-row, .price-savings-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}
.price-retail-label, .price-savings-label { color: var(--fg-muted); }
.price-retail-val { color: var(--fg-dim); text-decoration: line-through; }
.price-savings-val { color: #5adb7a; font-weight: 600; }

/* Product description */
.product-description {
  color: var(--fg-dim);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
}

/* Dropship notice */
.dropship-notice {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(212,162,78,0.06);
  border: 1px solid var(--accent-dim);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 28px;
}
.dropship-icon { font-size: 20px; color: var(--accent); flex-shrink: 0; line-height: 1.5; }
.dropship-notice strong { font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 600; color: var(--fg); display: block; margin-bottom: 4px; }
.dropship-notice p { font-size: 13px; color: var(--fg-dim); line-height: 1.5; }

/* Product CTA */
.product-cta { }
.btn-order { width: 100%; text-align: center; font-size: 16px; padding: 16px; margin-bottom: 12px; }
.cta-note { font-size: 13px; color: var(--fg-muted); text-align: center; }

/* Trust strip */
.trust-strip {
  padding: 60px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.trust-icon { font-size: 24px; color: var(--accent); }
.trust-item strong { font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 600; color: var(--fg); }
.trust-item span { font-size: 13px; color: var(--fg-muted); }

/* Nav search */
.nav-search {
  display: flex;
  gap: 4px;
  flex: 1;
  max-width: 360px;
  margin: 0 24px;
}
.nav-search-input {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 12px;
  color: var(--fg);
  font-size: 13px;
  font-family: 'Outfit', sans-serif;
  outline: none;
}
.nav-search-input:focus { border-color: var(--accent-dim); }
.nav-search-input::placeholder { color: var(--fg-muted); }
.nav-search-btn {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--fg-dim);
  padding: 8px 12px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 14px;
}
.nav-search-btn:hover { border-color: var(--accent-dim); color: var(--accent); }

/* Nav links + dropdown */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  font-size: 13px;
  color: var(--fg-dim);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--fg); }
.nav-link-caret { user-select: none; }

.nav-dropdown {
  position: relative;
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bg-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 240px;
  z-index: 200;
  padding: 8px 0;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-item {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--fg-dim);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown-item:hover { background: var(--bg-card); color: var(--fg); }

/* Footer links */
.footer-links {
  display: flex;
  gap: 20px;
}
.footer-link {
  font-size: 13px;
  color: var(--fg-muted);
  text-decoration: none;
}
.footer-link:hover { color: var(--fg-dim); }

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
}
.page-btn {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  padding: 8px 20px;
  border: 1px solid var(--accent-dim);
  border-radius: var(--radius);
}
.page-btn:hover { background: rgba(212,162,78,0.08); }
.page-info { font-size: 14px; color: var(--fg-muted); }

/* Search page */
.search-page-form {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  max-width: 600px;
}
.search-page-input {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--fg);
  font-size: 14px;
  font-family: 'Outfit', sans-serif;
  outline: none;
}
.search-page-input:focus { border-color: var(--accent-dim); }
.search-page-input::placeholder { color: var(--fg-muted); }

/* Empty state */
.empty-state {
  text-align: center;
  padding: 80px 24px;
  color: var(--fg-dim);
}
.empty-state p { margin-bottom: 24px; }

/* ===========================
   RESPONSIVE — SHOP
   =========================== */
@media (max-width: 900px) {
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { display: flex; gap: 8px; flex-wrap: wrap; }
  .sidebar-cat-list { display: flex; flex-wrap: wrap; gap: 8px; }
  .sidebar-cat-list li { margin: 0; }
  .sidebar-title { display: none; }
  .sidebar-cat-link { border: 1px solid var(--border); border-left: 2px solid transparent; }

  .product-detail { grid-template-columns: 1fr; gap: 32px; }

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

  .nav-search { display: none; }
  .nav-links { display: none; }
}

@media (max-width: 600px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: 1fr; }
  .shop-search-form { flex-direction: column; }
  .shop-hero { padding: 120px 20px 60px; }
}

/* ===========================
   PRICE PER ROUND (AMMO)
   =========================== */
.price-per-round {
  font-size: 12px;
  color: var(--fg-muted);
  font-weight: 400;
  font-family: 'Outfit', sans-serif;
}
.price-per-round-block {
  margin-top: 6px;
  font-size: 13px;
  color: var(--fg-dim);
}
.price-per-round-val {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  color: var(--accent-dim);
}

/* ===========================
   FLASH MESSAGES
   =========================== */
.flash {
  padding: 12px 16px;
  border-radius: var(--radius);
  margin-bottom: 24px;
  font-size: 14px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
}
.flash-success {
  background: rgba(90, 219, 122, 0.1);
  border: 1px solid rgba(90, 219, 122, 0.3);
  color: #5adb7a;
}
.flash-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

/* ===========================
   AUTH PAGES
   =========================== */
.auth-main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  background: var(--bg-dark);
}
.auth-card {
  width: 100%;
  max-width: 440px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 40px;
}
.auth-logo {
  text-align: center;
  margin-bottom: 24px;
}
.auth-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 8px;
}
.auth-sub {
  font-size: 14px;
  color: var(--fg-dim);
  text-align: center;
  margin-bottom: 32px;
}
.auth-form { display: flex; flex-direction: column; gap: 0; }
.auth-switch {
  margin-top: 24px;
  text-align: center;
  font-size: 14px;
  color: var(--fg-dim);
}

/* ===========================
   FORM COMPONENTS
   =========================== */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 6px;
}
.form-optional { font-weight: 400; color: var(--fg-muted); }
.form-hint { font-size: 12px; color: var(--fg-muted); margin-top: 4px; display: block; }
.form-input {
  width: 100%;
  background: var(--bg-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 14px;
  color: var(--fg);
  font-size: 14px;
  font-family: 'Outfit', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus { border-color: var(--accent-dim); }
.form-input::placeholder { color: var(--fg-muted); }
.form-input:disabled { opacity: 0.5; cursor: not-allowed; }
.form-textarea { resize: vertical; min-height: 80px; }
.form-check { display: flex; align-items: center; gap: 10px; }
.form-checkbox { width: 16px; height: 16px; accent-color: var(--accent); cursor: pointer; flex-shrink: 0; }
.form-check-label { font-size: 14px; color: var(--fg-dim); cursor: pointer; }
.form-group-disabled { opacity: 0.75; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group-sm { min-width: 90px; max-width: 140px; }
.form-section { margin-bottom: 36px; }
.form-section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.form-actions { margin-top: 8px; }
.btn-full { width: 100%; text-align: center; }

/* ===========================
   ACCOUNT LAYOUT
   =========================== */
.account-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  padding-top: 40px;
  padding-bottom: 80px;
  align-items: start;
}
.account-sidebar {
  position: sticky;
  top: 80px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.account-user-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.account-avatar {
  font-size: 22px;
  color: var(--accent);
  flex-shrink: 0;
}
.account-user-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.3;
}
.account-user-email { font-size: 12px; color: var(--fg-muted); }
.account-nav-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 24px;
}
.account-nav-link {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-dim);
  text-decoration: none;
  padding: 8px 10px;
  border-radius: var(--radius);
  border-left: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.account-nav-link:hover { color: var(--fg); }
.account-nav-link.active { color: var(--accent); border-left-color: var(--accent); background: rgba(212,162,78,0.06); }
.account-logout-form { margin-top: 4px; }
.account-logout-btn {
  width: 100%;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--fg-muted);
  font-size: 13px;
  font-family: 'Space Grotesk', sans-serif;
  padding: 8px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.account-logout-btn:hover { border-color: var(--fg-muted); color: var(--fg); }
.account-content { }
.account-page-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 28px;
}
.account-page-count { font-size: 1.2rem; color: var(--fg-muted); }
.account-form { }
.account-section-note {
  margin-top: 32px;
  padding: 16px 20px;
  background: rgba(212,162,78,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
  color: var(--fg-dim);
  line-height: 1.6;
}

/* ===========================
   ORDER HISTORY
   =========================== */
.orders-list { display: flex; flex-direction: column; gap: 12px; }
.order-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.order-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}
.order-id {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  margin-right: 12px;
}
.order-date { font-size: 13px; color: var(--fg-muted); }
.order-status {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
}
.order-status-pending { background: rgba(212,162,78,0.15); color: var(--accent); }
.order-status-confirmed { background: rgba(90,219,122,0.1); color: #5adb7a; }
.order-status-shipped { background: rgba(99,179,237,0.1); color: #63b3ed; }
.order-status-delivered { background: rgba(90,219,122,0.15); color: #5adb7a; }
.order-body {
  display: flex;
  justify-content: space-between;
  padding: 12px 20px;
  font-size: 14px;
  color: var(--fg-dim);
}
.order-subtotal { font-family: 'Space Grotesk', sans-serif; font-weight: 600; color: var(--accent); }

/* ===========================
   WISHLIST
   =========================== */
.wishlist-grid { display: flex; flex-direction: column; gap: 0; }
.wishlist-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.wishlist-item:first-child { border-top: 1px solid var(--border); }
.wishlist-item-link {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  text-decoration: none;
  color: inherit;
}
.wishlist-item-img {
  width: 80px;
  height: 80px;
  background: var(--bg-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.wishlist-item-img img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.wishlist-item-info { flex: 1; }
.wishlist-item-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  margin: 4px 0;
  line-height: 1.3;
}
.wishlist-item-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
}
.wishlist-item-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.wishlist-remove-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--fg-muted);
  width: 32px;
  height: 32px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}
.wishlist-remove-btn:hover { border-color: #ef4444; color: #ef4444; }

/* ===========================
   CART
   =========================== */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}
.cart-items { display: flex; flex-direction: column; gap: 0; }
.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item:first-child { border-top: 1px solid var(--border); }
.cart-item-img-link { text-decoration: none; }
.cart-item-img {
  width: 80px;
  height: 80px;
  background: var(--bg-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.cart-item-info { }
.cart-item-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  text-decoration: none;
  display: block;
  margin: 4px 0;
  line-height: 1.3;
}
.cart-item-name:hover { color: var(--accent); }
.cart-item-price {
  font-size: 14px;
  color: var(--fg-dim);
}
.cart-item-controls {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.cart-qty-form { }
.cart-qty-input {
  width: 64px;
  background: var(--bg-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 6px 10px;
  color: var(--fg);
  font-size: 14px;
  font-family: 'Space Grotesk', sans-serif;
  text-align: center;
  outline: none;
}
.cart-item-line-total {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
}
.cart-remove-btn {
  background: transparent;
  border: none;
  color: var(--fg-muted);
  cursor: pointer;
  font-size: 12px;
  padding: 4px;
  transition: color 0.2s;
}
.cart-remove-btn:hover { color: #ef4444; }

.cart-summary {
  position: sticky;
  top: 80px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.cart-summary-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--fg-dim);
  margin-bottom: 10px;
}
.cart-summary-shipping { align-items: center; }
.cart-summary-shipping-note { font-size: 12px; color: var(--fg-muted); text-align: right; }
.cart-summary-total {
  display: flex;
  justify-content: space-between;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 16px 0 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* Nav cart icon */
.nav-cart-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--fg-dim);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color 0.2s, color 0.2s;
  position: relative;
}
.nav-cart-btn:hover { border-color: var(--accent-dim); color: var(--fg); }
.nav-cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--bg-dark);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  line-height: 1;
}
.nav-account-btn {
  font-size: 13px;
  color: var(--fg-dim);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: color 0.2s;
}
.nav-account-btn:hover { color: var(--fg); }

/* ===========================
   RESPONSIVE — AUTH/ACCOUNT/CART
   =========================== */
@media (max-width: 900px) {
  .account-layout { grid-template-columns: 1fr; }
  .account-sidebar { position: static; }
  .account-nav-list { flex-direction: row; flex-wrap: wrap; gap: 4px; }
  .account-user-badge { display: none; }
  .account-logout-form { display: none; }

  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }

  .form-row { grid-template-columns: 1fr; }
  .form-group-sm { max-width: 100%; }
}

@media (max-width: 600px) {
  .auth-card { padding: 32px 24px; }
  .cart-item { grid-template-columns: 60px 1fr; gap: 12px; }
  .cart-item-controls { flex-direction: row; align-items: center; grid-column: 1 / -1; }
  .wishlist-item { flex-wrap: wrap; }
  .wishlist-item-actions { width: 100%; justify-content: flex-end; }
}

/* ===========================
   CHECKOUT
   =========================== */
.checkout-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 24px;
}
.checkout-section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 20px;
}
.form-row-3 {
  display: grid;
  grid-template-columns: 1fr 80px 120px;
  gap: 12px;
}
.checkout-summary-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.checkout-summary-item:last-child { border-bottom: none; }
.checkout-summary-name { color: var(--fg-dim); flex: 1; }
.checkout-summary-qty { color: var(--fg-muted); margin-right: 6px; }
.checkout-summary-price { font-weight: 600; white-space: nowrap; }

/* Checkout confirmation card */
.checkout-confirm-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.checkout-confirm-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.checkout-confirm-row:last-child { border-bottom: none; }

/* Order status badges — covers all statuses */
.order-status { font-size: 11px; font-weight: 600; padding: 3px 8px; border-radius: 3px; text-transform: uppercase; letter-spacing: 0.04em; }
.order-status-pending { background: rgba(212,162,78,0.15); color: var(--accent); }
.order-status-awaiting_payment { background: rgba(212,162,78,0.1); color: var(--accent-dim); border: 1px solid var(--accent-dim); }
.order-status-paid { background: rgba(74,222,128,0.12); color: #4ade80; }
.order-status-shipped { background: rgba(96,165,250,0.12); color: #60a5fa; }
.order-status-delivered { background: rgba(74,222,128,0.18); color: #4ade80; }
.order-status-cancelled { background: rgba(248,113,113,0.12); color: #f87171; }

/* status badge reuse in confirmation */
.status-badge { font-size: 11px; font-weight: 600; padding: 3px 8px; border-radius: 3px; text-transform: uppercase; letter-spacing: 0.04em; }
.status-paid { background: rgba(74,222,128,0.12); color: #4ade80; }
.status-awaiting { background: rgba(212,162,78,0.1); color: var(--accent-dim); border: 1px solid var(--accent-dim); }

/* btn-secondary */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  text-decoration: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--fg-dim);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: var(--accent-dim); color: var(--fg); }

@media (max-width: 900px) {
  .form-row-3 { grid-template-columns: 1fr 1fr; }
  .form-row-3 .form-group:first-child { grid-column: 1 / -1; }
}