/* =========================================================================
   Pure Wave Water — main stylesheet
   Mobile-first. Tokens first, then base, components, layout, sections.
   Prefix: .pww-  |  Breakpoints: 40em (640) 48em (768) 64em (1024) 80em (1280)
   ========================================================================= */

/* ---------- 1. Tokens ---------- */
:root {
  /* Brand */
  --pww-blue-900: #0B2A47;
  --pww-blue-800: #0E3A62;
  --pww-blue-700: #0A4F86;
  --pww-blue-600: #0072B8; /* primary */
  --pww-blue-500: #1B8AD0;
  --pww-cyan-600: #0080B4; /* accessible cyan for text */
  --pww-cyan-500: #00A8E8; /* brand accent, decorative */
  --pww-cyan-100: #D6F0FB;
  --pww-mist-50:  #F5F9FC;
  --pww-mist-100: #EAF2F8;
  --pww-mist-200: #DCE7F0;
  --pww-line:     #D3DFE9;
  --pww-line-strong: #B8C8D6;
  --pww-ink:      #14202B;
  --pww-ink-2:    #3A4B5C;
  --pww-ink-3:    #5B6B7A;
  --pww-white:    #FFFFFF;
  --pww-mineral:  #B45309; /* amber accent: best seller, warmth */
  --pww-mineral-50: #FEF5E7;
  --pww-sale:     #C62828;
  --pww-sale-50:  #FDECEC;
  --pww-ok:       #1B7A3E;
  --pww-ok-50:    #E7F5EC;
  --pww-warn:     #9A6B00;

  /* Type */
  --pww-font-display: "Manrope", "Segoe UI", system-ui, -apple-system, sans-serif;
  --pww-font-body: "Source Sans 3", "Source Sans Pro", "Segoe UI", system-ui, -apple-system, sans-serif;
  --pww-text: 1.0625rem;      /* 17px */
  --pww-text-sm: 0.9375rem;   /* 15px */
  --pww-text-xs: 0.8125rem;   /* 13px */
  --pww-lh: 1.6;
  --pww-h1: clamp(2rem, 1.35rem + 2.8vw, 3.25rem);
  --pww-h2: clamp(1.625rem, 1.2rem + 1.8vw, 2.5rem);
  --pww-h3: clamp(1.25rem, 1.1rem + 0.7vw, 1.5rem);
  --pww-h4: 1.125rem;

  /* Space */
  --pww-s1: 0.25rem; --pww-s2: 0.5rem; --pww-s3: 0.75rem; --pww-s4: 1rem;
  --pww-s5: 1.5rem; --pww-s6: 2rem; --pww-s7: 3rem; --pww-s8: 4rem; --pww-s9: 6rem;
  --pww-section: clamp(3.25rem, 5vw + 1.5rem, 6rem);
  --pww-gutter: clamp(1rem, 4vw, 2.5rem);
  --pww-container: 80rem;
  --pww-narrow: 46rem;

  /* Shape */
  --pww-r-sm: 8px; --pww-r: 12px; --pww-r-lg: 18px; --pww-r-pill: 999px;
  --pww-shadow-sm: 0 1px 2px rgba(11, 42, 71, .06), 0 1px 1px rgba(11, 42, 71, .04);
  --pww-shadow: 0 6px 20px -8px rgba(11, 42, 71, .18), 0 2px 6px rgba(11, 42, 71, .06);
  --pww-shadow-lg: 0 24px 48px -20px rgba(11, 42, 71, .28), 0 8px 16px -8px rgba(11, 42, 71, .12);
  --pww-ring: 0 0 0 3px rgba(0, 114, 184, .35);

  /* Motion */
  --pww-ease: cubic-bezier(.2, .7, .2, 1);
  --pww-fast: 150ms; --pww-med: 260ms;

  /* Header */
  --pww-header-h: 64px;
}

@media (min-width: 64em) {
  :root { --pww-text: 1.125rem; --pww-header-h: 76px; }
}

