/* ──────────────────────────────────────────────────────────────────────────
   DEPOT — industrial retail template, self-contained.
   Dense informational layout, filter sidebar, product specs tables,
   sticky comparator bar. Yellow primary + blue accent + condensed display.
   Heading reset OMITS color (lesson from prior cascade bugs) — explicit
   color rules win without specificity battles.
   ────────────────────────────────────────────────────────────────────────── */

body.depot {
  --depot-bg: #ffffff;
  --depot-bg-alt: #f7f8fa;
  --depot-bg-dark: #18181b;
  --depot-text: #18181b;
  --depot-text-soft: #52525b;
  --depot-text-mute: #6b6f76;
  --depot-primary: #fbbf24;
  --depot-primary-dark: #d97706;
  --depot-accent: #1e40af;
  --depot-accent-light: #3b82f6;
  --depot-success: #16a34a;
  --depot-danger: #dc2626;
  --depot-border: #e4e4e7;
  --depot-border-strong: #71717a;
  --depot-radius: 3px;
  --depot-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  --depot-shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.10);
  --depot-font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --depot-font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --depot-font-mono: 'Roboto Mono', 'Courier New', monospace;
}

body.depot *,
body.depot *::before,
body.depot *::after { box-sizing: border-box; }
body.depot {
  margin: 0;
  padding: 0;
  background: var(--depot-bg);
  color: var(--depot-text);
  font-family: var(--depot-font-body);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.depot img { max-width: 100%; height: auto; display: block; }
body.depot a { color: inherit; text-decoration: none; transition: color .15s ease; }
/* Heading reset — NO color, inherits from body (lesson from Vitrine bug). */
body.depot h1, body.depot h2, body.depot h3, body.depot h4 {
  font-family: var(--depot-font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin: 0;
  text-transform: uppercase;
}
body.depot p { margin: 0; }
body.depot ul, body.depot ol { margin: 0; padding: 0; list-style: none; }
body.depot button { font-family: inherit; cursor: pointer; }
body.depot code, body.depot .depot-mono { font-family: var(--depot-font-mono); }

.depot-container { max-width: 1320px; margin: 0 auto; padding: 0 24px; position: relative; }

/* ── Reveal ────────────────────────────────────────────────────────────── */
.depot-reveal { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s cubic-bezier(.2,.7,.2,1); }
.depot-reveal.active { opacity: 1; transform: translateY(0); }
body.depot.no-scroll-anim .depot-reveal { opacity: 1; transform: none; transition: none; }

/* ── Buttons (specificity-prefixed) ────────────────────────────────────── */
body.depot .depot-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-family: var(--depot-font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--depot-radius);
  border: 0;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease, transform .1s ease;
  text-decoration: none;
  position: relative;
}
body.depot .depot-btn-primary {
  background: var(--depot-primary);
  color: #000000;
  border-bottom: 3px solid var(--depot-primary-dark);
  padding-bottom: 9px;
}
body.depot .depot-btn-primary:hover {
  background: var(--depot-primary-dark);
  color: #ffffff;
  border-bottom-color: #92400e;
}
body.depot .depot-btn-primary:active { transform: translateY(1px); border-bottom-width: 1px; padding-bottom: 11px; }
body.depot .depot-btn-ghost {
  background: transparent;
  color: var(--depot-text);
  border: 1px solid var(--depot-border-strong);
}
body.depot .depot-btn-ghost:hover {
  background: var(--depot-text);
  color: #ffffff;
  border-color: var(--depot-text);
}
body.depot .depot-btn-accent {
  background: var(--depot-accent);
  color: #ffffff;
  border-bottom: 3px solid #1e3a8a;
  padding-bottom: 9px;
}
body.depot .depot-btn-accent:hover { background: #1e3a8a; }
body.depot .depot-btn-lg { padding: 14px 28px; font-size: 16px; }
body.depot .depot-btn-sm { padding: 8px 14px; font-size: 13px; }

/* ── Topbar ────────────────────────────────────────────────────────────── */
.depot-topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 2px solid var(--depot-text);
  padding: 14px 0;
}
.depot-topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.depot-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--depot-font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--depot-text);
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.depot-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  background: var(--depot-primary);
  color: var(--depot-text);
  font-family: var(--depot-font-display);
  font-size: 18px;
  font-weight: 700;
}
.depot-nav { display: flex; gap: 28px; align-items: center; }
.depot-nav a {
  font-family: var(--depot-font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--depot-text);
}
.depot-nav a:hover { color: var(--depot-accent); }
.depot-hamburger { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.depot-hamburger span { display: block; width: 22px; height: 2px; background: var(--depot-text); margin: 5px 0; }

/* ── Hero compact 50/50 ────────────────────────────────────────────────── */
.depot-hero {
  padding: 56px 0 48px;
  background: var(--depot-bg-alt);
  border-bottom: 1px solid var(--depot-border);
}
.depot-hero-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.depot-hero-badge {
  display: inline-block;
  font-family: var(--depot-font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--depot-text);
  background: var(--depot-primary);
  padding: 5px 12px;
  margin-bottom: 20px;
}
.depot-hero h1 {
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1;
  margin: 0 0 16px;
  color: var(--depot-text);
}
.depot-hero-sub {
  font-size: 16px;
  line-height: 1.6;
  color: var(--depot-text-soft);
  margin: 0 0 28px;
}
.depot-hero-cta { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
.depot-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--depot-border);
  border: 1px solid var(--depot-border);
}
.depot-hero-stat {
  background: #ffffff;
  padding: 16px 14px;
  text-align: left;
}
.depot-stat-num {
  font-family: var(--depot-font-display);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--depot-text);
  line-height: 1;
  margin-bottom: 4px;
}
.depot-stat-label {
  font-family: var(--depot-font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--depot-text-soft);
}

