* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* WSS-inspired palette */
  --forest: #97B25D;          /* dark forest green — header, nav, prices */
  --forest-dark: #809757;     /* even darker for gradients */
  --forest-mid: #ABCD62;      /* mid forest for hover states */
  --sage: #ABCD62;            /* accent sage green */
  --sage-light: #F3F8E5;      /* sage tint backgrounds */
  --peach: #F5E6D3;           /* main background — warm peach/cream */
  --peach-soft: #FAF0E0;      /* lighter peach for variation */
  --peach-deep: #EFD9B8;      /* darker peach for sections */
  --paper: #FFFFFF;           /* product cards / tile backgrounds */
  --ink: #0A0F1A;             /* main text */
  --ink-soft: #2A3340;        /* secondary text */
  --stone: #D4C5A9;           /* warm borders */
  --stone-light: #E8D9BD;     /* lighter warm borders */
  --muted: #8A7E65;           /* muted warm gray-brown */
  --orange: #E8541C;          /* primary CTA orange */
  --orange-dark: #C93F0D;
  --orange-soft: #FDF0E8;
  --gold: #F5A623;            /* star ratings, yellow accents */
  --gold-soft: #FEF3DE;
  --red-accent: #D92626;      /* WSS red for discount badges */
  --success: #ABCD62;
  --success-soft: #F3F8E5;
  --warn: #C97A1D;
  --warn-soft: #FBF0DC;
  --danger: #A84040;
  --danger-soft: #F7E4E4;

  /* Backward compat aliases */
  --navy: var(--forest);
  --navy-dark: var(--forest-dark);
  --navy-mid: var(--forest-mid);
  --teal: var(--sage);
  --teal-dark: var(--sage);
  --teal-light: var(--sage-light);
  --bg: var(--peach);
  --bg-warm: var(--peach-soft);
  --card: var(--paper);
  --border: var(--stone);
  --border-hover: var(--forest);
  --text: var(--ink);
  --text-soft: var(--ink-soft);
  --cream: var(--peach);
  --cream-soft: var(--peach-soft);
  --stone-soft: var(--peach-soft);
  --stone-mid: var(--stone);
  --stone-dark: var(--muted);

  --shadow-xs: 0 1px 2px rgba(27, 58, 47, 0.05);
  --shadow-sm: 0 2px 6px rgba(27, 58, 47, 0.08);
  --shadow-md: 0 6px 20px rgba(27, 58, 47, 0.1);
  --shadow-lg: 0 12px 32px rgba(27, 58, 47, 0.14);
  --radius: 3px;
}

html { -webkit-text-size-adjust: 100%; }
body {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--peach);
  color: var(--ink);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
}
button, input, select, textarea { font-family: inherit; }

/* ============ HEADER (iHerb-style: green bg, white text, pill search) ============ */
header {
  background: var(--forest);
  color: white;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-xs);
}
.site-topbar {
  background: var(--forest-dark);
  border-bottom: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.88);
  font-size: 12px;
  font-weight: 700;
}
.site-topbar-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 7px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.site-topbar a {
  color: white;
  text-decoration: none;
}
.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.header-main {
  max-width: 1600px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.logo-wrap {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  cursor: pointer;
}
.logo-text {
  font-family: "Montserrat", sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: white;
  letter-spacing: -0.5px;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.logo-text .logo-thin {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1.5px;
  opacity: 0.9;
}
.logo-img { display: none; }
.logo-wrap.logo-loaded .logo-img { display: none; }
.logo-wrap.logo-loaded .logo-text { display: flex; }
.logo-sub { display: none; }

.search-box {
  flex: 1;
  max-width: 760px;
  display: flex;
  background: white;
  border-radius: 999px;
  overflow: hidden;
  border: none;
  align-items: center;
  padding: 0 6px 0 24px;
}
.search-box input {
  flex: 1;
  padding: 12px 0;
  border: none;
  background: transparent;
  font-size: 14px;
  color: var(--ink);
  font-family: "Montserrat", sans-serif;
}
.search-box input:focus { outline: none; }
.search-box input::placeholder { color: var(--muted); font-weight: 500; }
.search-btn {
  background: transparent;
  color: var(--forest);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 2px;
}
.search-btn:hover { background: rgba(0,0,0,0.05); }

.header-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}
.hdr-link {
  background: transparent;
  color: white;
  border: none;
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Montserrat", sans-serif;
  white-space: nowrap;
  transition: background 0.15s;
}
.hdr-link:hover { background: rgba(255,255,255,0.1); }
.hdr-link .ic { font-size: 16px; line-height: 1; }
.hdr-link .lbl { font-size: 12px; }

.cart-btn-main {
  background: transparent;
  color: white;
  border: none;
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  transition: background 0.15s;
  position: relative;
}
.cart-btn-main:hover { background: rgba(255,255,255,0.1); }
.cart-btn-main .ic { font-size: 22px; color: white; }
.cart-btn-main .count {
  background: var(--orange);
  color: white;
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 800;
  min-width: 22px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
}
/* Hide legacy icon-btn class if still referenced */
.icon-btn { display: none; }

/* ============ NAV BAR (DARK FOREST GREEN WITH DEPT TABS — WSS EXACT) ============ */
.navbar {
  background: var(--forest);
  border-bottom: 3px solid var(--orange);
}
.nav-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  gap: 0;
  align-items: stretch;
  scrollbar-width: thin;
}
.nav-inner::-webkit-scrollbar { height: 4px; }
.nav-inner::-webkit-scrollbar-thumb { background: var(--forest-mid); }
.nav-link {
  color: white;
  text-decoration: none;
  padding: 14px 16px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  position: relative;
  border-bottom: 3px solid transparent;
  margin-bottom: -3px;
}
.nav-link:hover {
  color: var(--peach);
  background: var(--forest-dark);
}
.nav-link.active {
  color: white;
  border-bottom-color: var(--peach);
  background: var(--forest-dark);
}
.nav-link.primary { color: var(--gold); }

/* ============ TRUST STRIP (bigger, brighter) ============ */
.trust-strip {
  background: linear-gradient(180deg, #F5E6D3 0%, #EFD9B8 100%);
  border-top: 1px solid rgba(151, 178, 93, 0.25);
  border-bottom: 1px solid rgba(151, 178, 93, 0.25);
  padding: 22px 24px;
  margin: 0;
}
.trust-strip-inner {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.2s;
  cursor: default;
}
.trust-item:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}
.trust-item .ic {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  color: white;
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}
.trust-item:nth-child(1) .ic {
  background: linear-gradient(135deg, #97B25D 0%, #6B9118 100%);
}
.trust-item:nth-child(2) .ic {
  background: linear-gradient(135deg, #E8541C 0%, #C64010 100%);
}
.trust-item:nth-child(3) .ic {
  background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
}
.trust-item:nth-child(4) .ic {
  background: linear-gradient(135deg, #9333EA 0%, #6B21A8 100%);
}
.trust-item .trust-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.trust-item .trust-label {
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
  letter-spacing: -0.2px;
}
.trust-item .trust-sub {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-soft);
  line-height: 1.3;
  margin-top: 3px;
}
.quote-guidance {
  max-width: 1600px;
  margin: 14px auto 0;
  padding: 12px 16px;
  border: 1px solid rgba(232, 84, 28, 0.28);
  background: rgba(255, 255, 255, 0.6);
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}
.form-note {
  margin-top: 14px;
  padding: 12px;
  background: var(--orange-soft);
  border: 1px solid rgba(232, 84, 28, 0.22);
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.45;
}

@media (max-width: 1024px) {
  .trust-strip-inner { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .trust-strip { padding: 18px 20px; }
}
@media (max-width: 640px) {
  .trust-strip-inner { grid-template-columns: 1fr; gap: 10px; }
  .trust-item { padding: 6px 8px; }
  .trust-item .ic { width: 44px; height: 44px; font-size: 20px; }
  .trust-item .trust-label { font-size: 14px; }
}

/* ============ HOMEPAGE SECTIONS ============ */
.home-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HERO — big wide banner, forest green with peach text, like WSS */
.home-hero {
  background: var(--peach);
  padding: 18px 0;
}
.hero-grid {
  display: block;
}
.hero-main {
  background: linear-gradient(135deg, var(--forest-dark) 0%, var(--forest) 50%, var(--forest-mid) 100%);
  border-radius: 4px;
  padding: 50px 56px;
  color: white;
  position: relative;
  overflow: hidden;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-main::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background: radial-gradient(ellipse at right center, rgba(245,230,211,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-main::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -5%;
  width: 300px;
  height: 300px;
  background: var(--sage);
  border-radius: 50%;
  opacity: 0.12;
  pointer-events: none;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  color: var(--peach);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
  position: relative;
}
.hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -1.5px;
  color: white;
  margin-bottom: 18px;
  position: relative;
  max-width: 720px;
  font-family: "Montserrat", sans-serif;
  text-transform: none;
}
.hero-sub {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
  max-width: 620px;
  margin-bottom: 28px;
  position: relative;
}
.hero-cta-row {
  display: flex;
  gap: 14px;
  align-items: center;
  position: relative;
  flex-wrap: wrap;
}
.btn-primary {
  background: white;
  color: var(--forest);
  border: none;
  padding: 14px 32px;
  border-radius: 3px;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: all 0.15s;
}
.btn-primary:hover { background: var(--peach); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 12px 28px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.btn-ghost:hover { background: white; color: var(--forest); }

.promo-code-badge {
  background: var(--gold);
  color: var(--forest-dark);
  padding: 10px 18px;
  border-radius: 3px;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.btn-link {
  background: transparent;
  color: var(--forest);
  border: 2px solid var(--forest);
  padding: 10px 22px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-link:hover { background: var(--forest); color: white; }

.hero-stats {
  display: none;
}
.hero-side {
  display: none;
}

/* 4 PROMO TILES ROW (below hero) */
.promo-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 14px;
}
.promo-tile {
  background: var(--paper);
  border: 1px solid var(--stone);
  border-radius: 4px;
  padding: 20px 22px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.2s;
  min-height: 130px;
  display: flex;
  flex-direction: column;
}
.promo-tile:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--forest);
}
.promo-tile::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 100px; height: 100px;
  background: radial-gradient(circle at top right, var(--sage-light) 0%, transparent 70%);
  pointer-events: none;
}
.promo-tile .discount-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--red-accent);
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  text-align: center;
  line-height: 1.1;
  box-shadow: var(--shadow-sm);
}
.promo-eyebrow {
  font-size: 10px;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 5px;
  position: relative;
}
.promo-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 6px;
  position: relative;
  letter-spacing: -0.3px;
}
.promo-desc {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 12px;
  position: relative;
  line-height: 1.4;
  flex: 1;
}
.promo-cta {
  font-size: 11px;
  font-weight: 800;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  position: relative;
}

