/* ===============================================
   ARMADILLO UK — MODERN REDESIGN
   Theme-switchable via [data-theme] on <html>
   Themes: dark-gold (default) | light | carbon | industrial
   =============================================== */

/* ================================================
   THEME 1 — DARK GOLD (default)
   ================================================ */
:root,
[data-theme="dark-gold"] {
  --bg:             #0c0c0c;
  --surface:        #161616;
  --surface-2:      #1e1e1e;
  --border:         rgba(255,255,255,0.08);
  --accent:         #f5c518;
  --accent-dim:     rgba(245,197,24,0.13);
  --heading:        #ffffff;
  --text:           #e8e8e8;
  --muted:          #888888;
  --btn-text:       #000000;
  --nav-scrolled:   rgba(10,10,10,0.94);
  --footer-bg:      #080808;
  --hero-overlay:   linear-gradient(110deg,#0c0c0c 42%,rgba(12,12,12,.6) 70%,transparent 100%);
  --hero-bg-op:     0.17;
  --stat-border:    rgba(255,255,255,0.08);
  --logo-filter:    none;
  --tag-border:     rgba(245,197,24,0.28);
  --card-shadow:    0 28px 64px rgba(0,0,0,.5), 0 0 0 1px rgba(245,197,24,.08);
  --card-border-hv: rgba(245,197,24,0.28);
}

/* ================================================
   THEME 2 — PURE LIGHT
   ================================================ */
[data-theme="light"] {
  --bg:             #f5f4f0;
  --surface:        #ffffff;
  --surface-2:      #eceae4;
  --border:         rgba(0,0,0,0.09);
  --accent:         #d4a800;
  --accent-dim:     rgba(212,168,0,0.10);
  --heading:        #111111;
  --text:           #333333;
  --muted:          #777777;
  --btn-text:       #000000;
  --nav-scrolled:   rgba(245,244,240,0.96);
  --footer-bg:      #1a1a1a;
  --hero-overlay:   linear-gradient(110deg,#f5f4f0 40%,rgba(245,244,240,.7) 65%,transparent 100%);
  --hero-bg-op:     0.08;
  --stat-border:    rgba(0,0,0,0.09);
  --logo-filter:    none;
  --tag-border:     rgba(212,168,0,0.3);
  --card-shadow:    0 20px 50px rgba(0,0,0,.12), 0 0 0 1px rgba(212,168,0,.12);
  --card-border-hv: rgba(212,168,0,0.35);
}

/* ================================================
   THEME 3 — CARBON BLUE
   ================================================ */
[data-theme="carbon"] {
  --bg:             #080d18;
  --surface:        #0f1622;
  --surface-2:      #161f30;
  --border:         rgba(255,255,255,0.07);
  --accent:         #00d4ff;
  --accent-dim:     rgba(0,212,255,0.10);
  --heading:        #e8f4ff;
  --text:           #c0cfe8;
  --muted:          #5a7399;
  --btn-text:       #000000;
  --nav-scrolled:   rgba(8,13,24,0.95);
  --footer-bg:      #040810;
  --hero-overlay:   linear-gradient(110deg,#080d18 42%,rgba(8,13,24,.6) 70%,transparent 100%);
  --hero-bg-op:     0.12;
  --stat-border:    rgba(255,255,255,0.06);
  --logo-filter:    hue-rotate(160deg) saturate(0.6) brightness(1.4);
  --tag-border:     rgba(0,212,255,0.25);
  --card-shadow:    0 28px 64px rgba(0,0,0,.6), 0 0 0 1px rgba(0,212,255,.08);
  --card-border-hv: rgba(0,212,255,0.28);
}

/* ================================================
   THEME 4 — INDUSTRIAL RED
   ================================================ */
[data-theme="industrial"] {
  --bg:             #0f0d0d;
  --surface:        #1a1616;
  --surface-2:      #221d1d;
  --border:         rgba(255,255,255,0.07);
  --accent:         #e63329;
  --accent-dim:     rgba(230,51,41,0.12);
  --heading:        #f5f0f0;
  --text:           #e0d8d8;
  --muted:          #8a7878;
  --btn-text:       #ffffff;
  --nav-scrolled:   rgba(15,13,13,0.95);
  --footer-bg:      #080606;
  --hero-overlay:   linear-gradient(110deg,#0f0d0d 42%,rgba(15,13,13,.6) 70%,transparent 100%);
  --hero-bg-op:     0.15;
  --stat-border:    rgba(255,255,255,0.07);
  --logo-filter:    none;
  --tag-border:     rgba(230,51,41,0.28);
  --card-shadow:    0 28px 64px rgba(0,0,0,.55), 0 0 0 1px rgba(230,51,41,.08);
  --card-border-hv: rgba(230,51,41,0.3);
}

/* ================================================
   RESET & BASE
   ================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  transition: background 0.5s ease, color 0.5s ease;
}

h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  line-height: 1.05;
  color: var(--heading);
  letter-spacing: -0.025em;
  margin: 0;
  transition: color 0.5s ease;
}

p  { color: var(--muted); margin: 0; transition: color 0.5s ease; }
a  { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
section { position: relative; overflow: hidden; }

/* ================================================
   SCROLL REVEAL
   ================================================ */
.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-56px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(56px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: 0.10s; }
.delay-2 { transition-delay: 0.20s; }
.delay-3 { transition-delay: 0.30s; }
.delay-4 { transition-delay: 0.40s; }

/* ================================================
   THEME SWITCHER
   ================================================ */
.theme-switcher {
  position: fixed;
  bottom: 32px;
  right: 28px;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.theme-toggle-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 18px;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  backdrop-filter: blur(12px);
  transition: background 0.3s, border-color 0.3s, color 0.3s;
  white-space: nowrap;
}
.theme-toggle-btn:hover { color: var(--heading); border-color: var(--accent); }
.theme-toggle-btn svg { width: 14px; height: 14px; stroke: var(--accent); fill: none; stroke-width: 2; flex-shrink: 0; }

.theme-panel {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(0.97);
  transform-origin: bottom right;
  transition: opacity 0.25s ease, transform 0.25s ease;
  min-width: 200px;
}
.theme-panel.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.theme-panel-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 6px 8px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
}

.theme-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.2s, border-color 0.2s;
  background: none;
  width: 100%;
  font-family: 'Montserrat', sans-serif;
  text-align: left;
}
.theme-option:hover { background: var(--surface-2); }
.theme-option.active { border-color: var(--accent); background: var(--accent-dim); }

.theme-swatch {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.1);
}
.swatch-dark    { background: linear-gradient(135deg,#0c0c0c 50%,#f5c518 50%); }
.swatch-light   { background: linear-gradient(135deg,#f5f4f0 50%,#d4a800 50%); border-color: rgba(0,0,0,0.12); }
.swatch-carbon  { background: linear-gradient(135deg,#080d18 50%,#00d4ff 50%); }
.swatch-industrial { background: linear-gradient(135deg,#0f0d0d 50%,#e63329 50%); }

.theme-option-info { display: flex; flex-direction: column; gap: 2px; }
.theme-option-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--heading);
  letter-spacing: 0.02em;
}
.theme-option-desc {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ================================================
   NAV
   ================================================ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 26px 0;
  transition: background 0.45s ease, padding 0.45s ease, border-color 0.45s ease;
  border-bottom: 1px solid transparent;
}
.site-nav.scrolled {
  background: var(--nav-scrolled);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo img {
  height: 42px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--heading); }
.nav-cta {
  background: var(--accent) !important;
  color: var(--btn-text) !important;
  padding: 9px 22px !important;
  border-radius: 2px;
  letter-spacing: 0.1em !important;
  font-weight: 700 !important;
  transition: opacity 0.25s !important;
}
.nav-cta:hover { opacity: 0.82; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--heading);
  transition: all 0.3s;
}

/* ================================================
   NAV DROPDOWNS
   ================================================ */
.nav-has-dropdown { position: relative; }

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s;
  font-family: inherit;
}
.nav-dropdown-toggle:hover { color: var(--heading); }

.nav-chevron {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.25s ease;
}
.nav-has-dropdown.open .nav-chevron { transform: rotate(180deg); }

.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 180px;
  background: var(--nav-scrolled);
  border: 1px solid var(--border);
  border-radius: 4px;
  list-style: none;
  margin: 0; padding: 6px 0;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
  z-index: 200;
}
.nav-has-dropdown.open .nav-dropdown { display: block; }

.nav-dropdown li a {
  display: block;
  padding: 10px 18px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
}
.nav-dropdown li a:hover {
  color: var(--heading);
  background: rgba(255,255,255,0.05);
}

/* ================================================
   HERO
   ================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--bg);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../img/used/KPT1 1.jpg') center 30% / cover no-repeat;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.4s ease, transform 10s ease;
}
.hero-bg.loaded {
  opacity: var(--hero-bg-op);
  transform: scale(1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 130px 40px 80px;
  width: 100%;
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
  gap: 40px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--tag-border);
  padding: 5px 11px;
  border-radius: 2px;
  margin-bottom: 16px;
}
.hero-tag::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
}
.hero-title {
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 900;
  color: var(--heading);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  text-transform: uppercase;
}
.hero-title span { color: var(--accent); }
.hero-desc {
  font-size: 13px;
  color: var(--muted);
  max-width: 320px;
  line-height: 1.7;
  margin-bottom: 32px;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.btn-primary-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--btn-text);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 17px 34px;
  border-radius: 2px;
  transition: opacity 0.3s, transform 0.3s;
}
.btn-primary-hero:hover { opacity: 0.88; transform: translateY(-2px); color: var(--btn-text); }
.btn-primary-hero svg { width: 15px; height: 15px; }

.btn-ghost-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 3px;
  transition: color 0.25s, border-color 0.25s;
}
.btn-ghost-hero:hover { color: var(--heading); border-color: var(--muted); }

.hero-product {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 640px;
}
.hero-product-glow {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--accent-dim) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(32px);
}
.hero-img {
  max-height: 680px;
  width: auto;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  filter: var(--logo-filter) drop-shadow(0 40px 100px rgba(0,0,0,.35));
  transition: filter 0.5s ease;
}
.hero-img-1 {
  animation: heroFloat 6s ease-in-out infinite, heroSwap1 14s ease-in-out infinite;
}
.hero-img-2 {
  animation: heroFloat 6s ease-in-out infinite, heroSwap2 14s ease-in-out infinite;
  animation-delay: 0s, 0s;
}
@keyframes heroFloat {
  0%,100% { transform: translate(-50%, -50%) rotate(0deg); }
  50%      { transform: translate(-50%, calc(-50% - 20px)) rotate(1deg); }
}
@keyframes heroSwap1 {
  0%, 42%   { opacity: 1; }
  50%, 92%  { opacity: 0; }
  100%      { opacity: 1; }
}
@keyframes heroSwap2 {
  0%, 42%   { opacity: 0; }
  50%, 92%  { opacity: 1; }
  100%      { opacity: 0; }
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: scrollBob 2.2s ease-in-out infinite;
}
.hero-scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}
.hero-scroll span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
@keyframes scrollBob {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(9px); }
}

/* ================================================
   STATS BAR
   ================================================ */
.stats-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stats-inner--3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 900px;
}
.stat-item {
  padding: 48px 32px;
  border-right: 1px solid var(--stat-border);
  text-align: center;
  transition: background 0.3s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--surface-2); }
.stat-icon {
  display: block;
  width: 36px;
  height: 36px;
  margin: 0 auto 18px;
  color: var(--accent);
  opacity: 0.8;
}
.stat-icon svg {
  width: 100%;
  height: 100%;
}
.stat-number {
  display: block;
  font-size: clamp(22px, 2.6vw, 36px);
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: var(--muted);
  max-width: 180px;
  margin: 0 auto;
}

/* ================================================
   GLOVE TECHNOLOGY VISUAL
   ================================================ */
.glove-visual-section {
  padding: 100px 0;
  background:
    radial-gradient(circle at 78% 35%, rgba(245,197,24,0.1), transparent 34%),
    var(--bg);
  border-bottom: 1px solid var(--border);
}
.glove-visual-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 56px;
}
.glove-visual-copy h2 {
  font-size: clamp(28px, 3.4vw, 48px);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.glove-visual-copy h2 span {
  color: var(--accent);
}
.glove-visual-copy p {
  max-width: 420px;
  font-size: 14px;
  line-height: 1.78;
  margin-bottom: 28px;
}
.glove-visual-media {
  position: relative;
}
.glove-visual-media::before {
  content: '';
  position: absolute;
  inset: 24px -18px -18px 24px;
  border: 1px solid rgba(245,197,24,0.2);
  border-radius: 6px;
  background: rgba(245,197,24,0.045);
}
.glove-visual-media img {
  position: relative;
  width: 100%;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 28px 72px rgba(0,0,0,0.48);
}

/* ================================================
   SHARED SECTION HEADER
   ================================================ */
.section-header {
  max-width: 1200px;
  margin: 0 auto 56px;
  padding: 0 40px;
}
.section-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 900;
  color: var(--heading);
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title span { color: var(--accent); }
.section-desc {
  font-size: 15px;
  color: var(--muted);
  /* max-width: 500px;*/
  line-height: 1.75;
}

/* ================================================
   PRODUCT CARDS
   ================================================ */
.products-section { padding: 100px 0; }
.products-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease, background 0.5s ease;
}
.product-card:hover {
  transform: translateY(-10px);
  border-color: var(--card-border-hv);
  box-shadow: var(--card-shadow);
}
.product-img-wrap {
  background: var(--surface-2);
  height: 270px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: background 0.5s ease;
}
.product-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 70px;
  background: linear-gradient(to top, var(--surface), transparent);
  pointer-events: none;
  transition: background 0.5s ease;
}
.product-img-wrap img {
  max-height: 210px;
  width: auto;
  transition: transform 0.55s ease, filter 0.5s ease;
  filter: var(--logo-filter) drop-shadow(0 10px 30px rgba(0,0,0,.4));
  position: relative;
  z-index: 1;
}
.product-card:hover .product-img-wrap img { transform: scale(1.07); }
/* Photo variant — cover-fit for action/lifestyle photos */
.product-img-wrap--photo {
  padding: 0;
}
.product-img-wrap--photo img {
  width: 100%; height: 100%; max-height: none;
  object-fit: cover; filter: none;
  transition: transform .6s ease;
}
.product-card:hover .product-img-wrap--photo img { transform: scale(1.07); }
.product-img-wrap--photo::after { display: none; }