/* Hero product image preview block */
.depot-hero-product {
  background: #ffffff;
  border: 1px solid var(--depot-border);
  padding: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 320px;
  position: relative;
}
.depot-hero-product-sku {
  position: absolute;
  top: 12px; left: 14px;
  font-family: var(--depot-font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--depot-text-mute);
}
.depot-hero-product-tag {
  position: absolute;
  top: 12px; right: 14px;
  font-family: var(--depot-font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--depot-success);
  color: #ffffff;
  padding: 3px 8px;
}
.depot-hero-product-brand {
  font-family: var(--depot-font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--depot-accent);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.depot-hero-product-name {
  font-family: var(--depot-font-display);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  color: var(--depot-text);
  text-align: center;
  margin-bottom: 24px;
}
.depot-hero-product-price {
  font-family: var(--depot-font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--depot-text);
}

/* ── Brand strip (barcode-style) ───────────────────────────────────────── */
.depot-brands {
  background: var(--depot-text);
  color: rgba(255, 255, 255, 0.85);
  padding: 18px 0;
  font-family: var(--depot-font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.depot-brands-inner { display: flex; justify-content: center; align-items: center; gap: 18px; flex-wrap: wrap; }
.depot-brands-inner span:not(:last-child)::after {
  content: " | ";
  margin-left: 18px;
  color: rgba(255, 255, 255, 0.35);
}

/* ── Trust bar (5 cards horizontal) ────────────────────────────────────── */
.depot-trust {
  padding: 32px 0;
  background: var(--depot-bg);
  border-bottom: 1px solid var(--depot-border);
}
.depot-trust-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--depot-border);
  border: 1px solid var(--depot-border);
}
.depot-trust-item {
  background: #ffffff;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.depot-trust-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  color: var(--depot-success);
}
.depot-trust-text {
  font-family: var(--depot-font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--depot-text);
  line-height: 1.2;
}

/* ── Sections base ─────────────────────────────────────────────────────── */
.depot-section { padding: 64px 0; position: relative; }
.depot-section-alt { background: var(--depot-bg-alt); }
.depot-section-head { margin-bottom: 36px; display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }
.depot-section-head-text { max-width: 700px; }
.depot-eyebrow {
  display: inline-block;
  font-family: var(--depot-font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--depot-accent);
  margin-bottom: 10px;
}
.depot-section h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  margin: 0 0 8px;
  color: var(--depot-text);
}
.depot-section-lead {
  font-size: 15px;
  color: var(--depot-text-soft);
  margin: 0;
}