/* QUOTE BAR — WSS "Plus" style, blue-teal */
.quote-bar {
  background: #1D5F6E;
  padding: 18px 0;
  margin: 14px 0 0;
}
.quote-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.quote-text { color: white; }
.quote-eye {
  display: inline-block;
  background: var(--sage);
  color: white;
  padding: 4px 10px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-right: 12px;
}
.quote-head {
  display: inline;
  font-size: 15px;
  font-weight: 700;
}
.quote-btn {
  background: white;
  color: #1D5F6E;
  padding: 11px 24px;
  border-radius: 3px;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.15s;
  white-space: nowrap;
  border: 2px solid white;
}
.quote-btn:hover { background: transparent; color: white; }

/* BEST SELLERS STRIP — dense horizontal product row */
.bestsellers-section {
  padding: 28px 0 18px;
  background: var(--peach);
}
.section-head {
  text-align: center;
  margin-bottom: 18px;
}
.section-head h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.8px;
  margin-bottom: 6px;
  font-family: "Montserrat", sans-serif;
}
.section-head p {
  font-size: 12px;
  color: var(--ink-soft);
}
.bs-strip {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px;
  background: var(--paper);
  border: 1px solid var(--stone);
  border-radius: 4px;
  padding: 14px;
}
.bs-card {
  padding: 8px;
  cursor: pointer;
  border-right: 1px solid var(--stone-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: background 0.15s;
}
.bs-card:last-child { border-right: none; }
.bs-card:hover { background: var(--peach-soft); }
.bs-card .bs-img {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}
.bs-card .bs-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.bs-stars {
  color: var(--gold);
  font-size: 11px;
  margin-bottom: 2px;
  letter-spacing: 1px;
}
.bs-name {
  font-size: 11px;
  color: var(--ink);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 4px;
  min-height: 28px;
}
.bs-price {
  font-size: 13px;
  font-weight: 800;
  color: var(--forest);
}
.bs-price small {
  font-size: 9px;
  color: var(--muted);
  font-weight: 500;
}

/* 4 FEATURE BLOCKS (Volume Discounts / Tri-State / Upfront Payment / Quote) */
.feature-blocks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 20px 0 10px;
}
.feature-block {
  border-radius: 4px;
  padding: 26px 22px;
  color: white;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.15s;
}
.feature-block:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.fb-navy { background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%); }
.fb-purple { background: linear-gradient(135deg, #A855F7 0%, #7E22CE 100%); }
.fb-gold { background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%); }
.fb-teal { background: linear-gradient(135deg, #06B6D4 0%, #0891B2 100%); }
.feature-block h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 6px;
  line-height: 1.15;
}
.feature-block h3 small {
  display: block;
  font-size: 11px;
  font-weight: 500;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 4px;
}
.feature-block p {
  font-size: 12px;
  opacity: 0.85;
  line-height: 1.4;
  margin-bottom: 12px;
}
.feature-block a {
  font-size: 11px;
  color: white;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  padding-bottom: 2px;
  display: inline-block;
  width: fit-content;
}

/* FEATURED CATEGORIES — CIRCULAR ICONS WITH REAL PRODUCT IMAGES */
.dept-section {
  padding: 36px 0 24px;
  background: var(--peach);
}
.dept-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px 20px;
}
.dept-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 14px 8px;
  color: var(--ink);
  cursor: pointer;
  text-align: center;
  transition: all 0.15s;
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.dept-card:hover {
  transform: none;
  box-shadow: none;
  background: transparent;
  border: none;
}
.dept-card:hover .dept-icon {
  transform: scale(1.06);
  box-shadow: var(--shadow-md);
}
.dept-card:hover .dept-name {
  color: var(--sage);
  text-decoration: underline;
}
.dept-icon {
  width: 110px;
  height: 110px;
  background: var(--paper);
  border: 1px solid var(--stone);
  border-radius: 50%;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 14px;
  transition: all 0.2s;
}
.dept-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.dept-card .dept-name {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 3px;
  max-width: 110px;
}
.dept-card .dept-count {
  font-size: 10px;
  color: var(--muted);
  font-weight: 500;
}

/* REQUEST A QUOTE BANNER */
.rfq-section {
  padding: 14px 0 24px;
  background: var(--peach);
}
.rfq-banner {
  background: var(--peach-deep);
  border: 1px solid var(--stone);
  border-radius: 4px;
  padding: 22px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.rfq-text { display: flex; align-items: center; gap: 22px; }
.rfq-icon {
  width: 64px; height: 64px;
  background: var(--paper);
  border: 1px solid var(--stone);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}
.rfq-copy h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--forest);
  line-height: 1.2;
  font-family: "Montserrat", sans-serif; font-weight: 800; letter-spacing: -0.5px;
}
.rfq-copy p {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 4px;
}
.rfq-btn {
  background: var(--sage);
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 3px;
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(74,131,97,0.3);
}
.rfq-btn:hover { background: var(--forest); }

/* FEATURED BRANDS */
.fbrand-section {
  padding: 24px 0 32px;
  background: var(--peach);
  border-top: 1px solid var(--stone);
}
.fbrand-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 14px;
}
.fbrand-tile {
  background: var(--paper);
  border: 1px solid var(--stone);
  border-radius: 4px;
  padding: 18px 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.15s;
  min-height: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.fbrand-tile:hover {
  border-color: var(--forest);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.fbrand-name {
  font-size: 13px;
  font-weight: 800;
  color: var(--forest);
  line-height: 1.2;
  font-family: "Montserrat", sans-serif; font-weight: 800; letter-spacing: -0.5px;
  letter-spacing: -0.2px;
}
.fbrand-count {
  font-size: 10px;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 500;
}

/* Hide unused homepage sections for WSS version */
.pricepoint-section { display: none; }

/* ============ MAIN LAYOUT ============ */
.main {
  display: flex;
  max-width: 1600px;
  margin: 0 auto;
  gap: 18px;
  padding: 20px 20px 40px;
  background: var(--peach);
}
.sidebar {
  width: 230px;
  flex-shrink: 0;
  position: sticky;
  top: 110px;
  max-height: calc(100vh - 130px);
  overflow-y: auto;
  background: var(--paper);
  border: 1px solid var(--stone);
  border-radius: 4px;
  box-shadow: var(--shadow-xs);
}
.sidebar::-webkit-scrollbar { width: 6px; }
.sidebar::-webkit-scrollbar-thumb { background: var(--stone); border-radius: 3px; }

.sidebar-section { border-bottom: 1px solid var(--stone); }
.sidebar-section:last-child { border-bottom: none; }
.sidebar-section h3 {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--forest);
  padding: 14px 14px 8px;
  letter-spacing: 0.6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sidebar-section h3 .clear-single {
  font-size: 10px;
  color: var(--orange);
  font-weight: 700;
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
}
.filter-list { padding: 0 6px 10px; }
.filter-item {
  padding: 6px 10px;
  font-size: 12px;
  cursor: pointer;
  border-radius: 3px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink-soft);
}
.filter-item:hover { background: var(--peach-soft); color: var(--forest); }
.filter-item.active {
  background: var(--forest);
  color: white;
  font-weight: 700;
}
.filter-item .count {
  font-size: 10px;
  color: var(--muted);
  background: var(--peach-soft);
  padding: 1px 7px;
  border-radius: 8px;
  min-width: 22px;
  text-align: center;
}
.filter-item.active .count {
  background: rgba(255,255,255,0.2);
  color: white;
}
.brand-search {
  margin: 6px 10px;
  padding: 7px 10px;
  border: 1px solid var(--stone);
  border-radius: 3px;
  font-size: 11px;
  width: calc(100% - 20px);
  background: var(--peach-soft);
}
.brand-search:focus { outline: none; border-color: var(--forest); background: white; }
.brand-list { max-height: 320px; overflow-y: auto; padding: 0 6px 10px; }
.brand-list::-webkit-scrollbar { width: 4px; }
.brand-list::-webkit-scrollbar-thumb { background: var(--stone); }

/* ============ CONTENT & TOOLBAR ============ */
.content { flex: 1; min-width: 0; }

.toolbar {
  background: var(--paper);
  border: 1px solid var(--stone);
  border-radius: 4px;
  padding: 10px 14px;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.toolbar-left { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.result-count {
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 600;
}
.result-count strong { color: var(--forest); }
.active-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.chip {
  background: var(--sage-light);
  color: var(--forest);
  padding: 4px 11px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--sage);
}
.chip .x { cursor: pointer; font-weight: 700; font-size: 14px; line-height: 1; opacity: 0.7; }
.chip .x:hover { opacity: 1; }
.toolbar-right { display: flex; gap: 8px; align-items: center; }
.sort-select {
  padding: 7px 11px;
  border: 1px solid var(--stone);
  border-radius: 3px;
  font-size: 12px;
  background: white;
  cursor: pointer;
  color: var(--ink);
}
.view-toggle {
  display: flex;
  border: 1px solid var(--stone);
  border-radius: 3px;
  overflow: hidden;
}
.view-toggle button {
  background: white;
  border: none;
  padding: 7px 13px;
  cursor: pointer;
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
}
.view-toggle button.active { background: var(--forest); color: white; }

/* ============ PRODUCT GRID (DENSE, WSS-STYLE) ============ */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 10px;
}

.card {
  background: var(--paper);
  border: 1px solid var(--stone);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.15s;
  position: relative;
}
.card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--forest);
}
.card-img {
  width: 100%;
  height: 170px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--stone-light);
  position: relative;
}
.card-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  padding: 10px;
  mix-blend-mode: multiply;
  transition: opacity 0.25s, transform 0.3s;
}
.card-img img.hover-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.card:hover .card-img img.main-img { opacity: 0; }
.card:hover .card-img img.hover-img { opacity: 1; }
.card:hover .card-img img { transform: scale(1.04); }

