/*
Theme Name: SMT Expo v3
Theme URI: https://smtexpo.com
Author: SMT Expo / Glenmore Industries
Description: Custom WordPress theme for SMT Expo - Smart Modular Technology v3
Version: 1.0
*/

/* Fonts are loaded once via <link> in header.php — do not re-add an @import here
   (duplicate render-blocking request; see SEO audit item #3). */

:root {
  --green: #AECC00;
  --green-dark: #8fa800;
  --green-dim: rgba(174,204,0,0.12);
  --black: #0e0e0e;
  --black-2: #161616;
  --black-3: #1e1e1e;
  --white: #ffffff;
  --off-white: #f7f7f5;
  --gray-light: #f2f2f0;
  --gray-mid: #dedede;
  --gray-text: #5a5a5a;
  --gray-muted: #888888;
  --blue-btn: #2E6FD9;
  --blue-btn-hover: #1e55b5;
  --font-main: 'Barlow', sans-serif;
  --font-display: 'Oswald', sans-serif;
  --font-condensed: 'Barlow Condensed', sans-serif;
  --radius: 2px;
  --radius-sm: 2px;
  --shadow: 0 1px 3px rgba(14,14,14,0.06);
  --shadow-lg: 0 10px 32px rgba(14,14,14,0.10);
  --transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-main); color: var(--black); background: var(--white); line-height: 1.6; font-size: 16px; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

/* ── SHIPPING BAR ── */
.shipping-bar {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  text-align: center;
  padding: 9px 24px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.shipping-bar span { color: var(--green); }
.shipping-bar a { color: var(--green); transition: opacity var(--transition); }
.shipping-bar a:hover { opacity: 0.75; }

/* ── NAV ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  border-bottom: 1px solid var(--gray-mid);
  padding: 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo img { height: 46px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links a {
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-text);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--black); }
.btn-contact {
  background: var(--blue-btn) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background var(--transition), transform var(--transition);
}
.btn-contact:hover {
  background: var(--blue-btn-hover) !important;
  
  color: var(--white) !important;
}

/* ── MOBILE NAV TOGGLE ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(14,14,14,0.45);
  z-index: 998;
  opacity: 0;
  transition: opacity var(--transition);
}
.nav-overlay.open { display: block; opacity: 1; }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100%;
    width: min(320px, 82vw);
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 96px 32px 40px;
    box-shadow: -12px 0 32px rgba(14,14,14,0.16);
    transition: right var(--transition);
    overflow-y: auto;
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-links li { width: 100%; padding: 16px 0; border-bottom: 1px solid var(--gray-mid); }
  .nav-links a { display: block; font-size: 1rem; }
  .nav-links .btn-contact {
    display: inline-block;
    margin-top: 20px;
    text-align: center;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .shipping-bar { gap: 14px; font-size: 0.68rem; padding: 8px 16px; }
}

/* ── HERO ── */
.hero-slider {
  position: relative;
  width: 100%;
  height: 620px;
  overflow: hidden;
  background: var(--black);
}
.hero-slides { display: flex; height: 100%; transition: transform 0.8s cubic-bezier(.77,0,.18,1); }
.hero-slide { min-width: 100%; height: 100%; position: relative; display: flex; align-items: center; }
.hero-slide-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-slide-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.42; }
.hero-slide-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14,14,14,0.88) 0%, rgba(14,14,14,0.52) 50%, rgba(14,14,14,0.08) 100%);
}
.hero-slide-video { position: absolute; inset: 0; overflow: hidden; }
.hero-slide-video::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14,14,14,0.88) 0%, rgba(14,14,14,0.52) 50%, rgba(14,14,14,0.08) 100%);
}
.hero-video-desktop { width: 100%; height: 100%; object-fit: cover; opacity: 0.42; display: block; }
.hero-video-mobile { width: 100%; height: 100%; object-fit: cover; opacity: 0.42; display: none; }
.hero-slide-content {
  position: relative;
  z-index: 2;
  padding: 0 72px;
  max-width: 700px;
  color: var(--white);
}
.hero-eyebrow {
  font-family: var(--font-condensed);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: var(--green);
  flex-shrink: 0;
}
.hero-slide-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.93;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero-slide-content h1 span { color: var(--green); display: block; }
.hero-slide-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.93;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
  color: var(--white);
}
.hero-slide-content h2 span { color: var(--green); display: block; }
.hero-divider { width: 52px; height: 3px; background: var(--green); margin-bottom: 20px; }
.hero-slide-content p {
  font-size: 1rem;
  line-height: 1.75;
  opacity: 0.82;
  max-width: 440px;
  margin-bottom: 36px;
  font-weight: 500;
}
.btn-green {
  display: inline-block;
  background: var(--green);
  color: var(--black);
  padding: 14px 34px;
  border-radius: var(--radius-sm);
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background var(--transition), transform var(--transition);
}
.btn-green:hover { background: var(--green-dark);  color: var(--black); }
.slider-controls {
  position: absolute;
  bottom: 36px;
  left: 72px;
  display: flex;
  gap: 8px;
  z-index: 10;
}
.slider-dot {
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.28);
  cursor: pointer;
  border: none;
  transition: background var(--transition), width var(--transition);
}
.slider-dot.active { background: var(--green); width: 52px; }
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.22);
  color: white;
  width: 48px;
  height: 48px;
  font-size: 0.95rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
}
.slider-arrow:hover { border-color: var(--green); background: var(--green-dim); color: var(--green); }
.slider-prev { left: 24px; }
.slider-next { right: 24px; }
.hero-slide-number {
  position: absolute;
  bottom: 40px;
  right: 72px;
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.3);
  z-index: 10;
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--black-2);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0;
}
.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(174,204,0,0.05); }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.stat-label {
  font-family: var(--font-condensed);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.stat-sub {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.28);
  margin-top: 2px;
  display: block;
}

