/* ═══════════════════════════════════════════════════════════════════
   THE EMS COLLECTION — Shop Design System
   Chrome / Metallic Bubble Aesthetic
   Dark Navy · Liquid Chrome · Gold · Silver
═══════════════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ──────────────────────────────────────────────── */
:root {
  /* Base palette */
  --void:        #050b14;
  --navy-deep:   #080e18;
  --navy:        #0b1520;
  --navy-mid:    #0e1c2e;
  --navy-lift:   #132338;
  --navy-glass:  rgba(11,21,32,0.65);

  /* Gold */
  --gold:        #c9a84c;
  --gold-bright: #ddbf68;
  --gold-dim:    #a88838;
  --gold-glow:   rgba(201,168,76,0.18);
  --gold-edge:   rgba(201,168,76,0.40);

  /* Silver / Chrome */
  --chrome:      #d0dce8;
  --chrome-mid:  #a0b4c8;
  --chrome-dim:  #6a8098;
  --chrome-glow: rgba(180,205,230,0.12);
  --chrome-edge: rgba(180,205,230,0.30);

  /* Natural leather */
  --leather:     #c4a97d;
  --leather-dark:#8b6e4a;

  /* Text */
  --text:        #eae4da;
  --text-mid:    #b8b0a4;
  --text-dim:    #6a7888;
  --text-ghost:  rgba(234,228,218,0.08);

  /* Borders */
  --border:      rgba(180,205,230,0.10);
  --border-gold: rgba(201,168,76,0.25);
  --border-lift: rgba(180,205,230,0.18);

  /* Surfaces */
  --card-bg:    rgba(255,255,255,0.028);
  --card-hover: rgba(255,255,255,0.048);

  /* Sizes */
  --r:   14px;
  --r-sm: 8px;
  --r-lg: 22px;
  --r-xl: 32px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* ── Gear Lab product-line accents (Phase 1 redesign) ──
     Three EQUAL business lines, each with its own accent so no
     single line visually dominates the others. */
  --accent-flight:      #c9a84c;            /* Flight Badge Lab  — gold      */
  --accent-flight-rgb:  201,168,76;
  --accent-custom:      #38a8ff;            /* Custom Badge Lab  — EMS blue  */
  --accent-custom-rgb:  56,168,255;
  --accent-bagtag:      #2fbf71;            /* Bag Tag Lab       — EMS green */
  --accent-bagtag-rgb:  47,191,113;
  --accent-bulk:        #ff8a4c;            /* Bulk Projects     — safety amber */
  --accent-bulk-rgb:    255,138,76;
}

/* ── RESET & BASE ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  background: var(--void);
  color: var(--text);
  font-family: 'Barlow', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100dvh;
  overflow-x: hidden;
}

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

/* ── CHROME BUBBLE DECORATIONS ──────────────────────────────────── */
/* Applied via .chrome-bubble class + size modifiers */
.chrome-bubble {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background:
    radial-gradient(circle at 32% 26%,
      rgba(245,250,255,0.96) 0%,
      rgba(210,228,248,0.82) 7%,
      rgba(175,205,238,0.65) 17%,
      rgba(130,168,215,0.46) 30%,
      rgba(80,120,175,0.34) 46%,
      rgba(35,60,105,0.52) 63%,
      rgba(10,20,45,0.80) 80%,
      rgba(4,8,20,0.93) 100%
    );
  box-shadow:
    inset -10px -10px 28px rgba(255,255,255,0.09),
    inset 4px 4px 14px rgba(190,215,250,0.06),
    0 0 80px rgba(80,130,210,0.10),
    0 16px 56px rgba(0,0,0,0.55);
  filter: blur(0.3px);
  animation: bubbleDrift 18s ease-in-out infinite;
}

.chrome-bubble-gold {
  background:
    radial-gradient(circle at 32% 26%,
      rgba(255,248,220,0.95) 0%,
      rgba(240,220,160,0.80) 8%,
      rgba(210,180,100,0.62) 20%,
      rgba(170,135,60,0.44) 35%,
      rgba(120,90,25,0.38) 52%,
      rgba(60,40,8,0.56) 68%,
      rgba(20,12,2,0.84) 84%,
      rgba(8,4,0,0.94) 100%
    );
  box-shadow:
    inset -10px -10px 28px rgba(255,248,200,0.10),
    inset 4px 4px 14px rgba(220,190,120,0.07),
    0 0 80px rgba(200,160,60,0.12),
    0 16px 56px rgba(0,0,0,0.55);
}

