/* Car Wash Soap Direct — static catalog */
:root {
  --accent: #3366ff;
  --accent-hover: #1a53ff;
  --text: #4f4f4f;
  --title: #000000;
  --bg: #fcfdff;
  --bg-alt: #f4f9ff;
  --border: #ededed;
  --announce: #4f4f4f;
  --white: #ffffff;
  --ink: #111111;
  --max: 1280px;
  --radius: 10px;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "IBM Plex Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); text-decoration: underline; }
h1, h2, h3, h4 {
  font-family: "Archivo Narrow", "IBM Plex Sans", sans-serif;
  color: var(--title);
  line-height: 1.2;
  margin: 0 0 0.55em;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
p { margin: 0 0 1em; }
.wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

.announce {
  background: var(--announce);
  color: #fff;
  text-align: center;
  font-size: 0.86rem;
  padding: 10px 16px;
  line-height: 1.45;
}
.announce a { color: #fff; text-decoration: underline; }

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
}
.logo img { height: 52px; width: auto; }
.main-nav {
  display: flex;
  gap: 8px 22px;
  align-items: center;
  flex-wrap: wrap;
}
.main-nav a {
  color: var(--title);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
}
.main-nav a:hover,
.main-nav a.active { color: var(--accent); }
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 42px;
  height: 42px;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--title);
  margin: 6px 0;
}

.hero {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  color: #fff;
  text-align: center;
  background: #1a1a1a center / cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: min(900px, calc(100% - 40px));
  padding: 72px 0;
}
.hero h1 { color: #fff; margin-bottom: 16px; }
.hero p { color: #f3f3f3; font-size: 1.05rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-light {
  background: #fff;
  color: #111;
  border-color: #111;
}
.btn-light:hover { background: #f3f3f3; color: #111; text-decoration: none; }
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-hover); color: #fff; text-decoration: none; }
.btn-ghost {
  background: #fff;
  color: var(--title);
  border-color: #cfcfcf;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); text-decoration: none; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; }

.section { padding: 64px 0; }
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: box-shadow .2s ease, transform .2s ease;
}
.product-card:hover {
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(17,17,17,.08);
  transform: translateY(-2px);
}
.product-card img { width: 100%; aspect-ratio: 1; object-fit: cover; background: #eef6ff; }
.product-card-body { padding: 14px 14px 18px; text-align: center; }
.product-card-body h3 {
  font-size: 1rem;
  margin-bottom: 6px;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 500;
}
.product-card-body p { margin: 0; font-weight: 600; color: var(--title); font-size: 0.95rem; }

.split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: center;
}
.split img { width: 100%; border-radius: 8px; object-fit: cover; max-height: 420px; }
.why {
  background: var(--white);
  border-top: 1px solid var(--border);
  text-align: center;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 28px;
}
.why-item { padding: 8px 12px; }
.why-icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--bg-alt);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
}
.page-hero {
  padding: 28px 0 8px;
}
.page-hero.slim { padding-top: 18px; }
.page-hero h1 { margin-bottom: 8px; }
.breadcrumb {
  color: #888;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.breadcrumb a { color: #888; }
.breadcrumb span { margin: 0 6px; }

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 20px 0 40px;
  align-items: start;
}
.product-media img {
  width: 100%;
  border: 1px solid var(--border);
  background: #fff;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 8px;
}
.lead { font-size: 1.05rem; }
.specs {
  display: grid;
  gap: 10px;
  margin: 20px 0;
}
.specs > div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 10px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
}
.specs dt { font-weight: 600; color: var(--title); }
.specs dd { margin: 0; }
.hint { color: #888; font-size: 0.85rem; }
.note, .disclaimer, .muted, .fine { color: #6b6b6b; }
.disclaimer { font-weight: 600; color: var(--title); }

.pricing-block { padding-bottom: 72px; }
.table-wrap { overflow-x: auto; margin: 18px 0 28px; }
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  min-width: 520px;
}
.price-table th, .price-table td {
  border: 1px solid var(--border);
  padding: 12px 14px;
  text-align: left;
}
.price-table th {
  background: var(--bg-alt);
  color: var(--title);
  font-size: 0.92rem;
}
.price-table th span { display: block; font-weight: 400; color: #777; font-size: 0.78rem; }
.price-table td { font-variant-numeric: tabular-nums; }
.scent-key {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 16px 20px;
  margin: 12px 0 20px;
}
.scent-key ul { margin: 8px 0 10px; padding-left: 18px; }
.order-cta {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 24px;
}
.prose { max-width: 760px; }
.prose.wide { max-width: 900px; }
.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 20px 0 28px;
}
.steps li {
  counter-increment: step;
  position: relative;
  padding: 12px 0 12px 56px;
  border-bottom: 1px solid var(--border);
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 10px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
}
.callout {
  background: #fff8e8;
  border: 1px solid #f0e0b0;
  padding: 16px 18px;
  margin: 18px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}
.contact-card {
  background: var(--bg-alt);
  padding: 28px;
  border: 1px solid var(--border);
}
.contact-card h2 { margin-bottom: 8px; }
.big-contact {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--title);
  display: block;
  margin: 8px 0;
}