/* ─────────────────────────────────────────────────────
   PRODUCT CARD — HOVER IMAGE SWAP (all 3 knee-pad cards)

   Card 1  (PNG, no --photo): centered + contained, no crop,
           wrap slightly taller than original.
   Cards 2 & 3  (--photo): full-bleed cover unchanged;
           second image stacks on top for the crossfade.
   ─────────────────────────────────────────────────── */

/* ── Card 1: PNG product shot — contained, no crop ── */
.product-img-wrap--swap:not(.product-img-wrap--photo) {
  height: 360px;   /* ~25% larger than previous 290px */
  padding: 0;
}

.product-img-wrap--swap:not(.product-img-wrap--photo) .product-img-primary,
.product-img-wrap--swap:not(.product-img-wrap--photo) .product-img-hover {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  max-width:  calc(100% - 16px);   /* 8 px breathing room each side */
  max-height: calc(100% - 16px);
  object-fit: contain;
  filter: var(--logo-filter) drop-shadow(0 10px 30px rgba(0,0,0,.4));
  transition: opacity 0.5s ease, transform 0.6s ease, filter 0.5s ease;
}

.product-img-wrap--swap:not(.product-img-wrap--photo) .product-img-primary {
  transform: translate(-50%, -50%) scale(1);
}
.product-img-wrap--swap:not(.product-img-wrap--photo) .product-img-hover {
  transform: translate(-50%, -50%) scale(1.05);
}