/* ── PRODUCTS ── */
.products-section { padding: 88px 0 48px; }
.section-label {
  font-family: var(--font-condensed);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before { content: ''; display: block; width: 28px; height: 2px; background: var(--green); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 56px;
  line-height: 1.05;
}
.section-title span { color: var(--green); }
.section-title.centered { text-align: center; }
.section-title.centered .section-label { justify-content: center; }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product-card {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--gray-mid);
}
.product-card:hover { border-color: var(--black); box-shadow: var(--shadow-lg); }
.product-card-img { position: relative; height: 240px; overflow: hidden; background: var(--gray-light); }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.6s ease; }
.product-card-img img[alt*="D-Pail"] { object-fit: contain; padding: 12px; }

.product-card-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(14,14,14,0.85) 0%, transparent 100%);
  color: var(--white);
  padding: 24px 18px 14px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.06em;
}
.product-toggle-indicator {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 18px;
  background: var(--gray-light);
  font-family: var(--font-condensed);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-text);
  transition: background var(--transition), color var(--transition);
}
.product-card.open .product-toggle-indicator { background: var(--green); color: var(--black); }
.toggle-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--green);
  color: var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  transition: transform var(--transition), background var(--transition);
  flex-shrink: 0;
}
.product-card.open .toggle-icon { transform: rotate(45deg); background: var(--black); color: var(--white); }

/* ── ACCORDION ── */
.product-accordion {
  grid-column: 1 / -1;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(.77,0,.18,1);
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-mid);
}
.product-accordion.open { max-height: 960px; }
.accordion-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  align-items: stretch;
}
.accordion-img-wrap {
  overflow: hidden;
  border-radius: var(--radius) 0 0 var(--radius);
  min-height: 360px;
  background: var(--gray-light);
}
.accordion-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.accordion-img-wrap img[alt*="D-Pail"] { object-fit: contain; padding: 24px; }
.accordion-content { padding: 44px 48px; }
.accordion-content h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.accordion-content .tagline {
  border-left: 3px solid var(--green);
  padding-left: 16px;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 20px;
  color: var(--gray-text);
  line-height: 1.6;
  font-size: 0.95rem;
}
.accordion-content p { color: var(--gray-text); margin-bottom: 20px; line-height: 1.8; font-size: 0.95rem; }
.product-table { width: 100%; border-collapse: collapse; margin-top: 16px; font-size: 0.88rem; }
.product-table th {
  background: var(--black);
  color: var(--white);
  padding: 10px 16px;
  text-align: left;
  font-family: var(--font-condensed);
  letter-spacing: 0.06em;
  font-size: 0.82rem;
  text-transform: uppercase;
}
.product-table td { padding: 9px 16px; border-bottom: 1px solid var(--gray-mid); color: var(--gray-text); }
.product-table tr:last-child td { border-bottom: none; }
.product-table tr:nth-child(even) td { background: var(--gray-light); }
.btn-learn-more {
  display: inline-block;
  margin-top: 22px;
  background: var(--green);
  color: var(--black);
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background var(--transition);
}
.btn-learn-more:hover { background: var(--green-dark); color: var(--black); }
.note-small { font-size: 0.8rem; color: var(--gray-muted); margin-top: 10px; font-style: italic; }

/* SIZE FINDER */
.size-finder {
  background: var(--off-white);
  border-radius: var(--radius-sm);
  padding: 18px;
  margin-top: 18px;
  border: 1px solid var(--gray-mid);
}
.size-finder h4 {
  font-family: var(--font-condensed);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  color: var(--black);
  font-weight: 700;
}
.size-finder-selects { display: flex; gap: 10px; flex-wrap: wrap; }
.size-finder select {
  padding: 8px 12px;
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 0.88rem;
  font-weight: 600;
  background: var(--white);
  cursor: pointer;
  transition: border-color var(--transition);
}
.size-finder select:focus { outline: none; border-color: var(--green); }
.size-finder-result {
  margin-top: 12px;
  padding: 11px 16px;
  background: var(--green);
  color: var(--black);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  display: none;
}
.size-finder-result.visible { display: block; }

.colors-label { margin-top: 18px; margin-bottom: 10px; font-weight: 700; font-size: 0.88rem; letter-spacing: 0.04em; text-transform: uppercase; font-family: var(--font-condensed); }

