/*
Theme Name: One Less Chore
Description: Premium neighborhood laundry — Inspiration Wylie, Texas.
Author: DeepRapid
Version: 2.0.0
Text Domain: onelesschore
*/

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400&family=Figtree:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --cream: #F9F6F1;
  --cream-deep: #F0EBE3;
  --linen: #E8E2D8;
  --ink: #1C1B19;
  --ink-soft: #3D3A36;
  --muted: #6B6560;
  --forest: #1A4D47;
  --forest-light: #2A6B63;
  --forest-pale: #E8F2F0;
  --copper: #B8864E;
  --copper-pale: #F5EDE3;
  --white: #FFFFFF;
  --line: rgba(28, 27, 25, 0.1);
  --line-soft: rgba(28, 27, 25, 0.06);
  --font-serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-sans: 'Figtree', system-ui, sans-serif;
  --shell: min(1080px, calc(100vw - 48px));
  --header-h: 76px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 20px 50px rgba(28, 27, 25, 0.08);
  --shadow-lg: 0 32px 80px rgba(28, 27, 25, 0.12);
  /* plugin aliases */
  --text: var(--ink);
  --text-muted: var(--muted);
  --mint: var(--forest);
  --mint-dim: var(--forest-light);
  --gold: var(--copper);
  --font-display: var(--font-serif);
  --font-ui: var(--font-sans);
  --surface: var(--white);
  --surface-2: var(--cream-deep);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.olc-shell { width: var(--shell); margin: 0 auto; }

/* ── Ticker ── */
.olc-ticker {
  background: var(--forest);
  color: rgba(255, 255, 255, 0.88);
  overflow: hidden;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.olc-ticker .track {
  display: inline-flex;
  animation: olc-marquee 40s linear infinite;
}
.olc-ticker span { padding: 9px 0; }
.olc-ticker span::after { content: '·'; margin: 0 24px; opacity: 0.45; }
@keyframes olc-marquee { to { transform: translateX(-50%); } }

/* ── Header ── */
.olc-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(249, 246, 241, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line-soft);
}
.olc-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 20px;
}
.olc-wordmark {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.1;
}
.olc-wordmark small {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}
.olc-nav { display: flex; gap: 32px; align-items: center; }
.olc-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}
.olc-nav a:hover { color: var(--ink); }
.olc-nav .olc-nav-cta {
  padding: 10px 20px;
  background: var(--forest);
  color: var(--white) !important;
  border-radius: 999px;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s;
}
.olc-nav .olc-nav-cta:hover { background: var(--forest-light); transform: translateY(-1px); }
.olc-actions { display: flex; gap: 10px; align-items: center; }
.olc-ic {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.olc-ic:hover { border-color: var(--forest); box-shadow: var(--shadow); }
.olc-cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  font-size: 10px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  background: var(--copper);
  color: var(--white);
  border-radius: 999px;
}

/* ── Buttons ── */
.olc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 32px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 999px;
  background: var(--forest);
  color: var(--white);
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
  box-shadow: 0 8px 24px rgba(26, 77, 71, 0.22);
}
.olc-btn:hover {
  transform: translateY(-2px);
  background: var(--forest-light);
  box-shadow: 0 12px 32px rgba(26, 77, 71, 0.28);
}
.olc-btn-ghost {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}
.olc-btn-ghost:hover {
  border-color: var(--forest);
  background: var(--forest-pale);
  box-shadow: none;
}

/* ── Hero ── */
.olc-hero--editorial {
  position: relative;
  padding: 56px 0 80px;
  background: var(--cream);
  overflow: hidden;
}
.olc-hero--editorial::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 55%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(26, 77, 71, 0.06), transparent 70%);
  pointer-events: none;
}
.olc-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.olc-hero-copy { max-width: 34rem; }
.olc-hero-figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  max-width: 480px;
  margin-left: auto;
}
.olc-hero-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.olc-hero-badge {
  display: inline-block;
  margin-bottom: 24px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--forest);
  background: var(--forest-pale);
  border-radius: 999px;
}
.olc-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 5.5vw, 4.25rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
  color: var(--ink);
}
.olc-hero h1 em {
  font-style: italic;
  color: var(--forest);
  font-weight: 500;
}
.olc-hero .lede {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 30rem;
  margin: 0 0 36px;
  line-height: 1.65;
}
.olc-cta-row { display: flex; flex-wrap: wrap; gap: 14px; }
.olc-hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line-soft);
}
.olc-stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.olc-stat span { font-size: 0.82rem; color: var(--muted); margin-top: 4px; display: block; }