@keyframes bubbleDrift {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%       { transform: translateY(-12px) rotate(2deg); }
  66%       { transform: translateY(8px) rotate(-1deg); }
}

/* Size presets */
.cb-xs  { width:  48px; height:  48px; }
.cb-sm  { width:  90px; height:  90px; }
.cb-md  { width: 160px; height: 160px; }
.cb-lg  { width: 280px; height: 280px; }
.cb-xl  { width: 420px; height: 420px; }
.cb-xxl { width: 600px; height: 600px; }

/* ── NAVIGATION ─────────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  background: rgba(5,11,20,0.80);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

.nav-brand img { height: 42px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 32px;
}

.nav-links a {
  padding: 6px 14px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
  letter-spacing: 0.03em;
}

.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.nav-links a.active { color: var(--gold); }

.nav-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-cart-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border-gold);
  background: var(--gold-glow);
  color: var(--gold-bright);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s var(--ease);
  letter-spacing: 0.04em;
}

.nav-cart-btn:hover {
  background: rgba(201,168,76,0.25);
  border-color: var(--gold);
  transform: translateY(-1px);
}

.cart-badge {
  background: var(--gold);
  color: var(--void);
  border-radius: 50%;
  width: 18px; height: 18px;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}

.cart-badge.has-items { display: flex; }

/* Mobile nav toggle */
.nav-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--r-sm);
  color: var(--text);
  transition: background 0.2s;
}

.nav-menu-btn:hover { background: rgba(255,255,255,0.06); }
.nav-menu-btn span { display: block; width: 22px; height: 2px; background: currentColor; border-radius: 1px; }

/* ── PAGE WRAPPER ───────────────────────────────────────────────── */
.page-top { padding-top: 64px; }

/* ── HERO ───────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(20,40,80,0.60) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(10,20,50,0.40) 0%, transparent 55%),
    var(--navy-deep);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-text {}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 24px;
}

.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-dim) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.65;
  max-width: 440px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.badge-showcase {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-showcase-glow {
  position: absolute;
  inset: -40px;
  border-radius: 50%;
  background: radial-gradient(circle at center,
    rgba(201,168,76,0.18) 0%,
    rgba(180,205,230,0.08) 40%,
    transparent 70%
  );
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.08); }
}

.badge-showcase svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 8px 40px rgba(201,168,76,0.30))
          drop-shadow(0 2px 12px rgba(180,205,230,0.20));
  animation: badgeFloat 6s ease-in-out infinite;
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%       { transform: translateY(-14px) rotate(1deg); }
}

/* ── BUTTONS ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--r-sm);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  transition: all 0.22s var(--ease);
  white-space: nowrap;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-dim) 100%);
  color: #0d0b05;
  border-color: var(--gold-bright);
  box-shadow: 0 0 0 rgba(201,168,76,0);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(201,168,76,0.40);
  filter: brightness(1.08);
}

.btn-secondary {
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border-color: var(--border-lift);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--chrome-edge);
  transform: translateY(-1px);
}

.btn-chrome {
  background: linear-gradient(135deg, rgba(200,220,240,0.15) 0%, rgba(180,205,230,0.08) 100%);
  color: var(--chrome);
  border-color: var(--chrome-edge);
}

.btn-chrome:hover {
  background: rgba(180,205,230,0.15);
  border-color: var(--chrome-mid);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(180,205,230,0.15);
}

.btn-ghost {
  background: transparent;
  color: var(--text-mid);
  border-color: var(--border);
}

.btn-ghost:hover { color: var(--text); border-color: var(--border-lift); }

.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-lg { padding: 16px 36px; font-size: 17px; }

/* ── SECTION CHROME DIVIDER ─────────────────────────────────────── */
.chrome-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 40px 0;
  position: relative;
}

.chrome-divider::before,
.chrome-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.chrome-divider-bubbles {
  display: flex;
  align-items: center;
  gap: 8px;
}