.card-img .placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px;
  background: var(--peach-soft);
  width: 100%;
  height: 100%;
}
.placeholder-brand {
  font-weight: 800;
  color: var(--forest);
  font-size: 15px;
  margin-bottom: 4px;
}
.placeholder-cat {
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
}

.badge-row {
  position: absolute;
  top: 8px;
  left: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
}
.badge {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 2px;
  letter-spacing: 0.5px;
}
.badge.low-stock { background: var(--warn); color: white; }
.badge.in-cart { background: var(--sage); color: white; }

.card-click-area { cursor: pointer; }
.card-click-area:hover .card-name { color: var(--sage); text-decoration: underline; }

.card-body {
  padding: 10px 12px 6px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.card-brand {
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  line-height: 1;
}
.card-name {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 36px;
  margin-top: 2px;
}

.meta-row {
  display: flex;
  gap: 5px;
  font-size: 10px;
  color: var(--muted);
  flex-wrap: wrap;
  margin-top: 3px;
  align-items: center;
}
.pill {
  background: var(--peach-soft);
  color: var(--ink-soft);
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--stone);
  font-size: 10px;
}
.pill.stock-ok { background: var(--sage-light); color: var(--forest); border-color: var(--sage); }
.pill.stock-med { background: var(--warn-soft); color: var(--warn); border-color: #EBD6AE; }
.pill.stock-low { background: var(--danger-soft); color: var(--danger); border-color: #E5C6C6; }
.pill .dot { width: 6px; height: 6px; border-radius: 50%; }
.pill.stock-ok .dot { background: var(--sage); }
.pill.stock-med .dot { background: var(--warn); }
.pill.stock-low .dot { background: var(--danger); }

.id-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 10px;
  color: var(--muted);
  margin-top: 4px;
  padding-top: 6px;
  border-top: 1px dashed var(--stone-light);
}
.id-row .line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4px;
}
.id-row .lbl {
  font-weight: 700;
  color: var(--muted);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.id-row .val {
  font-family: "SF Mono", Menlo, Consolas, monospace;
  font-size: 10px;
  color: var(--ink);
  flex: 1;
  text-align: right;
  user-select: all;
}
.copy-btn {
  background: transparent;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 11px;
  padding: 2px 4px;
  border-radius: 2px;
  line-height: 1;
}
.copy-btn:hover { background: var(--sage-light); color: var(--forest); }

.price-block {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--stone-light);
}
.case-price {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-soft);
  line-height: 1.25;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0;
  margin-top: 4px;
}
.case-price .label {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
  margin-left: 3px;
  font-family: -apple-system, sans-serif;
}
.unit-price {
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.1;
}
.unit-price strong {
  display: inline-block;
  color: var(--ink);
  font-size: 25px;
  font-weight: 900;
  letter-spacing: 0;
  font-family: "Montserrat", sans-serif;
}

.card-footer {
  padding: 8px 12px;
  border-top: 1px solid var(--stone-light);
  background: var(--peach-soft);
}
.add-btn {
  width: 100%;
  background: var(--orange);
  color: white;
  border: none;
  padding: 9px;
  border-radius: 3px;
  font-weight: 800;
  cursor: pointer;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.15s;
}
.add-btn:hover { background: var(--orange-dark); }
.add-btn.added { background: var(--sage); }

.qty-control {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--forest);
  border-radius: 3px;
  overflow: hidden;
  height: 34px;
}
.qty-control button {
  width: 34px;
  border: none;
  background: var(--forest);
  color: white;
  cursor: pointer;
  font-weight: 800;
  font-size: 16px;
}
.qty-control button:hover { background: var(--forest-dark); }
.qty-control .qty {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  background: white;
  color: var(--forest);
}
.qty-control .qty small { font-size: 10px; color: var(--muted); font-weight: 600; margin-left: 4px; }