/* COLOR SWATCHES */
.color-swatches { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 16px; }
.swatch { display: flex; flex-direction: column; align-items: center; gap: 7px; }
.swatch-circle {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2px solid var(--gray-mid);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: default;
}
.swatch-label { font-size: 0.72rem; color: var(--gray-text); font-weight: 600; text-align: center; }
.swatch-circle.blue { background: #1B538F; }
.swatch-circle.black { background: #3B3C40; }
.swatch-circle.white { background: #ECECE7; border-color: #ccc; }
.swatch-circle.forest-green { background: #425951; }
.swatch-circle.grey { background: #BCCCDA; border-color: #aaa; }
.swatch-circle.red { background: #EC1A1A; }
.swatch-circle:hover { border-color: var(--black); }

/* ── STAPLE FREE ── */
.staple-free { background: var(--black-2); padding: 96px 0; }
.staple-free-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.staple-free-text .section-label { color: var(--green); }
.staple-free-text .section-label::before { background: var(--green); }
.staple-free-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  text-transform: uppercase;
  margin-bottom: 24px;
  line-height: 1.1;
  color: var(--white);
}
.staple-free-text p { color: rgba(255,255,255,0.65); margin-bottom: 18px; line-height: 1.85; font-size: 0.97rem; }
.staple-free-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.staple-free-img img { width: 100%; height: 420px; object-fit: cover; }

/* ── FEATURES ── */
.features-section { padding: 96px 0; background: var(--white); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.feature-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 40px 32px;
  border: 1px solid var(--gray-mid);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover { box-shadow: var(--shadow-lg); border-color: var(--black); }
.feature-icon {
  width: 48px; height: 48px;
  background: var(--white);
  border: 1.5px solid var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.feature-icon svg { width: 22px; height: 22px; stroke: var(--black); fill: none; stroke-width: 1.8; }
.feature-card:hover .feature-icon { background: var(--green); }
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.feature-card p { color: var(--gray-text); line-height: 1.75; font-size: 0.92rem; }

/* ── FAQ ── */
.faq-section { padding: 96px 0; background: var(--off-white); }
.faq-list { max-width: 860px; margin: 56px auto 0; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: rgba(174,204,0,0.4); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.97rem;
  background: var(--white);
  transition: background var(--transition);
  gap: 16px;
  user-select: none;
}
.faq-question:hover { background: var(--off-white); }
.faq-item.open .faq-question { background: var(--black); color: var(--white); }
.faq-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--green);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 320px; }
.faq-answer-inner {
  padding: 20px 24px;
  color: var(--gray-text);
  line-height: 1.85;
  border-top: 1px solid var(--gray-mid);
  font-size: 0.95rem;
}

/* ── ORDER ── */
.how-to-order { background: var(--white); padding: 96px 0; }
.order-box {
  border: 1px solid var(--gray-mid);
  border-top: 3px solid var(--green);
  padding: 60px 52px;
  text-align: center;
  max-width: 840px;
  margin: 0 auto;
  background: var(--white);
  
}
.order-box h2 {
  font-family: var(--font-display);
  font-size: 2.6rem;
  text-transform: uppercase;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.order-box > p { color: var(--gray-text); margin-bottom: 12px; line-height: 1.75; font-size: 0.97rem; }
.order-meta { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-bottom: 32px; }
.order-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-condensed);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-text);
}
.order-meta-item .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.order-fallback { margin-top: 24px; font-size: 0.86rem; color: var(--gray-muted); }
.order-fallback a { color: var(--blue-btn); font-weight: 600; }

/* ── ABOUT PAGE ── */
.about-hero {
  background: var(--black);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(174,204,0,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.about-hero-inner { max-width: 740px; position: relative; z-index: 1; }
.about-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 24px;
}
.about-hero h1 span { color: var(--green); }
.about-hero p { color: rgba(255,255,255,0.65); font-size: 1.05rem; line-height: 1.8; max-width: 560px; }
.about-content { padding: 96px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 80px;
}
.about-text h2 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1.1;
}
.about-text p { color: var(--gray-text); line-height: 1.85; margin-bottom: 18px; font-size: 0.97rem; }
.about-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img img { width: 100%; height: 380px; object-fit: cover; object-position: center; }
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid var(--gray-mid);
}
.about-value {
  padding: 32px 24px;
  background: var(--off-white);
  border-radius: var(--radius);
  border-left: 3px solid var(--green);
}
.about-value h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.about-value p { font-size: 0.9rem; color: var(--gray-text); line-height: 1.75; }

/* ── FOOTER ── */
.site-footer { background: var(--black); color: rgba(255,255,255,0.65); padding: 64px 0 32px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-logo { height: 42px; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.88rem; line-height: 1.75; color: rgba(255,255,255,0.5); }
.footer-social { display: flex; gap: 14px; margin-top: 22px; }
.footer-social a {
  font-family: var(--font-condensed);
  color: rgba(255,255,255,0.45);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.footer-social a:hover { color: var(--green); }
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-condensed);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
  font-weight: 700;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--green); }
.footer-col .contact-item { font-size: 0.86rem; color: rgba(255,255,255,0.45); margin-bottom: 8px; line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.35); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--green); }