.site-footer {
  background: #111;
  color: #cfcfcf;
  padding: 48px 0 0;
}
.footer-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 28px;
  padding-bottom: 36px;
}
.footer-logo { height: 40px; width: auto; filter: brightness(10); margin-bottom: 12px; }
.site-footer h3 {
  color: #fff;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin: 0 0 8px; }
.site-footer a { color: #cfcfcf; }
.site-footer a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid #2a2a2a;
  text-align: center;
  padding: 16px 20px;
  font-size: 0.82rem;
  color: #9a9a9a;
}

@media (max-width: 980px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .split, .product-detail, .contact-grid, .why-grid, .footer-inner {
    grid-template-columns: 1fr;
  }
  .specs > div { grid-template-columns: 1fr; gap: 2px; }
}
@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 12px 20px 20px;
    flex-direction: column;
    align-items: flex-start;
  }
  .main-nav.open { display: flex; }
  .header-inner { position: relative; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .hero { min-height: 340px; }
}
@media (max-width: 520px) {
  .product-grid { grid-template-columns: 1fr; }
}


/* ---- compatibility aliases for page markup ---- */
.banner { background: var(--announce); color: #fff; text-align: center; font-size: 0.86rem; padding: 10px 16px; line-height: 1.45; }
.banner a { color: #fff; text-decoration: underline; }
.header { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 50; }
.header .header-inner { width: min(var(--max), calc(100% - 40px)); }
.nav { display: flex; gap: 8px 22px; align-items: center; flex-wrap: wrap; }
.nav a { color: var(--title); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; }
.nav a:hover, .nav a.active { color: var(--accent); text-decoration: none; }
.hero-copy { position: relative; z-index: 1; width: min(900px, calc(100% - 40px)); padding: 72px 0; text-align: left; }
.hero { place-items: end start; }
.hero::after { background: linear-gradient(90deg, rgba(0,0,0,.62) 0%, rgba(0,0,0,.28) 70%, rgba(0,0,0,.15) 100%); }
.btns { display: flex; flex-wrap: wrap; gap: 12px; }
.btn { background: var(--accent); color: #fff; border-color: var(--accent); text-transform: uppercase; letter-spacing: 0.04em; font-size: 0.82rem; min-height: 44px; padding: 0 22px; }
.btn:hover { background: var(--accent-hover); color: #fff; text-decoration: none; }
.btn.ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.7); }
.btn.ghost:hover { background: #fff; color: #111; }
.btn.ghost.dark { color: var(--title); border-color: #cfcfcf; background: #fff; }
.btn.ghost.dark:hover { border-color: var(--accent); color: var(--accent); }
.kicker, .eyebrow { text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.75rem; color: var(--accent); font-weight: 600; margin-bottom: 8px; }
.section.alt { background: var(--bg-alt); }
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.card { background: var(--white); border: 1px solid var(--border); overflow: hidden; display: flex; flex-direction: column; }
.card:hover { box-shadow: 0 10px 28px rgba(17,17,17,.08); }
.card a.thumb { display: block; }
.card img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.card-body { padding: 14px 14px 18px; display: flex; flex-direction: column; gap: 6px; }
.card h3 { font-size: 1.05rem; margin: 0; font-family: "IBM Plex Sans", sans-serif; font-weight: 600; }
.card h3 a { color: var(--title); }
.price { color: var(--title); font-weight: 700; }
.meta { color: #6b6b6b; font-size: 0.9rem; }
.reasons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.reason { background: var(--white); border: 1px solid var(--border); padding: 22px; }
.crumbs { color: #888; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 8px; }
.crumbs a { color: #888; }
.product { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.product-art { border: 1px solid var(--border); background: #fff; overflow: hidden; }
.spec-table { width: 100%; border-collapse: collapse; margin: 12px 0; }
.spec-table th, .spec-table td { border-bottom: 1px solid var(--border); padding: 10px 8px; text-align: left; }
.spec-table th { width: 180px; color: var(--title); }
.note { background: var(--bg-alt); border: 1px solid var(--border); padding: 16px 18px; margin: 16px 0; }
.warn { background: #fff8e8; border: 1px solid #f0e0b0; padding: 16px 18px; margin: 16px 0; color: #6b4a00; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.step { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; }
.step b { display: block; color: var(--accent); margin-bottom: 6px; }
.contact-card a.big { font-size: 1.25rem; font-weight: 700; color: var(--title); display: block; margin: 6px 0; }
footer { background: #111; color: #cfcfcf; padding: 48px 0 22px; }
.footer-grid { width: min(var(--max), calc(100% - 40px)); margin: 0 auto 28px; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 28px; }
footer h4 { color: #fff; text-transform: uppercase; letter-spacing: 0.06em; }
footer a { color: #cfcfcf; }
footer a:hover { color: #fff; }
.legal { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; border-top: 1px solid #2a2a2a; padding-top: 16px; font-size: 0.85rem; color: #9a9a9a; }

@media (max-width: 980px) {
  .grid, .reasons, .steps, .product, .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--border); border-radius: 6px; font: inherit; }
  .nav {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 12px 20px 20px;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav.open { display: flex; }
  .header-inner { position: relative; }
  .grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .grid { grid-template-columns: 1fr; }
}