.divider-bubble {
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%,
      rgba(220,235,250,0.90) 0%,
      rgba(180,205,235,0.65) 20%,
      rgba(120,160,210,0.40) 45%,
      rgba(40,70,120,0.45) 68%,
      rgba(8,18,40,0.80) 88%,
      rgba(3,8,18,0.95) 100%
    );
  box-shadow:
    inset -4px -4px 10px rgba(255,255,255,0.08),
    0 4px 16px rgba(0,0,0,0.50);
}

.db-1 { width: 10px; height: 10px; opacity: 0.5; }
.db-2 { width: 16px; height: 16px; opacity: 0.75; }
.db-3 { width: 22px; height: 22px; opacity: 1.0; }
.db-4 { width: 16px; height: 16px; opacity: 0.75; }
.db-5 { width: 10px; height: 10px; opacity: 0.5; }

/* ── SECTION HEADERS ────────────────────────────────────────────── */
.section { padding: 80px 0; }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--text);
}

.section-title em {
  font-style: normal;
  color: var(--gold);
}

.section-sub {
  color: var(--text-mid);
  max-width: 520px;
  margin-top: 12px;
  font-size: 16px;
}

/* ── PRODUCT CARDS ──────────────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.product-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.28s var(--ease), border-color 0.28s var(--ease), box-shadow 0.28s var(--ease);
  cursor: pointer;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(145deg,
    rgba(255,255,255,0.055) 0%,
    transparent 40%,
    rgba(255,255,255,0.015) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
  box-shadow: 0 12px 48px rgba(0,0,0,0.40), 0 0 32px var(--gold-glow);
}

.product-card-image {
  aspect-ratio: 4/3;
  background: var(--navy-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-card-image svg,
.product-card-image img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  transition: transform 0.4s var(--ease), filter 0.4s var(--ease);
}

.product-card:hover .product-card-image svg,
.product-card:hover .product-card-image img {
  transform: scale(1.06);
  filter: drop-shadow(0 6px 20px rgba(201,168,76,0.30));
}

/* Badge mock inside product card image */
.badge-mock {
  width: 75%;
  max-width: 240px;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 6px 24px rgba(0,0,0,0.50);
  transition: transform 0.4s var(--ease);
  overflow: hidden;
}

.badge-mock-inner {
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-mock svg { width: 100%; height: auto; }

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

.product-card-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 19px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 6px;
}

.product-card-tagline {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.4;
  margin-bottom: 14px;
  flex: 1;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.product-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--chrome);
}

.product-price-from {
  font-size: 11px;
  color: var(--text-dim);
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.product-card-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s var(--ease), color 0.2s;
}

.product-card:hover .product-card-cta { gap: 8px; color: var(--gold-bright); }

/* ── COLOR SWATCHES ─────────────────────────────────────────────── */
.color-swatches {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.color-swatch {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  transition: transform 0.2s var(--ease), border-color 0.2s;
  outline: none;
}

.color-swatch::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}

.color-swatch:hover { transform: scale(1.15); }
.color-swatch.selected::after { border-color: var(--gold); }

/* ── PRODUCT PAGE LAYOUT ────────────────────────────────────────── */
.product-page {
  min-height: 100vh;
  padding-top: 64px;
  background: var(--void);
}

.product-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: calc(100vh - 64px);
  align-items: stretch;
}

.product-visual {
  background:
    radial-gradient(ellipse at 40% 40%, rgba(20,40,80,0.5) 0%, transparent 60%),
    var(--navy-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}

.product-visual-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
}

.product-display {
  width: 100%;
  max-width: 340px;
  position: relative;
}

.product-display-badge {
  width: 100%;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow:
    0 2px 4px rgba(0,0,0,0.15),
    0 8px 24px rgba(0,0,0,0.40),
    0 20px 60px rgba(0,0,0,0.55),
    0 0 60px rgba(201,168,76,0.08);
  transition: box-shadow 0.4s var(--ease);
}

.product-detail {
  padding: 48px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--void);
}

.product-detail-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.product-detail-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(32px, 3.8vw, 52px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 8px;
}

.product-detail-tagline {
  font-size: 15px;
  color: var(--chrome-mid);
  font-style: italic;
  margin-bottom: 20px;
}