/* ============ TABLE VIEW ============ */
.table-wrap {
  background: white;
  border: 1px solid var(--stone);
  border-radius: 4px;
  overflow-x: auto;
}
table.catalog-table { width: 100%; border-collapse: collapse; font-size: 12px; }
.catalog-table thead { background: var(--forest); color: white; }
.catalog-table th { padding: 10px 8px; text-align: left; font-size: 10px; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 700; white-space: nowrap; }
.catalog-table td { padding: 8px; border-bottom: 1px solid var(--stone-light); vertical-align: middle; }
.catalog-table tbody tr:hover { background: var(--peach-soft); }
.catalog-table .t-img { width: 48px; height: 48px; background: white; border-radius: 3px; border: 1px solid var(--stone); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.catalog-table .t-img img { max-width: 100%; max-height: 100%; object-fit: contain; padding: 2px; mix-blend-mode: multiply; }
.catalog-table .t-name { font-weight: 500; color: var(--ink); max-width: 320px; }
.catalog-table .t-name .t-brand { color: var(--muted); font-size: 10px; text-transform: uppercase; font-weight: 700; letter-spacing: 0.3px; }
.catalog-table .t-code { font-family: monospace; font-size: 11px; color: var(--ink-soft); }
.catalog-table .t-price-case { font-weight: 800; color: var(--forest); font-size: 14px; font-family: "Montserrat", sans-serif; font-weight: 800; letter-spacing: -0.5px; }
.catalog-table .t-price-unit { font-size: 10px; color: var(--muted); }
.catalog-table .t-add-btn { background: var(--orange); color: white; border: none; padding: 6px 14px; border-radius: 3px; font-weight: 700; cursor: pointer; font-size: 11px; text-transform: uppercase; }
.catalog-table .t-add-btn:hover { background: var(--orange-dark); }
.catalog-table .t-qty { display: flex; border: 1px solid var(--forest); border-radius: 3px; overflow: hidden; width: 100px; }
.catalog-table .t-qty button { background: var(--forest); color: white; border: none; width: 26px; cursor: pointer; font-weight: 800; }
.catalog-table .t-qty .v { flex: 1; text-align: center; line-height: 26px; background: white; font-weight: 700; color: var(--forest); font-size: 12px; }

/* ============ CART DRAWER ============ */
.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 440px;
  max-width: 100vw;
  height: 100vh;
  background: var(--paper);
  box-shadow: -10px 0 40px rgba(27,58,47,0.2);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 200;
  display: flex;
  flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-overlay { position: fixed; inset: 0; background: rgba(27,58,47,0.5); opacity: 0; pointer-events: none; transition: opacity 0.3s; z-index: 199; }
.cart-overlay.open { opacity: 1; pointer-events: auto; }

.cart-header {
  padding: 18px 22px;
  background: var(--forest);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}
.cart-header h2 { font-size: 17px; font-weight: 800; font-family: "Montserrat", sans-serif; font-weight: 800; letter-spacing: -0.5px; }
.cart-header h2 small { display: block; font-size: 11px; font-weight: 500; opacity: 0.75; margin-top: 2px; font-family: -apple-system, sans-serif; }
.cart-close { background: transparent; border: 1px solid rgba(255,255,255,0.2); color: white; width: 32px; height: 32px; border-radius: 3px; font-size: 20px; cursor: pointer; }
.cart-close:hover { background: rgba(255,255,255,0.1); }

.tier-ladder {
  background: linear-gradient(180deg, #FFFFFF 0%, #F9FAFB 100%);
  border: 1px solid #E5E7EB;
  border-radius: 6px;
  padding: 14px 16px;
  margin: 0 22px 14px;
}
.tier-ladder-title {
  font-size: 10px;
  font-weight: 800;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 10px;
  font-family: "Montserrat", sans-serif;
}
.tier-row {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 4px;
  margin-bottom: 4px;
  transition: all 0.2s;
}
.tier-row:last-child { margin-bottom: 0; }
.tier-row-left {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 110px;
}
.tier-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #D1D5DB;
  flex-shrink: 0;
  display: inline-block;
}
.tier-amount {
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
  font-family: "Montserrat", sans-serif;
}
.tier-pct {
  font-size: 14px;
  font-weight: 900;
  color: #9CA3AF;
  font-family: "Montserrat", sans-serif;
  min-width: 55px;
}
.tier-status {
  font-size: 11px;
  color: #9CA3AF;
  font-weight: 500;
  text-align: right;
}
.tier-status strong {
  font-weight: 800;
  color: var(--ink);
}
.tier-status .check {
  color: var(--sage);
  font-weight: 900;
  margin-right: 2px;
}

/* Locked state — default gray (already applied above) */
.tier-row.locked .tier-dot { background: #D1D5DB; }

/* Close state — orange */
.tier-row.close { background: rgba(232, 84, 28, 0.08); }
.tier-row.close .tier-dot { background: #E8541C; box-shadow: 0 0 0 3px rgba(232,84,28,0.18); }
.tier-row.close .tier-pct { color: #E8541C; }
.tier-row.close .tier-status { color: #E8541C; }
.tier-row.close .tier-status strong { color: #E8541C; }

/* Unlocked state — green */
.tier-row.unlocked .tier-dot { background: var(--sage); box-shadow: 0 0 0 3px rgba(171,205,98,0.22); }
.tier-row.unlocked .tier-pct { color: var(--sage); }
.tier-row.unlocked .tier-status { color: var(--sage); }
.tier-row.unlocked .tier-status strong { color: var(--sage); }

/* Best (currently active highest) tier — green highlight */
.tier-row.best {
  background: rgba(171, 205, 98, 0.14);
  border: 1px solid rgba(171, 205, 98, 0.4);
  padding: 8px 9px;
}
.tier-row.best .tier-dot { box-shadow: 0 0 0 3px rgba(171,205,98,0.35), 0 0 16px rgba(171,205,98,0.5); animation: tierDotPulse 2s ease-in-out infinite; }
@keyframes tierDotPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(171,205,98,0.35), 0 0 16px rgba(171,205,98,0.5); }
  50% { box-shadow: 0 0 0 4px rgba(171,205,98,0.5), 0 0 24px rgba(171,205,98,0.7); }
}
.tier-progress { background: rgba(255,255,255,0.7); height: 6px; border-radius: 3px; overflow: hidden; }
.tier-progress-bar { height: 100%; background: var(--sage); transition: width 0.4s; border-radius: 3px; }

.min-order-notice {
  padding: 10px 22px;
  background: var(--warn-soft);
  border-bottom: 1px solid #EBD6AE;
  font-size: 11px;
  color: var(--warn);
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}
.min-order-notice.met { background: var(--sage-light); border-bottom-color: var(--sage); color: var(--forest); }

.cart-items { flex: 1; overflow-y: auto; }
.cart-empty { padding: 80px 30px; text-align: center; color: var(--muted); }
.cart-empty .big { font-size: 48px; margin-bottom: 12px; opacity: 0.3; }
.cart-empty h3 { color: var(--ink); font-weight: 700; margin-bottom: 6px; }

.cart-item { display: flex; gap: 12px; padding: 14px 22px; border-bottom: 1px solid var(--stone-light); position: relative; }
.cart-item:hover { background: var(--peach-soft); }
.cart-item-img { width: 64px; height: 64px; background: white; border: 1px solid var(--stone); border-radius: 3px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.cart-item-img img { max-width: 100%; max-height: 100%; object-fit: contain; padding: 4px; mix-blend-mode: multiply; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-brand { font-size: 9px; font-weight: 800; color: var(--muted); text-transform: uppercase; letter-spacing: 0.4px; }
.cart-item-name { font-size: 12px; font-weight: 600; line-height: 1.3; margin: 3px 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.cart-item-ids { font-size: 10px; color: var(--muted); font-family: monospace; margin: 3px 0; }
.cart-item-row { display: flex; justify-content: space-between; align-items: center; margin-top: 6px; }
.cart-item-qty { display: flex; border: 1px solid var(--stone); border-radius: 3px; overflow: hidden; height: 26px; }
.cart-item-qty button { width: 24px; background: var(--peach-soft); border: none; cursor: pointer; font-weight: 800; color: var(--forest); }
.cart-item-qty button:hover { background: var(--stone); }
.cart-item-qty .v { width: 34px; text-align: center; font-weight: 800; font-size: 12px; line-height: 26px; background: white; }
.cart-item-total { font-weight: 800; color: var(--forest); font-size: 14px; font-family: "Montserrat", sans-serif; font-weight: 800; letter-spacing: -0.5px; }
.cart-item-unit { font-size: 10px; color: var(--muted); text-align: right; }
.cart-item-remove { position: absolute; top: 10px; right: 14px; background: transparent; border: none; color: var(--muted); cursor: pointer; font-size: 11px; }
.cart-item-remove:hover { color: var(--danger); }

.cart-footer { border-top: 2px solid var(--stone); padding: 18px 22px; background: var(--peach-soft); flex-shrink: 0; }
.trust-note { background: var(--sage-light); color: var(--forest); padding: 10px 14px; border-radius: 3px; font-size: 11px; margin-bottom: 14px; border-left: 3px solid var(--sage); line-height: 1.4; }
.trust-note strong { font-weight: 800; }
.summary-row { display: flex; justify-content: space-between; margin-bottom: 6px; font-size: 13px; color: var(--ink-soft); }
.summary-row.discount { color: var(--sage); font-weight: 700; }
.summary-row.total { font-size: 20px; font-weight: 800; color: var(--forest); padding-top: 12px; margin-top: 10px; border-top: 1px solid var(--stone); font-family: "Montserrat", sans-serif; font-weight: 800; letter-spacing: -0.5px; }
.checkout-btn { width: 100%; background: var(--orange); color: white; border: none; padding: 14px; border-radius: 3px; font-size: 13px; font-weight: 800; cursor: pointer; margin-top: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.checkout-btn:hover { background: var(--orange-dark); }

/* ============ MODALS ============ */
.modal-overlay { position: fixed; inset: 0; background: rgba(27,58,47,0.55); display: none; align-items: center; justify-content: center; z-index: 300; padding: 20px; }
.modal-overlay.open { display: flex; }
.modal { background: white; border-radius: 4px; width: 100%; max-width: 480px; max-height: 92vh; overflow-y: auto; box-shadow: 0 20px 60px rgba(27,58,47,0.3); }
.modal-header { padding: 20px 24px; border-bottom: 1px solid var(--stone); background: var(--forest); color: white; }
.modal-header h2 { font-size: 17px; font-weight: 800; font-family: "Montserrat", sans-serif; font-weight: 800; letter-spacing: -0.5px; }
.modal-header p { font-size: 12px; color: rgba(255,255,255,0.75); margin-top: 4px; }
.modal-body { padding: 24px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 11px; font-weight: 800; color: var(--forest); margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 10px 12px; border: 1px solid var(--stone); border-radius: 3px; font-size: 13px; background: var(--peach-soft); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--forest); background: white; }
.catalog-choice-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.catalog-choice-grid label { border: 1px solid var(--stone); border-radius: 3px; padding: 10px; background: var(--peach-soft); display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 800; color: var(--forest); cursor: pointer; }
.catalog-choice-grid input { width: auto; }
.form-note { background: var(--peach-soft); border-left: 3px solid var(--orange); padding: 10px 12px; font-size: 12px; color: var(--ink-soft); line-height: 1.45; }
.policy-content { font-size: 13px; line-height: 1.65; color: var(--ink-soft); }
.policy-content h3 { font-size: 13px; color: var(--forest); margin: 18px 0 6px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.4px; }
.policy-content h3:first-child { margin-top: 0; }
.policy-content ul { margin: 6px 0 12px 18px; }
.policy-content li { margin-bottom: 5px; }
.form-buttons { display: flex; gap: 10px; margin-top: 20px; }
.form-buttons button { flex: 1; padding: 12px; border-radius: 3px; border: none; font-weight: 800; cursor: pointer; font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.btn-cancel { background: var(--stone-light); color: var(--ink-soft); }
.btn-cancel:hover { background: var(--stone); }
.btn-submit { background: var(--orange); color: white; }
.btn-submit:hover { background: var(--orange-dark); }
.success-msg { text-align: center; padding: 40px 20px; }
.success-msg .check { font-size: 56px; color: var(--sage); margin-bottom: 12px; }
.success-msg h2 { color: var(--forest); margin-bottom: 8px; font-family: "Montserrat", sans-serif; font-weight: 800; letter-spacing: -0.5px; }

/* ============ PRODUCT DETAIL MODAL (modern, clean) ============ */
.pd-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 26, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 350;
  padding: 24px;
  animation: fadeIn 0.2s;
}
.pd-overlay.open { display: flex; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.pd-modal {
  background: white;
  border-radius: 6px;
  width: 100%;
  max-width: 960px;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 24px 60px rgba(10, 15, 26, 0.25);
  animation: pdIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
@keyframes pdIn {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.pd-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(10, 15, 26, 0.05);
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--ink);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.pd-close:hover { background: rgba(10, 15, 26, 0.12); }

.pd-body {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  padding: 40px 48px;
}
.pd-images { display: flex; flex-direction: column; gap: 12px; }
.pd-main-img {
  background: #FAFAFA;
  border-radius: 4px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pd-main-img img {
  max-width: 88%;
  max-height: 88%;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.pd-thumbs { display: flex; gap: 8px; }
.pd-thumb {
  width: 64px;
  height: 64px;
  background: #FAFAFA;
  border: 1.5px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: border-color 0.15s;
}
.pd-thumb:hover { border-color: #D4D4D4; }
.pd-thumb.active { border-color: var(--ink); }
.pd-thumb img { max-width: 100%; max-height: 100%; object-fit: contain; mix-blend-mode: multiply; }

.pd-info {
  display: flex;
  flex-direction: column;
  padding-top: 8px;
}
.pd-brand {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}
.pd-name {
  font-size: 26px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 16px;
  letter-spacing: -0.5px;
  font-family: "Montserrat", sans-serif;
}
.pd-meta {
  display: flex;
  gap: 18px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #EEEEEE;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--ink-soft);
  align-items: center;
}
.pd-meta .pd-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.pd-meta .pd-meta-item strong {
  color: var(--ink);
  font-weight: 700;
}
.pd-meta .pd-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
  display: inline-block;
}
.pd-meta .pd-dot.low { background: #E8541C; }

.pd-price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 4px;
}
.pd-price-row .pd-case-price {
  font-size: 44px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -1.5px;
  font-family: "Montserrat", sans-serif;
}
.pd-price-row .pd-per {
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 500;
}
.pd-unit-price {
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 28px;
  font-weight: 500;
}
.pd-unit-price strong { color: var(--ink); font-weight: 700; }

.pd-specs {
  margin-bottom: 28px;
}
.pd-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #F4F4F4;
  font-size: 13px;
}
.pd-spec-row:last-child { border-bottom: none; }
.pd-spec-label {
  color: var(--ink-soft);
  font-weight: 500;
}
.pd-spec-value {
  color: var(--ink);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Montserrat", sans-serif;
}
.pd-spec-value .pd-copy {
  background: transparent;
  border: none;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 3px;
  font-weight: 600;
  transition: all 0.15s;
}
.pd-spec-value .pd-copy:hover { background: #F0F0F0; color: var(--ink); }

.pd-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}
.pd-add-btn {
  flex: 1;
  background: var(--ink);
  color: white;
  border: none;
  padding: 18px;
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Montserrat", sans-serif;
  transition: background 0.15s;
}
.pd-add-btn:hover { background: #000; }
.pd-qty {
  flex: 1;
  display: flex;
  border: 1.5px solid var(--ink);
  border-radius: 4px;
  overflow: hidden;
  height: 56px;
}
.pd-qty button {
  width: 56px;
  background: var(--ink);
  color: white;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 22px;
}
.pd-qty button:hover { background: #000; }
.pd-qty .v {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  color: var(--ink);
  font-weight: 800;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
}
.pd-qty .v small { font-size: 11px; color: var(--ink-soft); font-weight: 500; margin-left: 6px; }

/* ============ TOAST ============ */
.toast-wrap { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 400; display: flex; flex-direction: column; gap: 8px; }
.toast { background: var(--forest); color: white; padding: 11px 20px; border-radius: 3px; font-size: 12px; font-weight: 600; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 10px; animation: toastIn 0.25s; }
.toast.success { background: var(--sage); }
@keyframes toastIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ============ MOBILE ============ */
@media (max-width: 1024px) {
  .hero-main { padding: 34px 28px; }
  .hero-title { font-size: 32px; }
  .promo-row { grid-template-columns: repeat(2, 1fr); }
  .feature-blocks { grid-template-columns: repeat(2, 1fr); }
  .dept-grid { grid-template-columns: repeat(4, 1fr); }
  .fbrand-grid { grid-template-columns: repeat(4, 1fr); }
  .bs-strip { grid-template-columns: repeat(4, 1fr); }
  .sidebar { width: 210px; }
  .grid { grid-template-columns: repeat(auto-fill, minmax(195px, 1fr)); }
}
@media (max-width: 768px) {
  .topbar, .trust-strip { display: none; }
  .site-topbar-inner { justify-content: center; text-align: center; }
  .topbar-left, .topbar-right { justify-content: center; gap: 8px 14px; }
  .header-main { padding: 10px 14px; gap: 10px; flex-wrap: wrap; }
  .logo-img { height: 32px; }
  .hero-content {
    width: 45%;
}
  .search-box { order: 3; width: 100%; max-width: none;flex: auto; }
  .header-actions .icon-btn { display: none; }
  .navbar { display: none; }
  .hero-main { padding: 26px 20px; min-height: auto; }
  .hero-title { font-size: 24px; }
  .hero-sub { font-size: 12px; }
  .promo-row { grid-template-columns: 1fr; }
  .feature-blocks { grid-template-columns: 1fr; }
  .dept-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .dept-icon { width: 80px; height: 80px; padding: 10px; }
  .fbrand-grid { grid-template-columns: repeat(2, 1fr); }
  .bs-strip { grid-template-columns: repeat(2, 1fr); padding: 10px; }
  .bs-card { border-right: none; border-bottom: 1px solid var(--stone-light); }
  .section-head h2 { font-size: 18px; }
  .rfq-banner { flex-direction: column; text-align: center; gap: 16px; }
  .rfq-text { flex-direction: column; gap: 12px; }
  .main { flex-direction: column; padding: 12px; gap: 12px; }
  .sidebar { width: 100%; position: static; max-height: none; }
  .brand-list { max-height: 220px; }
  .grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .card-img { height: 140px; }
  .case-price { font-size: 19px; }
  .cart-drawer { width: 100%; }
  .pd-body { grid-template-columns: 1fr; padding: 18px; gap: 16px; }
  .pd-main-img { height: 260px; }
  .pd-case-price { font-size: 26px; }
  .pd-name { font-size: 18px; }
}

/* ============ FREQUENTLY REORDERED STRIP ============ */
.reorder-section {
  padding: 28px 0 18px;
  background: var(--peach-soft);
  border-top: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
}
.reorder-strip {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
}
.reorder-card {
  background: var(--paper);
  border: 1px solid var(--stone);
  border-radius: 4px;
  padding: 12px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.15s;
}
.reorder-card:hover {
  border-color: var(--forest);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.reorder-card .r-img {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.reorder-card .r-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.reorder-card .r-brand {
  font-size: 9px;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 3px;
}
.reorder-card .r-name {
  font-size: 11px;
  color: var(--ink);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 28px;
  margin-bottom: 6px;
}
.reorder-card .r-price {
  font-size: 14px;
  font-weight: 800;
  color: var(--forest);
  font-family: "Montserrat", sans-serif; font-weight: 800; letter-spacing: -0.5px;
}
.reorder-card .r-price small {
  font-size: 9px;
  color: var(--muted);
  font-weight: 500;
  font-family: -apple-system, sans-serif;
}
.reorder-card .r-pack {
  font-size: 9px;
  color: var(--muted);
  margin-top: 2px;
}

/* ============ VALUE PROPOSITION TILES (3 tiles) ============ */
.valueprop-section {
  padding: 30px 0 22px;
  background: var(--peach);
}
.valueprop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.vp-tile {
  background: var(--paper);
  border: 1px solid var(--stone);
  border-left: 4px solid var(--sage);
  border-radius: 4px;
  padding: 26px 28px;
  cursor: pointer;
  transition: all 0.15s;
  position: relative;
  overflow: hidden;
}
.vp-tile:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--forest);
}
.vp-tile.vp-middle { border-left-color: #C47B1F; }
.vp-tile.vp-right { border-left-color: #1D5F6E; }
.vp-icon {
  font-size: 34px;
  margin-bottom: 12px;
  display: inline-block;
}
.vp-tile h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--forest);
  line-height: 1.2;
  margin-bottom: 8px;
  font-family: "Montserrat", sans-serif; font-weight: 800; letter-spacing: -0.5px;
}
.vp-tile p {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 14px;
}
.vp-tile .vp-cta {
  font-size: 11px;
  font-weight: 800;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ============ CALCULATOR MODAL ============ */
.calc-modal-body { padding: 24px 26px; }
.calc-modal-body label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  color: var(--forest);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 12px;
}
.calc-modal-body label:first-child { margin-top: 0; }
.calc-modal-body input {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--stone);
  border-radius: 3px;
  font-size: 14px;
  background: var(--peach-soft);
}
.calc-modal-body input:focus { outline: none; border-color: var(--forest); background: white; }
.calc-result {
  background: var(--forest);
  color: white;
  padding: 22px 24px;
  border-radius: 4px;
  margin-top: 20px;
}
.calc-result h4 {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--peach);
  margin-bottom: 8px;
}
.calc-result .calc-big {
  font-size: 32px;
  font-weight: 900;
  font-family: "Montserrat", sans-serif; font-weight: 800; letter-spacing: -0.5px;
  line-height: 1;
  margin-bottom: 6px;
}
.calc-result .calc-small {
  font-size: 12px;
  opacity: 0.85;
}
.calc-tiers {
  background: var(--sage-light);
  padding: 14px 16px;
  border-radius: 3px;
  margin-top: 16px;
  font-size: 12px;
  color: var(--forest);
}
.calc-tiers strong { font-weight: 800; }
.calc-tiers .tier-row {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--forest-dark);
  color: rgba(255,255,255,0.75);
  padding: 48px 0 0;
  margin-top: 40px;
  border-top: 4px solid var(--sage);
}
.footer-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 22px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { }
.footer-logo {
  background: white;
  padding: 10px 14px;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 18px;
}
.footer-logo img { height: 42px; display: block; }
.footer-brand p {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  margin-bottom: 14px;
  max-width: 320px;
}
.footer-address {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}
.footer-address strong { color: white; display: block; margin-bottom: 3px; }
.footer-address a { color: var(--sage); text-decoration: none; }
.footer-address a:hover { color: white; }

.footer-col h4 {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 12px;
  cursor: pointer;
  transition: color 0.15s;
}
.footer-col a:hover { color: white; }

.footer-bottom {
  padding: 20px 0 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom-left {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
}
.footer-payments {
  display: flex;
  gap: 12px;
  align-items: center;
}
.footer-payments span {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  padding: 6px 12px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.12);
}

@media (max-width: 1024px) {
  .reorder-strip { grid-template-columns: repeat(4, 1fr); }
  .valueprop-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 26px; }
}
@media (max-width: 768px) {
  .reorder-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}


/* ============ HERO PRODUCT GRID ============ */
.hero-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-products {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 10px;
}
.hero-product-card {
  background: transparent;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  min-height: 180px;
}
.hero-product-card:nth-child(1) { transform: translateY(-10px) rotate(-3deg); }
.hero-product-card:nth-child(2) { transform: translateY(10px) rotate(2deg); }
.hero-product-card:nth-child(3) { transform: translateY(10px) rotate(-2deg); }
.hero-product-card:nth-child(4) { transform: translateY(-10px) rotate(3deg); }
.hero-product-card:hover {
  transform: translateY(-16px) scale(1.08) rotate(0deg);
}
.hero-product-card .hp-img {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.hero-product-card .hp-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.45)) drop-shadow(0 4px 8px rgba(0,0,0,0.25));
}
.hero-product-card .hp-brand,
.hero-product-card .hp-name { display: none; }

@media (max-width: 1024px) {
  .hero-main { grid-template-columns: 1fr; gap: 24px; }
  .hero-products { grid-template-columns: repeat(4, 1fr); }
  .hero-product-card:nth-child(1),
  .hero-product-card:nth-child(2),
  .hero-product-card:nth-child(3),
  .hero-product-card:nth-child(4) { transform: none; }
}
@media (max-width: 768px) {
  .hero-products { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .hero-product-card { min-height: 120px; }
  .hero-product-card .hp-img { height: 120px; padding: 4px; }
}

/* ============ PROMO TILE IMAGES ============ */
.promo-tile {
  display: grid;
  grid-template-columns: 1fr 70px;
  gap: 14px;
  align-items: center;
}
.promo-tile-body { min-width: 0; }
.promo-tile-img {
  width: 70px;
  height: 70px;
  background: var(--peach-soft);
  border: 1px solid var(--stone-light);
  border-radius: 4px;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.promo-tile-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}
@media (max-width: 768px) {
  .promo-tile { grid-template-columns: 1fr 56px; }
  .promo-tile-img { width: 56px; height: 56px; }
}

/* ============ FEATURE BLOCK IMAGES ============ */
.feature-block {
  position: relative;
  overflow: hidden;
}
.feature-block .fb-img {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  width: 110px;
  height: 110px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
  transition: all 0.2s;
  z-index: 1;
}
.feature-block .fb-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.feature-block:hover .fb-img {
  opacity: 1;
  right: -12px;
  transform: translateY(-50%) scale(1.05);
}
.feature-block h3, .feature-block p, .feature-block a {
  position: relative;
  z-index: 2;
  max-width: 65%;
}
@media (max-width: 1024px) {
  .feature-block .fb-img { width: 90px; height: 90px; right: -25px; }
}
@media (max-width: 768px) {
  .feature-block .fb-img { width: 80px; height: 80px; right: -20px; opacity: 0.7; }
}


/* ============ HERO CAROUSEL ============ */
.hero-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.hero-slides {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.hero-slide {
  min-width: 100%;
  flex-shrink: 0;
  min-height: 320px;
  display: flex;
}
.hero-slide > * {
  width: 100%;
  flex: 1;
}
.hero-slide .hero-main {
  border-radius: 0;
  margin: 0;
}

/* Carousel arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: none;
  color: var(--ink);
  font-size: 22px;
  cursor: pointer;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.25s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.hero-carousel:hover .carousel-arrow { opacity: 1; }
.carousel-arrow:hover { background: white; transform: translateY(-50%) scale(1.1); }
.carousel-arrow.prev { left: 20px; }
.carousel-arrow.next { right: 20px; }

/* Carousel dots */
.carousel-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 20;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s;
}
.carousel-dot:hover { background: rgba(255,255,255,0.7); }
.carousel-dot.active {
  background: white;
  width: 32px;
  border-radius: 5px;
}

/* ============ SLIDE 2: GLOWING HUB ============ */
.slide-hub {
  background: linear-gradient(135deg, #1E40AF 0%, #2563EB 40%, #1D4ED8 100%);
  min-height: 320px;
  padding: 50px 56px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  color: white;
}
.slide-hub::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(171, 205, 98, 0.25) 0%, rgba(171, 205, 98, 0.08) 30%, transparent 60%);
  transform: translate(50%, -50%);
  pointer-events: none;
  border-radius: 50%;
}
.hub-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hub-eyebrow {
  font-size: 12px;
  font-weight: 700;
  color: #ABCD62;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 14px;
}
.hub-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.2px;
  margin-bottom: 16px;
  font-family: "Montserrat", sans-serif;
  max-width: 500px;
}
.hub-subtitle {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  max-width: 480px;
  margin-bottom: 26px;
  font-weight: 500;
}
.hub-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hub-diagram {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
.hub-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #ABCD62 0%, #88B820 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px rgba(171, 205, 98, 0.6), 0 0 120px rgba(171, 205, 98, 0.25);
  z-index: 5;
  animation: hubPulse 3s ease-in-out infinite;
}
.hub-center-inner {
  width: 100px;
  height: 100px;
  background: white;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.08);
}
.hub-center-inner .hub-logo {
  font-size: 22px;
  font-weight: 900;
  color: #1D4ED8;
  letter-spacing: -1px;
  line-height: 1;
}
.hub-center-inner .hub-sub {
  font-size: 7px;
  font-weight: 700;
  color: #6B9118;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-top: 2px;
}
@keyframes hubPulse {
  0%, 100% { box-shadow: 0 0 60px rgba(171, 205, 98, 0.6), 0 0 120px rgba(171, 205, 98, 0.25); }
  50% { box-shadow: 0 0 80px rgba(171, 205, 98, 0.8), 0 0 160px rgba(171, 205, 98, 0.35); }
}
.orbit-node {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(171, 205, 98, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: white;
  white-space: nowrap;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.3px;
  transition: all 0.3s;
  z-index: 4;
  animation: orbitPulse 4s ease-in-out infinite;
}
.orbit-node:hover {
  background: rgba(171, 205, 98, 0.25);
  border-color: #ABCD62;
  transform: scale(1.08);
  animation-play-state: paused;
}
.orbit-node.n1 { top: 12%; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.orbit-node.n2 { top: 26%; right: 6%; animation-delay: 0.6s; }
.orbit-node.n3 { bottom: 26%; right: 6%; animation-delay: 1.2s; }
.orbit-node.n4 { bottom: 12%; left: 50%; transform: translateX(-50%); animation-delay: 1.8s; }
.orbit-node.n5 { bottom: 26%; left: 6%; animation-delay: 2.4s; }
.orbit-node.n6 { top: 26%; left: 6%; animation-delay: 3.0s; }
@keyframes orbitPulse {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 1; }
}
.orbit-line {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 1.5px;
  background: repeating-linear-gradient(90deg, rgba(171, 205, 98, 0.6) 0px, rgba(171, 205, 98, 0.6) 4px, transparent 4px, transparent 8px);
  transform-origin: 0 50%;
  z-index: 2;
  animation: lineFlow 3s linear infinite;
}
@keyframes lineFlow {
  0% { background-position: 0 0; }
  100% { background-position: 24px 0; }
}
.hub-mobile-list { display: none; }

@media (max-width: 1024px) {
  .slide-hub { padding: 36px 32px; }
  .hub-title { font-size: 32px; }
  .hub-center { width: 100px; height: 100px; }
  .hub-center-inner { width: 84px; height: 84px; }
  .hub-center-inner .hub-logo { font-size: 18px; }
  .orbit-node { font-size: 10px; padding: 8px 12px; }
}
@media (max-width: 768px) {
  .slide-hub {
    grid-template-columns: 1fr;
    padding: 28px 22px;
    min-height: auto;
    gap: 24px;
  }
  .hub-title { font-size: 26px; }
  .hub-subtitle { font-size: 13px; }
  .hub-diagram { display: none; }
  .hub-mobile-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 6px;
  }
  .hub-mobile-list .channel {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(171, 205, 98, 0.4);
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    color: white;
  }
}

/* ============ SLIDE 3: SAVINGS LADDER ============ */
.slide-ladder {
  background: linear-gradient(135deg, #581C87 0%, #9333EA 50%, #6B21A8 100%);
  min-height: 320px;
  padding: 50px 56px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  color: white;
}
.slide-ladder::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(232, 84, 28, 0.22) 0%, transparent 55%);
  transform: translateY(-50%);
  pointer-events: none;
}
.ladder-content { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; }
.ladder-eyebrow {
  font-size: 12px;
  font-weight: 700;
  color: #FBBF24;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 14px;
}
.ladder-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -1.2px;
  color: white;
  margin-bottom: 16px;
  max-width: 520px;
  font-family: "Montserrat", sans-serif;
}
.ladder-title .accent { color: #FBBF24; }
.ladder-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  max-width: 480px;
  margin-bottom: 26px;
  font-weight: 500;
  line-height: 1.6;
}
.ladder-visual {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 14px;
}
.rung {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 18px;
  align-items: center;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 14px 22px;
  transition: all 0.3s;
}
.rung.r1 { width: 60%; opacity: 0.75; }
.rung.r2 { width: 80%; opacity: 0.9; }
.rung.r3 {
  width: 100%;
  background: linear-gradient(135deg, rgba(232,84,28,0.25) 0%, rgba(232,84,28,0.12) 100%);
  border-color: #E8541C;
  box-shadow: 0 0 40px rgba(232, 84, 28, 0.35), 0 8px 28px rgba(0,0,0,0.2);
  animation: rungGlow 3s ease-in-out infinite;
}
@keyframes rungGlow {
  0%, 100% { box-shadow: 0 0 40px rgba(232, 84, 28, 0.35), 0 8px 28px rgba(0,0,0,0.2); }
  50% { box-shadow: 0 0 60px rgba(232, 84, 28, 0.5), 0 8px 28px rgba(0,0,0,0.2); }
}
.rung-amount {
  font-size: 20px;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  color: white;
}
.rung.r3 .rung-amount { font-size: 24px; }
.rung-arrow {
  font-size: 18px;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
}
.rung-discount {
  font-size: 22px;
  font-weight: 900;
  color: #FBBF24;
  font-family: "Montserrat", sans-serif;
  letter-spacing: -1px;
}
.rung.r3 .rung-discount { font-size: 32px; color: #FB923C; }
.rung-saved {
  font-size: 10px;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 2px;
}

/* ============ SLIDE 4: INSTITUTIONAL PLAY ============ */
.slide-inst {
  background: linear-gradient(135deg, #7C2D12 0%, #9F1239 50%, #881337 100%);
  min-height: 320px;
  padding: 50px 56px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 44px;
  color: white;
}
.slide-inst::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.18) 0%, transparent 55%);
  pointer-events: none;
  border-radius: 50%;
}
.slide-inst::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}
.inst-content { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; }
.inst-eyebrow {
  font-size: 12px;
  font-weight: 700;
  color: #FBBF24;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 14px;
}
.inst-title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.2px;
  color: white;
  margin-bottom: 16px;
  max-width: 520px;
  font-family: "Montserrat", sans-serif;
}
.inst-title .accent { color: #FBBF24; }
.inst-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  max-width: 500px;
  margin-bottom: 24px;
  font-weight: 500;
  line-height: 1.6;
}
.inst-badges {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.inst-badge {
  background: rgba(251, 191, 36, 0.15);
  border: 1px solid rgba(251, 191, 36, 0.4);
  color: #FBBF24;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.inst-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-content: center;
}
.inst-tile {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  padding: 20px 18px;
  transition: all 0.25s;
  cursor: pointer;
}
.inst-tile:hover {
  background: rgba(251, 191, 36, 0.12);
  border-color: #FBBF24;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.tile-icon {
  font-size: 28px;
  margin-bottom: 10px;
  display: block;
  line-height: 1;
}
.tile-title {
  font-size: 14px;
  font-weight: 800;
  color: white;
  margin-bottom: 4px;
  font-family: "Montserrat", sans-serif;
  letter-spacing: -0.2px;
}
.tile-desc {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
  font-weight: 500;
  margin-bottom: 10px;
}
.tile-stat {
  font-size: 11px;
  color: #FBBF24;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Slide-specific responsive */
@media (max-width: 1024px) {
  .slide-ladder, .slide-inst { padding: 36px 28px; }
  
  
  
}
@media (max-width: 768px) {
  .carousel-arrow { display: none; }
  .carousel-dots { bottom: 14px; }
  .slide-ladder, .slide-inst { padding: 28px 22px; min-height: 260px; grid-template-columns: 1fr; gap: 20px; }
  
  
  
}


/* ============ CATALOG TOOLBAR SEARCH ============ */
.catalog-search {
  position: relative;
  display: flex;
  align-items: center;
  background: white;
  border: 1.5px solid #D1D5DB;
  border-radius: 6px;
  padding: 0 10px 0 14px;
  min-width: 280px;
  height: 38px;
  transition: border-color 0.15s;
}
.catalog-search:focus-within {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(151, 178, 93, 0.15);
}
.catalog-search .cs-icon {
  font-size: 14px;
  color: #9CA3AF;
  margin-right: 8px;
  flex-shrink: 0;
}
.catalog-search input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 13px;
  color: var(--ink);
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  padding: 0;
  min-width: 0;
}
.catalog-search input::placeholder {
  color: #9CA3AF;
  font-weight: 500;
}
.catalog-search .cs-clear {
  background: transparent;
  border: none;
  color: #9CA3AF;
  font-size: 20px;
  cursor: pointer;
  padding: 0 6px;
  display: none;
  line-height: 1;
  font-weight: 400;
  flex-shrink: 0;
}
.catalog-search .cs-clear:hover { color: var(--ink); }
.catalog-search.has-value .cs-clear { display: block; }

@media (max-width: 900px) {
  .catalog-search { min-width: 180px; }
}
@media (max-width: 640px) {
  .catalog-search { min-width: 140px; height: 34px; padding: 0 8px 0 10px; }
  .catalog-search .cs-icon { font-size: 12px; }
  .catalog-search input { font-size: 12px; }
}


/* ============ POPULAR BRANDS (Tiered Showcase) ============ */
.popular-brands {
  background: linear-gradient(180deg, #F5E6D3 0%, #EFD9B8 100%);
  padding: 56px 22px;
  margin: 40px 0 0;
  border-top: 1px solid rgba(151, 178, 93, 0.2);
}
.pb-inner { max-width: 1600px; margin: 0 auto; }
.pb-header { text-align: center; margin-bottom: 36px; }
.pb-eyebrow {
  font-size: 12px;
  font-weight: 800;
  color: var(--forest-dark);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 10px;
  font-family: "Montserrat", sans-serif;
}
.pb-title {
  font-size: 34px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.8px;
  margin: 0 0 10px;
  line-height: 1.1;
  font-family: "Montserrat", sans-serif;
}
.pb-subtitle {
  font-size: 14px;
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.5;
  font-weight: 500;
}

/* ===== TIER 1: 3 HERO TILES ===== */
.pb-heroes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}
.brand-hero-tile {
  position: relative;
  height: 220px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background: linear-gradient(135deg, #FFFFFF 0%, #FAFAFA 100%);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  transition: all 0.3s;
}
.brand-hero-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
  border-color: var(--sage);
}
.brand-hero-img {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 28px 90px;
}
.brand-hero-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 0.4s;
}
.brand-hero-tile:hover .brand-hero-img img { transform: scale(1.05); }
.brand-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px 22px;
  background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.95) 40%, white 100%);
  text-align: left;
}
.brand-hero-name {
  font-size: 22px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.5px;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
  margin-bottom: 4px;
}
.brand-hero-count {
  font-size: 11px;
  font-weight: 700;
  color: var(--forest);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* ===== TIER 2: 6 MEDIUM TILES ===== */
.pb-mediums {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}
.brand-med-tile {
  background: white;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 8px;
  height: 128px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: all 0.25s;
}
.brand-med-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.1);
  border-color: var(--sage);
}
.brand-med-img {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  background: #FAFAFA;
  min-height: 0;
}
.brand-med-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.brand-med-info {
  padding: 8px 10px;
  border-top: 1px solid #F0F0F0;
  background: white;
}
.brand-med-name {
  font-size: 12px;
  font-weight: 800;
  color: var(--ink);
  font-family: "Montserrat", sans-serif;
  line-height: 1.1;
  letter-spacing: -0.2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brand-med-count {
  font-size: 10px;
  color: var(--ink-soft);
  font-weight: 600;
  margin-top: 1px;
}

/* ===== TIER 3: 9 COMPACT CHIPS ===== */
.pb-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 28px;
}
.brand-chip {
  background: white;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 999px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: all 0.2s;
}
.brand-chip:hover {
  background: var(--sage-light);
  border-color: var(--sage);
  transform: translateY(-1px);
}
.brand-chip-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
}
.brand-chip-count {
  font-size: 10px;
  font-weight: 800;
  color: var(--forest);
  background: var(--sage-light);
  padding: 2px 7px;
  border-radius: 999px;
  line-height: 1;
}
.brand-chip:hover .brand-chip-count { background: white; }

