/* ===== JRW Supply — palette derived from jrwsupply.com ===== */
/* Brand yellow: #FFEA7C · Taupe: #B9B3A3 · Sage: #96B1AD · Cream: #F6F3F0 · Text: #1D1D1B */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #1D1D1B;
  background: #F6F3F0;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

:root {
  --bg: #fafafa;
  --bg-card: #ffffff;
  --bg-warm: #f4f4f4;
  --bg-dark: #0a0a0a;
  --bg-dark-2: #1a1a1a;

  --text: #0a0a0a;
  --text-dim: #4a4a4a;
  --text-mute: #8a8a8a;
  --text-on-dark: #fafafa;

  --border: #e5e5e5;
  --border-dark: rgba(255,255,255,0.12);

  --brand: #8B1A1A;
  --brand-deep: #6B0F0F;
  --brand-soft: #F5E5E5;
  --brand-hover: #A02020;

  --taupe: #B9B3A3;
  --taupe-soft: #D9D4C7;

  --sage: #96B1AD;
  --sage-soft: #BFD0CD;

  --success: #15803d;
  --danger: #c5523a;

  --radius: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 12px rgba(29,29,27,0.06);
  --shadow: 0 12px 40px rgba(29,29,27,0.08);
  --shadow-lg: 0 24px 60px rgba(29,29,27,0.12);

  --max: 1240px;
  --font-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text);
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.6rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 3.8vw, 3rem); font-weight: 400; }
h3 { font-size: 1.4rem; font-weight: 500; }
h4 { font-size: 1.1rem; font-weight: 600; font-family: 'Inter', sans-serif; }
p { color: var(--text-dim); }
.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  color: var(--text-mute);
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.eyebrow::before { content: '— '; }

/* ===== Layout ===== */
.container { max-width: var(--max); margin: 0 auto; padding: 0 1.75rem; }
section { padding: 7rem 0; position: relative; }
.section-header { max-width: 720px; margin: 0 auto 4.5rem; }
.section-header.center { text-align: center; }
.section-header p { font-size: 1.15rem; margin-top: 1.25rem; line-height: 1.6; }