.product-detail-desc {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 460px;
}

.product-detail-price {
  margin-bottom: 28px;
}

.price-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 4px;
}

.price-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, var(--chrome) 0%, var(--chrome-mid) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.price-note {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 4px;
}

/* ── OPTION GROUPS ──────────────────────────────────────────────── */
.option-group {
  margin-bottom: 24px;
}

.option-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.option-label span {
  color: var(--text);
  font-weight: 700;
}

.option-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.option-chip {
  padding: 8px 16px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  background: var(--card-bg);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.2s var(--ease);
  user-select: none;
}

.option-chip:hover {
  border-color: var(--border-lift);
  color: var(--text);
  background: var(--card-hover);
}

.option-chip.selected {
  border-color: var(--gold-edge);
  background: var(--gold-glow);
  color: var(--gold-bright);
}

.color-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  background: var(--card-bg);
  cursor: pointer;
  transition: all 0.2s var(--ease);
  user-select: none;
}

.color-chip:hover { border-color: var(--border-lift); }
.color-chip.selected { border-color: var(--gold-edge); background: var(--gold-glow); }

.color-chip-dot {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  flex-shrink: 0;
}

.color-chip-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  white-space: nowrap;
}

.color-chip.selected .color-chip-label { color: var(--gold-bright); }

/* Toggle option (velcro etc.) */
.option-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  background: var(--card-bg);
  cursor: pointer;
  transition: all 0.2s var(--ease);
  user-select: none;
}

.option-toggle:hover { border-color: var(--border-lift); }
.option-toggle.selected { border-color: var(--gold-edge); background: var(--gold-glow); }

.toggle-box {
  width: 20px; height: 20px;
  border-radius: 5px;
  border: 1.5px solid var(--border-lift);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}

.option-toggle.selected .toggle-box {
  background: var(--gold);
  border-color: var(--gold);
}

.toggle-check {
  display: none;
  color: var(--void);
  font-size: 12px;
  font-weight: 900;
}

.option-toggle.selected .toggle-check { display: block; }

.toggle-text { flex: 1; }
.toggle-name { font-size: 14px; font-weight: 600; color: var(--text); }
.toggle-price {
  font-size: 12px;
  color: var(--text-dim);
  font-family: 'Barlow Condensed', sans-serif;
}

.option-toggle.selected .toggle-price { color: var(--gold); }

/* ── ADD TO CART AREA ───────────────────────────────────────────── */
.atc-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
  flex-wrap: wrap;
}

.qty-input {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--card-bg);
}

.qty-btn {
  width: 36px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--text-dim);
  transition: all 0.2s;
  background: none;
  border: none;
}

.qty-btn:hover { background: rgba(255,255,255,0.06); color: var(--text); }

.qty-val {
  min-width: 40px;
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  background: none;
  border: none;
  outline: none;
  padding: 0 4px;
  cursor: default;
}

.btn-atc {
  flex: 1;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 60%, var(--gold-dim) 100%);
  color: #0c0900;
  border: none;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  box-shadow: 0 4px 20px rgba(201,168,76,0.25);
  transition: all 0.25s var(--ease);
}

.btn-atc:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.40);
  filter: brightness(1.08);
}

.btn-atc:active { transform: translateY(0); }

.btn-atc:disabled {
  opacity: 0.45;
  transform: none;
  cursor: not-allowed;
  box-shadow: none;
}

/* ── BADGE PREVIEW STYLES ───────────────────────────────────────── */
/* Used inside product display */
.badge-leather {
  border-radius: 10px;
  padding: 18px 22px;
  position: relative;
}