/* ── Trust strip ── */
.olc-trust {
  padding: 20px 0;
  background: var(--white);
  border-block: 1px solid var(--line-soft);
}
.olc-trust-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px 48px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
}
.olc-trust-inner span::before {
  content: '✓';
  color: var(--forest);
  margin-right: 8px;
  font-weight: 700;
}

/* ── Sections ── */
.olc-section { padding: 96px 0; }
.olc-section--alt { background: var(--white); }
.olc-section--forest {
  background: var(--forest);
  color: var(--white);
}
.olc-section--forest .olc-eyebrow { color: rgba(255,255,255,0.7); }
.olc-section--forest h2 { color: var(--white); }
.olc-section--forest .lede { color: rgba(255,255,255,0.75); }
.olc-section--forest .olc-step {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
}
.olc-section--forest .olc-step h3 { color: var(--white); }
.olc-section--forest .olc-step p { color: rgba(255,255,255,0.72); }
.olc-section--forest .olc-step-num { color: rgba(255,255,255,0.2); }

/* ── How it works ── */
.olc-how {
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
  padding: 96px 0;
}
.olc-how-head {
  max-width: 36rem;
  margin-bottom: 48px;
}
.olc-how-head .lede { margin-bottom: 0; }
.olc-how-layout {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 48px;
  align-items: start;
}
.olc-how-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.olc-how-steps::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: linear-gradient(180deg, var(--forest), var(--copper));
  border-radius: 2px;
  opacity: 0.35;
}
.olc-how-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: start;
  padding: 28px 28px 28px 0;
  position: relative;
}
.olc-how-step:not(:last-child) {
  border-bottom: 1px solid var(--line-soft);
}
.olc-how-step-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(26, 77, 71, 0.25);
  position: relative;
  z-index: 1;
}
.olc-how-step h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.olc-how-step p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--muted);
}
.olc-how-photo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line-soft);
  background: var(--cream-deep);
  position: sticky;
  top: calc(var(--header-h) + 24px);
}
.olc-how-photo img {
  width: 100%;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.olc-how-photo figcaption {
  padding: 14px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--forest);
  background: var(--white);
  border-top: 1px solid var(--line-soft);
}
.olc-how-bags {
  margin-top: 40px;
  padding: 24px 28px;
  background: var(--forest-pale);
  border: 1px solid rgba(26, 77, 71, 0.12);
  border-radius: var(--radius);
  border-left: 4px solid var(--forest);
}
.olc-how-bags strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--ink);
}
.olc-how-bags p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--muted);
}

.olc-how-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.olc-how-copy .olc-steps { grid-template-columns: 1fr; gap: 16px; }
.olc-how-copy .olc-step { padding: 24px; }
.olc-how-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.olc-how-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4/5;
}

.olc-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 14px;
  display: block;
}
.olc-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  margin: 0 0 14px;
  line-height: 1.15;
}
.olc-section .lede { color: var(--muted); margin: 0 0 48px; max-width: 34rem; font-size: 1.05rem; }
.olc-rowhead {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.olc-more {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--forest);
  white-space: nowrap;
}
.olc-more:hover { text-decoration: underline; }

/* ── Steps ── */
.olc-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.olc-step {
  padding: 36px 32px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  transition: box-shadow 0.25s, transform 0.25s;
}
.olc-step:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.olc-step-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 600;
  color: var(--linen);
  line-height: 1;
  margin-bottom: 20px;
}
.olc-step h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.olc-step p { margin: 0; color: var(--muted); font-size: 0.95rem; line-height: 1.6; }

/* ── Cards ── */
.olc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.olc-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.olc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.olc-card-thumb {
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  background: linear-gradient(145deg, var(--forest-pale), var(--cream-deep));
  overflow: hidden;
}
.olc-card-thumb--photo { padding: 0; }
.olc-card-thumb--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.olc-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.olc-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 8px;
}
.olc-card-body p { margin: 0 0 16px; font-size: 0.9rem; color: var(--muted); flex: 1; line-height: 1.55; }
.olc-price {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--forest);
}
.olc-badge {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--forest-pale);
  color: var(--forest);
  border-radius: 6px;
}

.olc-badge--save {
  background: var(--copper-pale);
  color: var(--copper);
}

.olc-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
.olc-pricing-note {
  margin-top: 32px;
  text-align: center;
  font-size: 0.92rem;
  color: var(--muted);
}
.olc-pricing-note a {
  color: var(--forest);
  font-weight: 600;
}

.olc-section--subs {
  background: linear-gradient(180deg, var(--forest-pale) 0%, var(--cream) 100%);
}
.olc-plans--2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 820px;
}