/* ── BLOG ── */
.blog-hero { background: var(--black); padding: 64px 0 56px; border-bottom: 3px solid var(--green); }
.blog-hero-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 700; text-transform: uppercase; color: var(--white); line-height: 1; margin-bottom: 14px; }
.blog-hero-title span { color: var(--green); }
.blog-hero-sub { font-size: 0.97rem; color: rgba(255,255,255,0.55); line-height: 1.7; }
.blog-section { padding: 72px 0; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--gray-mid); transition: transform var(--transition), box-shadow var(--transition); display: flex; flex-direction: column; }
.blog-card:hover { border-color: var(--black); box-shadow: var(--shadow-lg); }
.blog-card-img { display: block; height: 200px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }

.blog-card-img-placeholder { background: var(--black-2); display: flex; align-items: center; justify-content: center; }
.blog-placeholder-inner span { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--green); }
.blog-card-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.blog-card-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.blog-card-date { font-size: 0.76rem; color: var(--gray-muted); font-weight: 600; font-family: var(--font-condensed); letter-spacing: 0.06em; text-transform: uppercase; }
.blog-card-cat { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; background: var(--green); color: var(--black); padding: 3px 9px; border-radius: 50px; }
.blog-card-title { font-family: var(--font-display); font-size: 1.15rem; text-transform: uppercase; margin-bottom: 10px; line-height: 1.3; flex: 1; }
.blog-card-title a { color: var(--black); transition: color var(--transition); }
.blog-card-title a:hover { color: var(--green); }
.blog-card-excerpt { font-size: 0.88rem; color: var(--gray-text); line-height: 1.7; margin-bottom: 18px; }
.blog-card-link { font-family: var(--font-condensed); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green); margin-top: auto; }
.blog-pagination { margin-top: 52px; text-align: center; }
.blog-pagination .nav-links { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.blog-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: var(--radius-sm); font-weight: 700; font-size: 0.88rem; color: var(--gray-text); border: 1px solid var(--gray-mid); transition: all var(--transition); }
.blog-pagination .page-numbers.current { background: var(--green); color: var(--black); border-color: var(--green); }
.blog-pagination .page-numbers:hover { border-color: var(--green); color: var(--green); }

/* ── SINGLE POST ── */
.post-hero { background: var(--black); padding: 52px 0 44px; border-bottom: 3px solid var(--green); }
.post-breadcrumb { font-size: 0.78rem; color: rgba(255,255,255,0.38); margin-bottom: 18px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.post-breadcrumb a { color: rgba(255,255,255,0.45); transition: color var(--transition); }
.post-breadcrumb a:hover { color: var(--green); }
.post-cat { display: inline-block; font-family: var(--font-condensed); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; background: var(--green); color: var(--black); padding: 3px 12px; border-radius: 50px; margin-bottom: 14px; }
.post-title { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; text-transform: uppercase; color: var(--white); line-height: 1.1; margin-bottom: 16px; max-width: 820px; }
.post-meta { display: flex; align-items: center; gap: 20px; }
.post-date { font-family: var(--font-condensed); font-size: 0.82rem; color: rgba(255,255,255,0.45); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.post-read-time { font-family: var(--font-condensed); font-size: 0.82rem; color: var(--green); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.post-featured-img { padding: 44px 0 0; }
.post-featured-img .post-thumb { width: 100%; max-height: 500px; object-fit: cover; border-radius: var(--radius); }
.post-content-section { padding: 56px 0 96px; }
.post-content-inner { display: grid; grid-template-columns: 1fr 300px; gap: 64px; align-items: start; }
.post-body { font-size: 1rem; line-height: 1.88; color: #2a2a2a; }
.post-body h2 { font-family: var(--font-display); font-size: 1.65rem; text-transform: uppercase; color: var(--black); margin: 40px 0 18px; padding-bottom: 10px; border-bottom: 2px solid var(--green); }
.post-body h3 { font-family: var(--font-display); font-size: 1.2rem; text-transform: uppercase; color: var(--black); margin: 30px 0 12px; }
.post-body p { margin-bottom: 22px; }
.post-body ul, .post-body ol { margin: 0 0 22px 24px; }
.post-body li { margin-bottom: 8px; }
.post-body strong { color: var(--black); }
.post-body a { color: var(--blue-btn); text-decoration: underline; }
.post-body blockquote { border-left: 3px solid var(--green); padding: 16px 22px; margin: 28px 0; background: var(--off-white); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-style: italic; color: var(--gray-text); }
.post-tags { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--gray-mid); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.post-tags span:first-child { font-family: var(--font-condensed); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-text); }
.post-tag { font-family: var(--font-condensed); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; background: var(--gray-light); color: var(--gray-text); padding: 4px 12px; border-radius: 50px; }
.post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--gray-mid); }
.post-nav-label { font-family: var(--font-condensed); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); margin-bottom: 4px; display: block; }
.post-nav-next { text-align: right; }
.post-nav a { font-size: 0.9rem; font-weight: 600; color: var(--black); transition: color var(--transition); line-height: 1.4; }
.post-nav a:hover { color: var(--green); }
.btn-back-blog { display: inline-flex; align-items: center; gap: 8px; margin-top: 32px; font-family: var(--font-condensed); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue-btn); transition: gap var(--transition); }
.btn-back-blog:hover { gap: 14px; }
.post-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 88px; }
.sidebar-widget { background: var(--off-white); border-radius: var(--radius); padding: 24px; border: 1px solid var(--gray-mid); }
.sidebar-widget-title { font-family: var(--font-condensed); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--green); }
.sidebar-product-list { display: flex; flex-direction: column; gap: 10px; }
.sidebar-product-list a { font-size: 0.88rem; font-weight: 600; color: var(--gray-text); transition: color var(--transition); display: flex; align-items: center; gap: 6px; }
.sidebar-product-list a::before { content: '→'; color: var(--green); }
.sidebar-product-list a:hover { color: var(--black); }
.sidebar-cta { background: var(--black); }
.sidebar-cta .sidebar-widget-title { color: var(--white); }
.sidebar-cta p { font-size: 0.86rem; color: rgba(255,255,255,0.55); line-height: 1.65; }
.sidebar-recent-list { display: flex; flex-direction: column; gap: 12px; }
.sidebar-recent-list li { display: flex; flex-direction: column; gap: 3px; padding-bottom: 12px; border-bottom: 1px solid var(--gray-mid); }
.sidebar-recent-list li:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-recent-list a { font-size: 0.86rem; font-weight: 600; color: var(--black); transition: color var(--transition); line-height: 1.4; }
.sidebar-recent-list a:hover { color: var(--green); }
.sidebar-recent-list span { font-family: var(--font-condensed); font-size: 0.72rem; color: var(--gray-muted); letter-spacing: 0.06em; text-transform: uppercase; }