.badge-leather-gold {
  background: linear-gradient(160deg, #211a0e, #1a1208);
  border: 1px solid rgba(180,140,50,0.25);
}

.badge-leather-silver {
  background: linear-gradient(160deg, #1a1a1a, #121214);
  border: 1px solid rgba(160,180,200,0.20);
}

.badge-leather-natural {
  background: linear-gradient(160deg, #c8ad80, #b09060);
  border: 1px solid rgba(100,70,30,0.30);
}

/* ── FEATURES / SPEC GRID ───────────────────────────────────────── */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 24px;
}

.spec-item {
  background: var(--card-bg);
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.spec-key {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.spec-val {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

/* ── TRUST BAR ──────────────────────────────────────────────────── */
.trust-bar {
  background: linear-gradient(90deg, var(--navy-mid), var(--navy-lift), var(--navy-mid));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  overflow: hidden;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-right: 1px solid var(--border);
  white-space: nowrap;
}

.trust-item:last-child { border-right: none; }

.trust-icon {
  font-size: 18px;
  line-height: 1;
}

.trust-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
}

/* ── HOW IT WORKS ───────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 40px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.step-card {
  background: var(--card-bg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%,
      rgba(230,245,255,0.92) 0%,
      rgba(190,215,240,0.70) 15%,
      rgba(140,180,225,0.50) 32%,
      rgba(80,125,190,0.36) 50%,
      rgba(30,60,115,0.50) 68%,
      rgba(8,20,50,0.82) 85%,
      rgba(3,8,20,0.94) 100%
    );
  box-shadow:
    inset -5px -5px 12px rgba(255,255,255,0.08),
    0 4px 16px rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--chrome);
  flex-shrink: 0;
}

.step-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.2;
}

.step-text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ── CONTACT / INQUIRY FORM ─────────────────────────────────────── */
.inquiry-form {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  max-width: 560px;
}

.form-field {
  margin-bottom: 16px;
}

.form-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  display: block;
  margin-bottom: 6px;
}

.form-input,
.form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 11px 14px;
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

.form-input:focus,
.form-textarea:focus { border-color: var(--gold-edge); }

.form-textarea { resize: vertical; min-height: 100px; }

/* ── FOOTER ─────────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  padding: 48px 0 28px;
  margin-top: 80px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

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

.footer-brand {}

.footer-brand-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 10px;
}

.footer-brand-name span { color: var(--gold); }

.footer-brand-desc {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 260px;
}

.footer-col-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 12px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-dim);
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom-text {
  font-size: 13px;
  color: var(--text-dim);
}

.footer-bottom-text a { color: var(--text-dim); }
.footer-bottom-text a:hover { color: var(--gold); }

/* ── TOAST / NOTIFICATION ───────────────────────────────────────── */
.ems-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--navy-lift);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-sm);
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s var(--ease-spring);
  box-shadow: 0 8px 32px rgba(0,0,0,0.40);
}

.ems-toast.show { transform: translateY(0); opacity: 1; }
.ems-toast.success { border-color: rgba(60,160,100,0.40); }
.ems-toast.error   { border-color: rgba(200,60,60,0.40); }

/* ── BREADCRUMB ─────────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-dim);
  padding: 16px 0;
  flex-wrap: wrap;
}

.breadcrumb a { color: var(--text-dim); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: var(--border-lift); }
.breadcrumb-current { color: var(--text-mid); }

/* ── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-content { padding: 60px 32px; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .steps-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-menu-btn { display: flex; }

  .hero-content {
    grid-template-columns: 1fr;
    padding: 48px 24px;
    text-align: center;
  }

  .hero-visual { display: none; }

  .hero-actions { justify-content: center; }
  .hero-eyebrow { justify-content: center; }
  .hero-sub { max-width: 100%; }

  .product-hero { grid-template-columns: 1fr; }
  .product-visual { min-height: 340px; padding: 40px 24px; }
  .product-detail { padding: 32px 24px; }

  .section { padding: 56px 0; }
  .section-inner { padding: 0 20px; }

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

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .trust-bar-inner { gap: 0; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--border); width: 100%; padding: 10px 20px; }
  .trust-item:last-child { border-bottom: none; }

  .atc-row { flex-direction: column; }
  .btn-atc { width: 100%; justify-content: center; }

  .steps-grid { gap: 1px; border-radius: var(--r); }
}

@media (max-width: 480px) {
  .hero-title { font-size: 38px; }
  .btn { padding: 12px 20px; }
  .badge-showcase { width: 240px; height: 240px; }
}

/* ── UTILITIES ──────────────────────────────────────────────────── */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.text-gold { color: var(--gold); }
.text-chrome { color: var(--chrome); }
.text-dim { color: var(--text-dim); }