/* ===== Nav ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.1rem 0;
  background: rgba(246,243,240,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
.nav.scrolled {
  background: rgba(246,243,240,0.97);
  border-bottom-color: var(--border);
  padding: 0.75rem 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo {
  display: flex; align-items: center; gap: 0.7rem;
  color: var(--text);
}
.logo-img {
  height: 96px; width: auto;
  mix-blend-mode: multiply;
  display: block;
  transition: height 0.3s ease;
}
.nav.scrolled .logo-img { height: 76px; }
.logo-card {
  background: #fff;
  padding: 8px 14px;
  border-radius: 10px;
  display: inline-flex; align-items: center;
}
.logo-card .logo-img { mix-blend-mode: normal; height: 40px; }
.nav-links { display: flex; gap: 2.5rem; align-items: center; list-style: none; }
.nav-links a { font-size: 0.94rem; color: var(--text-dim); font-weight: 500; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 1rem; }
.cart-btn {
  position: relative; display: flex; align-items: center; gap: 0.45rem;
  padding: 0.55rem 0.95rem; border-radius: 999px;
  background: var(--bg-warm); color: var(--text);
  font-size: 0.9rem; font-weight: 500; transition: all 0.2s;
  border: 1px solid var(--border);
}
.cart-btn:hover { background: var(--brand-soft); border-color: var(--brand); }
.cart-count {
  background: var(--brand); color: #fff; font-weight: 700;
  font-size: 0.72rem; padding: 2px 7px; border-radius: 999px; min-width: 20px; text-align: center;
}
.mobile-toggle { display: none; width: 32px; height: 32px; flex-direction: column; justify-content: center; gap: 5px; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--text); transition: 0.3s; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.95rem 1.7rem; border-radius: 999px;
  font-weight: 600; font-size: 0.92rem;
  letter-spacing: 0.01em;
  transition: all 0.25s ease;
  cursor: pointer; border: 1px solid transparent;
  font-family: 'Inter', sans-serif;
}
.btn-primary {
  background: var(--bg-dark);
  color: var(--bg);
}
.btn-primary:hover { background: var(--text); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-brand {
  background: var(--brand);
  color: #fff;
}
.btn-brand:hover { background: var(--brand-hover); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(139,26,26,0.35); }
.btn-ghost {
  background: transparent; color: var(--text);
  border-color: var(--text);
}
.btn-ghost:hover { background: var(--text); color: var(--bg); }
.btn-outline {
  background: var(--bg-card); color: var(--text);
  border-color: var(--border);
}
.btn-outline:hover { border-color: var(--text); }
.btn-arrow::after { content: '→'; transition: transform 0.2s; }
.btn-arrow:hover::after { transform: translateX(4px); }

/* ===== Hero ===== */
.hero {
  min-height: 92vh; display: flex; align-items: center;
  padding: 9rem 0 5rem; position: relative; overflow: hidden;
  background: var(--bg);
}
.hero::before {
  content: ''; position: absolute; top: -10%; right: -10%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, var(--brand-soft) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -25%; left: -10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(10,10,10,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { max-width: 920px; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.55rem 1.05rem; border-radius: 999px;
  background: var(--bg-card); border: 1px solid var(--border);
  font-size: 0.85rem; color: var(--text-dim); font-weight: 500;
  margin-bottom: 2.2rem;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 12px rgba(139,26,26,0.5); }
.hero h1 { margin-bottom: 1.8rem; }
.hero h1 em { font-style: italic; color: var(--text-dim); font-weight: 400; }
.hero h1 .yellow {
  color: var(--brand);
  position: relative;
  display: inline-block;
}
.hero h1 .yellow::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0.08em;
  height: 4px; background: var(--brand); opacity: 0.25;
  border-radius: 2px;
}
.hero-sub {
  font-size: 1.25rem; max-width: 640px; margin-bottom: 2.8rem;
  color: var(--text-dim); line-height: 1.6;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 3.5rem; margin-top: 5rem; flex-wrap: wrap;
  padding-top: 3rem; border-top: 1px solid var(--border);
}
.stat .num { font-family: var(--font-display); font-size: 2.6rem; font-weight: 400; color: var(--text); letter-spacing: -0.02em; line-height: 1; }
.stat .label { color: var(--text-mute); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.12em; margin-top: 0.4rem; }

/* ===== Solutions / Services ===== */
.solutions { background: var(--bg-card); }
.solutions-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.solution-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.3rem;
  transition: all 0.35s ease;
  position: relative;
  border: 1px solid transparent;
}
.solution-card:hover { background: var(--bg-card); border-color: var(--border); box-shadow: var(--shadow); transform: translateY(-3px); }
.solution-num {
  font-family: var(--font-display); font-size: 1rem;
  color: var(--text-mute); margin-bottom: 1.5rem;
  display: block;
}
.solution-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--brand); display: grid; place-items: center;
  color: #fff; margin-bottom: 1.8rem;
}
.solution-icon svg { width: 28px; height: 28px; }
.solution-card h3 { margin-bottom: 1rem; font-family: var(--font-display); font-weight: 500; font-size: 1.6rem; }
.solution-card p { font-size: 0.98rem; line-height: 1.65; }
.solution-list { list-style: none; margin-top: 1.2rem; }
.solution-list li {
  padding: 0.5rem 0; padding-left: 1.4rem; position: relative;
  font-size: 0.93rem; color: var(--text-dim);
}
.solution-list li::before {
  content: ''; position: absolute; left: 0; top: 1rem;
  width: 6px; height: 6px; border-radius: 50%; background: var(--brand-deep);
}