/* ── Cards 2 & 3: lifestyle photos — full-bleed, both images stacked ── */
.product-img-wrap--photo.product-img-wrap--swap .product-img-primary,
.product-img-wrap--photo.product-img-wrap--swap .product-img-hover {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  filter: none;
  transition: opacity 0.5s ease, transform 0.6s ease;
}

.product-img-wrap--photo.product-img-wrap--swap .product-img-primary {
  transform: scale(1);
}
.product-img-wrap--photo.product-img-wrap--swap .product-img-hover {
  transform: scale(1.05);
}

/* ── Shared: stacking order, badge always visible, no gradient ── */
.product-img-wrap--swap .product-img-primary { opacity: 1; z-index: 1; }
.product-img-wrap--swap .product-img-hover   { opacity: 0; z-index: 2; }
.product-img-wrap--swap .product-badge        { z-index: 4; }
.product-img-wrap--swap::after               { display: none; }

/* ── On card hover: crossfade — Card 1 (PNG, centered) ── */
.product-card:hover
  .product-img-wrap--swap:not(.product-img-wrap--photo)
  .product-img-primary {
  opacity: 0;
  transform: translate(-50%, -50%) scale(1.05);
}
.product-card:hover
  .product-img-wrap--swap:not(.product-img-wrap--photo)
  .product-img-hover {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* ── On card hover: crossfade — Cards 2 & 3 (lifestyle photos) ── */
.product-card:hover
  .product-img-wrap--photo.product-img-wrap--swap
  .product-img-primary {
  opacity: 0;
  transform: scale(1.07);
}
.product-card:hover
  .product-img-wrap--photo.product-img-wrap--swap
  .product-img-hover {
  opacity: 1;
  transform: scale(1);
}

.product-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--accent);
  color: var(--btn-text);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 2px;
  z-index: 2;
}
.product-info { padding: 24px 24px 28px; }
.product-name {
  font-size: 17px;
  font-weight: 800;
  color: var(--heading);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  transition: color 0.5s ease;
}
.product-sub {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 18px;
}
.product-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.product-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--heading);
  background: var(--accent-dim);
  border: 1px solid var(--tag-border);
  padding: 7px 14px;
  border-radius: 4px;
  white-space: nowrap;
}
.product-tag--lower { text-transform: none; }
.product-action {
  border-top: 1px solid var(--border);
  padding-top: 12px;
}
.product-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  transition: gap 0.3s;
}
.product-link:hover { gap: 12px; }
.product-link svg { width: 13px; height: 13px; }

