@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800&family=Barlow:wght@300;400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #E8622A;
  --orange-dark: #c94f1b;
  --orange-light: #f5825a;
  --black: #0f0f0f;
  --dark: #1a1a1a;
  --gray-dark: #2d2d2d;
  --gray: #333333;
  --gray-light: #9ca3af;
  --border: #e5e7eb;
  --bg: #f5f4f0;
  --white: #ffffff;
  --card-bg: #ffffff;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.10);
  --radius: 12px;
  --radius-sm: 8px;
  --topbar-h: 34px;
  --nav-top-h: 64px;
  --nav-bottom-h: 44px;
  --nav-only-h: calc(var(--nav-top-h) + var(--nav-bottom-h));
  --nav-h: calc(var(--topbar-h) + var(--nav-only-h));
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--font-body); font-size: 15px; color: var(--dark); background: var(--white); line-height: 1.6; overflow-x: hidden; width: 100%; }

/* ── NAV — Two-Row Layout ── */
nav {
  position: fixed; top: var(--topbar-h); left: 0; right: 0; z-index: 1000;
  height: var(--nav-only-h);
  display: flex; flex-direction: column;
  background: white;
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 3px 24px rgba(0,0,0,0.12); }

/* Top row */
.nav-top {
  width: 100%; height: var(--nav-top-h); flex-shrink: 0;
  display: flex; align-items: center;
  padding: 0 40px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.nav-top-right {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
  margin-left: auto;
}

/* Bottom row */
.nav-bottom {
  width: 100%; height: var(--nav-bottom-h); flex-shrink: 0;
  display: flex; align-items: stretch; justify-content: center;
  background: var(--dark);
  padding: 0 40px;
}

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.nav-logo-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-icon svg { width: 22px; height: 22px; fill: white; }
.nav-logo-text-wrap { display: flex; flex-direction: column; gap: 1px; }
.nav-logo-text { font-family: var(--font-display); font-size: 18px; font-weight: 800; color: var(--dark); letter-spacing: 0.4px; line-height: 1; text-transform: uppercase; }
.nav-logo-tagline { font-family: var(--font-body); font-size: 10px; font-weight: 600; color: var(--orange); letter-spacing: 0.8px; text-transform: uppercase; line-height: 1; }

/* Nav links (bottom bar) */
.nav-links { display: flex; align-items: stretch; gap: 0; min-width: 0; }
.nav-links a {
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.78);
  text-decoration: none; padding: 0 12px; height: var(--nav-bottom-h);
  display: flex; align-items: center;
  letter-spacing: 0.3px; text-transform: uppercase;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: white; background: rgba(255,255,255,0.08); }
.nav-links a.active { color: var(--orange); font-weight: 700; }
.btn-orange {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--orange); color: white;
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  padding: 9px 20px; border-radius: 50px; text-decoration: none;
  border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-orange:hover { background: var(--orange-dark); box-shadow: 0 4px 16px rgba(232,98,42,0.4); transform: translateY(-1px); }
.btn-dark {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--dark); color: white;
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  padding: 9px 20px; border-radius: 50px; text-decoration: none;
  border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-dark:hover { background: #333; transform: translateY(-1px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.12); color: white;
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  padding: 9px 20px; border-radius: 50px; text-decoration: none;
  border: 1px solid rgba(255,255,255,0.3);
  transition: background 0.2s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.22); }
.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-menu-btn span { display: block; width: 22px; height: 2px; background: var(--dark); margin: 5px 0; border-radius: 2px; transition: all 0.3s; }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh; width: 100%;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute; inset: 0;
  background-color: #111;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
/* Dark overlay so text stays readable over a custom photo */
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.52);
  z-index: 1;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(232,98,42,0.25) 0%, transparent 65%);
  z-index: 2;
}
.hero-content {
  position: relative; z-index: 2; max-width: 760px; padding: 0 24px; width: 100%;
  flex: 1 1 auto;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 800; line-height: 0.95;
  color: white; text-transform: uppercase; letter-spacing: -1px;
  margin-bottom: 8px;
  word-break: break-word; overflow-wrap: break-word;
}
.hero h1 span { color: var(--orange); display: block; }
.hero-sub { font-size: 16px; color: rgba(255,255,255,0.65); max-width: 500px; margin: 20px auto 36px; line-height: 1.7; }
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero-stats {
  position: static; width: 100%; flex-shrink: 0;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(12px);
  display: flex; justify-content: center; gap: 0;
}
.hero-stat {
  padding: 24px 48px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num { font-family: var(--font-display); font-size: 32px; font-weight: 800; color: white; }
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  position: relative; height: 280px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
  margin-top: var(--nav-h);
  background-color: #1a1a1a;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-color: #1a1a1a;
  filter: brightness(0.45);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(232,98,42,0.22) 0%, rgba(0,0,0,0.5) 100%);
  pointer-events: none;
}
.page-hero h1 { font-family: var(--font-display); font-size: clamp(36px, 6vw, 64px); font-weight: 800; color: white; text-transform: uppercase; letter-spacing: -0.5px; }
.page-hero p { font-size: 15px; color: rgba(255,255,255,0.7); max-width: 480px; margin: 10px auto 0; }

/* ── SECTION ── */
section { padding: 80px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.section-label {
  display: inline-flex; align-items: center;
  background: rgba(0,0,0,0.05); border: 1px solid rgba(0,0,0,0.08);
  border-radius: 50px; padding: 5px 14px;
  font-size: 12px; font-weight: 600; color: var(--gray); letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.section-title { font-family: var(--font-display); font-size: clamp(32px, 5vw, 52px); font-weight: 800; color: var(--dark); letter-spacing: -0.5px; line-height: 1.05; }
.section-title span { color: var(--orange); }
.section-sub { font-size: 15px; color: var(--gray); margin-top: 10px; }
.section-center { text-align: center; }

/* ── STATS BAR ── */
.stats-bar { background: var(--dark); padding: 36px 0; }
.stats-bar .container { display: flex; justify-content: center; gap: 0; }
.stat-item { padding: 0 56px; text-align: center; border-right: 1px solid rgba(255,255,255,0.1); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--font-display); font-size: 36px; font-weight: 800; color: white; }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }

/* ── FEATURED EQUIPMENT CAROUSEL ── */
.featured { background: var(--bg); }
.featured-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; }
.carousel-nav { display: flex; gap: 8px; }
.carousel-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid var(--border); background: white;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.2s;
}
.carousel-btn:hover { border-color: var(--orange); background: var(--orange); }
.carousel-btn:hover svg { stroke: white; }
.carousel-btn svg { width: 16px; height: 16px; stroke: var(--gray); stroke-width: 2; fill: none; }
.carousel-track-wrap { overflow: hidden; }
.carousel-track { display: flex; gap: 20px; transition: transform 0.4s cubic-bezier(0.4,0,0.2,1); }
.equip-card {
  flex: 0 0 220px; background: white; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s; cursor: pointer;
  display: flex; flex-direction: column;
}
.equip-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.equip-card-img { width: 100%; height: 160px; object-fit: contain; background: #fff; display: block; }
.equip-card-body { padding: 14px 16px; display: flex; flex-direction: column; flex: 1; }
.equip-cat { font-size: 10px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.equip-name {
  font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 4px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  line-height: 1.3; min-height: 2.6em;
}
.equip-price { font-size: 12px; color: var(--gray); }

/* ── ADS BANNER (editorial split, auto-switching) ── */
.promo-banner { padding: 48px 0; background: var(--white); }
.promo-editorial {
  display: grid; grid-template-columns: 1fr 150px; gap: 16px;
  align-items: stretch;
}
.promo-hero {
  position: relative; display: block; border-radius: var(--radius);
  overflow: hidden; background: var(--bg); box-shadow: var(--shadow);
  aspect-ratio: 3 / 2;
}
.promo-hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0; transition: opacity 0.5s ease;
}
.promo-hero-img.active { opacity: 1; }
.promo-thumbs {
  display: flex; flex-direction: column; gap: 12px;
  padding: 0 5px;
}
.promo-thumb {
  position: relative;
  flex: 1 1 0; min-height: 0; border-radius: var(--radius-sm);
  border: 2px solid transparent; padding: 0; cursor: pointer;
  background-size: cover; background-position: center;
  opacity: 0.55; transition: opacity 0.2s;
}
.promo-thumb:hover { opacity: 0.85; }
.promo-thumb.active { opacity: 1; }
/* Animated border-progress ring — fills clockwise as the slide's timer runs out */
.promo-thumb::before {
  content: '';
  position: absolute; inset: -5px;
  border-radius: inherit;
  padding: 4px;
  background: conic-gradient(var(--orange) calc(var(--thumb-progress, 0) * 1%), rgba(0,0,0,0.35) 0);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  filter: drop-shadow(0 0 4px rgba(232,98,42,0.65));
  transition: opacity 0.2s ease;
  pointer-events: none;
}
.promo-thumb.active::before { opacity: 1; }
@media (max-width: 768px) {
  .promo-editorial { grid-template-columns: 1fr; }
  .promo-hero { aspect-ratio: 1 / 1; }
  .promo-thumbs { flex-direction: row; height: 64px; }
  .promo-thumb { flex: 0 0 80px; }
}
.promo-hero { cursor: pointer; }

/* ── PROMO LIGHTBOX (zoomable / draggable full-image viewer) ── */
.promo-lightbox {
  position: fixed; inset: 0; z-index: 3000;
  background: rgba(10,10,10,0.9);
  display: flex; align-items: center; justify-content: center;
  padding: 24px; opacity: 0; pointer-events: none;
  transition: opacity 0.2s ease;
}
.promo-lightbox.open { opacity: 1; pointer-events: auto; }
.promo-lightbox-inner {
  width: 100%; max-width: 900px; max-height: 90vh;
  background: #1a1a1a; border-radius: 12px;
  display: flex; flex-direction: column; overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}
.promo-lightbox-header {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 14px 18px;
  background: #222; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.promo-lightbox-title {
  font-family: var(--font-display); font-size: 14px; font-weight: 700;
  color: #fff; text-transform: uppercase; letter-spacing: 0.5px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.promo-lightbox-close {
  background: none; border: none; color: rgba(255,255,255,0.6);
  font-size: 24px; line-height: 1; cursor: pointer; padding: 2px 8px;
  flex-shrink: 0; transition: color 0.15s;
}
.promo-lightbox-close:hover { color: #fff; }
.promo-lightbox-viewport {
  flex: 1; min-height: 300px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: #0f0f0f; cursor: grab; touch-action: none; position: relative;
}
.promo-lightbox-viewport.zoomed { cursor: grab; }
.promo-lightbox-viewport.dragging { cursor: grabbing; }
.promo-lightbox-img {
  max-width: 100%; max-height: 75vh;
  user-select: none; -webkit-user-drag: none; pointer-events: none;
  transform-origin: center center;
  transition: transform 0.05s linear;
}
.promo-lightbox-controls {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px; background: #222; border-top: 1px solid rgba(255,255,255,0.08);
}
.promo-lightbox-btn {
  width: 34px; height: 34px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15); background: #2a2a2a; color: #fff;
  font-size: 18px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.promo-lightbox-btn:hover { background: #333; }
.promo-lightbox-pct { font-size: 13px; color: rgba(255,255,255,0.7); min-width: 44px; text-align: center; }
.promo-lightbox-reset, .promo-lightbox-visit {
  width: auto; padding: 0 14px; gap: 6px; font-size: 12px; font-weight: 600;
}
.promo-lightbox-visit { text-decoration: none; background: var(--orange); border-color: var(--orange); }
.promo-lightbox-visit:hover { background: var(--orange-dark); }
@media (max-width: 560px) {
  .promo-lightbox { padding: 0; }
  .promo-lightbox-inner { max-height: 100vh; border-radius: 0; }
  .promo-lightbox-controls { flex-wrap: wrap; }
}
.equip-arrow {
  display: flex; align-items: center; justify-content: flex-end;
  margin-top: auto; padding-top: 10px;
}
.equip-arrow-btn {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(232,98,42,0.08); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.equip-arrow-btn:hover { background: var(--orange); }
.equip-arrow-btn:hover svg { stroke: white; }
.equip-arrow-btn svg { width: 14px; height: 14px; stroke: var(--orange); stroke-width: 2.5; fill: none; }

/* ── ABOUT SPLIT ── */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img { border-radius: var(--radius); overflow: hidden; }
.about-img img { width: 100%; display: block; border-radius: var(--radius); }
.about-stats { display: flex; gap: 24px; margin-top: 28px; flex-wrap: wrap; }
.about-stat-num { font-family: var(--font-display); font-size: 28px; font-weight: 800; color: var(--orange); }
.about-stat-label { font-size: 12px; color: var(--gray); }
.cert-card {
  background: #1a2e24; border-radius: var(--radius);
  padding: 24px; color: white;
}
.cert-card-title { font-size: 11px; font-weight: 700; letter-spacing: 1px; color: rgba(255,255,255,0.5); text-transform: uppercase; margin-bottom: 14px; }
.cert-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.cert-tag {
  font-size: 11px; font-weight: 600; color: white;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px; padding: 4px 12px;
}
.cert-list { list-style: none; margin-bottom: 16px; }
.cert-list li {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
}
.cert-list li:last-child { border-bottom: none; }
.cert-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }
.cert-label { color: rgba(255,255,255,0.5); font-size: 11px; }
.cert-val { font-weight: 600; }
.cert-btn {
  width: 100%; padding: 12px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  color: white; font-size: 13px; font-weight: 600; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background 0.2s; text-decoration: none;
}
.cert-btn:hover { background: rgba(255,255,255,0.15); }

/* ── PRODUCT CATEGORIES ── */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cat-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 1/0.8; cursor: pointer;
  transition: transform 0.25s;
}
.cat-card:hover { transform: scale(1.02); }
.cat-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cat-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 55%);
}
.cat-card-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 16px 18px; }
.cat-card-name { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: white; }
.cat-card-sub { font-size: 12px; color: rgba(255,255,255,0.65); }
.cat-card-units {
  position: absolute; top: 12px; right: 12px;
  background: white; border-radius: 50px;
  font-size: 11px; font-weight: 700; color: var(--dark);
  padding: 3px 10px;
}
.view-all-wrap { text-align: center; margin-top: 40px; }

/* ── PRODUCT CATEGORY SHOWCASE (shop.php category mode) ── */
.pcat-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.65); margin: 0 0 10px;
}
.pcat-showcase { padding: 56px 0 48px; background: var(--bg); }
.pcat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pcat-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.22s, box-shadow 0.22s;
  display: flex; flex-direction: column;
}
.pcat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pcat-card-img-wrap {
  display: block; position: relative; overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #e8eaed;
}
.pcat-card-img-wrap img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.35s;
}
.pcat-card:hover .pcat-card-img-wrap img { transform: scale(1.04); }
.pcat-card-img-placeholder {
  width: 100%; height: 100%; display: flex;
  align-items: center; justify-content: center;
  background: #dde0e5; color: var(--gray-light);
}
.pcat-card-body {
  padding: 22px 24px 24px;
  display: flex; flex-direction: column; gap: 8px; flex: 1;
}
.pcat-card-title {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.5px;
  color: var(--dark); margin: 0;
}
.pcat-card-desc {
  font-size: 14px; color: var(--gray);
  line-height: 1.55; margin: 0; flex: 1;
}
.pcat-card-meta { margin-top: auto; }
.pcat-card-count {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.8px;
  color: var(--gray);
}
.pcat-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--orange); flex-shrink: 0;
}
.pcat-card-btn {
  display: inline-block; margin-top: 14px;
  background: var(--dark); color: white;
  font-size: 12px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; text-decoration: none;
  padding: 11px 20px; border-radius: var(--radius-sm);
  transition: background 0.2s;
  align-self: flex-start;
}
.pcat-card-btn:hover { background: var(--orange); color: white; }

/* Back button in shop-controls when inside a category */
.pcat-back-btn {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 13px; font-weight: 600; color: var(--gray);
  text-decoration: none; padding: 6px 10px; border-radius: 6px;
  transition: color 0.18s, background 0.18s; white-space: nowrap;
}
.pcat-back-btn:hover { color: var(--dark); background: rgba(0,0,0,0.05); }

/* Responsive */
@media (max-width: 900px) {
  .pcat-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 540px) {
  .pcat-grid { grid-template-columns: 1fr; gap: 14px; }
  .pcat-card-btn { align-self: stretch; text-align: center; }
}


/* ── BRAND SHOWCASE (brands.php) ── */
.brand-showcase { padding: 48px 0 64px; background: var(--bg); }

/* Search / filter bar */
.brand-filter {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; margin-bottom: 28px; flex-wrap: wrap;
}
.brand-filter-search {
  display: flex; align-items: center; gap: 10px;
  background: white; border: 1.5px solid var(--border);
  border-radius: 10px; padding: 0 16px; height: 44px;
  max-width: 340px; width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.brand-filter-search:focus-within {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,98,42,0.10);
}
.brand-filter-search svg { color: var(--gray-light); flex-shrink: 0; }
.brand-filter-search input {
  border: none; outline: none; background: none;
  font-family: var(--font-body); font-size: 14px; color: var(--dark); width: 100%;
}
.brand-filter-search input::placeholder { color: var(--gray-light); }
.brand-filter-count {
  font-size: 13px; color: var(--gray); font-weight: 500; white-space: nowrap;
}

/* Grid */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* Cards — full-image top layout */
.brand-card {
  position: relative;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
  padding: 0;
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
}
.brand-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.10);
  border-color: var(--brand-accent, var(--orange));
}

/* Full-width image / initial area */
.brand-card-visual {
  width: 100%;
  height: 150px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--accent-bg, #f4f5f7);
}
.brand-card-visual img {
  width: 100%; height: 100%; object-fit: cover;
}
.brand-card-initial {
  font-family: var(--font-display); font-size: 64px; font-weight: 800;
  line-height: 1; color: var(--brand-accent, var(--orange));
  opacity: 0.85;
}

/* Product count badge (+ optional Local badge) — top-right */
.brand-card-badges {
  position: absolute; top: 12px; right: 12px;
  display: flex; align-items: center; gap: 6px;
}
.brand-card-badge {
  font-size: 10px; font-weight: 700; letter-spacing: 0.5px;
  text-transform: uppercase; white-space: nowrap;
  padding: 3px 9px; border-radius: 20px;
  background: var(--brand-accent, var(--orange));
  color: white; line-height: 1.5;
}
.brand-card-badge.zero {
  background: rgba(0,0,0,0.18); color: white;
}
.brand-card-badge-local {
  font-size: 10px; font-weight: 700; letter-spacing: 0.5px;
  text-transform: uppercase; white-space: nowrap;
  padding: 3px 9px; border-radius: 20px;
  background: #2563eb; color: white; line-height: 1.5;
}

/* Body */
.brand-card-body {
  padding: 14px 16px 0;
  display: flex; flex-direction: column; align-items: center;
}