/* ===== Sectors ===== */
.sectors { background: var(--bg); }
.sectors-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.2rem;
}
.sector {
  padding: 2.5rem 1.5rem; text-align: center;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); transition: all 0.3s;
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
}
.sector:hover { border-color: var(--brand); background: var(--brand-soft); transform: translateY(-3px); }
.sector:hover .sector-icon { color: var(--brand); }
.sector-icon {
  width: 44px; height: 44px; display: grid; place-items: center;
  color: var(--text);
}
.sector-icon svg { width: 30px; height: 30px; }
.sector h4 { color: var(--text); font-size: 0.98rem; font-weight: 600; }

/* ===== Clients band ===== */
.clients-band { background: var(--bg-dark); padding: 4rem 0; color: var(--text-on-dark); }
.clients-band .eyebrow { color: var(--brand); }
.clients-band .eyebrow::before { content: '— '; color: var(--brand); }
.clients-band h2 { color: var(--text-on-dark); margin-bottom: 2.5rem; }
.clients-list {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem; margin-top: 2rem; list-style: none;
}
.clients-list li {
  padding: 1.2rem 1.4rem;
  border-left: 2px solid var(--brand);
  font-size: 1.02rem; color: var(--text-on-dark);
  background: rgba(255,255,255,0.03);
}