.pb-footer { text-align: center; }
.pb-view-all {
  background: transparent;
  border: 2px solid var(--forest);
  color: var(--forest);
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  transition: all 0.2s;
}
.pb-view-all:hover { background: var(--forest); color: white; }

@media (max-width: 1200px) {
  .pb-mediums { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .popular-brands { padding: 40px 18px; }
  .pb-title { font-size: 26px; }
  .pb-heroes { grid-template-columns: 1fr; gap: 12px; }
  .brand-hero-tile { height: 180px; }
  .brand-hero-name { font-size: 18px; }
  .pb-mediums { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .brand-med-tile { height: 112px; }
}
@media (max-width: 500px) {
  .brand-chip { padding: 7px 12px; }
  .brand-chip-name { font-size: 11px; }
}



/* ============ BUYER TYPE TILES ============ */
.buyer-section {
  background: linear-gradient(180deg, #FFFFFF 0%, #FAFAF8 100%);
  padding: 56px 22px;
  margin: 0;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.buyer-inner { max-width: 1600px; margin: 0 auto; }
.buyer-header { text-align: center; margin-bottom: 36px; }
.buyer-eyebrow {
  font-size: 12px;
  font-weight: 800;
  color: var(--forest);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 10px;
  font-family: "Montserrat", sans-serif;
}
.buyer-title {
  font-size: 34px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.8px;
  margin: 0 0 10px;
  line-height: 1.1;
  font-family: "Montserrat", sans-serif;
}
.buyer-subtitle {
  font-size: 14px;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.5;
  font-weight: 500;
}
.buyer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1500px;
  margin: 0 auto;
}
.buyer-tile {
  background: white;
  border: 1.5px solid rgba(0,0,0,0.06);
  border-radius: 8px;
  padding: 20px 20px 22px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.25s;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  min-height: 120px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.buyer-tile::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--tile-color);
  transition: width 0.25s;
}
.buyer-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
  border-color: var(--tile-color);
}
.buyer-tile:hover::before { width: 6px; }
.buyer-icon {
  width: 54px;
  height: 54px;
  min-width: 54px;
  background: color-mix(in srgb, var(--tile-color) 12%, white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
  transition: all 0.25s;
}
.buyer-tile:hover .buyer-icon {
  background: var(--tile-color);
  transform: scale(1.05);
}
.buyer-content { flex: 1; min-width: 0; }
.buyer-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.3px;
  line-height: 1.2;
  margin-bottom: 4px;
  font-family: "Montserrat", sans-serif;
}
.buyer-desc {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.4;
  font-weight: 500;
  margin-bottom: 10px;
}
.buyer-count {
  font-size: 11px;
  font-weight: 800;
  color: var(--tile-color);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
@media (max-width: 1100px) {
  .buyer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .buyer-grid { grid-template-columns: 1fr; }
  .buyer-title { font-size: 24px; }
}



/* ============ FREE PRICING TOOLS SECTION ============ */
.tools-section {
  padding: 56px 22px;
  background: var(--peach-soft);
}
.tools-section .section-head h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.6px;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 6px;
}
.tools-section .section-head p {
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 500;
}
.tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1500px;
  margin: 28px auto 0;
}
.tool-tile {
  background: white;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 10px;
  padding: 26px 22px 22px;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  min-height: 220px;
}
.tool-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.12);
  border-color: rgba(151, 178, 93, 0.5);
}
.tool-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: white;
  margin-bottom: 16px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.tool-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.3px;
  line-height: 1.25;
  margin-bottom: 10px;
  font-family: "Montserrat", sans-serif;
}
.tool-desc {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.55;
  font-weight: 500;
  flex: 1;
  margin-bottom: 14px;
}
.tool-cta {
  font-size: 11px;
  font-weight: 800;
  color: var(--forest);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.tools-disclaimer {
  max-width: 1100px;
  margin: 28px auto 0;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(232, 84, 28, 0.2);
  border-left: 3px solid var(--orange);
  border-radius: 4px;
  padding: 14px 18px;
  font-size: 11px;
  color: var(--ink-soft);
  line-height: 1.55;
  font-weight: 500;
}
.tools-disclaimer strong { color: var(--ink); }

@media (max-width: 1100px) {
  .tools-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .tools-grid { grid-template-columns: 1fr; }
  .tools-section .section-head h2 { font-size: 24px; }
}

/* ============ TOOL MODALS (shared) ============ */
.tool-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 26, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 400;
  padding: 24px;
}
.tool-modal-overlay.open { display: flex; }
.tool-modal {
  background: white;
  border-radius: 8px;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 60px rgba(10, 15, 26, 0.3);
  position: relative;
  animation: toolModalIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes toolModalIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.tool-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(10, 15, 26, 0.06);
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}
.tool-modal-close:hover { background: rgba(10, 15, 26, 0.12); }
.tool-modal-header {
  padding: 32px 36px 22px;
  border-bottom: 1px solid #F0F0F0;
}
.tool-modal-header h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  font-family: "Montserrat", sans-serif;
  letter-spacing: -0.4px;
  margin-bottom: 6px;
}
.tool-modal-header p {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.tool-modal-body { padding: 24px 36px; }
.tool-modal-body .input-group { margin-bottom: 16px; }
.tool-modal-body label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}
.tool-modal-body .input-row { display: flex; gap: 10px; }
.tool-modal-body .input-row .input-group { flex: 1; }
.tool-modal-body input[type="number"],
.tool-modal-body input[type="text"],
.tool-modal-body select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #E5E7EB;
  border-radius: 5px;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  color: var(--ink);
  font-weight: 600;
  background: white;
  transition: border-color 0.15s;
}
.tool-modal-body input:focus,
.tool-modal-body select:focus {
  outline: none;
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(151, 178, 93, 0.15);
}
.tool-modal-body .input-prefix {
  position: relative;
}
.tool-modal-body .input-prefix::before {
  content: attr(data-prefix);
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink-soft);
  font-weight: 700;
  pointer-events: none;
  font-size: 14px;
}
.tool-modal-body .input-prefix input { padding-left: 28px; }