.olc-prepay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.olc-prepay {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 24px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.olc-prepay:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--forest);
}
.olc-prepay--featured {
  border-color: var(--forest);
  background: linear-gradient(180deg, var(--forest-pale), var(--white));
  box-shadow: var(--shadow);
}
.olc-prepay-bonus {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 12px;
}
.olc-prepay strong {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: -0.02em;
}
.olc-prepay span:last-child {
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--muted);
}

/* ── Plans ── */
.olc-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.olc-plan {
  position: relative;
  padding: 40px 32px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
}
.olc-plan.featured {
  border-color: var(--forest);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(180deg, var(--forest-pale) 0%, var(--white) 40%);
}
.olc-plan-tag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--copper);
  color: var(--white);
  border-radius: 999px;
}
.olc-plan h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 6px;
}
.olc-plan-sub { color: var(--muted); margin: 0; font-size: 0.9rem; }
.olc-plan-price {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  font-weight: 600;
  color: var(--ink);
  margin: 24px 0;
  letter-spacing: -0.03em;
}
.olc-plan-price small { font-size: 1rem; color: var(--muted); font-weight: 500; font-family: var(--font-sans); }
.olc-plan ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
  color: var(--muted);
  font-size: 0.92rem;
}
.olc-plan li { padding: 10px 0; border-bottom: 1px solid var(--line-soft); }
.olc-plan li::before { content: '✓'; color: var(--forest); font-weight: 700; margin-right: 10px; }
.olc-plan .olc-btn { width: 100%; }

/* ── Quiz band ── */
.olc-quiz-band {
  padding: 96px 0;
  background: var(--cream-deep);
  border-block: 1px solid var(--line-soft);
}
.olc-quiz-band .olc-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.olc-quiz-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}

/* ── Quotes ── */
.olc-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.olc-quote {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  margin: 0;
}
.olc-quote p {
  margin: 0 0 20px;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.55;
}
.olc-quote cite {
  font-style: normal;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--forest);
}

/* ── CTA ── */
.olc-cta-band {
  position: relative;
  text-align: center;
  padding: 100px 24px;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}
.olc-cta-band--photo {
  background-size: cover;
  background-position: center;
}
.olc-cta-band--photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 77, 71, 0.88), rgba(28, 27, 25, 0.92));
}
.olc-cta-band-inner {
  position: relative;
  z-index: 1;
}
.olc-cta-band h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.olc-cta-band p {
  color: rgba(255,255,255,0.65);
  max-width: 26rem;
  margin: 0 auto 32px;
  font-size: 1.05rem;
}
.olc-cta-band .olc-btn {
  background: var(--white);
  color: var(--forest);
  box-shadow: none;
}
.olc-cta-band .olc-btn:hover { background: var(--cream); }

/* ── Footer ── */
.olc-footer {
  padding: 72px 0 36px;
  background: var(--cream);
  border-top: 1px solid var(--line-soft);
}
.olc-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}
.olc-footer-tagline { color: var(--muted); font-size: 0.92rem; margin-top: 16px; max-width: 22rem; line-height: 1.6; }
.olc-footer-col strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 18px;
}
.olc-footer-links { list-style: none; padding: 0; margin: 0; }
.olc-footer-links li { margin-bottom: 12px; }
.olc-footer-links a { color: var(--muted); font-size: 0.92rem; transition: color 0.2s; }
.olc-footer-links a:hover { color: var(--ink); }
.olc-footer-copy {
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
  padding-top: 28px;
  border-top: 1px solid var(--line-soft);
}

/* ── WooCommerce ── */
.olc-shop {
  padding: 48px 0 96px;
  background: var(--cream);
  min-height: 50vh;
}
.woocommerce-page #secondary,
.woocommerce #secondary,
#secondary.widget-area { display: none !important; }

.woocommerce-breadcrumb {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 28px;
}
.woocommerce-breadcrumb a { color: var(--muted); }
.woocommerce-breadcrumb a:hover { color: var(--forest); }

.woocommerce-products-header {
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line-soft);
}
.woocommerce-products-header__title.page-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  color: var(--ink);
}
.term-description,
.woocommerce-products-header .term-description {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 40rem;
  line-height: 1.6;
}
.term-description p { margin: 0; }

.woocommerce-result-count {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
}
.woocommerce-ordering select {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  padding: 10px 36px 10px 16px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--ink);
}
.woocommerce-notices-wrapper { margin-bottom: 24px; }