/* ===== Brands we carry — scrolling logo marquee ===== */
.brands-band { background: #fff; padding: 4.5rem 0; overflow: hidden; }
.brands-marquee {
  margin-top: 2.8rem;
  overflow: hidden;
  /* Fade logos in/out at the edges */
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.brands-track {
  display: flex; width: max-content;
  animation: brands-scroll 38s linear infinite;
}
.brands-track:hover { animation-play-state: paused; }
/* Track holds two identical sets; sliding one full set's width (-50%) then
   looping reads as an endless leftward scroll. */
@keyframes brands-scroll { to { transform: translateX(-50%); } }
.brands-set {
  display: flex; align-items: center; gap: 4.5rem;
  padding: 0 2.25rem; margin: 0; list-style: none;
}
.brands-set li { display: grid; place-items: center; }
.brands-set img {
  height: 42px; width: auto; max-width: 200px; object-fit: contain;
  filter: grayscale(1) opacity(0.7);
  mix-blend-mode: multiply; /* white logo backgrounds vanish into the band */
  transition: filter 0.25s ease;
}
.brands-set li:hover img { filter: none; }
/* Text fallback for brands without a usable logo file */
.brand-mark {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 600;
  color: rgba(0,0,0,0.45); letter-spacing: 0.02em; white-space: nowrap;
}
@media (prefers-reduced-motion: reduce) {
  .brands-track { animation: none; width: auto; flex-wrap: wrap; justify-content: center; }
  .brands-set + .brands-set { display: none; }
}

/* ===== eBay clearance ===== */
.ebay-band { background: #fff; padding: 5rem 0; }
.ebay-sub { max-width: 640px; margin: 1rem auto 0; color: var(--text-dim); }
.ebay-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem; margin-top: 2.5rem;
}
.ebay-card {
  border: 1px solid rgba(0,0,0,0.08); border-radius: 14px; overflow: hidden;
  background: #fff; display: flex; flex-direction: column;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.ebay-card:hover { box-shadow: 0 12px 32px rgba(0,0,0,0.10); transform: translateY(-2px); }
.ebay-card-image {
  position: relative; aspect-ratio: 4 / 3; background: var(--bg-warm);
  display: grid; place-items: center; overflow: hidden;
}
.ebay-card-image img { width: 100%; height: 100%; object-fit: cover; }
.ebay-flag {
  position: absolute; top: 0.9rem; left: 0.9rem; z-index: 1;
  background: var(--brand); color: #fff; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.35rem 0.7rem; border-radius: 999px;
}
.ebay-card-info { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.ebay-card-info h3 { font-size: 1.05rem; }
.ebay-note { font-size: 0.86rem; color: var(--text-dim); }
.ebay-card-footer {
  margin-top: auto; padding-top: 0.9rem;
  display: flex; align-items: center; justify-content: space-between; gap: 0.8rem;
}
.ebay-price { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--brand-deep); }
.ebay-buy-pending { font-size: 0.85rem; color: var(--text-mute); }

/* ===== Pillars / How we work ===== */
.process { background: var(--bg-warm); }
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2rem; }
.step { padding: 0; }
.step-num {
  font-family: var(--font-display); font-size: 3rem;
  color: var(--brand-deep); margin-bottom: 0.5rem; line-height: 1;
  font-weight: 400;
}
.step h3 { margin-bottom: 0.8rem; font-family: var(--font-display); font-weight: 500; }
.step p { font-size: 0.96rem; line-height: 1.6; }

/* ===== Quote band CTA ===== */
.quote-band {
  background: var(--brand); color: #fff;
  padding: 6rem 0; position: relative; overflow: hidden;
}
.quote-band::before {
  content: '"'; position: absolute; top: -2rem; left: 2rem;
  font-family: var(--font-display); font-size: 18rem; line-height: 1;
  color: rgba(255,255,255,0.1); pointer-events: none;
}
.quote-band-inner { max-width: 820px; margin: 0 auto; text-align: center; position: relative; }
.quote-band blockquote {
  font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400; line-height: 1.3; font-style: italic;
  margin-bottom: 2rem; color: #fff;
}
.quote-band cite { font-style: normal; font-size: 0.92rem; color: rgba(255,255,255,0.75); }

/* ===== CTA block ===== */
.cta-block {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  border-radius: var(--radius-lg);
  padding: 5rem 3rem;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-block::before {
  content: ''; position: absolute; top: 0; right: 0; width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(139,26,26,0.35), transparent 70%);
  pointer-events: none;
}
.cta-block .eyebrow { color: var(--brand); }
.cta-block .eyebrow::before { content: '— '; color: var(--brand); }
.cta-block h2 { color: var(--text-on-dark); margin-bottom: 1.2rem; }
.cta-block p { color: rgba(246,243,240,0.7); font-size: 1.1rem; margin-bottom: 2.5rem; max-width: 580px; margin-left: auto; margin-right: auto; }
.cta-block .btn-primary { background: var(--brand); color: #fff; }
.cta-block .btn-primary:hover { background: var(--brand-hover); }
.cta-block .btn-ghost { color: var(--text-on-dark); border-color: rgba(246,243,240,0.4); }
.cta-block .btn-ghost:hover { background: var(--bg); color: var(--text); border-color: var(--bg); }

/* ===== Footer ===== */
footer { background: var(--bg-dark); color: var(--text-on-dark); padding: 5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-col h5 { color: var(--brand); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 1.3rem; font-weight: 600; font-family: 'Inter', sans-serif; }
.footer-col a, .footer-col p { color: rgba(246,243,240,0.65); font-size: 0.92rem; display: block; padding: 0.32rem 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--brand); }
.footer-about .logo { color: var(--text-on-dark); margin-bottom: 1rem; }
.footer-about p { padding: 0; margin-top: 0; max-width: 340px; line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.8rem; display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  color: rgba(246,243,240,0.45); font-size: 0.82rem;
}

/* ===== Shop ===== */
.shop-hero { padding: 9rem 0 3.5rem; background: var(--bg-card); border-bottom: 1px solid var(--border); }
.shop-hero h1 { font-size: clamp(2.4rem, 4.5vw, 3.6rem); margin-bottom: 1.2rem; }
.shop-hero p { max-width: 640px; font-size: 1.1rem; }

.shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: 3rem; padding: 3.5rem 0 6rem; }
.shop-sidebar { position: sticky; top: 110px; align-self: start; }
.filter-group { margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.filter-group:last-child { border-bottom: 0; }
.filter-group h4 {
  font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.16em; color: var(--text-mute);
  margin-bottom: 1rem; font-weight: 700;
}
.filter-list { list-style: none; }
.filter-list li { margin-bottom: 0.3rem; }
.filter-btn {
  width: 100%; text-align: left; padding: 0.5rem 0.85rem;
  border-radius: 8px; color: var(--text-dim); font-size: 0.93rem;
  transition: all 0.2s; display: flex; justify-content: space-between; align-items: center;
}
.filter-btn:hover { background: var(--bg-warm); color: var(--text); }
.filter-btn.active { background: var(--text); color: var(--bg); font-weight: 600; }
.filter-btn .count { color: var(--text-mute); font-size: 0.8rem; }
.filter-btn.active .count { color: var(--brand); }
.search-input {
  width: 100%; padding: 0.8rem 1rem; border-radius: 10px;
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text); font-size: 0.95rem; font-family: inherit;
  transition: border-color 0.2s;
}
.search-input:focus { outline: none; border-color: var(--text); }
.search-input::placeholder { color: var(--text-mute); }

.shop-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2.2rem; flex-wrap: wrap; gap: 1rem; }
.results-count { color: var(--text-dim); font-size: 0.95rem; }
.sort-select {
  padding: 0.65rem 1rem; border-radius: 10px;
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text); font-family: inherit; font-size: 0.92rem;
}