.product-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 14px;
}
.product-placeholder svg { width: 52px; height: 52px; color: var(--muted); opacity: 0.25; }
.product-placeholder-text {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.4;
  text-align: center;
}

/* ================================================
   TECHNOLOGY
   ================================================ */
.tech-section {
  padding: 110px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.5s ease;
}
.tech-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 90px;
}
.tech-img-wrap { position: relative; }
.tech-img-main {
  width: 100%;
  border-radius: 6px;
  border: 1px solid var(--border);
  display: block;
}
.tech-video-open {
  position: relative;
  display: block;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.tech-video-open:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}
.tech-video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 64px;
  height: 64px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245,197,24,0.92);
  color: #000;
  box-shadow: 0 12px 34px rgba(0,0,0,0.5);
  pointer-events: none;
  transition: transform 0.2s ease, background 0.2s ease;
}
.tech-video-play svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}
.tech-video-open:hover .tech-video-play {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(245,197,24,1);
}
.tech-video-cta {
  display: block;
  text-align: center;
  margin-top: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.tech-img-badge {
  position: absolute;
  top: -18px; right: -18px;
  width: 80px; height: 80px;
  background: var(--accent-dim);
  border: 1px solid var(--tag-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.5s ease;
}
.tech-img-badge img { width: 46px; filter: var(--logo-filter); transition: filter 0.5s ease; }
.tech-content .section-tag { margin-bottom: 12px; }
.tech-content h2 { font-size: clamp(28px, 3.2vw, 46px); margin-bottom: 22px; }
.tech-content h2 span { color: var(--accent); }
.tech-content p { font-size: 15px; color: var(--muted); line-height: 1.82; margin-bottom: 40px; }
.tech-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.tech-spec {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 16px 18px;
  transition: background 0.5s ease;
}
.tech-spec-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 5px;
}
.tech-spec-value { font-size: 13px; font-weight: 700; color: var(--heading); }

/* ================================================
   FEATURES STRIP
   ================================================ */
.features-strip { padding: 90px 0; }
.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.feature-item {
  background: var(--surface);
  padding: 40px 30px;
  transition: background 0.3s;
}
.feature-item:hover { background: var(--surface-2); }
.feature-icon {
  width: 44px; height: 44px;
  background: var(--accent-dim);
  border: 1px solid var(--tag-border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: background 0.5s ease, border-color 0.5s ease;
}
.feature-icon svg {
  width: 20px; height: 20px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature-title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--heading);
  margin-bottom: 10px;
}
.feature-desc { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ================================================
   GLOVES
   ================================================ */
.gloves-section { background: var(--bg); }

/* ================================================
   CONTACT
   ================================================ */
.contact-section {
  padding: 110px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  transition: background 0.5s ease;
}
.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 90px;
  align-items: start;
}
.contact-info .section-tag { margin-bottom: 12px; }
.contact-info h2 { font-size: clamp(26px, 3vw, 44px); margin-bottom: 20px; }
.contact-info h2 span { color: var(--accent); }
.contact-info > p { font-size: 15px; line-height: 1.8; margin-bottom: 40px; color: var(--muted); }
.contact-details { display: flex; flex-direction: column; gap: 18px; }
.contact-detail-item { display: flex; align-items: center; gap: 14px; }
.contact-detail-icon {
  width: 38px; height: 38px;
  background: var(--accent-dim);
  border: 1px solid var(--tag-border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.5s ease;
}
.contact-detail-icon svg {
  width: 16px; height: 16px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-detail-text { font-size: 14px; color: var(--muted); }

.contact-form-wrap {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 42px;
  transition: background 0.5s ease;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 13px 16px;
  font-size: 14px;
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  outline: none;
  transition: border-color 0.3s, background 0.5s ease, color 0.5s ease;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); opacity: 0.45; font-weight: 400; }
.form-group textarea { resize: vertical; min-height: 110px; }
.btn-submit {
  display: block;
  width: 100%;
  background: var(--accent);
  color: var(--btn-text);
  border: none;
  border-radius: 3px;
  padding: 16px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  transition: opacity 0.3s, transform 0.25s;
  margin-top: 4px;
}
.btn-submit:hover { opacity: 0.86; transform: translateY(-2px); }
.btn-submit:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }
.form-status { margin-top: 14px; font-size: 13px; font-weight: 600; min-height: 20px; }
.form-status--ok  { color: #4caf50; }
.form-status--err { color: #f44336; }

/* ================================================
   NEWSLETTER POPUP (Bootstrap modal override)
   ================================================ */
.nl-modal-dialog {
  max-width: 780px;
}
.nl-modal-content {
  display: flex !important;
  flex-direction: row !important;
  border: none !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  background: none !important;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6) !important;
}

/* Left panel */
.nl-panel-left {
  width: 42%;
  flex-shrink: 0;
  background: var(--accent) !important;
  padding: 52px 36px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.nl-panel-left::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(0,0,0,0.08);
}
.nl-panel-left::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(0,0,0,0.06);
}
.nl-left-inner { position: relative; z-index: 1; }
.nl-logo {
  height: 32px !important;
  width: auto !important;
  max-width: 100% !important;
  margin-bottom: 40px;
  filter: brightness(0);
  display: block;
}
.nl-heading {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 16px;
}
.nl-tagline {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.6);
  margin: 0;
}