/* ── Categories grid 4-col dens ────────────────────────────────────────── */
.depot-cats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.depot-cat {
  background: #ffffff;
  border: 1px solid var(--depot-border);
  padding: 24px 20px;
  transition: border-color .2s ease, box-shadow .2s ease, transform .15s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.depot-cat:hover {
  border-color: var(--depot-text);
  box-shadow: var(--depot-shadow-lg);
  transform: translateY(-2px);
}
.depot-cat::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--depot-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.depot-cat:hover::before { transform: scaleX(1); }
.depot-cat-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  background:
    linear-gradient(135deg, var(--depot-bg-alt) 0%, #ffffff 100%);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--depot-border);
  position: relative;
}
.depot-cat-image-icon {
  width: 48px;
  height: 48px;
  color: var(--depot-text-mute);
}
.depot-cat h3 {
  font-size: 18px;
  margin: 0 0 6px;
  color: var(--depot-text);
}
.depot-cat-meta {
  font-family: var(--depot-font-mono);
  font-size: 11px;
  color: var(--depot-text-soft);
  letter-spacing: 0.04em;
}

/* ── Filter + Products layout ──────────────────────────────────────────── */
.depot-shop-layout { display: grid; grid-template-columns: 250px 1fr; gap: 32px; }
.depot-filters {
  background: #ffffff;
  border: 1px solid var(--depot-border);
  padding: 0;
  align-self: flex-start;
  position: sticky;
  top: 90px;
}
.depot-filter-group {
  padding: 18px 18px;
  border-bottom: 1px solid var(--depot-border);
}
.depot-filter-group:last-child { border-bottom: 0; }
.depot-filter-title {
  font-family: var(--depot-font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--depot-text);
  margin: 0 0 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.depot-filter-list { display: flex; flex-direction: column; gap: 8px; }
.depot-filter-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--depot-text);
  cursor: pointer;
}
.depot-filter-item input {
  margin: 0;
  width: 14px; height: 14px;
  accent-color: var(--depot-accent);
}
.depot-filter-item-count {
  margin-left: auto;
  font-family: var(--depot-font-mono);
  font-size: 11px;
  color: var(--depot-text-mute);
}
.depot-filter-price {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
}
.depot-filter-price input {
  flex: 1;
  background: var(--depot-bg-alt);
  border: 1px solid var(--depot-border);
  padding: 6px 10px;
  font-family: var(--depot-font-mono);
  font-size: 12px;
  color: var(--depot-text);
  border-radius: var(--depot-radius);
  outline: none;
}
.depot-filter-price input:focus { border-color: var(--depot-accent); }
.depot-filter-clear {
  font-family: var(--depot-font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--depot-accent);
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.depot-filter-clear:hover { color: var(--depot-primary-dark); }

/* ── Products grid dens ────────────────────────────────────────────────── */
.depot-products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.depot-product {
  background: #ffffff;
  border: 1px solid var(--depot-border);
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: border-color .2s ease, box-shadow .2s ease;
  position: relative;
}
.depot-product:hover {
  border-color: var(--depot-text);
  box-shadow: var(--depot-shadow-lg);
}
.depot-product.is-hidden { display: none; }
.depot-product-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(135deg, var(--depot-bg-alt) 0%, #ffffff 100%);
  border: 1px solid var(--depot-border);
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  position: relative;
}
.depot-product-image-brand {
  font-family: var(--depot-font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--depot-accent);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.depot-product-image-name {
  font-family: var(--depot-font-display);
  font-size: clamp(16px, 1.6vw, 18px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--depot-text);
  text-align: center;
  line-height: 1.1;
}
.depot-product-sku {
  font-family: var(--depot-font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--depot-text-mute);
  margin-bottom: 4px;
}
.depot-product h3 {
  font-size: 16px;
  margin: 0 0 12px;
  color: var(--depot-text);
}
.depot-product-specs {
  background: var(--depot-bg-alt);
  border: 1px solid var(--depot-border);
  padding: 10px 12px;
  margin-bottom: 14px;
  font-family: var(--depot-font-mono);
  font-size: 11px;
  line-height: 1.65;
  color: var(--depot-text-soft);
}
.depot-product-spec { display: flex; justify-content: space-between; gap: 8px; }
.depot-product-spec strong { color: var(--depot-text); font-weight: 500; }
.depot-product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}
.depot-product-price {
  font-family: var(--depot-font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--depot-text);
}
.depot-product-actions { display: flex; gap: 6px; align-items: center; }
.depot-product-compare {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--depot-font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--depot-text-soft);
  cursor: pointer;
  user-select: none;
}
.depot-product-compare input {
  margin: 0;
  width: 13px; height: 13px;
  accent-color: var(--depot-accent);
}