.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 1.75rem; }
.product-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all 0.35s ease; display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-4px); border-color: var(--text); box-shadow: var(--shadow); }
.product-image {
  aspect-ratio: 4/3; background: var(--bg-warm);
  display: grid; place-items: center; position: relative; overflow: hidden;
}
.product-image svg { width: 55%; height: 55%; }
/* Real product photos come off manufacturer sheets on white — contain them so
   nothing gets cropped, and sit them above the radial wash. */
.product-photo {
  position: relative; z-index: 1;
  width: 100%; height: 100%;
  object-fit: contain; padding: 0.9rem;
  mix-blend-mode: multiply;
}
.product-image::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 60%, rgba(139,26,26,0.08), transparent 65%);
  pointer-events: none;
}
.product-badge {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  padding: 0.3rem 0.7rem; border-radius: 999px;
  background: var(--brand); color: #fff;
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.product-info { padding: 1.4rem; display: flex; flex-direction: column; gap: 0.45rem; flex: 1; }
.product-category { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-mute); font-weight: 600; }
.product-info h3 { font-size: 1.08rem; line-height: 1.3; font-family: 'Inter', sans-serif; font-weight: 600; }
.product-specs { font-size: 0.85rem; color: var(--text-dim); display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.3rem; }
.spec-tag {
  padding: 0.2rem 0.6rem; border-radius: 6px;
  background: var(--bg-warm); font-size: 0.76rem;
  color: var(--text-dim); font-weight: 500;
}
.product-footer { margin-top: auto; padding-top: 1.2rem; display: flex; justify-content: space-between; align-items: center; gap: 0.5rem; border-top: 1px solid var(--border); }
.product-price { font-size: 1.02rem; font-weight: 700; color: var(--text); font-family: var(--font-display); }
.product-price small { font-size: 0.7rem; font-weight: 400; color: var(--text-mute); display: block; font-family: 'Inter', sans-serif; }