.tool-results {
  background: linear-gradient(135deg, #F3F8E5 0%, #F9FAFB 100%);
  border: 1px solid rgba(151, 178, 93, 0.3);
  border-radius: 6px;
  padding: 18px 20px;
  margin-top: 18px;
}
.tool-result-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(0,0,0,0.08);
  font-size: 13px;
}
.tool-result-row:last-child { border-bottom: none; }
.tool-result-label {
  color: var(--ink-soft);
  font-weight: 600;
}
.tool-result-value {
  color: var(--ink);
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
}
.tool-result-row.primary {
  padding: 12px 0;
  margin-top: 4px;
  border-top: 2px solid var(--sage);
  border-bottom: none;
}
.tool-result-row.primary .tool-result-label {
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
}
.tool-result-row.primary .tool-result-value {
  font-size: 22px;
  color: var(--forest);
}
.tool-note {
  font-size: 11px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-top: 12px;
  font-weight: 500;
  font-style: italic;
}
.tool-modal-footer {
  padding: 14px 36px 26px;
  border-top: 1px solid #F0F0F0;
  font-size: 10px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.tool-modal-footer strong { color: var(--ink); }



/* Page split: homepage is sales content only; catalog lives on products.html */
body.home-page #catalogAnchor,
body.home-page #catalogAnchor + .home-inner,
body.home-page .main {
  display: none !important;
}
body.home-page .site-footer {
  margin-top: 36px;
}
body.products-page .home-hero,
body.products-page .buyer-section,
body.products-page .tools-section,
body.products-page .dept-section,
body.products-page .rfq-section,
body.products-page .popular-brands,
body.products-page section.home-inner:has(.promo-row) {
  display: none !important;
}
body.products-page #catalogAnchor + .home-inner {
  padding-top: 28px !important;
}
body.products-page .main {
  padding-top: 12px;
}