/* ── Sticky comparator bar ─────────────────────────────────────────────── */
.depot-comparator {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 80;
  background: var(--depot-text);
  color: #ffffff;
  padding: 14px 0;
  transform: translateY(100%);
  transition: transform .3s ease;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.18);
}
.depot-comparator.active { transform: translateY(0); }
.depot-comparator-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.depot-comparator-list {
  display: flex;
  gap: 8px;
  font-family: var(--depot-font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  align-items: center;
  flex-wrap: wrap;
}
.depot-comparator-label {
  font-family: var(--depot-font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--depot-primary);
  margin-right: 8px;
}
.depot-comparator-chip {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 4px 10px;
  border-radius: var(--depot-radius);
  font-size: 12px;
}

/* ── About ─────────────────────────────────────────────────────────────── */
.depot-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.depot-about-text h2 { margin-bottom: 18px; }
.depot-about-text p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--depot-text-soft);
  margin: 0 0 18px;
}
.depot-about-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--depot-border); border: 1px solid var(--depot-border); }
.depot-about-card { background: #ffffff; padding: 22px 20px; }
.depot-about-card-num {
  font-family: var(--depot-font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--depot-accent);
  line-height: 1;
  margin-bottom: 6px;
}
.depot-about-card-label {
  font-family: var(--depot-font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--depot-text-soft);
  margin-bottom: 8px;
}
.depot-about-card-text {
  font-size: 13px;
  color: var(--depot-text);
  line-height: 1.5;
}

/* ── Testimonials ──────────────────────────────────────────────────────── */
.depot-testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.depot-testi {
  background: #ffffff;
  border: 1px solid var(--depot-border);
  padding: 24px 22px;
  border-left: 3px solid var(--depot-primary);
  transition: box-shadow .2s ease;
}
.depot-testi:hover { box-shadow: var(--depot-shadow-lg); }
.depot-testi-stars {
  color: var(--depot-primary);
  letter-spacing: 1px;
  font-size: 13px;
  margin-bottom: 12px;
}
.depot-testi-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--depot-text);
  margin: 0 0 16px;
}
.depot-testi-author strong {
  display: block;
  font-family: var(--depot-font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--depot-text);
}
.depot-testi-author span {
  font-family: var(--depot-font-mono);
  font-size: 11px;
  color: var(--depot-text-soft);
  letter-spacing: 0.04em;
}