.mt-0 { margin-top: 0; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }

.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }

.fade-in {
  animation: fadeIn 0.6s var(--ease) both;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════════════════
   GEAR LAB — Phase 1 redesign components
   (homepage + /design-lab + /flight-badges + /bag-tags + /bulk-projects)
   Additive only — does not modify existing selectors.
═══════════════════════════════════════════════════════════════════ */

/* Live cart count badge (ems-cart.js targets .cart-count) */
.cart-count {
  background: var(--gold);
  color: var(--void);
  border-radius: 50%;
  min-width: 18px; height: 18px;
  padding: 0 5px;
  font-size: 10px; font-weight: 700;
  display: none;            /* JS sets '' (→flex) when items > 0 */
  align-items: center; justify-content: center;
}
.nav-cart-btn .cart-count[style*="display: "] { display: flex; }

/* ── Lab hero (homepage + lab landings) ── */
.lab-hero {
  position: relative;
  padding: clamp(56px, 9vw, 110px) 0 clamp(40px, 6vw, 72px);
  overflow: hidden;
}
.lab-hero-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 32px;
  position: relative; z-index: 2;
}
.lab-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
  border: 1px solid var(--border-gold);
  background: var(--gold-glow);
  padding: 6px 14px; border-radius: 999px;
}
.lab-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; text-transform: uppercase;
  font-size: clamp(40px, 7vw, 86px); line-height: 0.94;
  letter-spacing: -0.015em; margin: 20px 0 0;
}
.lab-title em { font-style: normal; color: var(--gold); }
.lab-title .grad {
  background: linear-gradient(100deg, var(--accent-flight), var(--accent-custom) 55%, var(--accent-bagtag));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lab-sub {
  color: var(--text-mid); font-size: clamp(15px, 1.6vw, 19px);
  line-height: 1.6; max-width: 640px; margin: 22px 0 0;
}
.lab-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.lab-hero-bg {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(60% 50% at 78% 8%,  rgba(var(--accent-custom-rgb),0.16) 0%, transparent 70%),
    radial-gradient(55% 45% at 12% 92%, rgba(var(--accent-bagtag-rgb),0.13) 0%, transparent 70%),
    radial-gradient(60% 55% at 95% 95%, rgba(var(--accent-flight-rgb),0.12) 0%, transparent 70%);
}

/* ── Three equal product doors ── */
.lab-doors {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 8px;
}
@media (max-width: 880px) { .lab-doors { grid-template-columns: 1fr; } }

.lab-door {
  --acc: var(--gold); --acc-rgb: var(--accent-flight-rgb);
  position: relative; display: flex; flex-direction: column;
  background:
    linear-gradient(180deg, rgba(var(--acc-rgb),0.06), transparent 45%),
    var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px 26px 26px;
  text-decoration: none; color: inherit;
  overflow: hidden; isolation: isolate;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.lab-door::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--acc), transparent);
  opacity: 0.55; transition: opacity 0.25s;
}
.lab-door::after {
  content: ''; position: absolute; z-index: -1; inset: auto -40% -55% auto;
  width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--acc-rgb),0.22), transparent 68%);
  opacity: 0.5; transition: opacity 0.3s, transform 0.4s var(--ease);
}
.lab-door:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--acc-rgb),0.55);
  background: linear-gradient(180deg, rgba(var(--acc-rgb),0.11), transparent 50%), var(--card-hover);
}
.lab-door:hover::before { opacity: 1; }
.lab-door:hover::after { opacity: 0.85; transform: scale(1.15); }
.lab-door.flight { --acc: var(--accent-flight); --acc-rgb: var(--accent-flight-rgb); }
.lab-door.custom { --acc: var(--accent-custom); --acc-rgb: var(--accent-custom-rgb); }
.lab-door.bagtag { --acc: var(--accent-bagtag); --acc-rgb: var(--accent-bagtag-rgb); }