/* ── GENERIC PAGE ── */
.page-content { padding: 80px 0; }
.page-content h1 { font-family: var(--font-display); font-size: 2.4rem; text-transform: uppercase; margin-bottom: 32px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-values { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .products-grid { grid-template-columns: 1fr; }
  .product-accordion.open { max-height: 1400px; }
  .accordion-inner { grid-template-columns: 1fr; }
  .accordion-img-wrap { min-height: 240px; border-radius: var(--radius) var(--radius) 0 0; }
  .accordion-content { padding: 32px 28px; }
  .features-grid { grid-template-columns: 1fr; }
  .staple-free-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-slider { height: 500px; }
  .hero-slide-content { padding: 0 36px; }
  .slider-controls { left: 36px; }
  .hero-slide-number { right: 36px; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .hero-video-desktop { display: none; }
  .hero-video-mobile { display: block; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .post-content-inner { grid-template-columns: 1fr; }
  .post-sidebar { position: static; }
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .order-box { padding: 40px 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .order-meta { flex-direction: column; align-items: center; gap: 10px; }
  .hero-slider { height: 440px; }
  .hero-slide-content { padding: 0 24px; }
  .slider-controls { left: 24px; bottom: 28px; }
  .hero-slide-number { right: 24px; bottom: 32px; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .about-values { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .post-nav { grid-template-columns: 1fr; }
  .post-nav-next { text-align: left; }
}

/* ── BEFORE/AFTER PANEL ── */
.about-problem-section { padding: 80px 0 40px; }
.about-intro { font-size: 1.05rem; color: var(--gray-text); line-height: 1.85; max-width: 720px; margin-bottom: 40px; }
.before-after-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.before-panel { background: var(--black); padding: 40px; }
.after-panel { background: var(--black-2); padding: 40px; border-left: 3px solid var(--green); }
.panel-label { font-family: var(--font-condensed); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 24px; display: inline-block; padding: 5px 14px; border-radius: 50px; }
.panel-label-before { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.5); }
.panel-label-after { background: var(--green); color: var(--black); }
.problem-list, .solution-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.problem-list li, .solution-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.92rem; line-height: 1.6; }
.problem-list li { color: rgba(255,255,255,0.6); }
.solution-list li { color: rgba(255,255,255,0.85); }
.problem-icon { color: #ff4444; font-weight: 900; flex-shrink: 0; margin-top: 1px; font-size: 0.8rem; }
.solution-icon { color: var(--green); font-weight: 900; flex-shrink: 0; margin-top: 1px; font-size: 0.8rem; }
.about-grid { margin-top: 64px; }
@media (max-width: 768px) {
  .before-after-grid { grid-template-columns: 1fr; }
  .after-panel { border-left: none; border-top: 3px solid var(--green); }
}


/* ── B2B SYSTEM ADDITIONS ── */
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--black); color: var(--white); padding: 10px 18px; z-index: 2000; font-size: 0.85rem; }
.skip-link:focus { left: 0; }

a:focus-visible, button:focus-visible, [tabindex]:focus-visible, select:focus-visible {
  outline: 2px solid var(--black); outline-offset: 2px;
}

.section-index {
  font-family: var(--font-condensed);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gray-muted);
  margin-right: 10px;
}

/* Meta bar (replaces shipping bar styling intent) */
.shipping-bar { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; font-family: var(--font-condensed); }
.shipping-bar .meta-item { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.shipping-bar .meta-item::before { content: ''; width: 5px; height: 5px; background: var(--green); flex-shrink: 0; }

/* Spec / certification strip */
.spec-strip { background: var(--white); border-top: 1px solid var(--gray-mid); border-bottom: 1px solid var(--gray-mid); }
.spec-strip-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.spec-cell { padding: 22px 24px; border-right: 1px solid var(--gray-mid); }
.spec-cell:last-child { border-right: none; }
.spec-key { font-family: var(--font-condensed); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gray-muted); display: block; margin-bottom: 4px; }
.spec-val { font-family: var(--font-condensed); font-size: 0.95rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--black); }
@media (max-width: 900px) { .spec-strip-inner { grid-template-columns: repeat(2, 1fr); } .spec-cell { border-bottom: 1px solid var(--gray-mid); } }

/* Footer legal row */
.footer-region { margin-top: 10px; color: rgba(174,204,0,0.75); font-size: 0.78rem; font-family: var(--font-condensed); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700; }
.footer-mail a { color: rgba(255,255,255,0.45); }

/* Section label helper for centered variants */
.section-label.centered { justify-content: center; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

.btn-block { display: block; text-align: center; margin-top: 16px; }

/* ── PRODUCT PAGES (/q-tops/, /d-skirts/, /d-pail/) ── */
.product-hero { background: var(--black); position: relative; overflow: hidden; }
.product-hero .container { position: relative; z-index: 2; }
.product-hero-ghost {
  position: absolute; right: -12px; bottom: -36px;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(5rem, 16vw, 13rem); line-height: 1; text-transform: uppercase;
  color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.08);
  pointer-events: none; user-select: none; white-space: nowrap; z-index: 1;
}
.product-hero-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; padding: 88px 0; }
.product-hero h1 { font-family: var(--font-display); font-size: clamp(3rem, 7vw, 5.2rem); color: var(--white); text-transform: uppercase; line-height: 0.95; margin-bottom: 18px; }
.product-hero h1 span { color: var(--green); }
.product-hero .tagline-hero { color: rgba(255,255,255,0.7); font-size: 1.05rem; line-height: 1.8; max-width: 520px; margin-bottom: 28px; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.hero-chip { font-family: var(--font-condensed); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); border: 1px solid rgba(174,204,0,0.4); padding: 7px 14px; border-radius: 50px; }
.hero-cta-row { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.btn-ghost { display: inline-block; border: 1px solid rgba(255,255,255,0.3); color: var(--white); padding: 13px 30px; font-family: var(--font-condensed); font-weight: 700; font-size: 0.88rem; letter-spacing: 0.1em; text-transform: uppercase; border-radius: var(--radius-sm); transition: border-color var(--transition), color var(--transition); }
.btn-ghost:hover { border-color: var(--green); color: var(--green); }
.product-hero-img { position: relative; }
.product-hero-img img { width: 100%; height: 420px; object-fit: cover; border-radius: var(--radius); position: relative; z-index: 1; background: var(--gray-light); }
.product-hero-img.contain img { object-fit: contain; background: var(--white); padding: 24px; }
.product-hero-img::before { content: ''; position: absolute; top: -14px; right: -14px; width: 100%; height: 100%; border: 2px solid var(--green); border-radius: var(--radius); }

.install-section { padding: 88px 0; }
.install-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; counter-reset: step; }
.install-step { position: relative; background: var(--off-white); border: 1px solid var(--gray-mid); padding: 44px 32px 36px; border-radius: var(--radius); overflow: hidden; }
.install-step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; top: -16px; right: 8px;
  font-family: var(--font-display); font-size: 5.5rem; font-weight: 700; line-height: 1;
  color: transparent; -webkit-text-stroke: 1.5px var(--green); opacity: 0.55;
}
.install-step h3 { font-family: var(--font-display); font-size: 1.15rem; text-transform: uppercase; margin-bottom: 12px; position: relative; }
.install-step p { color: var(--gray-text); font-size: 0.92rem; line-height: 1.75; position: relative; }
.install-time { display: inline-flex; align-items: center; gap: 10px; margin-top: 36px; font-family: var(--font-condensed); font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.82rem; background: var(--green); color: var(--black); padding: 10px 22px; border-radius: 50px; }