/* Right panel */
.nl-panel-right {
  flex: 1;
  background: #141414 !important;
  padding: 48px 40px 44px;
  position: relative;
}
.nl-close-btn {
  position: absolute;
  top: 16px; right: 18px;
  background: none;
  border: none;
  font-size: 24px;
  line-height: 1;
  color: #555;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s;
}
.nl-close-btn:hover { color: #fff; }

.nl-right-inner { padding-top: 8px; }

.nl-kicker {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.nl-right-title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.2;
}
.nl-right-sub {
  font-size: 13px;
  color: #777;
  line-height: 1.65;
  margin-bottom: 28px;
}

.nl-input-group { margin-bottom: 12px; }
.nl-input {
  width: 100%;
  background: #1e1e1e;
  border: 1px solid #2e2e2e;
  border-radius: 3px;
  padding: 13px 16px;
  font-size: 13px;
  color: #fff;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.nl-input:focus { border-color: var(--accent); }
.nl-input::placeholder { color: #555; }

.nl-btn {
  width: 100%;
  background: var(--accent);
  color: #000;
  border: none;
  border-radius: 3px;
  padding: 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.2s, transform 0.2s;
}
.nl-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.nl-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.nl-status { font-size: 12px; margin-top: 10px; min-height: 18px; }
.nl-status--ok  { color: #4caf50; }
.nl-status--err { color: #f44336; }

.nl-no-thanks {
  display: block;
  width: 100%;
  margin-top: 16px;
  background: none;
  border: none;
  font-size: 11px;
  color: #555;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s;
  text-align: center;
  padding: 0;
}
.nl-no-thanks:hover { color: #fff; }

@media (max-width: 600px) {
  .nl-modal-content { flex-direction: column; }
  .nl-panel-left { width: 100%; padding: 36px 28px 32px; }
  .nl-heading { font-size: 26px; }
  .nl-panel-right { padding: 36px 28px 32px; }
  .nl-logo { margin-bottom: 24px; }
}

/* ================================================
   FOOTER
   ================================================ */
.site-footer {
  background: var(--footer-bg);
  border-top: 1px solid var(--border);
  padding: 64px 0 28px;
  transition: background 0.5s ease;
}
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}
.footer-logo { height: 38px; width: auto; margin-bottom: 18px; filter: var(--logo-filter); transition: filter 0.5s ease; }
.footer-brand p { font-size: 13px; color: var(--muted); line-height: 1.75; max-width: 280px; opacity: 0.7; }
.footer-col h5 {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--heading);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; color: var(--muted); transition: color 0.25s; opacity: 0.7; }
.footer-col ul li a:hover { color: var(--heading); opacity: 1; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy { font-size: 12px; color: var(--muted); opacity: 0.5; }
.footer-copy a { color: inherit; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 34px; height: 34px;
  border: 1px solid var(--border);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, background 0.3s;
}
.footer-social a:hover { border-color: var(--accent); background: var(--accent-dim); }
.footer-social svg {
  width: 14px; height: 14px;
  stroke: var(--muted);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-social a:hover svg { stroke: var(--accent); }

/* ================================================
   LIGHT THEME OVERRIDES  (a few special cases)
   ================================================ */

[data-theme="light"] .hero-img-1 {
  filter: drop-shadow(0 20px 50px rgba(0,0,0,.15));
}

[data-theme="light"] .theme-toggle-btn {
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}
[data-theme="light"] .theme-panel {
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
}
[data-theme="light"] .product-img-wrap::after {
  background: linear-gradient(to top, #ffffff, transparent);
}
[data-theme="light"] .tech-img-main {
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}
[data-theme="light"] .footer-brand p,
[data-theme="light"] .footer-col ul li a,
[data-theme="light"] .footer-copy { color: rgba(255,255,255,0.5); }
[data-theme="light"] .footer-col h5 { color: rgba(255,255,255,0.9); }

/* ================================================
   NAV LOGO — Safety Studio
   ================================================ */
.nav-logo { display: inline-flex; align-items: center; transition: opacity .25s; }
.nav-logo:hover { opacity: .82; }
.nav-logo img { height: 36px; width: auto; display: block; transition: filter .3s ease; }

/* Dark themes: natural logo colours — SAFETY (yellow) + STUDIO (white) both readable on dark nav */
[data-theme="dark-gold"] .nav-logo img,
[data-theme="carbon"] .nav-logo img,
[data-theme="industrial"] .nav-logo img {
  filter: none;
}

/* Light theme: drop-shadow gives STUDIO (white text) a dark outline so it reads on the cream nav */
[data-theme="light"] .nav-logo img {
  filter: drop-shadow(0 0 2px rgba(0,0,0,0.55)) drop-shadow(0 1px 3px rgba(0,0,0,0.4));
}

/* ================================================
   VIDEO SECTION
   ================================================ */
.video-section {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;   /* matches video natural ratio — no crop on any device */
  min-height: 200px;       /* safety floor on very narrow screens              */
  border-top: 1px solid var(--border);
  background: #000;
  overflow: hidden;
}
.video-section video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;     /* shows full video, no cropping                    */
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1060px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: 120px; }
  .hero-product { display: none; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stats-inner--3 { grid-template-columns: repeat(3, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stats-inner--3 .stat-item:nth-child(2) { border-right: 1px solid var(--stat-border); }
  .glove-visual-inner { grid-template-columns: 1fr; gap: 38px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .tech-inner { grid-template-columns: 1fr; gap: 50px; }
  .features-inner { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; gap: 50px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--nav-scrolled);
    padding: 20px 24px 28px;
    border-bottom: 1px solid var(--border);
    gap: 16px;
    backdrop-filter: blur(16px);
  }
  .nav-toggle { display: flex; }
  /* Mobile dropdown — inline accordion */
  .nav-has-dropdown { width: 100%; }
  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    font-size: 11px;
    color: rgba(255,255,255,0.75);
    padding: 2px 0;
  }
  .nav-dropdown {
    position: static;
    transform: none;
    display: none;
    background: rgba(255,255,255,0.04);
    border: none;
    border-radius: 3px;
    box-shadow: none;
    padding: 4px 0 4px 12px;
    margin-top: 6px;
  }
  .nav-has-dropdown.open .nav-dropdown { display: block; }
  .nav-dropdown li a { font-size: 10px; padding: 8px 12px; }
  .nav-inner, .stats-inner, .section-header, .products-grid,
  .tech-inner, .contact-inner, .footer-inner, .glove-visual-inner { padding-left: 20px; padding-right: 20px; }
  .features-inner { margin: 0 20px; }
  .hero-inner { padding-left: 20px; padding-right: 20px; padding-top: 100px; }
  .hero-title { font-size: 42px; }
  .glove-visual-section { padding: 70px 0; }
  .glove-visual-media::before { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .theme-switcher { bottom: 20px; right: 16px; }
}

@media (max-width: 600px) {
  .stats-inner--3 { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .stats-inner { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
  .features-inner { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .tech-specs { grid-template-columns: 1fr; }
}