.lab-door-icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  background: rgba(var(--acc-rgb),0.12);
  border: 1px solid rgba(var(--acc-rgb),0.35);
  color: var(--acc);
  box-shadow: 0 6px 22px rgba(var(--acc-rgb),0.18);
}
.lab-door-tag {
  margin-top: 18px; font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--acc);
}
.lab-door-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.01em; line-height: 1.05; margin-top: 4px;
}
.lab-door-desc { color: var(--text-mid); font-size: 14.5px; line-height: 1.6; margin-top: 10px; flex: 1; }
.lab-door-cta {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 20px; font-weight: 700; font-size: 14px; color: var(--acc);
  transition: gap 0.2s var(--ease);
}
.lab-door:hover .lab-door-cta { gap: 12px; }

/* ── Gear Wall ── */
.gear-wall {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 14px; margin-top: 36px;
}
@media (max-width: 900px) { .gear-wall { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .gear-wall { grid-template-columns: 1fr; } }

.gear-tile {
  --acc-rgb: var(--accent-flight-rgb);
  position: relative; aspect-ratio: 4 / 5; border-radius: var(--r);
  overflow: hidden; text-decoration: none; color: var(--text);
  border: 1px solid var(--border);
  background: linear-gradient(165deg, rgba(var(--acc-rgb),0.10), var(--navy-mid) 70%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 16px; transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.gear-tile:hover { transform: translateY(-4px) scale(1.012); border-color: rgba(var(--acc-rgb),0.5); }
.gear-tile .gear-art {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: clamp(44px, 7vw, 64px); opacity: 0.9;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.5));
}
.gear-tile .gear-meta { position: relative; z-index: 2; }
.gear-tile .gear-kicker {
  font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: rgb(var(--acc-rgb));
}
.gear-tile .gear-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 17px; margin-top: 2px; }
.gear-tile::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(5,11,20,0.85) 100%);
}
.gear-tile .gear-art, .gear-tile .gear-meta { position: relative; }
.gear-tile .gear-art { position: absolute; }

/* ── Bulk Projects band ── */
.bulk-band {
  position: relative; overflow: hidden;
  border: 1px solid rgba(var(--accent-bulk-rgb),0.30);
  border-radius: var(--r-xl);
  background:
    radial-gradient(70% 120% at 100% 0%, rgba(var(--accent-bulk-rgb),0.16), transparent 60%),
    var(--navy-mid);
  padding: clamp(34px, 5vw, 56px);
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center;
}
@media (max-width: 820px) { .bulk-band { grid-template-columns: 1fr; } }
.bulk-band .section-label { color: var(--accent-bulk); }
.bulk-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; border:1px solid var(--border); border-radius: var(--r); overflow:hidden; }
.bulk-stat { background: var(--card-bg); padding: 22px 18px; text-align: center; }
.bulk-stat b { display:block; font-family:'Barlow Condensed',sans-serif; font-size: 32px; font-weight: 800; color: var(--accent-bulk); }
.bulk-stat span { font-size: 11.5px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.09em; }

/* ── Use-case chips (bag tags page) ── */
.usecase-grid { display:grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap:14px; margin-top:32px; }
.usecase-card {
  background: var(--card-bg); border:1px solid var(--border); border-radius: var(--r);
  padding: 22px 20px; transition: all 0.22s var(--ease);
}
.usecase-card:hover { border-color: rgba(var(--accent-bagtag-rgb),0.45); transform: translateY(-3px); }
.usecase-card .uc-icon { font-size: 26px; }
.usecase-card h3 { font-family:'Barlow Condensed',sans-serif; font-size: 19px; font-weight:700; text-transform:uppercase; margin: 12px 0 6px; }
.usecase-card p { color: var(--text-mid); font-size: 14px; line-height: 1.55; }

/* Accent button variant */
.btn-accent {
  background: var(--accent-bagtag); color: var(--void); border: none;
}
.btn-accent:hover { filter: brightness(1.08); transform: translateY(-2px); }

/* ═══════════════════════════════════════════════════════════════════
   GEAR LAB — Phase 1 visual/UX hardening pass (lab2)
   Additive polish only. No checkout/designer impact.
═══════════════════════════════════════════════════════════════════ */

/* Responsive section rhythm — tighter on mobile */
@media (max-width: 700px) {
  .section { padding: 52px 0; }
  .section-inner { padding: 0 20px; }
  .lab-hero-inner { padding: 0 20px; }
}