.engineering-band { background: var(--black-2); padding: 88px 0; }
.engineering-band .section-title { color: var(--white); }
.engineering-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.08); margin-top: 48px; }
.engineering-cell { background: var(--black-2); padding: 36px 30px; }
.engineering-cell h3 { font-family: var(--font-display); color: var(--green); font-size: 1rem; text-transform: uppercase; margin-bottom: 10px; letter-spacing: 0.04em; }
.engineering-cell p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.75; }

.hero-chip-solid { background: var(--green); color: var(--black); border-color: var(--green); font-weight: 800; }

.colors-section { padding: 88px 0; }
.colors-intro { color: var(--gray-text); max-width: 640px; font-size: 0.97rem; line-height: 1.75; margin-top: 16px; }
.colors-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.color-card { border: 1px solid var(--gray-mid); border-radius: var(--radius); overflow: hidden; background: var(--white); position: relative; }
.color-card-new { border-color: var(--black); }
.color-card img { width: 100%; height: 300px; object-fit: cover; display: block; background: var(--gray-light); }
.color-card-badge { position: absolute; top: 14px; left: 14px; z-index: 2; font-family: var(--font-condensed); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; background: var(--green); color: var(--black); padding: 6px 12px; border-radius: 50px; }
.color-card-body { padding: 22px 26px; display: flex; align-items: center; gap: 14px; }
.color-card-body h3 { font-family: var(--font-display); font-size: 1.05rem; text-transform: uppercase; margin: 0 0 4px; }
.color-card-body p { color: var(--gray-text); font-size: 0.88rem; line-height: 1.6; margin: 0; }
.color-swatch { width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0; }
.color-swatch-white { background: var(--white); border: 2px solid var(--gray-mid); }
.color-swatch-black { background: var(--black); }
.colors-pairing { display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px; margin-top: 24px; align-items: stretch; }
.colors-pairing img { width: 100%; height: 280px; object-fit: cover; border-radius: var(--radius); display: block; background: var(--gray-light); }
.colors-pairing-text { background: var(--black); border-radius: var(--radius); padding: 32px 30px; display: flex; flex-direction: column; justify-content: center; }
.colors-pairing-text h3 { font-family: var(--font-display); color: var(--white); font-size: 1.15rem; text-transform: uppercase; margin: 0 0 10px; }
.colors-pairing-text h3 span { color: var(--green); }
.colors-pairing-text p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.75; margin: 0; }