/* Name */
.brand-card-name {
  font-family: var(--font-display); font-size: 17px; font-weight: 800;
  color: var(--dark); text-transform: uppercase; letter-spacing: 0.4px;
  margin: 0 0 4px; line-height: 1.15;
}

/* Description */
.brand-card-desc {
  font-size: 12px; color: var(--gray); line-height: 1.55;
  margin: 0 0 10px;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}

/* Footer row */
.brand-card-footer {
  margin-top: auto;
  border-top: 1px solid var(--border);
  padding: 12px 16px;
  display: flex; align-items: center; justify-content: center;
}
.brand-card-cta {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.5px;
  color: var(--brand-accent, var(--orange)); text-transform: uppercase;
  transition: gap 0.18s;
}
.brand-card:hover .brand-card-cta { gap: 9px; }
.brand-card-site {
  font-size: 11px; font-weight: 600; color: var(--gray-light);
  text-decoration: none; border-bottom: 1px solid transparent;
  transition: color 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.brand-card-site:hover { color: var(--dark); border-color: currentColor; }

/* Hidden (search filter) */
.brand-card.brand-hidden { display: none; }

/* No-results */
.brand-no-results {
  grid-column: 1 / -1; text-align: center;
  padding: 56px 0; color: var(--gray);
  font-size: 15px; display: none;
}
.brand-no-results svg { display: block; margin: 0 auto 16px; opacity: 0.3; }

/* Responsive */
@media (max-width: 1100px) {
  .brand-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .brand-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .brand-filter-search { max-width: 100%; }
}
@media (max-width: 440px) {
  .brand-grid { grid-template-columns: 1fr; gap: 10px; }
  .brand-card { padding: 22px 18px 0; }
}

/* ── ADVANTAGES ── */
.advantages { background: white; }
.adv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.adv-img-wrap { position: relative; }
.adv-img-wrap img { width: 100%; border-radius: var(--radius); display: block; }
.adv-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: white; border-radius: var(--radius-sm);
  padding: 14px 18px; box-shadow: var(--shadow-md);
}
.adv-badge-num { font-family: var(--font-display); font-size: 28px; font-weight: 800; color: var(--orange); }
.adv-badge-label { font-size: 12px; color: var(--gray); }
.adv-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.adv-card {
  background: var(--bg); border-radius: var(--radius);
  padding: 22px; border: 1px solid var(--border);
}
.adv-card-icon { width: 36px; height: 36px; border-radius: 8px; background: rgba(232,98,42,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.adv-card-icon svg { width: 18px; height: 18px; stroke: var(--orange); stroke-width: 2; fill: none; }
.adv-card-num { font-size: 11px; font-weight: 700; color: var(--gray-light); text-transform: uppercase; letter-spacing: 1px; text-align: right; float: right; }
.adv-card-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.adv-card-text { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* ── TRUST BAR ── */
.trust-bar { background: var(--dark); border-radius: var(--radius); margin: 0 40px; }
.trust-bar .container { display: flex; gap: 0; }
.trust-item { flex: 1; padding: 24px 20px; display: flex; align-items: center; gap: 14px; border-right: 1px solid rgba(255,255,255,0.08); }
.trust-item:last-child { border-right: none; }
.trust-icon { width: 40px; height: 40px; border-radius: 50%; background: rgba(232,98,42,0.2); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.trust-icon svg { width: 18px; height: 18px; stroke: var(--orange); stroke-width: 2; fill: none; }
.trust-text-title { font-size: 13px; font-weight: 700; color: white; }
.trust-text-sub { font-size: 11px; color: rgba(255,255,255,0.45); }

/* ── CTA SECTION ── */
.cta-section {
  position: relative; overflow: hidden;
  background-size: cover; background-position: center;
  padding: 100px 0; text-align: center;
}
.cta-section::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.7); }
.cta-section .container { position: relative; z-index: 2; }
.cta-title { font-family: var(--font-display); font-size: clamp(40px, 7vw, 80px); font-weight: 800; color: white; text-transform: uppercase; letter-spacing: -1px; margin-bottom: 16px; }
.cta-sub { font-size: 16px; color: rgba(255,255,255,0.7); max-width: 500px; margin: 0 auto 36px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── DARK CTA CARD ── */
.dark-cta { background: var(--dark); border-radius: var(--radius); padding: 36px 40px; text-align: center; }
.dark-cta h2 { font-family: var(--font-display); font-size: 36px; font-weight: 800; color: white; margin-bottom: 10px; }
.dark-cta p { font-size: 15px; color: rgba(255,255,255,0.6); max-width: 440px; margin: 0 auto 28px; }
.dark-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── SHOP PAGE ── */
.shop-controls { background: var(--bg); padding: 24px 0; border-bottom: 1px solid var(--border); position: sticky; top: var(--nav-h); z-index: 100; overflow-x: clip; }
.shop-controls .container { display: flex; align-items: center; gap: 24px; }
.search-wrap { position: relative; flex: 0 0 300px; }
.search-wrap svg { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; stroke: var(--gray-light); stroke-width: 2; fill: none; pointer-events: none; }
.search-input {
  width: 100%; padding: 10px 12px 10px 38px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 14px; color: var(--dark);
  background: white; outline: none; transition: border-color 0.2s;
}
.search-input:focus { border-color: var(--orange); }
.cat-pills { display: flex; gap: 8px; flex-wrap: wrap; flex: 1; }
.cat-pill {
  padding: 7px 16px; border-radius: 50px;
  font-size: 13px; font-weight: 500;
  border: 1.5px solid var(--border); background: white; color: var(--gray);
  cursor: pointer; transition: all 0.2s;
}
.cat-pill:hover { border-color: var(--orange); color: var(--orange); }
.cat-pill.active { background: var(--orange); border-color: var(--orange); color: white; font-weight: 600; }
.sort-wrap { margin-left: auto; display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray); }
.sort-select {
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  padding: 7px 12px; font-size: 13px; font-family: var(--font-body);
  outline: none; background: white; cursor: pointer;
}
.shop-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product-card {
  background: white; border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s; cursor: pointer;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.product-card-img { position: relative; }
.product-card-img img { width: 100%; height: 200px; object-fit: contain; background: #fff; display: block; }
.product-badge-cat {
  position: absolute; top: 10px; left: 10px;
  background: var(--orange); color: white;
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
  padding: 3px 10px; border-radius: 50px;
}
.product-badge-avail {
  position: absolute; top: 10px; right: 10px;
  background: #16a34a; color: white;
  font-size: 10px; font-weight: 700;
  padding: 3px 10px; border-radius: 50px;
}
.product-badge-avail.available    { background: #16a34a; }
.product-badge-avail.rented       { background: #2563eb; }
.product-badge-avail.maintenance  { background: #ca8a04; }
.product-badge-avail.retired      { background: #dc2626; }
.product-card-body { padding: 16px; }
.product-card-name { font-family: var(--font-display); font-size: 19px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.product-card-desc { font-size: 12px; color: var(--gray); line-height: 1.5; margin-bottom: 12px; }
.product-card-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-size: 12px; color: var(--gray); }
.product-arrow-btn {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(232,98,42,0.08); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.product-arrow-btn:hover { background: var(--orange); }
.product-arrow-btn:hover svg { stroke: white; }
.product-arrow-btn svg { width: 14px; height: 14px; stroke: var(--orange); stroke-width: 2.5; fill: none; }
.showing-label { font-size: 13px; color: var(--gray); margin-bottom: 24px; }

/* ── SERVICES PAGE ── */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.service-card { padding: 28px; background: white; border: 1.5px solid var(--border); border-radius: var(--radius-sm); transition: border-color 0.2s, box-shadow 0.2s; }
.service-card:hover { border-color: var(--orange); box-shadow: 0 4px 16px rgba(232,98,42,0.08); }
.service-icon { width: 48px; height: 48px; border-radius: 50%; background: rgba(232,98,42,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.service-icon svg { width: 22px; height: 22px; stroke: var(--orange); stroke-width: 2; fill: none; }
.service-title { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.service-desc { font-size: 13px; color: var(--gray); margin-bottom: 14px; line-height: 1.6; }
.service-list { list-style: none; }
.service-list li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray); padding: 2px 0; }
.service-list li::before { content: ''; width: 14px; height: 14px; border-radius: 50%; background: rgba(232,98,42,0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6L9 17l-5-5' stroke='%23E8622A' stroke-width='2.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-size: 10px; background-repeat: no-repeat; background-position: center; }
.add-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.add-service-card {
  background: white; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  padding: 16px 20px; display: flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 500; color: var(--dark);
  transition: border-color 0.2s, background 0.2s;
}
.add-service-card:hover { border-color: var(--orange); background: rgba(232,98,42,0.02); }
.add-service-icon { width: 32px; height: 32px; border-radius: 50%; background: rgba(0,0,0,0.05); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.add-service-icon svg { width: 14px; height: 14px; stroke: var(--gray); stroke-width: 2; fill: none; }
.coverage-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.coverage-img { border-radius: var(--radius); overflow: hidden; }
.coverage-img img { width: 100%; display: block; border-radius: var(--radius); }

/* ── RESOURCES PAGE ── */
.res-tabs { display: flex; gap: 4px; background: rgba(0,0,0,0.06); border-radius: var(--radius); padding: 4px; width: fit-content; margin: 0 auto 48px; }
.res-tab {
  padding: 9px 24px; border-radius: 9px; font-size: 14px; font-weight: 600;
  border: none; background: none; cursor: pointer; color: var(--gray);
  transition: all 0.2s;
}
.res-tab.active { background: white; color: var(--dark); box-shadow: 0 1px 4px rgba(0,0,0,0.08); }
.res-cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 56px; }
.res-cat-card {
  background: var(--bg); border-radius: var(--radius-sm);
  padding: 16px; border: 1.5px solid transparent; cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
}
.res-cat-card:hover { border-color: var(--orange); transform: translateY(-2px); }
.res-cat-units { font-size: 11px; font-weight: 700; color: var(--gray-light); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.res-cat-name { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--dark); }
.res-cat-sub { font-size: 12px; color: var(--gray); }
.guides-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.guide-card { background: white; border-radius: var(--radius); border: 1.5px solid var(--border); padding: 24px; cursor: pointer; transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s; }
.guide-card:hover { border-color: var(--orange); box-shadow: 0 4px 20px rgba(232,98,42,0.12); transform: translateY(-2px); }
.guide-icon { width: 44px; height: 44px; border-radius: 50%; background: rgba(232,98,42,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.guide-icon svg { width: 20px; height: 20px; stroke: var(--orange); stroke-width: 2; fill: none; }
.guide-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.guide-desc { font-size: 13px; color: var(--gray); line-height: 1.6; margin-bottom: 14px; }
.guide-footer { display: flex; align-items: center; justify-content: space-between; }
.guide-time { font-size: 12px; color: var(--gray); }
.guide-soon { font-size: 12px; font-weight: 600; color: var(--orange); }

/* ── FAQ PAGE ── */
.faq-section-title { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 20px; padding-left: 14px; border-left: 3px solid var(--orange); }
.faq-group { margin-bottom: 48px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; background: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 15px; font-weight: 500; color: var(--dark);
  text-align: left; gap: 16px;
}
.faq-toggle {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: rgba(0,0,0,0.05); display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.faq-toggle svg { width: 14px; height: 14px; stroke: var(--gray); stroke-width: 2.5; fill: none; transition: transform 0.3s; }
.faq-item.open .faq-toggle { background: var(--orange); }
.faq-item.open .faq-toggle svg { stroke: white; transform: rotate(45deg); }
.faq-answer { font-size: 14px; color: var(--gray); line-height: 1.7; max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s; padding: 0; }
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 20px; }
.faq-light-cta {
  background: var(--bg); border-radius: var(--radius); padding: 48px 40px; text-align: center;
  border: 1.5px solid var(--border);
}
.faq-light-cta h2 { font-family: var(--font-display); font-size: 30px; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.faq-light-cta p { font-size: 14px; color: var(--gray); margin-bottom: 24px; }

/* ── ABOUT PAGE ── */
.mission-vision { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mv-card { background: white; border-radius: var(--radius); border: 1.5px solid var(--border); padding: 28px; }
.mv-icon { width: 44px; height: 44px; border-radius: 50%; background: rgba(232,98,42,0.08); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.mv-icon svg { width: 20px; height: 20px; stroke: var(--orange); stroke-width: 2; fill: none; }
.mv-title { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.mv-text { font-size: 13px; color: var(--gray); line-height: 1.7; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card { text-align: center; padding: 8px; }
.value-icon { width: 52px; height: 52px; border-radius: 50%; background: rgba(232,98,42,0.08); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.value-icon svg { width: 22px; height: 22px; stroke: var(--orange); stroke-width: 2; fill: none; }
.value-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.value-text { font-size: 13px; color: var(--gray); line-height: 1.6; }
.cert-full { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cert-panel { background: white; border-radius: var(--radius); border: 1.5px solid var(--border); padding: 28px; }
.cert-panel-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 20px; }
.cert-items { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cert-item { display: flex; align-items: center; gap: 10px; padding: 12px; background: var(--bg); border-radius: var(--radius-sm); }
.cert-item-icon { width: 32px; height: 32px; border-radius: 8px; background: rgba(232,98,42,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cert-item-icon svg { width: 14px; height: 14px; stroke: var(--orange); stroke-width: 2; fill: none; }
.cert-item-name { font-size: 13px; font-weight: 600; color: var(--dark); }
.cert-item-sub { font-size: 11px; color: var(--gray); }
.coverage-panel { background: white; border-radius: var(--radius); border: 1.5px solid var(--border); padding: 28px; margin-bottom: 16px; }
.cov-item { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.cov-item:last-child { border-bottom: none; }
.cov-icon { width: 36px; height: 36px; border-radius: 50%; background: rgba(232,98,42,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cov-icon svg { width: 15px; height: 15px; stroke: var(--orange); stroke-width: 2; fill: none; }
.cov-name { font-size: 14px; font-weight: 600; color: var(--dark); }
.cov-sub { font-size: 12px; color: var(--gray); }
.custom-plan-card { background: var(--dark); border-radius: var(--radius); padding: 24px; color: white; }
.custom-plan-card h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.custom-plan-card p { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.plan-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.plan-tag { font-size: 12px; font-weight: 600; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); border-radius: 50px; padding: 4px 12px; color: white; }
/* ── HOW IT WORKS ── */
.hiw-section { background: var(--white); }
.hiw-steps {
  display: grid;
  grid-template-columns: repeat(var(--hiw-cols, 4), 1fr);
  gap: 0;
  position: relative;
  margin-top: 56px;
}
.hiw-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(50% / var(--hiw-cols, 4) + 20px);
  right: calc(50% / var(--hiw-cols, 4) + 20px);
  height: 2px;
  background: repeating-linear-gradient(to right, var(--orange) 0, var(--orange) 8px, transparent 8px, transparent 16px);
  z-index: 0;
}
.hiw-steps[data-hiw-cols="1"]::before { display: none; }
.hiw-step {
  text-align: center;
  padding: 0 20px 40px;
  position: relative;
  z-index: 1;
}
.hiw-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.hiw-step:hover .hiw-num {
  border-color: var(--orange);
  box-shadow: 0 0 0 6px rgba(232,98,42,0.08);
}
.hiw-num svg {
  width: 28px;
  height: 28px;
  stroke: var(--orange);
  stroke-width: 1.8;
  fill: none;
  transition: transform 0.3s;
}
.hiw-step:hover .hiw-num svg { transform: scale(1.15); }
.hiw-badge {
  position: absolute;
  top: -8px;
  left: calc(50% + 14px);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hiw-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 10px;
}
.hiw-text {
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.65;
}
.hiw-detail {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.hiw-detail-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  border: 1.5px solid transparent;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.hiw-detail-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow);
}
.hiw-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(232,98,42,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hiw-detail-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--orange);
  stroke-width: 2;
  fill: none;
}
.hiw-detail-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.2px;
  margin-bottom: 6px;
}
.hiw-detail-text { font-size: 13.5px; color: var(--gray); line-height: 1.6; }
/* hiw responsive handled in main breakpoints below */

/* ── PARTNERS CAROUSEL ── */
.partners-strip {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 36px 0 40px;
  overflow: hidden;
}
.partners-label {
  text-align: center;
  font-size: 12px;
  color: var(--gray-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 28px;
  padding: 0 48px;
}
.partners-carousel-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  cursor: grab;
  user-select: none;
}
.partners-carousel-wrapper:active { cursor: grabbing; }
.partners-carousel-wrapper::before,
.partners-carousel-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.partners-carousel-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}
.partners-carousel-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}
.partners-track {
  display: flex;
  align-items: stretch;
  gap: 16px;
  padding: 8px 48px;
  width: max-content;
  transform: translateX(0);
  transition: none;
  user-select: none;
}
.partner-card {
  flex-shrink: 0;
  width: 220px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.partner-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.13);
  transform: translateY(-3px);
}
.partner-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
  pointer-events: none;
  transition: transform 0.4s ease;
}
.partner-card:hover img { transform: scale(1.04); }
.partner-card-body {
  padding: 14px 16px 16px;
}
.partner-card-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.3px;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.partner-card-tag {
  font-size: 12px;
  color: var(--gray);
}
.partners-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
}
.partners-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gray-light);
  transition: background 0.3s, width 0.3s;
  cursor: pointer;
}
.partners-dot.active {
  background: var(--orange);
  width: 18px;
  border-radius: 3px;
}

/* ── CONTACT PAGE ── */
.contact-info-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: -48px 0 60px; position: relative; z-index: 1; }
.contact-info-card { background: white; border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); }
.contact-info-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--gray-light); margin-bottom: 6px; }
.contact-info-icon { width: 36px; height: 36px; border-radius: 50%; background: rgba(232,98,42,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.contact-info-icon svg { width: 16px; height: 16px; stroke: var(--orange); stroke-width: 2; fill: none; }
.contact-info-val { font-size: 14px; font-weight: 600; color: var(--dark); overflow-wrap: break-word; word-break: break-word; }
.contact-info-sub { font-size: 12px; color: var(--gray); overflow-wrap: break-word; word-break: break-word; }
.contact-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.form-title { font-family: var(--font-display); font-size: 28px; font-weight: 800; color: var(--dark); margin-bottom: 4px; }
.form-sub { font-size: 13px; color: var(--gray); margin-bottom: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1/-1; }
.form-label { font-size: 13px; font-weight: 600; color: var(--dark); }
.form-input, .form-select, .form-textarea {
  padding: 10px 14px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--border); font-family: var(--font-body);
  font-size: 14px; color: var(--dark); outline: none;
  transition: border-color 0.2s; background: white;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--orange); }
.form-textarea { resize: vertical; min-height: 120px; }
.char-count { font-size: 11px; color: var(--gray-light); text-align: right; }
.form-submit { width: 100%; padding: 14px; margin-top: 8px; }
.map-title { font-family: var(--font-display); font-size: 28px; font-weight: 800; color: var(--dark); margin-bottom: 4px; }
.map-sub { font-size: 13px; color: var(--gray); margin-bottom: 20px; }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1.5px solid var(--border); height: 400px; }
.map-embed iframe { width: 100%; height: 100%; border: none; }
.quick-cta {
  background: var(--bg); border-radius: var(--radius);
  padding: 28px 32px; display: flex; align-items: center; justify-content: space-between;
  border: 1.5px solid var(--border); margin-top: 40px; margin-bottom: 48px; flex-wrap: wrap; gap: 20px;
}
.quick-cta-left h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--dark); }
.quick-cta-left p { font-size: 13px; color: var(--gray); }
.quick-cta-btns { display: flex; gap: 10px; }

/* ── FOOTER ── */
footer { background: var(--bg); border-top: 1px solid var(--border); padding: 60px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-brand-name { font-family: var(--font-display); font-size: 26px; font-weight: 800; color: var(--dark); line-height: 1.1; margin-bottom: 12px; }
.footer-brand-text { font-size: 13px; color: var(--gray); line-height: 1.6; margin-bottom: 20px; }
.footer-col-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--dark); margin-bottom: 14px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 14px; color: var(--gray); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--orange); }
.footer-stay-label { font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 10px; }
.footer-email-wrap { display: flex; }
.footer-email { flex: 1; padding: 9px 14px; border: 1.5px solid var(--border); border-right: none; border-radius: var(--radius-sm) 0 0 var(--radius-sm); font-size: 13px; outline: none; background: white; }
.footer-email-btn { padding: 9px 18px; background: var(--dark); color: white; border: none; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-size: 13px; font-weight: 600; cursor: pointer; transition: background 0.2s; }
.footer-email-btn:hover { background: var(--orange); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 28px; border-top: 1px solid var(--border); }
.footer-copy { font-size: 13px; color: var(--gray); }
.footer-socials { display: flex; gap: 12px; }
.social-link { width: 32px; height: 32px; border-radius: 50%; background: rgba(0,0,0,0.06); display: flex; align-items: center; justify-content: center; text-decoration: none; transition: background 0.2s; }
.social-link:hover { background: var(--orange); }
.social-link:hover svg { stroke: white; }
.social-link svg { width: 14px; height: 14px; stroke: var(--gray); stroke-width: 2; fill: none; }

/* ── MOBILE NAV OVERLAY ── */
.mobile-nav {
  display: flex; position: fixed; inset: 0; z-index: 1001;
  background: white; flex-direction: column; align-items: center; justify-content: center; gap: 20px;
  opacity: 0; pointer-events: none; visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
}
.mobile-nav.open {
  opacity: 1; pointer-events: all; visibility: visible;
  transform: translateY(0);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0s;
}
.mobile-nav a { font-family: var(--font-display); font-size: 32px; font-weight: 700; color: var(--dark); text-decoration: none; transition: color 0.2s; }
.mobile-nav a:hover { color: var(--orange); }
.mobile-nav-close { position: absolute; top: 20px; right: 20px; background: none; border: none; cursor: pointer; font-size: 28px; color: var(--gray); }
.mobile-nav .btn-orange { margin-top: 8px; padding: 12px 40px; font-size: 15px; }

/* ══════════════════════════════════════════
   RESPONSIVE — 4 breakpoints
   1200px  Large Laptop
   1024px  Tablet / Small Laptop
    768px  Mobile
    480px  Small Mobile
══════════════════════════════════════════ */

/* ── Large Laptop (≤1200px) ── */
@media (max-width: 1200px) {
  .about-split { gap: 48px; }
  .adv-grid    { gap: 48px; }
  .coverage-split { gap: 48px; }
  .contact-split  { gap: 48px; }
  .hero-stat { padding: 22px 36px; }
  .stat-item { padding: 0 36px; }
}

/* ── Mid-Tablet Nav Compression (≤960px) ── */
@media (max-width: 960px) {
  .nav-top { padding: 0 20px; gap: 12px; }
  .nav-bottom { padding: 0 20px; }
  .nav-links a { padding: 0 9px; font-size: 12px; }
}

/* ── Tablet / Small Laptop (≤1024px) ── */
@media (max-width: 1024px) {
  section { padding: 64px 0; }

  .nav-links a { font-size: 12px; padding: 0 9px; }

  /* Hero h1 — scale down so long headlines don't clip at tablet widths */
  .hero h1 { font-size: clamp(44px, 5.5vw, 64px); }
  .hero-content { padding: 0 32px; }

  /* Grids */
  .cat-grid        { grid-template-columns: repeat(2, 1fr); }
  .shop-grid      { grid-template-columns: repeat(2, 1fr); }
  .services-grid   { grid-template-columns: repeat(2, 1fr); }
  .add-services-grid { grid-template-columns: repeat(2, 1fr); }
  .res-cat-grid    { grid-template-columns: repeat(3, 1fr); }
  .values-grid     { grid-template-columns: repeat(2, 1fr); }
  .mission-vision  { grid-template-columns: 1fr; }
  .footer-grid     { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-info-bar { grid-template-columns: repeat(2, 1fr); }
  .about-split, .adv-grid, .coverage-split, .contact-split { grid-template-columns: 1fr; gap: 40px; }

  /* How It Works */
  .hiw-steps { grid-template-columns: repeat(2, 1fr); }
  .hiw-steps::before { display: none; }
  .hiw-detail { grid-template-columns: 1fr; }

  /* Trust bar — shrink side margin on narrower viewports */
  .trust-bar { margin: 0 20px; }

  /* Shop controls — allow wrap */
  .shop-controls .container { flex-wrap: wrap; gap: 12px; }
  .search-wrap { flex: 0 0 220px; }

  /* Partners fade edges */
  .partners-carousel-wrapper::before,
  .partners-carousel-wrapper::after { width: 40px; }
  .partners-track { padding: 8px 20px; }
  .partners-label { padding: 0 24px; }
}

/* ── Mobile (≤768px) ── */
@media (max-width: 768px) {
  :root { --nav-h: calc(var(--topbar-h) + var(--nav-top-h)); }
  .container { padding: 0 20px; }
  nav { height: var(--nav-top-h); }
  .nav-top { padding: 0 20px; }
  .nav-bottom { display: none; }
  .nav-links, .nav-links + .btn-orange { display: none; }
  .mobile-menu-btn { display: block; }
  section { padding: 52px 0; }

  /* ─ CTA section ─ */
  .cta-section { padding: 64px 0; }

  /* ─ Hero ─ */
  .hero h1 { font-size: 46px; letter-spacing: -0.5px; }
  .hero-content { padding: 0 20px; max-width: 100%; }
  .hero-sub { font-size: 14px; }
  .hero-stats {
    background: var(--dark);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-stat {
    padding: 18px 16px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .hero-stat:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,0.1); }
  .hero-stat:nth-last-child(-n+2) { border-bottom: none; }

  /* ─ Stats bar ─ */
  .stats-bar { padding: 0; }
  .stats-bar .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
  .stat-item {
    padding: 20px 16px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .stat-item:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,0.1); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }

  /* ─ Grids ─ */
  .cat-grid          { grid-template-columns: repeat(2, 1fr); }
  .shop-grid        { grid-template-columns: repeat(2, 1fr); }
  .adv-cards         { grid-template-columns: 1fr; }
  .services-grid     { grid-template-columns: 1fr; }
  .add-services-grid { grid-template-columns: 1fr; }
  .cert-full         { grid-template-columns: 1fr; }
  .cert-items        { grid-template-columns: 1fr; }
  .values-grid       { grid-template-columns: repeat(2, 1fr); }
  .contact-info-bar  { grid-template-columns: repeat(2, 1fr); margin: -20px 0 36px; }
  .form-grid         { grid-template-columns: 1fr; }
  .res-cat-grid      { grid-template-columns: repeat(2, 1fr); }
  .guides-grid       { grid-template-columns: 1fr; }
  .footer-grid       { grid-template-columns: 1fr; gap: 24px; }
  .hiw-steps         { grid-template-columns: repeat(2, 1fr); }
  .hiw-detail        { grid-template-columns: 1fr; }

  /* ─ Trust bar ─ */
  .trust-bar { margin: 0; border-radius: 0; }
  .trust-bar .container { flex-direction: column; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .trust-item:last-child { border-bottom: none; }

  /* ─ Shop page controls ─ */
  .shop-controls .container { flex-wrap: wrap; gap: 10px; }
  .search-wrap  { flex: 1 1 100%; }
  .cat-pills    { order: 3; width: 100%; flex: 1 1 100%; flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; }
  .sort-wrap    { margin-left: 0; order: 2; flex-shrink: 0; }
  .filter-dropdown-wrap { flex: 1 1 auto; min-width: 0; order: 1; }
  .filter-dropdown-btn  { width: 100%; min-width: 0; justify-content: space-between; }
  #filterLabel { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

  /* ─ Dark CTA ─ */
  .dark-cta    { padding: 40px 24px; }
  .dark-cta h2 { font-size: 30px; }

  /* ─ Quick CTA ─ */
  .quick-cta { flex-direction: column; padding: 22px 20px; }
  .quick-cta-btns { flex-wrap: wrap; }

  /* ─ Page hero ─ */
  .page-hero { height: 210px; }

  /* ─ Map embed ─ */
  .map-embed { height: 280px; }

  /* ─ Equipment modal ─ */
  .eq-modal-overlay { padding: 10px; }
  .eq-modal { max-height: 94vh; overflow-x: hidden; }
  .eq-included-grid { grid-template-columns: 1fr; }

  /* ─ Footer ─ */
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }

  /* ─ Resources tabs ─ */
  .res-tabs { width: 100%; box-sizing: border-box; }
  .res-tab  { padding: 8px 16px; font-size: 13px; }

  /* ─ Partners ─ */
  .partners-label { padding: 0 16px; }
  .partners-carousel-wrapper::before,
  .partners-carousel-wrapper::after { width: 24px; }
  .partners-track { padding: 8px 12px; }
}

/* ── Small Mobile (≤480px) ── */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .nav-top { padding: 0 16px; }
  .nav-logo-text { font-size: 15px; }
  .nav-logo-tagline { display: none; }
  section { padding: 44px 0; }

  /* ─ CTA section ─ */
  .cta-section { padding: 48px 0; }
  .cta-sub { font-size: 14px; margin-bottom: 24px; }
  .cta-btns { flex-direction: column; align-items: center; }

  /* ─ Featured header ─ */
  .featured-header { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 24px; }

  /* ─ Equipment modal actions ─ */
  .eq-modal-actions { flex-direction: column; }
  .eq-modal-actions .btn-orange,
  .eq-modal-actions .btn-dark { flex: unset !important; width: 100% !important; justify-content: center; }

  /* ─ Hero ─ */
  .hero h1 { font-size: 36px; letter-spacing: -0.5px; }
  .hero-content { padding: 0 16px; }
  .hero-sub { font-size: 13px; margin: 12px auto 22px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-stat { padding: 14px 10px; }
  .hero-stat-num { font-size: 24px; }

  /* ─ About stats ─ */
  .about-stats { gap: 16px; }
  .about-stats > div { flex: 1 1 40%; min-width: 80px; }

  /* ─ Stats bar ─ */
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 16px 10px; }
  .stat-num  { font-size: 28px; }

  /* ─ Grids ─ */
  .shop-grid       { grid-template-columns: 1fr; }
  .values-grid      { grid-template-columns: 1fr; }
  .contact-info-bar { grid-template-columns: 1fr; margin: -12px 0 28px; }
  .res-cat-grid     { grid-template-columns: repeat(2, 1fr); }
  .hiw-steps        { grid-template-columns: 1fr; }
  .adv-grid, .about-split, .coverage-split, .contact-split { gap: 24px; }

  /* ─ Section titles ─ */
  .section-title { font-size: clamp(24px, 7vw, 36px); }

  /* ─ Buttons ─ */
  .btn-orange, .btn-dark, .btn-ghost { font-size: 13px; padding: 8px 16px; }

  /* ─ Dark CTA ─ */
  .dark-cta    { padding: 28px 16px; }
  .dark-cta h2 { font-size: 26px; }
  .dark-cta-btns { flex-direction: column; align-items: center; }

  /* ─ FAQ CTA ─ */
  .faq-light-cta { padding: 28px 16px; }

  /* ─ Cards & panels ─ */
  .cert-panel { padding: 20px 16px; }
  .cert-items { grid-template-columns: 1fr; }
  .mv-card { padding: 20px; }
  .hiw-detail-card { padding: 20px 16px; }
  .hiw-step { padding: 0 10px 28px; }

  /* ─ Partners ─ */
  .partner-card     { width: 168px; }
  .partner-card img { height: 118px; }

  /* ─ Shop controls ─ */
  .shop-controls .container { gap: 8px; }
  .filter-dropdown-wrap { flex: 1; }
  .filter-dropdown-btn { width: 100%; min-width: 0; font-size: 12px; justify-content: space-between; }
  .filter-dropdown-panel { max-height: 55vh; overflow-y: auto; -webkit-overflow-scrolling: touch; }
  .sort-select { font-size: 12px; }

  /* ─ Equipment modal ─ */
  .eq-gallery-main img { height: 180px; }

  /* ─ Contact ─ */
  .form-title, .map-title { font-size: 22px; }

  /* ─ Page hero ─ */
  .page-hero { height: 180px; }

  /* ─ Map embed ─ */
  .map-embed { height: 240px; }

  /* ─ Footer ─ */
  .footer-brand-name { font-size: 22px; }
  .footer-email-wrap { flex-direction: column; }
  .footer-email {
    border-right: 1.5px solid var(--border);
    border-bottom: none;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  }
  .footer-email-btn {
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    padding: 10px;
    text-align: center;
    width: 100%;
  }

  /* ─ Resources tabs ─ */
  .res-tabs { flex-wrap: wrap; }
  .res-tab  { flex: 1 1 auto; text-align: center; }

  /* ─ Trust bar ─ */
  .trust-bar { border-radius: 0; }

  /* ─ Quick CTA ─ */
  .quick-cta { padding: 20px 16px; gap: 16px; }
}
/* ── EQUIPMENT DETAIL MODAL ── */
.eq-modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}
.eq-modal-overlay.open { opacity: 1; pointer-events: all; }

.eq-modal {
  background: var(--white);
  border-radius: 16px;
  width: 100%; max-width: 980px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(24px) scale(0.98);
  transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 24px 80px rgba(0,0,0,0.25);
}
.eq-modal-overlay.open .eq-modal { transform: translateY(0) scale(1); }

.eq-modal-close {
  position: sticky; top: 16px; float: right; margin: 16px 16px 0 0;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid var(--border); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 10;
  transition: background 0.2s, border-color 0.2s;
}
.eq-modal-close:hover { background: var(--dark); border-color: var(--dark); }
.eq-modal-close:hover svg { stroke: white; }
.eq-modal-close svg { width: 16px; height: 16px; stroke: var(--dark); stroke-width: 2.5; fill: none; }

.eq-modal-body {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; clear: both;
}

/* Gallery */
.eq-modal-gallery { padding: 24px 20px 24px 24px; }
.eq-gallery-main {
  border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/3; margin-bottom: 12px;
  background: #fff;
}
.eq-gallery-main img {
  width: 100%; height: 100%; object-fit: contain;
  transition: opacity 0.2s;
}
.eq-gallery-thumbs { display: flex; gap: 8px; flex-wrap: wrap; }
.eq-thumb {
  width: 80px; height: 60px; border-radius: 8px; overflow: hidden;
  cursor: pointer; border: 2px solid transparent;
  transition: border-color 0.2s, opacity 0.2s;
  flex-shrink: 0; background: #fff;
}
.eq-thumb img { width: 100%; height: 100%; object-fit: contain; }
.eq-thumb:hover { opacity: 0.85; }
.eq-thumb.active { border-color: var(--orange); }

/* Info panel */
.eq-modal-info { padding: 24px 24px 24px 20px; border-left: 1px solid var(--border); }
.eq-modal-cat {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: var(--orange); margin-bottom: 6px;
}
.eq-modal-name {
  font-family: var(--font-display); font-size: 26px; font-weight: 800;
  color: var(--dark); line-height: 1.1; margin-bottom: 8px;
}
.eq-modal-desc { font-size: 13px; color: var(--gray); margin-bottom: 20px; line-height: 1.6; }

/* Specs */
.eq-specs-title {
  font-size: 13px; font-weight: 700; color: var(--dark);
  margin-bottom: 12px; padding-bottom: 8px;
  border-bottom: 1.5px solid var(--border);
}
.eq-specs-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 0; margin-bottom: 20px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  overflow: hidden;
}
.eq-spec-item {
  padding: 12px 14px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.eq-spec-item:nth-child(3n) { border-right: none; }
.eq-spec-item:nth-last-child(-n+3) { border-bottom: none; }
/* handle last row if not full */
.eq-spec-item:last-child { border-right: none; }
.eq-spec-label {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.8px; color: var(--gray-light); margin-bottom: 4px;
}
.eq-spec-val {
  font-family: var(--font-display); font-size: 16px;
  font-weight: 700; color: var(--dark);
}

/* Actions */
.eq-modal-actions { display: flex; gap: 10px; margin-bottom: 20px; }

/* Included */
.eq-included-title {
  font-size: 13px; font-weight: 700; color: var(--dark);
  margin-bottom: 12px; padding-bottom: 8px;
  border-bottom: 1.5px solid var(--border);
}
.eq-included-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 12px; }
.eq-included-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; color: var(--gray);
}
.eq-included-item svg {
  width: 14px; height: 14px; flex-shrink: 0;
  stroke: var(--orange); stroke-width: 2.5; fill: none;
}

/* Mobile modal */
@media (max-width: 720px) {
  .eq-modal-body { grid-template-columns: 1fr; }
  .eq-modal-gallery { padding: 16px; }
  .eq-modal-info { border-left: none; border-top: 1px solid var(--border); padding: 16px; }
  .eq-gallery-main img { height: 220px; }
  .eq-modal-name { font-size: 22px; }
  .eq-specs-grid { grid-template-columns: 1fr 1fr; }
  .eq-spec-item:nth-child(3n) { border-right: 1px solid var(--border); }
  .eq-spec-item:nth-child(2n) { border-right: none; }
}

/* ── QUOTE MODAL ── */
.quote-modal-overlay {
  position: fixed; inset: 0; z-index: 3000;
  background: rgba(0,0,0,0.60);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}
.quote-modal-overlay.open { opacity: 1; pointer-events: all; }

.quote-modal {
  background: var(--white);
  border-radius: 18px;
  width: 100%; max-width: 540px;
  max-height: 92vh; overflow-y: auto;
  padding: 36px 36px 32px;
  position: relative;
  transform: translateY(28px) scale(0.97);
  transition: transform 0.3s cubic-bezier(0.34,1.4,0.64,1);
  box-shadow: 0 28px 80px rgba(0,0,0,0.28);
}
.quote-modal-overlay.open .quote-modal { transform: translateY(0) scale(1); }

.quote-modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1.5px solid var(--border); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.quote-modal-close:hover { background: var(--dark); border-color: var(--dark); }
.quote-modal-close:hover svg { stroke: white; }
.quote-modal-close svg { width: 15px; height: 15px; stroke: var(--gray); stroke-width: 2.5; fill: none; }

.quote-modal-title {
  font-family: var(--font-display); font-size: 28px; font-weight: 800;
  color: var(--dark); margin-bottom: 4px;
}
.quote-modal-sub { font-size: 13px; color: var(--gray); margin-bottom: 24px; }

.quote-form-row { margin-bottom: 14px; }
.quote-form-row .form-group { margin-bottom: 0; }

@media (max-width: 560px) {
  .quote-modal { padding: 28px 20px 24px; }
  .quote-modal-title { font-size: 24px; }
  /* Override inline grid-template-columns: 1fr 1fr from footer.php form rows */
  .quote-form-row { grid-template-columns: 1fr !important; }
  .quote-modal form > div[style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
}

/* ══════════════════════════════════════════
   FILTER DROPDOWN
══════════════════════════════════════════ */
.filter-dropdown-wrap { position: relative; flex-shrink: 0; }

.filter-dropdown-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 14px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  background: var(--white);
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
  color: var(--dark); cursor: pointer;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  min-width: 160px;
}
.filter-dropdown-btn:hover,
.filter-dropdown-btn.open { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(232,98,42,0.1); }
.filter-dropdown-btn > svg:first-child { flex-shrink: 0; stroke: var(--gray); }
.filter-dropdown-btn.open > svg:first-child { stroke: var(--orange); }
#filterLabel { flex: 1; }
.filter-chevron { transition: transform 0.25s ease; stroke: var(--gray-light); flex-shrink: 0; }
.filter-dropdown-btn.open .filter-chevron { transform: rotate(180deg); }

.filter-dropdown-panel {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  padding: 8px;
  opacity: 0; pointer-events: none; transform: translateY(-8px) scale(0.97);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 200;
}
.filter-dropdown-panel.open { opacity: 1; pointer-events: all; transform: translateY(0) scale(1); }

.filter-panel-section { padding: 4px 0; }
.filter-panel-label {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: var(--gray-light);
  padding: 4px 10px 6px;
}
.filter-panel-divider { height: 1px; background: var(--border); margin: 4px 0; }

.filter-option {
  display: flex; align-items: center; gap: 10px;
  width: 100%; padding: 8px 10px;
  border: none; background: none;
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
  color: var(--dark); text-align: left; text-decoration: none;
  cursor: pointer; border-radius: 8px;
  transition: background 0.15s;
}
.filter-option:hover { background: var(--bg); }
.filter-option.active { color: var(--orange); font-weight: 600; }

.filter-option-check {
  width: 18px; height: 18px; flex-shrink: 0;
  border: 1.5px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.filter-option-check svg { opacity: 0; stroke: var(--orange); transition: opacity 0.15s; }
.filter-option.active .filter-option-check { border-color: var(--orange); background: rgba(232,98,42,0.08); }
.filter-option.active .filter-option-check svg { opacity: 1; }

/* ── Brand mega-menu (grouped by category) ─────────────────────────── */
.filter-dropdown-panel--mega {
  min-width: 1200px;
  max-width: min(1700px, calc(100vw - 40px));
  max-height: 80vh;
  overflow-y: auto;
  left: 50%;
  transform: translateX(-50%) translateY(-8px) scale(0.97);
}
.filter-dropdown-panel--mega.open {
  transform: translateX(-50%) translateY(0) scale(1);
}
.filter-panel-section--brands { padding-bottom: 6px; }
.filter-brand-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 4px 32px;
  margin-top: 6px;
}
.filter-brand-col { padding: 0 0 14px; }
.filter-brand-col-title {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.6px; color: var(--dark);
  padding: 6px 10px 8px; margin-bottom: 2px;
  border-bottom: 1px solid var(--border);
}
.filter-option--brand { padding: 6px 10px; font-size: 12.5px; }

/* ── Category multi-column layout ──────────────────────────────────── */
.filter-category-columns {
  column-gap: 32px;
  margin-top: 4px;
}
.filter-category-columns .filter-option { break-inside: avoid; }
.filter-browse-all {
  display: inline-block; margin-top: 4px; padding: 6px 10px;
  font-family: var(--font-body); font-size: 12.5px; font-weight: 600;
  color: var(--gray); text-decoration: none; border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.filter-browse-all:hover { background: var(--bg); color: var(--orange); }

@media (max-width: 1239px) {
  .filter-dropdown-panel--mega {
    min-width: 0;
    width: calc(100vw - 32px);
    max-width: 1100px;
  }
}
@media (max-width: 1024px) {
  .filter-dropdown-panel,
  .filter-dropdown-panel--mega {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 80px; /* fallback; JS sets the real value on open/resize */
    width: auto;
    min-width: 0;
    max-width: none;
    transform: none !important;
    z-index: 1100;
  }
  .filter-category-columns { column-count: 2 !important; }
  .filter-brand-columns { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .filter-dropdown-panel--mega { width: calc(100vw - 24px); max-width: none; }
  .filter-brand-columns { grid-template-columns: 1fr 1fr; }
  .filter-category-columns { column-count: 1 !important; }
}
@media (max-width: 480px) {
  .filter-brand-columns { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   PRODUCT CARD ENHANCEMENTS
══════════════════════════════════════════ */
.product-card-brand {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: var(--gray-light); margin-bottom: 3px;
}
.product-card-tags { display: flex; flex-wrap: wrap; gap: 5px; margin: 8px 0 10px; }
.product-tag {
  font-size: 11px; font-weight: 600;
  background: #f0f0ee; color: #4b5563;
  border-radius: 50px; padding: 3px 9px;
}

/* ══════════════════════════════════════════
   MODAL ENHANCEMENTS
══════════════════════════════════════════ */
.eq-modal-top-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.eq-modal-brand-badge {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.8px; color: var(--gray);
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 50px; padding: 3px 10px;
}
.eq-modal-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.eq-modal-tag {
  font-size: 11px; font-weight: 600;
  background: #f0f0ee; color: #374151;
  border-radius: 50px; padding: 4px 10px;
  transition: background 0.2s;
}
.eq-modal-tag:hover { background: rgba(232,98,42,0.08); color: var(--orange); }

.eq-rental-note svg { stroke: var(--orange); flex-shrink: 0; }
/* ══════════════════════════════════════════
   ECOMMERCE — NAV CART ICON
   ══════════════════════════════════════════ */
.nav-cart-link {
  position: relative; display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  color: var(--dark); text-decoration: none;
  transition: background 0.2s, color 0.2s;
  margin-left: 8px;
}
.nav-cart-link:hover { background: rgba(232,98,42,0.08); color: var(--orange); }
.nav-cart-count {
  position: absolute; top: 2px; right: 2px;
  background: var(--orange); color: white;
  font-size: 10px; font-weight: 700; line-height: 1;
  min-width: 16px; height: 16px; border-radius: 50px;
  display: none; align-items: center; justify-content: center;
  padding: 0 4px;
}
.mobile-nav a[href*="cart"] { display: flex; align-items: center; gap: 8px; }

/* ══════════════════════════════════════════
   PRODUCT GRID / CARDS (Shop page)
   ══════════════════════════════════════════ */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product-card {
  background: white; border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.product-card-img { position: relative; display: block; }
.product-card-img img { width: 100%; height: 200px; object-fit: contain; display: block; background: #fff; }
.product-badge-cat {
  position: absolute; top: 10px; left: 10px;
  background: var(--orange); color: white;
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
  padding: 3px 10px; border-radius: 50px;
}
.product-badge-stock-stack {
  position: absolute; top: 10px; right: 10px;
  display: flex; flex-direction: column; align-items: flex-end; gap: 6px;
}
.product-badge-stock {
  font-size: 10px; font-weight: 700;
  padding: 3px 10px; border-radius: 50px; color: white;
}
.product-badge-stock.in_stock { background: #16a34a; }
.product-badge-stock.preorder { background: #ca8a04; }
.product-badge-stock.out_of_stock { background: #dc2626; }
.product-badge-local {
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
  padding: 3px 10px; border-radius: 50px; color: white;
  background: #2563eb;
}
.product-badge-featured {
  position: absolute; top: 10px; left: 10px;
  background: #d97706; color: white;
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
  padding: 3px 10px; border-radius: 50px;
}
.product-badge-sale {
  position: absolute; bottom: 10px; left: 10px;
  background: var(--dark); color: white;
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
  padding: 3px 10px; border-radius: 50px;
}
.product-card-body { padding: 16px; display: flex; flex-direction: column; flex: 1; }
.product-card-brand {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: var(--gray-light); margin-bottom: 3px;
}
.product-card-name {
  font-family: var(--font-display); font-size: 19px; font-weight: 700;
  color: var(--dark); margin-bottom: 6px; text-decoration: none; display: block;
}
.product-card-name:hover { color: var(--orange); }
.product-card-desc { font-size: 12px; color: var(--gray); line-height: 1.5; margin-bottom: 12px; flex: 1; }
.product-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; }
.product-price { font-family: var(--font-display); font-size: 18px; font-weight: 800; color: var(--dark); }
.product-price .price-old {
  font-family: var(--font-body); font-size: 12px; font-weight: 500; color: var(--gray-light);
  text-decoration: line-through; margin-right: 6px;
}
.product-price.on-sale { color: var(--orange); }
.product-card-cart-btn {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: var(--orange); border: none; cursor: pointer; color: white;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.15s;
}
.product-card-cart-btn:hover { background: var(--orange-dark); transform: scale(1.06); }
.product-card-cart-btn.added { background: #16a34a; }
.product-card-cart-btn:disabled { background: var(--gray-light); cursor: not-allowed; }
.product-card-cart-btn svg { width: 16px; height: 16px; }

/* ── Shop controls (search / category filter / sort) ── */
.shop-controls { background: var(--bg); padding: 24px 0; border-bottom: 1px solid var(--border); position: sticky; top: var(--nav-h); z-index: 100; overflow-x: clip; }
.shop-controls .container { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

/* ── Category cards (homepage / shop landing) ── */
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.category-card {
  position: relative; display: block; border-radius: var(--radius);
  overflow: hidden; height: 180px; text-decoration: none;
  box-shadow: var(--shadow); transition: transform 0.25s, box-shadow 0.25s;
}
.category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.category-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
.category-card:hover img { transform: scale(1.06); }
.category-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.05) 60%);
}
.category-card-label {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 16px; color: white;
}
.category-card-label .cat-name { font-family: var(--font-display); font-size: 20px; font-weight: 800; }
.category-card-label .cat-sub { font-size: 12px; opacity: 0.8; }

/* ══════════════════════════════════════════
   PRODUCT DETAIL PAGE
   ══════════════════════════════════════════ */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: flex-start; }
.product-gallery-main {
  border-radius: var(--radius); overflow: hidden; background: #fff;
  height: 440px; margin-bottom: 12px;
}
.product-gallery-main img { width: 100%; height: 100%; object-fit: contain; display: block; }
.product-gallery-thumbs { display: flex; gap: 10px; flex-wrap: wrap; }
.product-thumb { width: 72px; height: 72px; border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; border: 2px solid transparent; opacity: 0.65; transition: all 0.2s; background: #fff; }
.product-thumb img { width: 100%; height: 100%; object-fit: contain; display: block; }
.product-thumb.active, .product-thumb:hover { opacity: 1; border-color: var(--orange); }

.product-info-cat { font-size: 11px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px; }
.product-info-name { font-family: var(--font-display); font-size: 38px; font-weight: 800; color: var(--dark); line-height: 1.1; margin-bottom: 10px; }
.product-info-brand { font-size: 13px; color: var(--gray); margin-bottom: 16px; }
.product-info-brand b { color: var(--dark); }
.product-info-price { font-family: var(--font-display); font-size: 32px; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.product-info-price .price-old { font-family: var(--font-body); font-size: 16px; font-weight: 500; color: var(--gray-light); text-decoration: line-through; margin-right: 10px; }
.product-info-price.on-sale { color: var(--orange); }
.product-info-stock { font-size: 13px; font-weight: 600; margin-bottom: 20px; display: inline-flex; align-items: center; gap: 6px; padding: 4px 12px; border-radius: 50px; }
.product-info-stock.in_stock { background: rgba(22,163,74,0.1); color: #16a34a; }
.product-info-stock.preorder { background: rgba(202,138,4,0.1); color: #ca8a04; }
.product-info-stock.out_of_stock { background: rgba(220,38,38,0.1); color: #dc2626; }
.product-info-stock.local { background: rgba(37,99,235,0.1); color: #2563eb; }
.product-info-desc { font-size: 14px; color: var(--gray); line-height: 1.8; margin-bottom: 24px; }
.product-info-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 24px; }

.product-actions { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; flex-wrap: wrap; }
.qty-selector { display: flex; align-items: center; border: 1.5px solid var(--border); border-radius: 50px; overflow: hidden; }
.qty-selector button { width: 38px; height: 44px; border: none; background: white; cursor: pointer; font-size: 18px; color: var(--dark); transition: background 0.2s; }
.qty-selector button:hover { background: var(--bg); }
.qty-selector input { width: 48px; height: 44px; border: none; text-align: center; font-family: var(--font-body); font-size: 15px; font-weight: 600; color: var(--dark); -moz-appearance: textfield; }
.qty-selector input::-webkit-outer-spin-button, .qty-selector input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.product-actions .add-to-cart-btn { padding: 14px 28px; font-size: 15px; }
.product-actions .add-to-cart-btn.added { background: #16a34a; }

.product-specs-title, .product-included-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--dark); margin: 28px 0 14px; padding-top: 20px; border-top: 1px solid var(--border); }
.product-specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; }
.product-spec-item { display: flex; justify-content: space-between; font-size: 13px; padding: 8px 0; border-bottom: 1px dashed var(--border); }
.product-spec-label { color: var(--gray); }
.product-spec-val { color: var(--dark); font-weight: 600; text-align: right; }

/* ══════════════════════════════════════════
   CART PAGE
   ══════════════════════════════════════════ */
.cart-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: flex-start; }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { text-align: left; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--gray-light); padding: 0 0 14px; border-bottom: 1px solid var(--border); }
.cart-table td { padding: 18px 0; border-bottom: 1px solid var(--border); vertical-align: middle; }
.cart-item-info { display: flex; align-items: center; gap: 14px; }
.cart-item-info img { width: 70px; height: 70px; object-fit: contain; border-radius: var(--radius-sm); background: #fff; flex-shrink: 0; }
.cart-item-name { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--dark); text-decoration: none; }
.cart-item-name:hover { color: var(--orange); }
.cart-item-price { font-size: 13px; color: var(--gray); margin-top: 2px; }
.cart-qty-controls { display: flex; align-items: center; border: 1.5px solid var(--border); border-radius: 50px; overflow: hidden; width: fit-content; }
.cart-qty-controls button { width: 30px; height: 34px; border: none; background: white; cursor: pointer; font-size: 16px; color: var(--dark); }
.cart-qty-controls button:hover { background: var(--bg); }
.cart-qty-controls input { width: 40px; height: 34px; border: none; text-align: center; font-size: 14px; font-weight: 600; }
.cart-item-total { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--dark); }
.cart-item-remove { background: none; border: none; cursor: pointer; color: var(--gray-light); transition: color 0.2s; padding: 6px; }
.cart-item-remove:hover { color: #dc2626; }
.cart-empty { text-align: center; padding: 60px 20px; }
.cart-empty svg { width: 64px; height: 64px; stroke: var(--gray-light); stroke-width: 1.2; fill: none; margin-bottom: 16px; }
.cart-empty p { color: var(--gray); margin-bottom: 20px; }

.cart-summary { background: var(--bg); border-radius: var(--radius); padding: 28px; position: sticky; top: calc(var(--nav-h) + 20px); }
.cart-summary h3 { font-family: var(--font-display); font-size: 20px; font-weight: 800; margin-bottom: 18px; }
.cart-summary-row { display: flex; justify-content: space-between; font-size: 14px; color: var(--gray); padding: 8px 0; }
.cart-summary-row.total { font-size: 18px; font-weight: 800; color: var(--dark); border-top: 1px solid var(--border); margin-top: 8px; padding-top: 14px; }
.cart-summary .btn-orange { width: 100%; justify-content: center; padding: 14px; font-size: 15px; margin-top: 16px; }
.cart-summary-note { font-size: 12px; color: var(--gray-light); margin-top: 14px; line-height: 1.6; }

/* ══════════════════════════════════════════
   CHECKOUT PAGE
   ══════════════════════════════════════════ */
.checkout-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: flex-start; }
.checkout-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.checkout-summary-item { display: flex; justify-content: space-between; align-items: center; gap: 10px; font-size: 13px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.checkout-summary-item .ci-name { color: var(--dark); font-weight: 600; }
.checkout-summary-item .ci-qty { color: var(--gray-light); }
.checkout-summary-item .ci-total { color: var(--dark); font-weight: 700; white-space: nowrap; }

/* ══════════════════════════════════════════
   ORDER SUCCESS PAGE
   ══════════════════════════════════════════ */
.order-success { text-align: center; padding: 100px 20px; max-width: 560px; margin: 0 auto; }
.order-success .success-icon {
  width: 80px; height: 80px; border-radius: 50%; background: rgba(22,163,74,0.1);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 24px;
}
.order-success .success-icon svg { width: 40px; height: 40px; stroke: #16a34a; stroke-width: 2.5; fill: none; }
.order-success h1 { font-family: var(--font-display); font-size: 34px; font-weight: 800; margin-bottom: 12px; }
.order-success p { color: var(--gray); margin-bottom: 8px; line-height: 1.7; }
.order-success .order-number { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--orange); margin: 16px 0 24px; }

/* ══════════════════════════════════════════
   ECOMMERCE — RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .product-grid, .category-grid { grid-template-columns: repeat(2, 1fr); }
  .product-detail, .cart-layout, .checkout-layout { grid-template-columns: 1fr; gap: 32px; }
  .product-gallery-main { height: 340px; }
}
@media (max-width: 640px) {
  .product-grid, .category-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .product-card-img img { height: 140px; }
  .product-info-name { font-size: 28px; }
  .product-specs-grid { grid-template-columns: 1fr; }
  .checkout-form .form-row { grid-template-columns: 1fr; }
  .cart-table thead { display: none; }
  .cart-table tr { display: flex; flex-direction: column; padding: 14px 0; }
  .cart-table td { border: none; padding: 4px 0; }
  .cart-item-info { margin-bottom: 10px; }
}

/* Equip card price on sale (homepage featured carousel) */
.equip-price.on-sale { color: var(--orange); font-weight: 700; }
.equip-price .price-old { font-size: 11px; color: var(--gray-light); text-decoration: line-through; margin-right: 4px; }