/* Manufacturer + catalogue number, straight off the spec sheet. */
.product-brand {
  font-size: 0.82rem; font-weight: 600; color: var(--brand);
}
.product-model {
  font-size: 0.72rem; color: var(--text-mute);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  line-height: 1.4; word-break: break-word;
}
.spec-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 0.9rem; padding-top: 0.85rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem; font-weight: 600; color: var(--text-dim);
  transition: color 0.2s;
}
.spec-link:hover { color: var(--brand); }
.spec-link svg { flex-shrink: 0; }
.add-quote {
  padding: 0.6rem 1rem; border-radius: 999px;
  background: var(--text); color: var(--bg);
  font-size: 0.85rem; font-weight: 600; transition: all 0.2s;
}
.add-quote:hover { background: var(--brand); color: #fff; }
.add-quote.added { background: var(--success); color: white; }

/* ===== Quote drawer ===== */
.drawer-backdrop {
  position: fixed; inset: 0; background: rgba(29,29,27,0.45);
  backdrop-filter: blur(4px); z-index: 200;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.drawer-backdrop.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(480px, 100%); background: var(--bg-card);
  z-index: 201; transform: translateX(100%);
  transition: transform 0.35s ease;
  display: flex; flex-direction: column;
  box-shadow: -20px 0 60px rgba(29,29,27,0.18);
}
.drawer.open { transform: translateX(0); }
.drawer-header { padding: 1.75rem; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.drawer-header h3 { font-family: var(--font-display); font-weight: 500; }
.drawer-close { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; color: var(--text-dim); }
.drawer-close:hover { background: var(--bg-warm); color: var(--text); }
.drawer-body { flex: 1; overflow-y: auto; padding: 1.75rem; }
.drawer-empty { text-align: center; padding: 3rem 1rem; color: var(--text-dim); }
.drawer-empty svg { width: 56px; height: 56px; opacity: 0.4; margin: 0 auto 1rem; }
.quote-item { display: flex; gap: 1rem; padding: 1.2rem 0; border-bottom: 1px solid var(--border); }
.quote-item:last-child { border-bottom: 0; }
.quote-item-image { width: 72px; height: 72px; border-radius: 10px; background: var(--bg-warm); display: grid; place-items: center; flex-shrink: 0; }
.quote-item-image svg { width: 60%; height: 60%; }
.quote-item-info { flex: 1; min-width: 0; }
.quote-item-info h4 { font-size: 0.95rem; margin-bottom: 0.3rem; font-weight: 600; }
.quote-item-info .cat { font-size: 0.72rem; color: var(--text-mute); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }
.qty-control { display: inline-flex; align-items: center; gap: 0; margin-top: 0.6rem; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.qty-control button { width: 28px; height: 28px; display: grid; place-items: center; color: var(--text-dim); transition: background 0.15s; font-size: 0.95rem; }
.qty-control button:hover { background: var(--bg-warm); color: var(--text); }
.qty-control input { width: 40px; text-align: center; background: transparent; border: 0; color: var(--text); font-family: inherit; font-size: 0.9rem; }
.qty-control input::-webkit-outer-spin-button, .qty-control input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.quote-remove { color: var(--text-mute); font-size: 0.82rem; margin-top: 0.4rem; transition: color 0.2s; }
.quote-remove:hover { color: var(--danger); }

.drawer-footer { padding: 1.75rem; border-top: 1px solid var(--border); background: var(--bg); }
.drawer-footer p { font-size: 0.86rem; margin-bottom: 1rem; }
.drawer-footer .btn { width: 100%; justify-content: center; }

/* ===== Forms / Pages ===== */
.form-page { padding: 9rem 0 6rem; }
.form-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.form-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2.8rem;
}
.form-group { margin-bottom: 1.4rem; }
.form-group label { display: block; font-size: 0.85rem; color: var(--text-dim); margin-bottom: 0.5rem; font-weight: 500; }
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 0.9rem 1.05rem; border-radius: 10px;
  background: var(--bg); border: 1px solid var(--border);
  color: var(--text); font-family: inherit; font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { outline: none; border-color: var(--text); background: var(--bg-card); }
.form-textarea { resize: vertical; min-height: 130px; line-height: 1.5; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.summary-list { list-style: none; }
.summary-item { display: flex; justify-content: space-between; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--border); align-items: center; }
.summary-item:last-child { border-bottom: 0; }
.summary-empty { text-align: center; padding: 3rem 1rem; color: var(--text-dim); }
.contact-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.8rem;
  margin-bottom: 1rem;
  display: flex; gap: 1.1rem; align-items: flex-start;
  transition: border-color 0.2s;
}
.contact-card:hover { border-color: var(--text); }
.contact-card .icon { width: 48px; height: 48px; border-radius: 12px; background: var(--brand); color: #fff; display: grid; place-items: center; flex-shrink: 0; }
.contact-card h4 { margin-bottom: 0.35rem; font-size: 0.92rem; font-weight: 600; }
.contact-card a, .contact-card p { color: var(--text); font-size: 1.02rem; }
.contact-card .meta { color: var(--text-mute); font-size: 0.82rem; padding-top: 0.4rem; }

/* ===== About / Team ===== */
.page-hero { padding: 9rem 0 4rem; background: var(--bg-card); }
.page-hero h1 { max-width: 820px; margin-bottom: 1.5rem; }
.page-hero p { max-width: 700px; font-size: 1.18rem; line-height: 1.55; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; padding: 5rem 0; }
.about-text p { margin-bottom: 1.2rem; font-size: 1.06rem; line-height: 1.7; color: var(--text); }
.about-text p strong { color: var(--text); font-weight: 600; }
.value-list { list-style: none; margin-top: 2rem; }
.value-list li {
  padding: 0.8rem 0 0.8rem 2.2rem; position: relative;
  color: var(--text); font-size: 1rem;
  border-bottom: 1px solid var(--border);
}
.value-list li::before {
  content: ''; position: absolute; left: 0; top: 1.15rem;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--brand);
}
.image-block {
  aspect-ratio: 4/5; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  position: relative; overflow: hidden;
  display: grid; place-items: center;
}
.image-block::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.18), transparent 60%);
}
.image-block svg { width: 50%; height: 50%; position: relative; z-index: 1; color: #fff; }

.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; }
.team-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: all 0.3s;
}
.team-card:hover { border-color: var(--text); box-shadow: var(--shadow); transform: translateY(-3px); }
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--brand); display: grid; place-items: center;
  font-family: var(--font-display); font-size: 1.8rem; font-weight: 500;
  color: #fff; margin-bottom: 1.4rem;
}
.team-card h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.35rem; margin-bottom: 0.2rem; }
.team-card .role { color: var(--text-mute); font-size: 0.86rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; margin-bottom: 1rem; }
.team-card p { font-size: 0.94rem; line-height: 1.55; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  body.nav-mobile-open .nav-links {
    display: flex; flex-direction: column; gap: 1.5rem;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg-card); padding: 2rem 1.75rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
  .shop-layout { grid-template-columns: 1fr; gap: 2rem; }
  .shop-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .form-layout { grid-template-columns: 1fr; gap: 2rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; padding: 3rem 0; }
  .form-row { grid-template-columns: 1fr; }
  section { padding: 4.5rem 0; }
  .hero { padding: 7.5rem 0 4rem; min-height: auto; }
  .cta-block { padding: 3.5rem 1.75rem; }
  .hero-stats { gap: 2rem; margin-top: 3rem; padding-top: 2rem; }
  .form-card { padding: 1.8rem; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .container { padding: 0 1.25rem; }
}

/* ===== Animations ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.8s ease backwards; }
.fade-up:nth-child(2) { animation-delay: 0.1s; }
.fade-up:nth-child(3) { animation-delay: 0.2s; }
.fade-up:nth-child(4) { animation-delay: 0.3s; }

/* Toast */
.toast {
  position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(120%);
  background: var(--text); color: var(--bg);
  padding: 0.9rem 1.5rem; border-radius: 999px; box-shadow: var(--shadow);
  z-index: 300; transition: transform 0.35s ease;
  font-size: 0.92rem; font-weight: 500;
}
.toast.show { transform: translateX(-50%) translateY(0); }