.product-specs-section { padding: 88px 0; background: var(--off-white); }
.specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; margin-top: 48px; }

.cross-sell { padding: 88px 0; }
.cross-sell-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.cross-card { display: flex; align-items: center; gap: 24px; border: 1px solid var(--gray-mid); background: var(--white); padding: 24px; border-radius: var(--radius); transition: border-color var(--transition), box-shadow var(--transition); }
.cross-card:hover { border-color: var(--black); box-shadow: var(--shadow-lg); }
.cross-card img { width: 130px; height: 100px; object-fit: cover; border-radius: var(--radius); flex-shrink: 0; background: var(--gray-light); }
.cross-card-body h3 { font-family: var(--font-display); font-size: 1.1rem; text-transform: uppercase; margin-bottom: 6px; }
.cross-card-body p { color: var(--gray-text); font-size: 0.88rem; line-height: 1.65; margin-bottom: 8px; }
.cross-card-link { font-family: var(--font-condensed); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green-dark); }

/* ── FRONT PAGE v2: STATIC HERO ── */
.hero-static { position: relative; min-height: 640px; display: flex; align-items: center; background: var(--black); overflow: hidden; }
.hero-static-media { position: absolute; inset: 0; overflow: hidden; }
.hero-static-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(14,14,14,0.9) 0%, rgba(14,14,14,0.55) 52%, rgba(14,14,14,0.12) 100%); }
.hero-static-content { position: relative; z-index: 2; padding: 96px 72px; max-width: 760px; color: var(--white); }
.hero-static-content h1 { font-family: var(--font-display); font-size: clamp(2.8rem, 5.5vw, 5rem); font-weight: 700; text-transform: uppercase; line-height: 0.93; margin-bottom: 24px; letter-spacing: -0.01em; }
.hero-static-content h1 span { color: var(--green); display: block; }
.hero-static-content p { font-size: 1rem; line-height: 1.75; opacity: 0.85; max-width: 480px; margin-bottom: 36px; font-weight: 500; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* ── FRONT PAGE v2: PRODUCT ROWS (accordion-free, fully crawlable) ── */
.product-row { display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px; align-items: start; padding: 56px 0; border-top: 1px solid var(--gray-mid); scroll-margin-top: 88px; }
.product-row:first-of-type { border-top: none; padding-top: 8px; }
.product-row-img { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--gray-light); border: 1px solid var(--gray-mid); position: sticky; top: 100px; }
.product-row-img img { width: 100%; height: 420px; object-fit: cover; object-position: center; }
.product-row-img img[alt*="D-Pail"] { object-fit: contain; padding: 24px; background: var(--white); }
.product-row-badge { position: absolute; top: 0; left: 0; background: var(--green); color: var(--black); font-family: var(--font-display); font-size: 1rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 8px 20px; }
.product-row-reverse .product-row-img { order: 2; }
.product-row-content h3 { font-family: var(--font-display); font-size: 1.7rem; text-transform: uppercase; margin-bottom: 12px; letter-spacing: 0.02em; line-height: 1.15; }
.product-row-content h3 a { color: var(--black); transition: color var(--transition); }
.product-row-content h3 a:hover { color: var(--green-dark); }
.product-row-content .tagline { border-left: 3px solid var(--green); padding-left: 16px; font-weight: 600; font-style: italic; margin-bottom: 18px; color: var(--gray-text); line-height: 1.6; font-size: 0.95rem; }
.product-row-content > p:not(.tagline):not(.colors-label):not(.note-small) { color: var(--gray-text); margin-bottom: 18px; line-height: 1.8; font-size: 0.95rem; }
.product-row-ctas { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-top: 26px; }
.product-row-ctas .btn-learn-more { margin-top: 0; }
.product-row-link { font-family: var(--font-condensed); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-text); transition: color var(--transition); }
.product-row-link:hover { color: var(--black); }