.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 32px 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
.woocommerce ul.products::before,
.woocommerce ul.products::after {
  content: none !important;
  display: none !important;
}
.woocommerce ul.products li.product,
.woocommerce ul.products li.olc-product-card {
  width: auto !important;
  float: none !important;
  margin: 0 !important;
  clear: none !important;
  background: var(--white) !important;
  border: 1px solid var(--line-soft) !important;
  border-radius: var(--radius) !important;
  padding: 24px !important;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex !important;
  flex-direction: column;
  text-align: left;
  transition: transform 0.2s, box-shadow 0.2s;
}
.woocommerce ul.products li.product:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.olc-card-thumb--shop {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  min-height: 120px;
  aspect-ratio: 16/10;
  background: var(--cream-deep);
  border-radius: 12px;
  margin-bottom: 18px;
  overflow: hidden;
}
.olc-card-thumb--shop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.olc-product-body { flex: 1; display: flex; flex-direction: column; }
.olc-product-excerpt {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 12px;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce div.product .product_title {
  font-family: var(--font-serif) !important;
  font-weight: 600 !important;
  font-size: 1.2rem !important;
  padding: 0 !important;
  margin: 0 0 8px !important;
  color: var(--ink) !important;
}
.woocommerce ul.products li.product .price {
  margin-top: auto;
  padding-top: 12px;
}
.woocommerce span.onsale { background: var(--copper) !important; color: var(--white) !important; }
.woocommerce div.product p.price,
.woocommerce ul.products li.product .price {
  color: var(--forest) !important;
  font-family: var(--font-serif) !important;
  font-weight: 600 !important;
  font-size: 1.35rem !important;
}
.woocommerce ul.products li.product .button {
  width: 100%;
  margin-top: 14px !important;
  text-align: center;
}
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
  background: var(--forest) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  border-radius: 999px !important;
  border: none !important;
  padding: 12px 24px !important;
  transition: background 0.2s, transform 0.15s;
}
.woocommerce a.button:hover, .woocommerce button.button:hover {
  background: var(--forest-light) !important;
}
.woocommerce-info, .woocommerce-message {
  background: var(--forest-pale) !important;
  color: var(--ink) !important;
  border-top-color: var(--forest) !important;
  border-radius: var(--radius);
}
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  background: var(--white) !important;
  border: 1px solid var(--line) !important;
  color: var(--ink) !important;
  border-radius: 12px !important;
  padding: 12px 14px !important;
}
.woocommerce-checkout #payment {
  background: var(--white) !important;
  border-radius: var(--radius) !important;
  border: 1px solid var(--line-soft) !important;
}
.woocommerce-page, .woocommerce-page .site-main { background: var(--cream); }
.woocommerce .woocommerce-before-shop-loop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 8px;
}
.woocommerce nav.woocommerce-pagination {
  margin-top: 48px;
  text-align: center;
}
.woocommerce nav.woocommerce-pagination ul {
  border: none !important;
}
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  background: var(--white) !important;
  border: 1px solid var(--line-soft) !important;
  border-radius: 8px !important;
  color: var(--ink) !important;
  min-width: 40px;
  padding: 8px 12px !important;
}
.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--forest) !important;
  color: var(--white) !important;
  border-color: var(--forest) !important;
}

/* Single product */
.woocommerce div.product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.woocommerce div.product .olc-card-thumb--shop {
  min-height: 280px;
  font-size: 4rem;
  border-radius: var(--radius-lg);
}
@media (max-width: 900px) {
  .woocommerce ul.products { grid-template-columns: 1fr !important; }
  .woocommerce div.product { grid-template-columns: 1fr; }
}
@media (min-width: 901px) and (max-width: 1100px) {
  .woocommerce ul.products { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ── Mobile ── */
@media (max-width: 900px) {
  .olc-nav { display: none; }
  .olc-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .olc-hero-figure { max-width: 100%; margin: 0 auto; aspect-ratio: 16/10; }
  .olc-hero-stats { flex-direction: row; flex-wrap: wrap; gap: 24px; }
  .olc-how-layout { grid-template-columns: 1fr; }
  .olc-how-photo { position: static; order: -1; max-width: 520px; margin: 0 auto 8px; }
  .olc-how-steps::before { display: none; }
  .olc-grid--4, .olc-prepay-grid, .olc-plans--2 { grid-template-columns: 1fr; }
  .olc-steps, .olc-plans, .olc-quotes { grid-template-columns: 1fr; }
  .olc-quiz-band .olc-shell { grid-template-columns: 1fr; }
  .olc-footer-grid { grid-template-columns: 1fr 1fr; }
  .olc-trust-inner { gap: 16px 24px; }
}