/* ── Homepage hero with visual ── */
.lab-hero.has-visual .lab-hero-inner {
  display: grid; grid-template-columns: 1.12fr 0.88fr;
  gap: 52px; align-items: center;
}
.lab-hero-visual { position: relative; }
.lab-hero-visual .hero-prod {
  width: 100%; height: auto; display: block;
  /* Transparent-background badge: shadow follows the badge shape, not a box.
     Subtle drop + faint gold glow, both via CSS — keeps the badge the focus. */
  filter: drop-shadow(0 14px 26px rgba(0,0,0,0.55))
          drop-shadow(0 0 34px rgba(var(--accent-flight-rgb),0.12));
}
.lab-hero-visual::before {
  content: ''; position: absolute; inset: -8%;
  background: radial-gradient(circle at 60% 42%, rgba(var(--accent-custom-rgb),0.14), transparent 64%);
  z-index: -1; filter: blur(10px);
}
@media (max-width: 860px) {
  .lab-hero.has-visual .lab-hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .lab-hero-visual { max-width: 380px; margin: 0 auto; }
}

/* ── Compact trust strip ── */
.lab-trust {
  display: flex; flex-wrap: wrap; gap: 10px 26px; align-items: center;
  padding: 16px 0 2px; margin-top: 26px;
  border-top: 1px solid var(--border);
}
.lab-trust .ti {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; color: var(--text-mid); letter-spacing: 0.02em;
}
.lab-trust .ti svg { color: var(--gold); flex-shrink: 0; }

/* ── Premium Gear Wall tiles (SVG art) ── */
.gear-tile {
  aspect-ratio: 3 / 4; padding: 0; justify-content: stretch;
  background: linear-gradient(168deg, rgba(var(--acc-rgb),0.12), var(--navy-deep) 72%);
}
.gear-tile .gear-art {
  position: absolute; inset: 0; padding: 26px 22px 64px;
  display: flex; align-items: center; justify-content: center;
  color: rgb(var(--acc-rgb));
}
.gear-tile .gear-art svg { width: 100%; height: 100%; filter: drop-shadow(0 8px 22px rgba(0,0,0,0.5)); }
.gear-tile .gear-sheen {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,0.08) 50%, transparent 62%);
  opacity: 0; transition: opacity 0.4s var(--ease), transform 0.6s var(--ease);
  transform: translateX(-20%);
}
.gear-tile:hover .gear-sheen { opacity: 1; transform: translateX(20%); }
.gear-tile .gear-meta { padding: 0 16px 16px; }
.gear-tile .gear-cta {
  display: inline-flex; align-items: center; gap: 5px; margin-top: 3px;
  font-size: 12px; font-weight: 700; color: rgb(var(--acc-rgb));
  opacity: 0; transform: translateY(4px); transition: all 0.25s var(--ease);
}
.gear-tile:hover .gear-cta { opacity: 1; transform: translateY(0); }
.gear-tile::after { background: linear-gradient(180deg, transparent 38%, rgba(4,8,16,0.92) 100%); }

/* ── Cross-lab strip (consistent inter-lab linking) ── */
.lab-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 30px; }
@media (max-width: 720px) { .lab-strip { grid-template-columns: 1fr; } }
.lab-strip a {
  --acc-rgb: var(--accent-flight-rgb);
  display: flex; align-items: center; gap: 14px;
  padding: 18px 20px; border-radius: var(--r);
  background: var(--card-bg); border: 1px solid var(--border);
  text-decoration: none; color: inherit; transition: all 0.22s var(--ease);
}
.lab-strip a:hover { border-color: rgba(var(--acc-rgb),0.5); background: var(--card-hover); transform: translateY(-3px); }
.lab-strip .ls-ico {
  width: 40px; height: 40px; border-radius: 11px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(var(--acc-rgb),0.12); border: 1px solid rgba(var(--acc-rgb),0.3);
  color: rgb(var(--acc-rgb));
}
.lab-strip .ls-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 16px; text-transform: uppercase; letter-spacing: 0.02em; }
.lab-strip .ls-sub { font-size: 12.5px; color: var(--text-dim); margin-top: 1px; }

/* SVG line-icon sizing inside lab-door icons */
.lab-door-icon svg { width: 28px; height: 28px; }