/* ── FRONT PAGE v2: STATIC FAQ (no accordion — indexable) ── */
.faq-static-list { max-width: 860px; margin: 56px auto 0; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.faq-static-item { background: var(--white); border: 1px solid var(--gray-mid); border-top: 3px solid var(--green); border-radius: var(--radius); padding: 28px 28px 24px; }
.faq-static-item h3 { font-family: var(--font-display); font-size: 1.02rem; text-transform: uppercase; letter-spacing: 0.02em; line-height: 1.35; margin-bottom: 12px; }
.faq-static-item p { color: var(--gray-text); font-size: 0.92rem; line-height: 1.8; }

@media (max-width: 900px) {
  .hero-static { min-height: 520px; }
  .hero-static-content { padding: 72px 36px; }
  .product-row { grid-template-columns: 1fr; gap: 28px; }
  .product-row-img { position: static; }
  .product-row-reverse .product-row-img { order: 0; }
  .faq-static-list { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .hero-static-content { padding: 64px 24px; }
  .product-row-img img { height: 280px; }
}

/* ── FAQ PAGE v2 ── */
.faq-hero-chips { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }
.faq-page-section { padding: 72px 0 96px; background: var(--off-white); }
.faq-page-grid { display: grid; grid-template-columns: 300px 1fr; gap: 56px; align-items: start; }
.faq-toc { position: sticky; top: 96px; }
.faq-toc-inner { background: var(--white); border: 1px solid var(--gray-mid); border-radius: var(--radius); padding: 26px 24px; }
.faq-toc-title { font-family: var(--font-condensed); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--green); }
.faq-toc ul { display: flex; flex-direction: column; }
.faq-toc ul li a { display: flex; align-items: center; gap: 10px; padding: 10px 2px; font-size: 0.88rem; font-weight: 600; color: var(--gray-text); border-bottom: 1px solid var(--gray-light); transition: color var(--transition); }
.faq-toc ul li:last-child a { border-bottom: none; }
.faq-toc ul li a:hover { color: var(--black); }
.faq-toc-num { font-family: var(--font-condensed); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; color: var(--green-dark); flex-shrink: 0; }
.faq-toc-count { margin-left: auto; font-family: var(--font-condensed); font-size: 0.72rem; font-weight: 700; background: var(--gray-light); color: var(--gray-text); padding: 2px 9px; border-radius: 50px; flex-shrink: 0; }
.faq-toc-cta { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--gray-mid); }
.faq-toc-cta p { font-size: 0.86rem; color: var(--gray-text); }
.faq-cat { margin-bottom: 56px; scroll-margin-top: 96px; }
.faq-cat-header { display: flex; align-items: baseline; gap: 14px; margin-bottom: 22px; padding-bottom: 12px; border-bottom: 2px solid var(--black); }
.faq-cat-index { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: transparent; -webkit-text-stroke: 1.2px var(--green-dark); line-height: 1; }
.faq-cat-header h2 { font-family: var(--font-display); font-size: 1.45rem; text-transform: uppercase; letter-spacing: 0.02em; line-height: 1.15; }
.faq-cat-list { display: flex; flex-direction: column; gap: 14px; }
.faq-cat-list .faq-static-item { border-top: 1px solid var(--gray-mid); border-left: 3px solid var(--green); padding: 24px 26px 20px; }
.faq-page-footer { background: var(--black); border-radius: var(--radius); padding: 52px 40px; text-align: center; margin-top: 16px; }
.faq-page-footer h2 { font-family: var(--font-display); font-size: 1.8rem; text-transform: uppercase; color: var(--white); margin-bottom: 10px; }
.faq-page-footer p { color: rgba(255,255,255,0.6); font-size: 0.95rem; margin-bottom: 26px; }
@media (max-width: 1024px) {
  .faq-page-grid { grid-template-columns: 1fr; gap: 36px; }
  .faq-toc { position: static; }
}

@media (max-width: 900px) {
  .product-hero-inner { grid-template-columns: 1fr; gap: 44px; padding: 64px 0; }
  .product-hero-img::before { display: none; }
  .install-steps, .engineering-grid, .specs-grid, .cross-sell-grid, .colors-grid, .colors-pairing { grid-template-columns: 1fr; }
  .cross-card { flex-direction: column; align-items: flex-start; }
  .cross-card img { width: 100%; height: 160px; }
}