/* ── FAQ ───────────────────────────────────────────────────────────────── */
.depot-faq-wrap { max-width: 880px; margin: 0 auto; border-top: 1px solid var(--depot-border); }
.depot-faq { border-bottom: 1px solid var(--depot-border); }
.depot-faq summary {
  cursor: pointer;
  padding: 20px 0;
  font-family: var(--depot-font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--depot-text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.depot-faq summary::-webkit-details-marker { display: none; }
.depot-faq summary::after {
  content: "+";
  font-family: var(--depot-font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--depot-primary-dark);
}
.depot-faq[open] summary::after { content: "−"; }
.depot-faq p {
  padding: 0 0 22px;
  margin: 0;
  font-size: 14px;
  color: var(--depot-text-soft);
  line-height: 1.7;
  max-width: 720px;
}

/* ── Contact ───────────────────────────────────────────────────────────── */
.depot-contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; max-width: 1100px; margin: 0 auto; }
.depot-contact-info h3 {
  font-size: 22px;
  margin: 0 0 12px;
  color: var(--depot-text);
}
.depot-contact-info > p { font-size: 14px; color: var(--depot-text-soft); margin: 0 0 28px; line-height: 1.65; }
.depot-contact-meta { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.depot-contact-meta-item {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--depot-border);
}
.depot-contact-meta-item strong {
  display: inline-block;
  min-width: 90px;
  color: var(--depot-text-mute);
  font-family: var(--depot-font-display);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}
.depot-contact-meta-item span,
.depot-contact-meta-item a { color: var(--depot-text); }
.depot-social-row { display: flex; gap: 8px; }
.depot-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid var(--depot-border-strong);
  font-family: var(--depot-font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--depot-text);
  transition: all .15s ease;
}
.depot-social-link:hover { background: var(--depot-text); color: #ffffff; }

.depot-form {
  background: #ffffff;
  border: 1px solid var(--depot-border);
  padding: 28px;
}
.depot-form h3 { font-size: 20px; margin: 0 0 6px; color: var(--depot-text); }
.depot-form-sub { font-size: 13px; color: var(--depot-text-soft); margin: 0 0 22px; }
.depot-field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 16px; }
.depot-field label {
  font-family: var(--depot-font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--depot-text-soft);
}
.depot-field input,
.depot-field textarea {
  background: var(--depot-bg-alt);
  border: 1px solid var(--depot-border);
  border-radius: var(--depot-radius);
  padding: 11px 12px;
  font-size: 14px;
  font-family: var(--depot-font-body);
  color: var(--depot-text);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.depot-field input:focus,
.depot-field textarea:focus { outline: none; border-color: var(--depot-accent); box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.12); }
.depot-field textarea { min-height: 110px; resize: vertical; }
.depot-form-status {
  font-family: var(--depot-font-display);
  font-size: 13px;
  margin-top: 10px;
  letter-spacing: 0.04em;
}
.depot-form-status.success { color: var(--depot-success); }
.depot-form-status.error { color: var(--depot-danger); }

/* ── Footer ────────────────────────────────────────────────────────────── */
.depot-footer {
  background: var(--depot-bg-dark);
  color: rgba(255, 255, 255, 0.65);
  padding: 56px 0 24px;
  border-top: 3px solid var(--depot-primary);
}
.depot-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 40px; }
.depot-footer-brand .depot-brand { color: #ffffff; margin-bottom: 14px; }
.depot-footer-brand p {
  font-size: 13px;
  max-width: 380px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin: 0 0 16px;
}
.depot-footer-certs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.depot-footer-cert {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 4px 10px;
  font-family: var(--depot-font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.7);
}
.depot-footer-col h4 {
  font-family: var(--depot-font-display);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.depot-footer-col ul li { margin-bottom: 8px; }
.depot-footer-col a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}
.depot-footer-col a:hover { color: var(--depot-primary); }
.depot-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--depot-font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
  flex-wrap: wrap;
  gap: 12px;
}

/* ── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .depot-shop-layout { grid-template-columns: 1fr; }
  .depot-filters { position: static; }
  .depot-cats { grid-template-columns: repeat(3, 1fr); }
  .depot-products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .depot-hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .depot-hero-stats { grid-template-columns: 1fr 1fr; }
  .depot-trust-row { grid-template-columns: 1fr 1fr; }
  .depot-cats { grid-template-columns: repeat(2, 1fr); }
  .depot-products-grid { grid-template-columns: 1fr; }
  .depot-about-grid { grid-template-columns: 1fr; gap: 36px; }
  .depot-testi-grid { grid-template-columns: 1fr; }
  .depot-contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .depot-footer-grid { grid-template-columns: 1fr 1fr; }
  .depot-footer-brand { grid-column: 1 / -1; }
  .depot-nav { display: none; }
  .depot-hamburger { display: block; }
  .depot-nav.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: #ffffff;
    padding: 18px 24px;
    border-bottom: 2px solid var(--depot-text);
    gap: 14px;
  }
  .depot-section-head { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .depot-trust-row { grid-template-columns: 1fr; }
  .depot-cats { grid-template-columns: 1fr; }
  .depot-footer-grid { grid-template-columns: 1fr; }
  .depot-footer-bottom { flex-direction: column; text-align: center; }
}