/* ---------- 2. Base ---------- */
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}
body.pww {
  margin: 0;
  font-family: var(--pww-font-body);
  font-size: var(--pww-text);
  line-height: var(--pww-lh);
  color: var(--pww-ink);
  background: var(--pww-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
body.pww *, body.pww *::before, body.pww *::after { box-sizing: border-box; }
.pww :where(img, svg, video) { max-width: 100%; height: auto; display: block; }
.pww :where(picture) { display: contents; }
.pww :where(a) { color: var(--pww-blue-600); text-decoration-thickness: 1px; text-underline-offset: .15em; }
.pww :where(a:hover) { color: var(--pww-blue-700); }
.pww :where(h1, h2, h3, h4, h5, h6) {
  font-family: var(--pww-font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--pww-ink);
  margin: 0 0 .5em;
  overflow-wrap: anywhere;
}
.pww :where(h1) { font-size: var(--pww-h1); font-weight: 800; }
.pww :where(h2) { font-size: var(--pww-h2); }
.pww :where(h3) { font-size: var(--pww-h3); }
.pww :where(h4) { font-size: var(--pww-h4); }
.pww :where(p) { margin: 0 0 1em; }
.pww :where(p:last-child) { margin-bottom: 0; }
body.pww :focus { outline: none; }
body.pww :focus-visible { outline: 3px solid var(--pww-blue-600); outline-offset: 2px; border-radius: 4px; }
.pww :where(button, input, select, textarea) { font: inherit; color: inherit; margin: 0; }
.pww :where(button) { background: none; border: 0; padding: 0; appearance: none; -webkit-appearance: none; text-align: inherit; }
.pww :where(input[type="search"]) { appearance: none; -webkit-appearance: none; }
.pww :where(input[type="search"])::-webkit-search-decoration { -webkit-appearance: none; }
.pww :where(ul, ol) { margin: 0 0 1em; padding-left: 1.25em; }
.pww :where(figure) { margin: 0; }
.pww :where(b, strong) { font-weight: 700; }
.pww :where(small) { font-size: 80%; }
.pww :where(details) { display: block; }
.pww :where(summary) { display: list-item; }
.pww :where(textarea) { resize: vertical; }
.pww :where(select) { display: block; }
.pww :where(button) { cursor: pointer; }
.pww :where(hr) { border: 0; border-top: 1px solid var(--pww-line); margin: var(--pww-s6) 0; }
.pww :where(table) { border-collapse: collapse; width: 100%; }
.screen-reader-text, .pww-sr { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: -999px; top: 8px; z-index: 10000; background: var(--pww-blue-900); color: #fff; padding: .6rem 1rem; border-radius: var(--pww-r-sm); font-weight: 700; }
.skip-link:focus { left: 8px; }

/* Parent-theme/Elementor neutralisation inside our layouts */
body.pww .site-main, body.pww #content { max-width: none; width: auto; margin: 0; padding: 0; }
body.pww.pww-front .elementor-section-wrap { width: 100%; }

/* ---------- 3. Layout primitives ---------- */
.pww-container { width: 100%; max-width: var(--pww-container); margin-inline: auto; padding-inline: var(--pww-gutter); }
.pww-container--narrow { max-width: var(--pww-narrow); }
.pww-container--wide { max-width: 90rem; }
.pww-section { padding-block: var(--pww-section); position: relative; }
.pww-section--tight { padding-block: calc(var(--pww-section) * .6); }
.pww-section--mist { background: var(--pww-mist-50); }
.pww-section--navy { background: var(--pww-blue-900); color: #fff; }
.pww-section--navy h1, .pww-section--navy h2, .pww-section--navy h3 { color: #fff; }
.pww-section--layers { background: var(--pww-mist-50) repeating-linear-gradient(180deg, transparent 0 56px, rgba(0, 114, 184, .035) 56px 57px); }
.pww-section--water { background: var(--pww-mist-50); }
.pww-section--water::before { content: ""; position: absolute; inset: 0; background: url("../img/bg-water.webp") center/cover no-repeat; opacity: .22; pointer-events: none; }
.pww-section--water > * { position: relative; }
.pww-grid { display: grid; gap: var(--pww-s5); }
.pww-grid--2, .pww-grid--3, .pww-grid--4 { grid-template-columns: minmax(0, 1fr); }
@media (min-width: 36em) { .pww-grid--2, .pww-grid--3, .pww-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 48em) { .pww-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 64em) { .pww-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.pww-cluster { display: flex; flex-wrap: wrap; gap: var(--pww-s3); align-items: center; }
.pww-stack > * + * { margin-top: var(--pww-s4); }
.pww-split { display: grid; gap: var(--pww-s6); align-items: center; }
@media (min-width: 64em) { .pww-split { grid-template-columns: 1fr 1fr; gap: var(--pww-s8); } .pww-split--rev > :first-child { order: 2; } }

/* Section heading pattern */
.pww-heading { max-width: 46rem; margin-bottom: var(--pww-s6); }
.pww-heading--center { margin-inline: auto; text-align: center; }
.pww-heading--row { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: var(--pww-s4); max-width: none; }
.pww-heading--row > div { max-width: 46rem; }
.pww-eyebrow { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--pww-font-display); font-size: var(--pww-text-xs); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--pww-blue-600); margin-bottom: .75rem; }
.pww-eyebrow::before { content: ""; width: 22px; height: 3px; border-radius: 2px; background: linear-gradient(90deg, var(--pww-blue-600), var(--pww-cyan-500)); }
.pww-heading--center .pww-eyebrow::before { display: none; }
.pww-heading--center .pww-eyebrow::after, .pww-heading--center .pww-eyebrow::before { content: ""; display: block; width: 22px; height: 3px; border-radius: 2px; background: linear-gradient(90deg, var(--pww-blue-600), var(--pww-cyan-500)); }
.pww-heading p { color: var(--pww-ink-2); font-size: calc(var(--pww-text) * 1.05); }
.pww-section--navy .pww-eyebrow { color: var(--pww-cyan-500); }
.pww-section--navy .pww-heading p { color: rgba(255, 255, 255, .82); }
.pww-lede { font-size: calc(var(--pww-text) * 1.12); color: var(--pww-ink-2); max-width: 44rem; }

/* ---------- 4. Buttons ---------- */
.pww-btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; min-height: 48px; padding: .75rem 1.35rem; border-radius: var(--pww-r-sm); border: 2px solid transparent; font-family: var(--pww-font-display); font-weight: 700; font-size: 1rem; line-height: 1.2; text-decoration: none; cursor: pointer; transition: background var(--pww-fast) var(--pww-ease), color var(--pww-fast), border-color var(--pww-fast), transform var(--pww-fast), box-shadow var(--pww-fast); white-space: nowrap; }
.pww-btn .pww-icon { flex: none; }
.pww-btn--primary { background: var(--pww-blue-600); color: #fff; box-shadow: var(--pww-shadow-sm); }
.pww-btn--primary:hover { background: var(--pww-blue-700); color: #fff; transform: translateY(-1px); box-shadow: var(--pww-shadow); }
.pww-btn--secondary { background: #fff; color: var(--pww-blue-700); border-color: var(--pww-line-strong); }
.pww-btn--secondary:hover { border-color: var(--pww-blue-600); color: var(--pww-blue-700); background: var(--pww-mist-50); }
.pww-btn--ghost { background: transparent; color: var(--pww-blue-700); padding-inline: .75rem; }
.pww-btn--ghost:hover { background: var(--pww-mist-100); }
.pww-btn--light { background: #fff; color: var(--pww-blue-900); }
.pww-btn--light:hover { background: var(--pww-mist-100); color: var(--pww-blue-900); }
.pww-btn--outline-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .55); }
.pww-btn--outline-light:hover { background: rgba(255, 255, 255, .12); border-color: #fff; color: #fff; }
.pww-btn--accent { background: var(--pww-mineral); color: #fff; }
.pww-btn--accent:hover { background: #93430A; color: #fff; }
.pww-btn--sm { min-height: 40px; padding: .5rem 1rem; font-size: .9375rem; }
.pww-btn--lg { min-height: 54px; padding: .9rem 1.6rem; font-size: 1.0625rem; }
.pww-btn--block { width: 100%; }
.pww-btn:disabled, .pww-btn[aria-disabled="true"] { opacity: .55; cursor: not-allowed; transform: none; }
.pww-link { display: inline-flex; align-items: center; gap: .35rem; font-family: var(--pww-font-display); font-weight: 700; color: var(--pww-blue-600); text-decoration: none; }
.pww-link:hover { color: var(--pww-blue-700); text-decoration: underline; }
.pww-link .pww-icon { transition: transform var(--pww-fast); }
.pww-link:hover .pww-icon { transform: translateX(3px); }

/* ---------- 5. Badges, pills, ratings ---------- */
.pww-badge { display: inline-flex; align-items: center; gap: .35rem; padding: .25rem .6rem; border-radius: var(--pww-r-pill); font-family: var(--pww-font-display); font-size: var(--pww-text-xs); font-weight: 700; letter-spacing: .02em; line-height: 1.3; background: var(--pww-mist-100); color: var(--pww-blue-800); }
.pww-badge--sale { background: var(--pww-sale-50); color: var(--pww-sale); }
.pww-badge--best { background: var(--pww-mineral-50); color: var(--pww-mineral); }
.pww-badge--ok { background: var(--pww-ok-50); color: var(--pww-ok); }
.pww-badge--out { background: var(--pww-mist-200); color: var(--pww-ink-2); }
.pww-badge--light { background: rgba(255, 255, 255, .15); color: #fff; }
.pww-stars { display: inline-flex; gap: 2px; color: #E9A800; }
.pww-stars .pww-icon { width: 18px; height: 18px; }
.pww-stars--sm .pww-icon { width: 14px; height: 14px; }
.pww-stars .is-empty { color: var(--pww-line-strong); }

/* ---------- 6. Cards ---------- */
.pww-card { background: #fff; border: 1px solid var(--pww-line); border-radius: var(--pww-r); box-shadow: var(--pww-shadow-sm); overflow: hidden; display: flex; flex-direction: column; transition: box-shadow var(--pww-med) var(--pww-ease), transform var(--pww-med) var(--pww-ease), border-color var(--pww-fast); }
.pww-card:hover { box-shadow: var(--pww-shadow); transform: translateY(-2px); border-color: var(--pww-line-strong); }
.pww-card__body { padding: var(--pww-s4); display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.pww-card__title { font-size: 1.0625rem; margin: 0; line-height: 1.3; }
.pww-card__title a { color: inherit; text-decoration: none; }
.pww-card__title a::after { content: ""; position: absolute; inset: 0; }
.pww-card { position: relative; }
.pww-card__meta { font-size: var(--pww-text-sm); color: var(--pww-ink-3); }
.pww-card__media { aspect-ratio: 1 / 1; background: var(--pww-mist-50); display: grid; place-items: center; overflow: hidden; }
.pww-card__placeholder { color: var(--pww-blue-500); opacity: .45; display: grid; place-items: center; }
.pww-card__media img { width: 100%; height: 100%; object-fit: contain; padding: 8%; transition: transform var(--pww-med) var(--pww-ease); }
.pww-card:hover .pww-card__media img { transform: scale(1.03); }
.pww-card__media--cover img { object-fit: cover; padding: 0; }
.pww-card__media--wide { aspect-ratio: 16 / 10; }
.pww-card__badges { position: absolute; top: .75rem; left: .75rem; display: flex; gap: .35rem; z-index: 2; }
.pww-card__actions { margin-top: auto; padding-top: .5rem; position: relative; z-index: 2; }

/* Product card */
.pww-product { }
.pww-product__price { font-family: var(--pww-font-display); font-weight: 800; font-size: 1.125rem; color: var(--pww-ink); }
.pww-product__price del { color: var(--pww-ink-3); font-weight: 600; font-size: .9em; margin-right: .35rem; }
.pww-product__price ins { text-decoration: none; color: var(--pww-sale); }
.pww-product__cat { font-size: var(--pww-text-xs); text-transform: uppercase; letter-spacing: .06em; font-weight: 700; color: var(--pww-cyan-600); font-family: var(--pww-font-display); }
.pww-product__stock { font-size: var(--pww-text-xs); font-weight: 600; color: var(--pww-ok); }
.pww-product__stock--out { color: var(--pww-ink-3); }
.pww-product .pww-card__actions .pww-btn { width: 100%; }
.pww-product .added_to_cart { display: block; margin-top: .5rem; text-align: center; font-weight: 700; }

/* Icon card (services / problems) */
.pww-icard { display: flex; flex-direction: column; gap: .75rem; padding: var(--pww-s5); background: #fff; border: 1px solid var(--pww-line); border-radius: var(--pww-r); text-decoration: none; color: inherit; position: relative; transition: box-shadow var(--pww-med) var(--pww-ease), transform var(--pww-med) var(--pww-ease), border-color var(--pww-fast); }
.pww-icard:hover { box-shadow: var(--pww-shadow); transform: translateY(-2px); border-color: var(--pww-line-strong); color: inherit; }
.pww-icard__icon { width: 48px; height: 48px; border-radius: 12px; background: var(--pww-mist-100); color: var(--pww-blue-600); display: grid; place-items: center; }
.pww-icard__icon .pww-icon { width: 26px; height: 26px; }
.pww-icard h3 { font-size: 1.125rem; margin: 0; }
.pww-icard p { color: var(--pww-ink-2); font-size: var(--pww-text-sm); margin: 0; }
.pww-icard .pww-link { margin-top: auto; }
.pww-icard--accent .pww-icard__icon { background: var(--pww-blue-600); color: #fff; }

/* ---------- 7. Forms ---------- */
.pww-form { display: grid; gap: var(--pww-s4); }
.pww-form__row { display: grid; gap: var(--pww-s4); }
@media (min-width: 40em) { .pww-form__row--2 { grid-template-columns: 1fr 1fr; } }
.pww-field { display: grid; gap: .35rem; }
.pww :where(fieldset) { border: 0; padding: 0; margin: 0; min-width: 0; }
.pww :where(legend) { padding: 0; display: block; margin: 0 0 .5rem; }
.pww-field label, .pww-form legend { font-family: var(--pww-font-display); font-weight: 700; font-size: var(--pww-text-sm); color: var(--pww-ink); }
.pww-field .req { color: var(--pww-sale); }
.pww-field input:not([type="checkbox"]):not([type="radio"]), .pww-field select, .pww-field textarea, .pww-input {
  width: 100%; min-height: 48px; padding: .65rem .9rem; border: 1.5px solid var(--pww-line-strong); border-radius: var(--pww-r-sm); background: #fff; color: var(--pww-ink); font-size: 1rem; transition: border-color var(--pww-fast), box-shadow var(--pww-fast);
}
.pww-field textarea { min-height: 130px; resize: vertical; }
.pww-field input:focus, .pww-field select:focus, .pww-field textarea:focus, .pww-input:focus { border-color: var(--pww-blue-600); box-shadow: var(--pww-ring); outline: none; }
.pww-field__hint { font-size: var(--pww-text-xs); color: var(--pww-ink-3); }
.pww-field__error { font-size: var(--pww-text-sm); color: var(--pww-sale); font-weight: 600; }
.pww-field.is-invalid input, .pww-field.is-invalid select, .pww-field.is-invalid textarea { border-color: var(--pww-sale); }
.pww-check { display: flex; gap: .6rem; align-items: flex-start; font-size: var(--pww-text-sm); color: var(--pww-ink-2); }
.pww-check input { width: 20px; height: 20px; margin-top: .15rem; accent-color: var(--pww-blue-600); flex: none; }
.pww-choices { display: grid; gap: .5rem; }
@media (min-width: 40em) { .pww-choices--2 { grid-template-columns: 1fr 1fr; } }
.pww-choice { display: flex; align-items: center; gap: .75rem; padding: .8rem 1rem; border: 1.5px solid var(--pww-line-strong); border-radius: var(--pww-r-sm); cursor: pointer; font-weight: 600; background: #fff; transition: border-color var(--pww-fast), background var(--pww-fast); }
.pww-choice:hover { border-color: var(--pww-blue-500); }
.pww-choice input { accent-color: var(--pww-blue-600); width: 20px; height: 20px; flex: none; }
.pww-choice:has(input:checked) { border-color: var(--pww-blue-600); background: var(--pww-mist-50); box-shadow: inset 0 0 0 1px var(--pww-blue-600); }
.pww-notice { display: flex; gap: .75rem; align-items: flex-start; padding: 1rem 1.15rem; border-radius: var(--pww-r-sm); border: 1px solid var(--pww-line); background: var(--pww-mist-50); color: var(--pww-ink); }
.pww-notice .pww-icon { flex: none; margin-top: .1rem; }
.pww-notice--success { background: var(--pww-ok-50); border-color: #BFE3CB; color: #145A2E; }
.pww-notice--error { background: var(--pww-sale-50); border-color: #F3C2C2; color: #8A1C1C; }
.pww-notice--info { background: var(--pww-cyan-100); border-color: #B5E1F3; color: var(--pww-blue-900); }
.pww-hp { position: absolute; left: -9999px; }

/* ---------- 8. Header ---------- */
.pww-topbar { background: var(--pww-blue-900); color: #fff; font-size: var(--pww-text-sm); }
.pww-topbar .pww-container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 38px; }
.pww-topbar a { color: #fff; text-decoration: none; display: inline-flex; align-items: center; gap: .4rem; }
.pww-topbar a:hover { color: var(--pww-cyan-500); }
.pww-topbar__left, .pww-topbar__right { display: flex; align-items: center; gap: 1.25rem; }
.pww-topbar__left { display: none; }
.pww-topbar__ann { color: var(--pww-cyan-100); }
.pww-topbar__hours { color: rgba(255, 255, 255, .8); display: none; }
@media (min-width: 48em) { .pww-topbar__left { display: flex; } .pww-topbar__hours { display: inline-flex; } }
@media (max-width: 47.99em) { .pww-topbar .pww-container { justify-content: center; } }

.pww-header { position: sticky; top: 0; z-index: 900; background: #fff; border-bottom: 1px solid var(--pww-line); box-shadow: 0 1px 0 rgba(11, 42, 71, .04); }
.pww-header.is-scrolled { box-shadow: var(--pww-shadow); }
.pww-header__bar { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: .5rem; min-height: var(--pww-header-h); }
.pww-header__logo { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; color: var(--pww-ink); max-width: 56vw; min-width: 0; }
.pww-header__logo img { height: 40px; width: auto; max-width: 100%; }
.pww-wordmark { display: inline-flex; flex-direction: column; line-height: 1; font-family: var(--pww-font-display); }
.pww-wordmark b { font-size: 1.05rem; font-weight: 800; color: var(--pww-blue-900); letter-spacing: -.01em; white-space: nowrap; }
.pww-wordmark small { font-size: .62rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--pww-blue-600); margin-top: 3px; white-space: nowrap; }
@media (max-width: 24em) { .pww-header .pww-wordmark small { display: none; } }
.pww-header__search { display: none; }
.pww-header__actions { display: flex; align-items: center; gap: .25rem; justify-self: end; }
.pww-iconbtn { position: relative; display: inline-flex; align-items: center; justify-content: center; gap: .4rem; min-width: 44px; min-height: 44px; padding: 0 .5rem; border-radius: var(--pww-r-sm); background: transparent; border: 0; color: var(--pww-blue-900); text-decoration: none; font-family: var(--pww-font-display); font-weight: 700; font-size: .9375rem; transition: background var(--pww-fast); }
.pww-iconbtn:hover { background: var(--pww-mist-100); color: var(--pww-blue-700); }
.pww-iconbtn .pww-icon { width: 24px; height: 24px; }
.pww-iconbtn__label { display: none; }
.pww-iconbtn__count { position: absolute; top: 4px; right: 2px; min-width: 18px; height: 18px; padding: 0 5px; border-radius: 9px; background: var(--pww-blue-600); color: #fff; font-size: 11px; font-weight: 800; line-height: 18px; text-align: center; }
.pww-iconbtn__count:empty, .pww-iconbtn__count[data-count="0"] { display: none; }
.pww-header__cta { display: none; }
.pww-header__nav { display: none; }

@media (min-width: 64em) {
  .pww-header__bar { grid-template-columns: auto minmax(220px, 480px) 1fr; gap: 1.5rem; }
  .pww-header__logo img { height: 46px; }
  .pww-header__search { display: block; }
  .pww-header__actions { gap: .35rem; }
  .pww-iconbtn__label { display: inline; }
  .pww-iconbtn--menu { display: none; }
  .pww-header__cta { display: inline-flex; margin-left: .5rem; }
  .pww-header__nav { display: block; border-top: 1px solid var(--pww-line); }
}

/* Desktop nav */
.pww-nav { display: flex; align-items: center; gap: .25rem; margin: 0; padding: 0; list-style: none; }
.pww-nav > li { position: relative; }
.pww-nav > li > a, .pww-nav > li > button { display: inline-flex; align-items: center; gap: .3rem; min-height: 48px; padding: 0 .85rem; font-family: var(--pww-font-display); font-weight: 700; font-size: .9375rem; color: var(--pww-ink); text-decoration: none; background: none; border: 0; border-bottom: 3px solid transparent; transition: color var(--pww-fast), border-color var(--pww-fast); }
.pww-nav > li > a:hover, .pww-nav > li > button:hover, .pww-nav > li.current-menu-item > a, .pww-nav > li.current-menu-ancestor > a, .pww-nav > li > a[aria-current] { color: var(--pww-blue-600); border-bottom-color: var(--pww-blue-600); }
.pww-nav > li.pww-nav__hl > a { color: var(--pww-blue-600); }
.pww-nav .pww-icon--chevron-down { width: 16px; height: 16px; transition: transform var(--pww-fast); }
.pww-nav > li[data-open="true"] > button .pww-icon--chevron-down, .pww-nav > li:hover > button .pww-icon--chevron-down { transform: rotate(180deg); }
.pww-nav__spacer { flex: 1; }
.pww-nav > li.pww-nav__phone > a { color: var(--pww-blue-700); }

/* Dropdown panels */
.pww-panel { position: absolute; top: 100%; left: 0; min-width: 260px; background: #fff; border: 1px solid var(--pww-line); border-radius: 0 0 var(--pww-r) var(--pww-r); box-shadow: var(--pww-shadow-lg); padding: .75rem; z-index: 50; opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity var(--pww-fast), transform var(--pww-fast), visibility 0s linear var(--pww-fast); }
.pww-nav > li[data-open="true"] > .pww-panel, .pww-nav > li:hover > .pww-panel, .pww-nav > li:focus-within > .pww-panel { opacity: 1; visibility: visible; transform: translateY(0); transition-delay: 0s; }
.pww-panel ul { list-style: none; margin: 0; padding: 0; }
.pww-panel a { display: block; padding: .5rem .75rem; border-radius: var(--pww-r-sm); color: var(--pww-ink); text-decoration: none; font-weight: 600; font-size: .9375rem; }
.pww-panel a:hover { background: var(--pww-mist-100); color: var(--pww-blue-700); }
.pww-panel--mega { left: 50%; transform: translate(-50%, 6px); width: min(1100px, calc(100vw - 2rem)); padding: 1.25rem; }
.pww-nav > li[data-open="true"] > .pww-panel--mega, .pww-nav > li:hover > .pww-panel--mega, .pww-nav > li:focus-within > .pww-panel--mega { transform: translate(-50%, 0); }
.pww-nav > li:has(.pww-panel--mega) { position: static; }
.pww-mega { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.pww-mega__group h4 { font-size: .9375rem; margin: 0 0 .35rem; }
.pww-mega__group h4 a { display: flex; align-items: center; gap: .5rem; padding: .35rem .5rem; color: var(--pww-blue-900); }
.pww-mega__group h4 .pww-icon { color: var(--pww-blue-600); width: 20px; height: 20px; }
.pww-mega__group ul a { padding: .3rem .5rem .3rem 2.1rem; font-weight: 500; color: var(--pww-ink-2); font-size: .9rem; }
.pww-mega__foot { grid-column: 1 / -1; display: flex; justify-content: space-between; align-items: center; gap: 1rem; border-top: 1px solid var(--pww-line); padding-top: .85rem; margin-top: .25rem; }

/* Search form (header + inline) */
.pww-search { position: relative; }
.pww-search__form { display: flex; align-items: center; background: var(--pww-mist-50); border: 1.5px solid var(--pww-line-strong); border-radius: var(--pww-r-pill); padding-left: .35rem; transition: border-color var(--pww-fast), box-shadow var(--pww-fast), background var(--pww-fast); }
.pww-search__form:focus-within { border-color: var(--pww-blue-600); box-shadow: var(--pww-ring); background: #fff; }
.pww-search__form input { flex: 1; min-width: 0; min-height: 46px; border: 0; background: transparent; padding: .5rem .5rem .5rem .6rem; font-size: 1rem; color: var(--pww-ink); }
.pww-search__form input::placeholder { color: var(--pww-ink-3); }
.pww-search__form input:focus { outline: none; box-shadow: none; }
.pww-search__form input::-webkit-search-cancel-button { -webkit-appearance: none; }
.pww-search__icon { color: var(--pww-ink-3); display: grid; place-items: center; padding-left: .5rem; }
.pww-search__submit { min-width: 44px; min-height: 44px; margin: 2px; border-radius: var(--pww-r-pill); background: var(--pww-blue-600); color: #fff; border: 0; display: grid; place-items: center; }
.pww-search__submit:hover { background: var(--pww-blue-700); }
.pww-search__clear { display: none; min-width: 36px; min-height: 36px; border: 0; background: transparent; color: var(--pww-ink-3); border-radius: 50%; }
.pww-search.has-value .pww-search__clear { display: grid; place-items: center; }

/* Predictive results panel */
.pww-results { position: absolute; top: calc(100% + 8px); left: 0; right: 0; background: #fff; border: 1px solid var(--pww-line); border-radius: var(--pww-r); box-shadow: var(--pww-shadow-lg); z-index: 80; max-height: min(70vh, 560px); overflow: auto; overscroll-behavior: contain; display: none; }
.pww-search.is-open .pww-results { display: block; }
.pww-results__status { padding: .75rem 1rem; font-size: var(--pww-text-sm); color: var(--pww-ink-3); border-bottom: 1px solid var(--pww-line); display: flex; justify-content: space-between; gap: 1rem; }
.pww-results__group { padding: .5rem; }
.pww-results__label { font-family: var(--pww-font-display); font-size: var(--pww-text-xs); text-transform: uppercase; letter-spacing: .08em; font-weight: 700; color: var(--pww-ink-3); padding: .5rem .5rem .25rem; }
.pww-results ul { list-style: none; margin: 0; padding: 0; }
.pww-result { display: grid; grid-template-columns: 56px 1fr auto; gap: .75rem; align-items: center; padding: .5rem; border-radius: var(--pww-r-sm); text-decoration: none; color: var(--pww-ink); }
.pww-result:hover, .pww-result[aria-selected="true"] { background: var(--pww-mist-100); color: var(--pww-ink); }
.pww-result[aria-selected="true"] { box-shadow: inset 0 0 0 2px var(--pww-blue-600); }
.pww-result__img { width: 56px; height: 56px; border-radius: var(--pww-r-sm); background: var(--pww-mist-50); border: 1px solid var(--pww-line); object-fit: contain; padding: 4px; }
.pww-result__title { font-weight: 700; font-size: .9375rem; line-height: 1.3; }
.pww-result__meta { font-size: var(--pww-text-xs); color: var(--pww-ink-3); display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 2px; }
.pww-result__meta b { color: var(--pww-cyan-600); font-weight: 700; }
.pww-result__price { font-family: var(--pww-font-display); font-weight: 800; white-space: nowrap; font-size: .9375rem; text-align: right; }
.pww-result__price del { color: var(--pww-ink-3); font-weight: 600; font-size: .85em; display: block; }
.pww-result__price ins { text-decoration: none; color: var(--pww-sale); }
.pww-result__stock { font-size: 11px; font-weight: 700; color: var(--pww-ok); display: block; }
.pww-result__stock--out { color: var(--pww-ink-3); }
.pww-result--cat { grid-template-columns: 36px 1fr auto; }
.pww-result--cat .pww-result__img { width: 36px; height: 36px; display: grid; place-items: center; color: var(--pww-blue-600); }
.pww-results__all { display: flex; align-items: center; justify-content: center; gap: .5rem; margin: .5rem; padding: .8rem; border-radius: var(--pww-r-sm); background: var(--pww-blue-600); color: #fff; font-family: var(--pww-font-display); font-weight: 700; text-decoration: none; }
.pww-results__all:hover, .pww-results__all[aria-selected="true"] { background: var(--pww-blue-700); color: #fff; }
.pww-results__empty { padding: 1.25rem 1rem; }
.pww-results__empty p { margin: 0 0 .5rem; font-weight: 600; }
.pww-results__empty ul { display: flex; flex-wrap: wrap; gap: .4rem; }
.pww-results__empty li a { display: inline-block; padding: .35rem .7rem; border-radius: var(--pww-r-pill); background: var(--pww-mist-100); text-decoration: none; font-size: var(--pww-text-sm); font-weight: 600; color: var(--pww-blue-800); }

/* Mobile search sheet */
.pww-msearch { position: fixed; inset: 0; z-index: 1000; background: #fff; display: none; flex-direction: column; }
.pww-msearch[data-open="true"] { display: flex; }
.pww-msearch__bar { display: flex; align-items: flex-start; gap: .5rem; padding: .6rem var(--pww-gutter); border-bottom: 1px solid var(--pww-line); }
.pww-msearch__bar .pww-iconbtn { margin-top: 4px; }
.pww-msearch__bar .pww-search { flex: 1; }
.pww-msearch .pww-results { position: static; box-shadow: none; border: 0; border-radius: 0; max-height: none; flex: 1; display: block; }
.pww-msearch__body { flex: 1; overflow: auto; }
.pww-msearch__hint { padding: 1.25rem var(--pww-gutter); color: var(--pww-ink-3); font-size: var(--pww-text-sm); }
.pww-msearch__hint ul { display: flex; flex-wrap: wrap; gap: .4rem; list-style: none; padding: 0; margin: .5rem 0 0; }
.pww-msearch__hint a { display: inline-block; padding: .4rem .75rem; border-radius: var(--pww-r-pill); background: var(--pww-mist-100); text-decoration: none; font-weight: 600; color: var(--pww-blue-800); }

/* Mobile menu (off-canvas) */
.pww-mnav { position: fixed; inset: 0; z-index: 1000; display: none; }
.pww-mnav[data-open="true"] { display: block; }
.pww-mnav__scrim { position: absolute; inset: 0; background: rgba(11, 42, 71, .55); }
.pww-mnav__panel { position: absolute; top: 0; bottom: 0; left: 0; width: min(92vw, 400px); background: #fff; display: flex; flex-direction: column; box-shadow: var(--pww-shadow-lg); animation: pww-slide-in var(--pww-med) var(--pww-ease); }
@keyframes pww-slide-in { from { transform: translateX(-100%); } to { transform: none; } }
.pww-mnav__head { display: flex; align-items: center; justify-content: space-between; padding: .6rem .75rem .6rem var(--pww-gutter); border-bottom: 1px solid var(--pww-line); min-height: var(--pww-header-h); }
.pww-mnav__body { flex: 1; overflow: auto; padding: .5rem 0 1rem; }
.pww-mnav ul { list-style: none; margin: 0; padding: 0; }
.pww-mnav__list > li { border-bottom: 1px solid var(--pww-line); }
.pww-mnav__list > li > a, .pww-mnav__list > li > .pww-mnav__row { display: flex; align-items: center; justify-content: space-between; gap: .5rem; padding: .95rem var(--pww-gutter); font-family: var(--pww-font-display); font-weight: 700; font-size: 1.0625rem; color: var(--pww-ink); text-decoration: none; }
.pww-mnav__row > a { flex: 1; color: inherit; text-decoration: none; padding: 0; }
.pww-mnav__toggle { width: 44px; height: 44px; border: 0; background: var(--pww-mist-50); border-radius: var(--pww-r-sm); color: var(--pww-blue-700); display: grid; place-items: center; margin-right: -.25rem; }
.pww-mnav__toggle[aria-expanded="true"] .pww-icon { transform: rotate(180deg); }
.pww-mnav__sub { display: none; padding: 0 0 .5rem; background: var(--pww-mist-50); }
.pww-mnav__sub[data-open="true"] { display: block; }
.pww-mnav__sub a { display: flex; align-items: center; gap: .6rem; padding: .7rem var(--pww-gutter) .7rem calc(var(--pww-gutter) + .5rem); color: var(--pww-ink-2); text-decoration: none; font-weight: 600; font-size: 1rem; }
.pww-mnav__sub a .pww-icon { color: var(--pww-blue-600); }
.pww-mnav__sub .pww-mnav__sub2 a { padding-left: calc(var(--pww-gutter) + 2.3rem); font-weight: 500; font-size: .9375rem; }
.pww-mnav__ctas { display: grid; gap: .6rem; padding: 1rem var(--pww-gutter); }
.pww-mnav__contact { padding: .5rem var(--pww-gutter) 1rem; font-size: var(--pww-text-sm); color: var(--pww-ink-2); display: grid; gap: .5rem; }
.pww-mnav__contact a { display: inline-flex; align-items: center; gap: .5rem; color: var(--pww-blue-700); text-decoration: none; font-weight: 600; }

/* Cart drawer */
.pww-drawer { position: fixed; inset: 0; z-index: 1000; display: none; }
.pww-drawer[data-open="true"] { display: block; }
.pww-drawer__scrim { position: absolute; inset: 0; background: rgba(11, 42, 71, .55); }
.pww-drawer__panel { position: absolute; top: 0; right: 0; bottom: 0; width: min(94vw, 440px); background: #fff; display: flex; flex-direction: column; box-shadow: var(--pww-shadow-lg); animation: pww-slide-in-r var(--pww-med) var(--pww-ease); }
@keyframes pww-slide-in-r { from { transform: translateX(100%); } to { transform: none; } }
.pww-drawer__head { display: flex; align-items: center; justify-content: space-between; padding: .75rem var(--pww-gutter); border-bottom: 1px solid var(--pww-line); }
.pww-drawer__head h2 { font-size: 1.125rem; margin: 0; }
.pww-drawer__body { flex: 1; overflow: auto; padding: 1rem var(--pww-gutter); }
.pww-drawer__foot { border-top: 1px solid var(--pww-line); padding: 1rem var(--pww-gutter); display: grid; gap: .6rem; background: var(--pww-mist-50); }
.pww-drawer__foot .pww-btn { width: 100%; }

/* Sticky mobile action bar */
.pww-stickybar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 800; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1px; background: var(--pww-line); border-top: 1px solid var(--pww-line); padding-bottom: env(safe-area-inset-bottom); }
.pww-stickybar a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; min-height: 56px; background: #fff; color: var(--pww-blue-900); text-decoration: none; font-family: var(--pww-font-display); font-weight: 700; font-size: .75rem; }
.pww-stickybar a .pww-icon { width: 22px; height: 22px; }
.pww-stickybar a.is-primary { background: var(--pww-blue-600); color: #fff; }
body.pww.has-stickybar { padding-bottom: 60px; }
@media (min-width: 64em) { .pww-stickybar { display: none; } body.pww.has-stickybar { padding-bottom: 0; } }
body.pww.woocommerce-checkout .pww-stickybar, body.pww.woocommerce-cart .pww-stickybar { display: none; }
body.pww.woocommerce-checkout.has-stickybar, body.pww.woocommerce-cart.has-stickybar { padding-bottom: 0; }

/* ---------- 9. Hero ---------- */
.pww-hero { position: relative; background: linear-gradient(180deg, #F7FBFD 0%, #EEF5FA 100%); overflow: hidden; }
.pww-hero::before { content: ""; position: absolute; inset: 0; background: url("../img/bg-water.webp") center/cover no-repeat; opacity: .28; pointer-events: none; mix-blend-mode: multiply; }
.pww-hero__inner { position: relative; }
.pww-hero__track { display: grid; }
.pww-hero__slide { grid-area: 1 / 1; display: grid; gap: var(--pww-s5); align-items: center; padding-block: var(--pww-s6) var(--pww-s5); opacity: 0; visibility: hidden; transition: opacity 500ms var(--pww-ease), visibility 0s linear 500ms; }
.pww-hero__slide.is-active { opacity: 1; visibility: visible; transition-delay: 0s; position: relative; z-index: 1; }
.pww-hero__text { display: grid; gap: 1rem; align-content: center; }
.pww-hero__text h1, .pww-hero__text h2 { margin: 0; font-size: var(--pww-h1); font-weight: 800; }
.pww-hero__text p { font-size: calc(var(--pww-text) * 1.08); color: var(--pww-ink-2); max-width: 36rem; margin: 0; }
.pww-hero__eyebrow { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--pww-font-display); font-size: var(--pww-text-xs); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--pww-blue-600); }
.pww-hero__eyebrow .pww-badge { text-transform: none; letter-spacing: 0; }
.pww-hero__price { display: flex; align-items: baseline; gap: .6rem; flex-wrap: wrap; font-family: var(--pww-font-display); }
.pww-hero__price .amount, .pww-hero__price bdi { font-size: 1.75rem; font-weight: 800; color: var(--pww-ink); }
.pww-hero__price del { color: var(--pww-ink-3); }
.pww-hero__price del .amount, .pww-hero__price del bdi { font-size: 1.125rem; font-weight: 600; }
.pww-hero__price ins { text-decoration: none; }
.pww-hero__price ins .amount, .pww-hero__price ins bdi { color: var(--pww-sale); }
.pww-hero__price .pww-badge { align-self: center; }
.pww-hero__ctas { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: .25rem; }
.pww-hero__media { position: relative; display: grid; place-items: center; min-height: 240px; }
.pww-hero__plate { position: absolute; inset: 6% 8%; border-radius: 50%; background: radial-gradient(closest-side, rgba(255, 255, 255, .95), rgba(214, 240, 251, .55) 70%, transparent); filter: blur(2px); }
.pww-hero__media img { position: relative; max-height: 320px; width: auto; max-width: 100%; object-fit: contain; filter: drop-shadow(0 18px 24px rgba(11, 42, 71, .18)); }
.pww-hero__media--photo img { max-height: none; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--pww-r-lg); box-shadow: var(--pww-shadow-lg); filter: none; }
.pww-hero__media--photo .pww-hero__plate { display: none; }
.pww-hero__controls { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: .5rem 1.25rem; position: relative; z-index: 2; }
.pww-hero__dots { display: flex; gap: .4rem; list-style: none; margin: 0; padding: 0; }
.pww-hero__dots button { width: 28px; height: 28px; border: 0; background: transparent; padding: 0; display: grid; place-items: center; border-radius: 50%; }
.pww-hero__dots button span { width: 10px; height: 10px; border-radius: 50%; background: var(--pww-line-strong); transition: transform var(--pww-fast), background var(--pww-fast); display: block; }
.pww-hero__dots button[aria-current="true"] span { background: var(--pww-blue-600); transform: scale(1.25); }
.pww-hero__arrows { display: flex; gap: .4rem; }
.pww-hero__arrows button { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--pww-line-strong); background: #fff; color: var(--pww-blue-900); display: grid; place-items: center; }
.pww-hero__arrows button:hover { border-color: var(--pww-blue-600); color: var(--pww-blue-600); }
.pww-hero__arrows button.pww-hero__prev .pww-icon { transform: rotate(180deg); }
.pww-hero__pause { display: inline-flex; align-items: center; gap: .4rem; font-size: var(--pww-text-xs); font-weight: 700; color: var(--pww-ink-3); background: none; border: 0; }
.pww-hero__pause:hover { color: var(--pww-blue-700); }
@media (min-width: 48em) {
  .pww-hero__slide { grid-template-columns: 1.1fr .9fr; gap: var(--pww-s7); padding-block: var(--pww-s7) var(--pww-s6); min-height: 440px; }
  .pww-hero__media img { max-height: 420px; }
}
@media (min-width: 64em) {
  .pww-hero__slide { min-height: 520px; }
  .pww-hero__media img { max-height: 480px; }
}
.js-hero-nojs .pww-hero__slide { opacity: 1; visibility: visible; position: relative; }
.js-hero-nojs .pww-hero__slide + .pww-hero__slide { display: none; }

/* Trust strip (directly under hero) */
.pww-trust { background: #fff; border-top: 1px solid var(--pww-line); border-bottom: 1px solid var(--pww-line); }
.pww-trust__inner { display: grid; gap: 1rem; padding-block: 1.25rem; align-items: center; text-align: center; }
.pww-trust__google { display: inline-flex; flex-direction: column; align-items: center; gap: .25rem; justify-self: center; text-decoration: none; color: var(--pww-ink); }
.pww-trust__google:hover { color: var(--pww-ink); }
.pww-trust__score { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--pww-font-display); font-weight: 800; font-size: 1.375rem; }
.pww-trust__google small { font-size: var(--pww-text-sm); color: var(--pww-ink-2); }
.pww-trust__google small u { text-decoration: underline; color: var(--pww-blue-600); }
.pww-trust__g { display: inline-flex; align-items: center; gap: .35rem; font-weight: 700; font-size: var(--pww-text-sm); color: var(--pww-ink-2); }
.pww-trust__g svg { width: 18px; height: 18px; }
.pww-trust__facts { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem .5rem; list-style: none; margin: 0; padding: 0; }
.pww-trust__facts li { display: inline-flex; align-items: center; gap: .45rem; padding: .45rem .8rem; border-radius: var(--pww-r-pill); background: var(--pww-mist-50); border: 1px solid var(--pww-line); font-family: var(--pww-font-display); font-weight: 700; font-size: var(--pww-text-sm); color: var(--pww-blue-900); }
.pww-trust__facts .pww-icon { color: var(--pww-blue-600); width: 18px; height: 18px; }
@media (min-width: 64em) {
  .pww-trust__inner { grid-template-columns: auto 1fr; text-align: left; gap: 2rem; padding-block: 1rem; }
  .pww-trust__google { align-items: flex-start; padding-right: 2rem; border-right: 1px solid var(--pww-line); }
  .pww-trust__facts { justify-content: flex-end; }
}

/* Quick actions (Shop / Book / Water test) */
.pww-quick { display: grid; gap: .75rem; grid-template-columns: 1fr; }
.pww-quick a { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.1rem; border-radius: var(--pww-r); background: #fff; border: 1px solid var(--pww-line); text-decoration: none; color: var(--pww-ink); box-shadow: var(--pww-shadow-sm); transition: transform var(--pww-med) var(--pww-ease), box-shadow var(--pww-med) var(--pww-ease); }
.pww-quick a:hover { transform: translateY(-2px); box-shadow: var(--pww-shadow); color: var(--pww-ink); }
.pww-quick__icon { width: 46px; height: 46px; flex: none; border-radius: 12px; background: var(--pww-mist-100); color: var(--pww-blue-600); display: grid; place-items: center; }
.pww-quick a.is-primary .pww-quick__icon { background: var(--pww-blue-600); color: #fff; }
.pww-quick b { display: block; font-family: var(--pww-font-display); font-size: 1.0625rem; }
.pww-quick small { display: block; color: var(--pww-ink-3); font-size: var(--pww-text-sm); }
.pww-quick .pww-icon--chevron { margin-left: auto; color: var(--pww-ink-3); }
@media (min-width: 48em) { .pww-quick { grid-template-columns: repeat(3, 1fr); } }

/* ---------- 10. Category tiles (binding mobile reference) ---------- */
.pww-tiles { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem; }
.pww-tile { position: relative; display: flex; flex-direction: column; justify-content: space-between; min-height: 200px; aspect-ratio: 1 / 1.05; background: #fff; border: 1px solid var(--pww-line); border-radius: var(--pww-r); overflow: hidden; text-decoration: none; color: var(--pww-ink); transition: box-shadow var(--pww-med) var(--pww-ease), transform var(--pww-med) var(--pww-ease), border-color var(--pww-fast); }
.pww-tile:hover, .pww-tile:focus-visible { box-shadow: var(--pww-shadow); transform: translateY(-2px); border-color: var(--pww-blue-500); color: var(--pww-ink); }
.pww-tile:active { transform: translateY(0); }
.pww-tile__text { position: relative; z-index: 2; padding: .9rem .9rem 0; max-width: 78%; }
.pww-tile__name { font-family: var(--pww-font-display); font-weight: 800; font-size: 1.0625rem; line-height: 1.2; margin: 0 0 .5rem; color: var(--pww-ink); }
.pww-tile__cta { display: inline-flex; align-items: center; gap: .2rem; font-family: var(--pww-font-display); font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--pww-blue-600); }
.pww-tile__cta .pww-icon { width: 14px; height: 14px; }
.pww-tile:hover .pww-tile__cta { text-decoration: underline; text-underline-offset: 3px; }
.pww-tile__media { position: absolute; right: -6%; bottom: -4%; width: 78%; height: 62%; z-index: 1; pointer-events: none; }
.pww-tile__media img { width: 100%; height: 100%; object-fit: contain; object-position: right bottom; transition: transform var(--pww-med) var(--pww-ease); }
.pww-tile:hover .pww-tile__media img { transform: scale(1.04); }
.pww-tile__icon { position: absolute; right: 1rem; bottom: 1rem; color: var(--pww-blue-500); opacity: .5; }
.pww-tile::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: linear-gradient(90deg, var(--pww-blue-600), var(--pww-cyan-500)); transform: scaleX(0); transform-origin: left; transition: transform var(--pww-med) var(--pww-ease); }
.pww-tile:hover::after, .pww-tile:focus-visible::after { transform: scaleX(1); }
.pww-tile__count { position: absolute; top: .75rem; right: .75rem; z-index: 2; }
@media (min-width: 40em) { .pww-tiles { gap: 1rem; } .pww-tile__name { font-size: 1.125rem; } }
@media (min-width: 48em) { .pww-tiles { grid-template-columns: repeat(3, minmax(0, 1fr)); } .pww-tile { aspect-ratio: 1 / .95; } }
@media (min-width: 64em) { .pww-tiles { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.25rem; } .pww-tile { aspect-ratio: 1 / .9; } .pww-tile__text { padding: 1.1rem 1.1rem 0; } .pww-tile__name { font-size: 1.1875rem; } }

/* ---------- 11. Problems ---------- */
.pww-problems { display: grid; gap: .75rem; grid-template-columns: 1fr; }
@media (min-width: 40em) { .pww-problems { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 64em) { .pww-problems { grid-template-columns: repeat(3, 1fr); gap: 1rem; } }
.pww-problem { display: flex; gap: .9rem; align-items: flex-start; padding: 1rem; border-radius: var(--pww-r); background: #fff; border: 1px solid var(--pww-line); text-decoration: none; color: var(--pww-ink); transition: box-shadow var(--pww-med) var(--pww-ease), transform var(--pww-med) var(--pww-ease), border-color var(--pww-fast); }
.pww-problem:hover { box-shadow: var(--pww-shadow); transform: translateY(-2px); border-color: var(--pww-line-strong); color: var(--pww-ink); }
.pww-problem__icon { width: 42px; height: 42px; flex: none; border-radius: 10px; background: var(--pww-mist-100); color: var(--pww-blue-600); display: grid; place-items: center; }
.pww-problem h3 { font-size: 1.0625rem; margin: 0 0 .2rem; }
.pww-problem p { margin: 0; color: var(--pww-ink-2); font-size: var(--pww-text-sm); }
.pww-problem .pww-icon--chevron { margin-left: auto; align-self: center; color: var(--pww-ink-3); flex: none; }

/* Finder CTA band */
.pww-finder-cta { display: grid; gap: 1.5rem; align-items: center; padding: clamp(1.5rem, 4vw, 3rem); border-radius: var(--pww-r-lg); background: var(--pww-blue-900); color: #fff; position: relative; overflow: hidden; }
.pww-finder-cta::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(180deg, transparent 0 44px, rgba(255, 255, 255, .05) 44px 45px); pointer-events: none; }
.pww-finder-cta > * { position: relative; }
.pww-finder-cta h2 { color: #fff; margin: 0 0 .5rem; }
.pww-finder-cta p { color: rgba(255, 255, 255, .85); margin: 0; }
.pww-finder-cta__steps { display: grid; gap: .6rem; list-style: none; margin: 0; padding: 0; }
.pww-finder-cta__steps li { display: flex; gap: .75rem; align-items: center; font-weight: 600; }
.pww-finder-cta__steps span { width: 30px; height: 30px; flex: none; border-radius: 50%; background: var(--pww-cyan-500); color: var(--pww-blue-900); display: grid; place-items: center; font-family: var(--pww-font-display); font-weight: 800; font-size: .875rem; }
@media (min-width: 64em) { .pww-finder-cta { grid-template-columns: 1.2fr 1fr; gap: 3rem; } }

/* ---------- 12. About / photos / brands / process ---------- */
.pww-checks { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.pww-checks li { display: flex; gap: .65rem; align-items: flex-start; }
.pww-checks .pww-icon { flex: none; margin-top: .2rem; color: var(--pww-blue-600); background: var(--pww-cyan-100); border-radius: 50%; padding: 3px; width: 22px; height: 22px; }
.pww-photos { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.pww-photos figure { margin: 0; border-radius: var(--pww-r); overflow: hidden; background: var(--pww-mist-100); aspect-ratio: 4 / 3; }
.pww-photos figure:first-child { grid-column: 1 / -1; aspect-ratio: 16 / 10; }
.pww-photos img { width: 100%; height: 100%; object-fit: cover; }
.pww-photos figcaption { font-size: var(--pww-text-xs); color: var(--pww-ink-3); padding: .4rem .6rem; background: #fff; }
.pww-stat { display: grid; gap: .1rem; }
.pww-stat b { font-family: var(--pww-font-display); font-size: 2rem; font-weight: 800; color: var(--pww-blue-600); line-height: 1; }
.pww-stat span { color: var(--pww-ink-2); font-size: var(--pww-text-sm); font-weight: 600; }
.pww-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; padding: 1.25rem 0 0; border-top: 1px solid var(--pww-line); margin-top: 1.5rem; }

.pww-brands { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 1rem 2rem; }
.pww-brands img { height: 34px; width: auto; filter: grayscale(1); opacity: .7; transition: filter var(--pww-fast), opacity var(--pww-fast); }
.pww-brands img:hover { filter: none; opacity: 1; }
.pww-brands span { font-family: var(--pww-font-display); font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: var(--pww-ink-3); font-size: .9rem; }
@media (min-width: 64em) { .pww-brands img { height: 42px; } }

.pww-steps { display: grid; gap: 1rem; counter-reset: step; }
@media (min-width: 48em) { .pww-steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 64em) { .pww-steps { grid-template-columns: repeat(4, 1fr); } }
.pww-step { position: relative; padding: 1.25rem 1.25rem 1.25rem; background: #fff; border: 1px solid var(--pww-line); border-radius: var(--pww-r); }
.pww-step::before { counter-increment: step; content: counter(step, decimal-leading-zero); font-family: var(--pww-font-display); font-weight: 800; color: var(--pww-cyan-600); font-size: .875rem; letter-spacing: .1em; display: block; margin-bottom: .5rem; }
.pww-step h3 { font-size: 1.0625rem; margin: 0 0 .35rem; }
.pww-step p { margin: 0; color: var(--pww-ink-2); font-size: var(--pww-text-sm); }
.pww-step__icon { position: absolute; top: 1rem; right: 1rem; color: var(--pww-blue-600); }

/* ---------- 13. Reviews ---------- */
.pww-reviews { display: grid; gap: 1rem; }
@media (min-width: 48em) { .pww-reviews { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 64em) { .pww-reviews { grid-template-columns: repeat(3, 1fr); } }
.pww-review { display: flex; flex-direction: column; gap: .75rem; padding: 1.25rem; background: #fff; border: 1px solid var(--pww-line); border-radius: var(--pww-r); }
.pww-review__head { display: flex; align-items: center; justify-content: space-between; gap: .5rem; }
.pww-review blockquote { margin: 0; color: var(--pww-ink-2); font-size: 1rem; }
.pww-review blockquote p { margin: 0; }
.pww-review__foot { display: flex; align-items: center; gap: .6rem; margin-top: auto; font-size: var(--pww-text-sm); }
.pww-review__avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--pww-blue-600); color: #fff; display: grid; place-items: center; font-family: var(--pww-font-display); font-weight: 800; font-size: .875rem; flex: none; }
.pww-review__foot b { color: var(--pww-ink); }
.pww-review__foot span { color: var(--pww-ink-3); }
.pww-review__src { display: inline-flex; align-items: center; gap: .3rem; font-size: var(--pww-text-xs); color: var(--pww-ink-3); }
.pww-reviews__summary { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .75rem 1.25rem; margin-bottom: 1.5rem; }
.pww-reviews__summary .pww-trust__score { font-size: 1.75rem; }

/* ---------- 14. FAQ ---------- */
.pww-faq { display: grid; gap: .5rem; max-width: 52rem; margin-inline: auto; }
.pww-faq details { background: #fff; border: 1px solid var(--pww-line); border-radius: var(--pww-r); }
.pww-faq details[open] { border-color: var(--pww-blue-500); box-shadow: var(--pww-shadow-sm); }
.pww-faq summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 1.1rem; font-family: var(--pww-font-display); font-weight: 700; font-size: 1.0625rem; color: var(--pww-ink); }
.pww-faq summary::-webkit-details-marker { display: none; }
.pww-faq summary .pww-icon { flex: none; color: var(--pww-blue-600); transition: transform var(--pww-fast); }
.pww-faq details[open] summary .pww-icon { transform: rotate(45deg); }
.pww-faq__a { padding: 0 1.1rem 1.1rem; color: var(--pww-ink-2); }
.pww-faq__a p:last-child { margin: 0; }

/* ---------- 15. Final CTA ---------- */
.pww-cta { background: linear-gradient(135deg, var(--pww-blue-800), var(--pww-blue-600) 60%, var(--pww-cyan-600)); color: #fff; }
.pww-cta__inner { display: grid; gap: 1.5rem; align-items: center; text-align: center; }
.pww-cta h2 { color: #fff; margin: 0 0 .4rem; }
.pww-cta p { color: rgba(255, 255, 255, .88); margin: 0; }
.pww-cta__actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }
@media (min-width: 64em) { .pww-cta__inner { grid-template-columns: 1.3fr 1fr; text-align: left; } .pww-cta__actions { justify-content: flex-end; } }

/* ---------- 16. Footer ---------- */
.pww-footer { background: var(--pww-blue-900); color: rgba(255, 255, 255, .82); font-size: var(--pww-text-sm); }
.pww-footer a { color: #fff; text-decoration: none; }
.pww-footer__bottom p a { text-decoration: underline; text-underline-offset: .15em; }
.pww-footer a:hover { color: var(--pww-cyan-500); }
.pww-footer__top { display: grid; gap: 2rem; padding-block: 3rem 2rem; }
.pww-footer__brand { display: grid; gap: 1rem; }
.pww-footer__brand img { height: 44px; width: auto; }
.pww-footer__brand .pww-wordmark b { color: #fff; }
.pww-footer__brand .pww-wordmark small { color: var(--pww-cyan-500); }
.pww-footer__brand p { max-width: 34rem; margin: 0; }
.pww-footer__social { display: flex; gap: .5rem; }
.pww-footer__social a { width: 42px; height: 42px; border-radius: 10px; background: rgba(255, 255, 255, .08); display: grid; place-items: center; }
.pww-footer__social a:hover { background: rgba(255, 255, 255, .16); }
.pww-footer h3 { color: #fff; font-size: .875rem; letter-spacing: .1em; text-transform: uppercase; margin: 0 0 .9rem; }
.pww-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.pww-footer__cols { display: grid; gap: 2rem; grid-template-columns: 1fr 1fr; }
.pww-footer__contact { display: grid; gap: .75rem; }
.pww-footer__contact li { display: flex; gap: .6rem; align-items: flex-start; }
.pww-footer__contact .pww-icon { flex: none; color: var(--pww-cyan-500); margin-top: .15rem; }
.pww-footer__contact address { font-style: normal; }
.pww-footer__hours { display: grid; grid-template-columns: auto 1fr; gap: .2rem 1rem; }
.pww-footer__hours dt { color: #fff; font-weight: 600; }
.pww-footer__hours dd { margin: 0; }
.pww-footer__map { border-radius: var(--pww-r); overflow: hidden; background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .1); }
.pww-map { position: relative; aspect-ratio: 16 / 10; display: grid; place-items: center; background: #0E3A62; }
.pww-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.pww-map__load { display: grid; gap: .75rem; place-items: center; padding: 1rem; text-align: center; width: 100%; height: 100%; border: 0; background: transparent; color: #fff; }
.pww-map__load .pww-icon { color: var(--pww-cyan-500); width: 36px; height: 36px; }
.pww-map__load p { margin: 0; color: #fff; font-weight: 600; }
.pww-map__load small { color: rgba(255, 255, 255, .7); }
.pww-map.is-loaded .pww-map__load { display: none; }
.pww-footer__mapfoot { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem 1rem; padding: .85rem 1rem; font-size: var(--pww-text-sm); }
.pww-footer__mapfoot a { display: inline-flex; align-items: center; gap: .35rem; white-space: nowrap; }
.pww-footer__bottom { border-top: 1px solid rgba(255, 255, 255, .1); padding-block: 1.25rem; display: grid; gap: .75rem; font-size: var(--pww-text-xs); color: rgba(255, 255, 255, .65); }
.pww-footer__bottom ul { display: flex; flex-wrap: wrap; gap: .4rem 1.25rem; }
.pww-footer__bottom a { color: rgba(255, 255, 255, .8); }
.pww-footer__areas { color: rgba(255, 255, 255, .65); }
@media (min-width: 48em) { .pww-footer__cols { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 64em) {
  .pww-footer__top { grid-template-columns: 1.3fr 2fr 1.3fr; gap: 3rem; padding-block: 4rem 2.5rem; }
  .pww-footer__bottom { grid-template-columns: 1fr auto; align-items: center; }
}

/* ---------- 17. Page header / breadcrumbs / pagination ---------- */
.pww-crumbs { font-size: var(--pww-text-sm); color: var(--pww-ink-3); }
.pww-crumbs ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .3rem; align-items: center; }
.pww-crumbs li { display: inline-flex; align-items: center; gap: .3rem; }
.pww-crumbs li + li::before { content: ""; width: 5px; height: 5px; border-right: 1.5px solid currentColor; border-top: 1.5px solid currentColor; transform: rotate(45deg); opacity: .6; margin-right: .1rem; }
.pww-crumbs a { color: var(--pww-ink-2); text-decoration: none; }
.pww-crumbs a:hover { color: var(--pww-blue-600); text-decoration: underline; }
.pww-crumbs [aria-current] { color: var(--pww-ink); font-weight: 600; }
.pww-pagehead { padding-block: var(--pww-s5) var(--pww-s5); background: var(--pww-mist-50); border-bottom: 1px solid var(--pww-line); }
.pww-pagehead .pww-crumbs { margin-bottom: .75rem; }
.pww-pagehead h1 { margin: 0; }
.pww-pagehead p { margin: .5rem 0 0; color: var(--pww-ink-2); max-width: 46rem; font-size: calc(var(--pww-text) * 1.05); }
.pww-pagehead--image { position: relative; background: var(--pww-blue-900); color: #fff; overflow: hidden; }
.pww-pagehead--image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .35; }
.pww-pagehead--image .pww-container { position: relative; }
.pww-pagehead--image h1, .pww-pagehead--image p { color: #fff; }
.pww-pagehead--image .pww-crumbs a, .pww-pagehead--image .pww-crumbs { color: rgba(255, 255, 255, .8); }
.pww-pagehead--image .pww-crumbs [aria-current] { color: #fff; }
.pww-pagination { display: flex; justify-content: center; margin-top: var(--pww-s7); }
.pww-pagination .page-numbers { display: inline-flex; gap: .35rem; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; justify-content: center; }
.pww-pagination .page-numbers li { display: inline-flex; }
.pww-pagination a.page-numbers, .pww-pagination span.page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 44px; min-height: 44px; padding: 0 .75rem; border-radius: var(--pww-r-sm); border: 1.5px solid var(--pww-line-strong); background: #fff; color: var(--pww-ink); text-decoration: none; font-family: var(--pww-font-display); font-weight: 700; }
.pww-pagination a.page-numbers:hover { border-color: var(--pww-blue-600); color: var(--pww-blue-600); }
.pww-pagination span.page-numbers.current { background: var(--pww-blue-600); border-color: var(--pww-blue-600); color: #fff; }
.pww-pagination span.page-numbers.dots { border: 0; }

/* ---------- 18. Content (posts, pages, entry content) ---------- */
.pww-entry { max-width: var(--pww-narrow); margin-inline: auto; }
.pww-entry--wide { max-width: var(--pww-container); }
.pww-prose { font-size: calc(var(--pww-text) * 1.02); }
.pww-prose > * + * { margin-top: 1.1em; }
.pww-prose h2 { margin-top: 1.8em; }
.pww-prose h3 { margin-top: 1.5em; }
.pww-prose ul, .pww-prose ol { padding-left: 1.4em; }
.pww-prose li + li { margin-top: .35em; }
.pww-prose img { border-radius: var(--pww-r); }
.pww-prose blockquote { margin: 1.5em 0; padding: 1rem 1.25rem; border-left: 4px solid var(--pww-cyan-500); background: var(--pww-mist-50); border-radius: 0 var(--pww-r) var(--pww-r) 0; font-style: italic; color: var(--pww-ink-2); }
.pww-prose table { font-size: var(--pww-text-sm); }
.pww-prose th, .pww-prose td { padding: .6rem .75rem; border: 1px solid var(--pww-line); text-align: left; }
.pww-prose th { background: var(--pww-mist-50); font-family: var(--pww-font-display); }
.pww-prose figure { margin: 1.5em 0; }
.pww-prose figcaption { font-size: var(--pww-text-xs); color: var(--pww-ink-3); text-align: center; margin-top: .5rem; }
.pww-prose .wp-block-image img { height: auto; }
.pww-prose .alignwide { max-width: var(--pww-container); margin-inline: calc(50% - min(50vw - var(--pww-gutter), var(--pww-container) / 2)); }
.pww-prose .alignfull { width: 100vw; max-width: 100vw; margin-inline: calc(50% - 50vw); }
.pww-prose a { text-decoration: underline; }
.pww-prose .wp-block-button__link { background: var(--pww-blue-600); border-radius: var(--pww-r-sm); font-family: var(--pww-font-display); font-weight: 700; text-decoration: none; }
.pww-prose .wp-element-caption { font-size: var(--pww-text-xs); }
.pww-entry__meta { display: flex; flex-wrap: wrap; gap: .5rem 1rem; color: var(--pww-ink-3); font-size: var(--pww-text-sm); margin-bottom: 1.25rem; }
.pww-entry__meta a { color: var(--pww-blue-600); text-decoration: none; font-weight: 600; }
.pww-entry__hero { border-radius: var(--pww-r-lg); overflow: hidden; margin: 1.5rem 0 2rem; }
.pww-entry__hero img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.pww-entry__tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 2rem; }
.pww-entry__tags a { display: inline-block; padding: .3rem .7rem; border-radius: var(--pww-r-pill); background: var(--pww-mist-100); text-decoration: none; font-size: var(--pww-text-xs); font-weight: 700; color: var(--pww-blue-800); }
.pww-entry__nav { display: grid; gap: 1rem; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--pww-line); }
@media (min-width: 40em) { .pww-entry__nav { grid-template-columns: 1fr 1fr; } }
.pww-entry__nav a { display: grid; gap: .2rem; padding: 1rem; border-radius: var(--pww-r); border: 1px solid var(--pww-line); text-decoration: none; color: var(--pww-ink); }
.pww-entry__nav a:hover { border-color: var(--pww-blue-500); }
.pww-entry__nav small { color: var(--pww-ink-3); text-transform: uppercase; letter-spacing: .06em; font-size: var(--pww-text-xs); font-weight: 700; }
.pww-entry__nav .is-next { text-align: right; }
.pww-entry__nav b { font-family: var(--pww-font-display); }
.pww-author { display: flex; gap: 1rem; align-items: center; padding: 1.25rem; background: var(--pww-mist-50); border-radius: var(--pww-r); margin-top: 2.5rem; }
.pww-author img { width: 64px; height: 64px; border-radius: 50%; }
.pww-author p { margin: 0; color: var(--pww-ink-2); font-size: var(--pww-text-sm); }
.pww-post-card .pww-card__media { aspect-ratio: 16 / 10; }
.pww-post-card .pww-card__media img { object-fit: cover; padding: 0; }
.pww-post-card__excerpt { color: var(--pww-ink-2); font-size: var(--pww-text-sm); }
.post-password-form { max-width: 30rem; padding: 1.5rem; border: 1px solid var(--pww-line); border-radius: var(--pww-r); background: var(--pww-mist-50); }
.post-password-form label { display: block; font-weight: 700; margin-bottom: .5rem; }
.post-password-form input[type="password"] { width: 100%; min-height: 48px; padding: .6rem .9rem; border: 1.5px solid var(--pww-line-strong); border-radius: var(--pww-r-sm); margin-bottom: .75rem; }
.post-password-form input[type="submit"] { min-height: 48px; padding: .7rem 1.25rem; border: 0; border-radius: var(--pww-r-sm); background: var(--pww-blue-600); color: #fff; font-family: var(--pww-font-display); font-weight: 700; }

/* Empty / no-results state */
.pww-empty { text-align: center; padding: clamp(2rem, 6vw, 4rem) 1rem; max-width: 40rem; margin-inline: auto; }
.pww-empty__icon { width: 72px; height: 72px; border-radius: 50%; background: var(--pww-mist-100); color: var(--pww-blue-600); display: grid; place-items: center; margin: 0 auto 1rem; }
.pww-empty__icon .pww-icon { width: 34px; height: 34px; }
.pww-empty h2 { font-size: 1.5rem; }
.pww-empty p { color: var(--pww-ink-2); }
.pww-empty .pww-search { max-width: 30rem; margin: 1.25rem auto; text-align: left; }
.pww-empty__links { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem; margin-top: 1rem; }
.pww-empty__links a { display: inline-block; padding: .45rem .9rem; border-radius: var(--pww-r-pill); background: var(--pww-mist-100); text-decoration: none; font-weight: 700; font-size: var(--pww-text-sm); color: var(--pww-blue-800); }

/* 404 */
.pww-404 { padding-block: var(--pww-section); text-align: center; }
.pww-404__code { font-family: var(--pww-font-display); font-size: clamp(4rem, 12vw, 7rem); font-weight: 800; line-height: 1; background: linear-gradient(135deg, var(--pww-blue-600), var(--pww-cyan-500)); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: .5rem; }

/* Comments */
.pww-comments { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--pww-line); }
.pww-comments h2 { font-size: 1.375rem; }
.comment-list { list-style: none; padding: 0; margin: 0 0 2rem; }
.comment-list .comment { padding: 1rem 0; border-bottom: 1px solid var(--pww-line); }
.comment-list .children { list-style: none; padding-left: 1.5rem; }
.comment-author { display: flex; align-items: center; gap: .6rem; font-weight: 700; }
.comment-author img { border-radius: 50%; }
.comment-metadata { font-size: var(--pww-text-xs); color: var(--pww-ink-3); margin: .25rem 0 .5rem; }
.comment-content { color: var(--pww-ink-2); }
.comment-reply-link { font-weight: 700; font-size: var(--pww-text-sm); text-decoration: none; }
.comment-form label { display: block; font-weight: 700; font-size: var(--pww-text-sm); margin-bottom: .3rem; }
.comment-form input:not([type="checkbox"]):not([type="submit"]), .comment-form textarea { width: 100%; min-height: 48px; padding: .6rem .9rem; border: 1.5px solid var(--pww-line-strong); border-radius: var(--pww-r-sm); }
.comment-form textarea { min-height: 140px; }
.comment-form p { margin-bottom: 1rem; }
.comment-form .submit { min-height: 48px; padding: .7rem 1.4rem; border: 0; border-radius: var(--pww-r-sm); background: var(--pww-blue-600); color: #fff; font-family: var(--pww-font-display); font-weight: 700; cursor: pointer; }

/* ---------- 19. Service / problem singles ---------- */
.pww-sidebar-layout { display: grid; gap: 2.5rem; }
@media (min-width: 64em) { .pww-sidebar-layout { grid-template-columns: minmax(0, 1fr) 360px; gap: 4rem; align-items: start; } .pww-sidebar-layout > aside { position: sticky; top: calc(var(--pww-header-h) + 1rem); } }
.pww-panelbox { background: #fff; border: 1px solid var(--pww-line); border-radius: var(--pww-r-lg); box-shadow: var(--pww-shadow); padding: 1.5rem; }
.pww-panelbox h2, .pww-panelbox h3 { font-size: 1.25rem; margin-top: 0; }
.pww-panelbox--mist { background: var(--pww-mist-50); box-shadow: none; }
.pww-kv { display: grid; gap: 1rem; }
@media (min-width: 40em) { .pww-kv { grid-template-columns: 1fr 1fr; } }
.pww-kv > div { padding: 1.1rem 1.25rem; border-radius: var(--pww-r); background: var(--pww-mist-50); border: 1px solid var(--pww-line); }
.pww-kv h2, .pww-kv h3 { font-size: .875rem; letter-spacing: .08em; text-transform: uppercase; color: var(--pww-blue-600); margin: 0 0 .4rem; }
.pww-kv p { margin: 0; color: var(--pww-ink-2); }
.pww-kv--outcome > div:last-child { background: var(--pww-ok-50); border-color: #BFE3CB; }
.pww-kv--outcome > div:last-child h3 { color: var(--pww-ok); }
.pww-timeline { list-style: none; margin: 0; padding: 0; display: grid; gap: .75rem; counter-reset: tl; }
.pww-timeline li { display: grid; grid-template-columns: 36px 1fr; gap: .9rem; align-items: flex-start; }
.pww-timeline li::before { counter-increment: tl; content: counter(tl); width: 36px; height: 36px; border-radius: 50%; background: var(--pww-blue-600); color: #fff; display: grid; place-items: center; font-family: var(--pww-font-display); font-weight: 800; }
.pww-timeline b { display: block; font-family: var(--pww-font-display); }
.pww-timeline p { margin: 0; color: var(--pww-ink-2); font-size: var(--pww-text-sm); }
.pww-related { margin-top: var(--pww-s7); }
.pww-scroller { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(230px, 1fr); gap: 1rem; overflow-x: auto; scroll-snap-type: x proximity; padding-bottom: .5rem; scrollbar-width: thin; }
.pww-scroller > * { scroll-snap-align: start; }
@media (min-width: 64em) { .pww-scroller { grid-auto-flow: row; grid-template-columns: repeat(4, 1fr); overflow: visible; } }

/* Contact page */
.pww-contact-cards { display: grid; gap: 1rem; }
.pww-contact-card { display: flex; gap: 1rem; padding: 1.25rem; border-radius: var(--pww-r); background: #fff; border: 1px solid var(--pww-line); }
.pww-contact-card .pww-icon { flex: none; color: var(--pww-blue-600); width: 26px; height: 26px; }
.pww-contact-card h3 { font-size: 1rem; margin: 0 0 .25rem; }
.pww-contact-card p { margin: 0; color: var(--pww-ink-2); }
.pww-contact-card a { font-weight: 700; text-decoration: none; }

/* Finder */
.pww-finder { max-width: 46rem; margin-inline: auto; }
.pww-finder__progress { display: flex; gap: .35rem; margin-bottom: 1.5rem; }
.pww-finder__progress span { flex: 1; height: 6px; border-radius: 3px; background: var(--pww-mist-200); }
.pww-finder__progress span.is-done { background: var(--pww-blue-600); }
.pww-finder__step { display: none; }
.pww-finder__step.is-active { display: block; }
.pww-finder__step h2 { font-size: var(--pww-h3); }
.pww-finder__nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: 1.5rem; }
.pww-finder__result { display: grid; gap: 1.5rem; }
.pww-finder__rec { padding: 1.5rem; border-radius: var(--pww-r-lg); background: var(--pww-mist-50); border: 1px solid var(--pww-line); }
.pww-finder__rec h3 { margin-top: 0; }
.pww-finder__rec ul { padding-left: 1.2rem; color: var(--pww-ink-2); }

/* Utility */
.pww-mt0 { margin-top: 0 !important; }
.pww-center { text-align: center; }
.pww-muted { color: var(--pww-ink-3); }
.pww-hide-mobile { display: none; }
@media (min-width: 64em) { .pww-hide-mobile { display: initial; } .pww-hide-desktop { display: none !important; } }
[hidden] { display: none !important; }
