/* ==========================================================================
   YeeFixx Tools and Parts Supply : main stylesheet
   Mobile-first. Breakpoints: 640px (sm), 900px (md), 1200px (lg)
   Palette traces back to the copper/bronze logo; accents chosen for
   WCAG AA contrast (see docs/02-design-system-and-build.md).
   ========================================================================== */

:root {
  /* Brand: copper from the logo */
  --copper-50: #fff8f3;
  --copper-100: #f6ebdf;
  --copper-200: #e9d3bb;
  --copper-300: #d4ab7f;
  --copper-500: #b38251;
  --copper-600: #9a6a3d;
  --copper-700: #8e5b3b;
  --copper-800: #6f4529;
  /* Accents: bold, saturated, each AA-safe with white text */
  --teal-100: #d9f2f4;
  --teal-600: #087584;
  --teal-700: #06616d;
  --blue-100: #dce6fb;
  --blue-600: #1e56c8;
  --blue-700: #1a47a3;
  --green-100: #dbf3e2;
  --green-600: #17803a;
  --yellow-100: #fff3bf;
  --yellow-400: #f5c518;
  --yellow-500: #e6b400;
  --red-600: #b23c33;
  /* Large decorative numerals. Each clears WCAG AA large-text 3:1 on white. */
  --num-copper: #b38251;
  --num-teal: #3499a8;
  --num-blue: #6f8fe0;
  --num-green: #3fa561;
  --num-gold: #a8780a;
  --wa: #0f7a6b;
  --wa-hover: #0b6558;
  --wa-bright: #25d366;
  --wa-fab: #128c7e;
  /* Neutrals */
  --ink: #1f1a17;
  --ink-2: #3d332c;
  --muted: #6b5f56;
  --line: #e8ddd2;
  --line-soft: #f1e8df;
  --white: #ffffff;
  --bg: #ffffff;
  --bg-alt: var(--copper-50);
  /* Type */
  --font-body: "Noto Sans", "Noto Sans SC", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-head: "Rubik", "Noto Sans SC", "Noto Sans", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  /* Layout */
  --container: 1200px;
  --gutter: clamp(16px, 4vw, 32px);
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 2px rgba(31, 26, 23, 0.06), 0 2px 8px rgba(31, 26, 23, 0.06);
  --shadow-md: 0 6px 18px rgba(31, 26, 23, 0.10), 0 2px 6px rgba(31, 26, 23, 0.06);
  --shadow-lg: 0 18px 40px rgba(31, 26, 23, 0.16);
  --header-h: 72px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  color-scheme: light;
}

html.lang-zh, .lang-zh {
  --font-head: "Noto Sans SC", "Rubik", "Noto Sans", system-ui, sans-serif;
}

/* --------------------------------------------------------------------------
   Reset and base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 12px); }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-2);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img, picture, svg, video, iframe { max-width: 100%; display: block; }
img { height: auto; }
a { color: var(--copper-700); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--copper-800); }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.15; margin: 0 0 0.5em; letter-spacing: -0.01em; }
h1 { font-size: clamp(1.9rem, 1.35rem + 2.2vw, 3rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 1.2rem + 1.3vw, 2.1rem); font-weight: 800; }
h3 { font-size: 1.15rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.2em; }
button { font: inherit; }
:focus-visible { outline: 3px solid var(--teal-600); outline-offset: 2px; border-radius: 4px; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.muted { color: var(--muted); }
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container.narrow { max-width: 860px; }
.skip-link { position: absolute; left: 12px; top: -60px; z-index: 1000; background: var(--ink); color: #fff; padding: 10px 14px; border-radius: 8px; }
.skip-link:focus { top: 12px; }
.lead { font-size: clamp(1.05rem, 1rem + 0.35vw, 1.25rem); color: var(--muted); max-width: 62ch; }
.eyebrow { font-family: var(--font-head); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--copper-700); margin-bottom: 0.6em; }
.lang-zh .eyebrow { letter-spacing: 0.15em; }
.strong-link { font-weight: 700; }

/* --------------------------------------------------------------------------
   Buttons, chips, badges
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5em;
  min-height: 44px; padding: 0.6em 1.15em; border-radius: 999px;
  font-family: var(--font-head); font-weight: 700; font-size: 0.95rem; line-height: 1.2;
  text-decoration: none; border: 2px solid transparent; cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background-color 0.2s, color 0.2s, border-color 0.2s;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--copper-600); color: #fff; }
.btn--primary:hover { background: var(--copper-700); color: #fff; }
.btn--wa { background: var(--wa); color: #fff; }
.btn--wa:hover { background: var(--wa-hover); color: #fff; }
.btn--outline { background: transparent; color: var(--copper-700); border-color: var(--copper-500); }
.btn--outline:hover { background: var(--copper-50); color: var(--copper-800); }
.btn--ghost { background: var(--copper-100); color: var(--copper-800); }
.btn--ghost:hover { background: var(--copper-200); color: var(--ink); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #000; color: #fff; }
.btn--light { background: #fff; color: var(--copper-800); }
.btn--light:hover { background: var(--copper-50); color: var(--copper-800); }
.btn--sm { min-height: 38px; padding: 0.45em 0.9em; font-size: 0.85rem; }
.btn--lg { min-height: 52px; padding: 0.75em 1.5em; font-size: 1.05rem; }
.link-btn { background: none; border: 0; padding: 0; color: var(--copper-700); font-weight: 600; cursor: pointer; display: inline-flex; gap: 0.4em; align-items: center; }
.link-btn:hover { color: var(--copper-800); text-decoration: underline; }

.chips { list-style: none; padding: 0; margin: 1.25rem 0 0; display: flex; flex-wrap: wrap; gap: 8px; }
.chips li { display: inline-flex; align-items: center; gap: 0.45em; background: var(--copper-100); color: var(--copper-800); font-weight: 600; font-size: 0.85rem; padding: 6px 12px; border-radius: 999px; }
.chips li i { color: var(--copper-600); }
.badges { list-style: none; padding: 0; margin: 0 0 1.25rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px 14px; font-size: 0.9rem; }
.badges li { display: flex; gap: 0.5em; align-items: flex-start; }
.badges i { color: var(--green-600); margin-top: 0.25em; }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.site-header { position: sticky; top: 0; z-index: 100; background: #fff; box-shadow: 0 1px 0 var(--line); }
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.topbar { background: var(--ink); color: #f6ebdf; font-size: 0.82rem; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 44px; flex-wrap: wrap; }
.topbar__list { list-style: none; display: flex; gap: 18px; margin: 0; padding: 0; flex-wrap: wrap; }
.topbar__list a { color: #fff; text-decoration: none; display: inline-flex; align-items: center; min-height: 44px; }
.topbar__list a:hover { color: var(--yellow-400); }
.topbar__list i { color: var(--yellow-400); margin-right: 4px; }
.topbar__hours { display: none; align-items: center; min-height: 44px; }
.topbar__list li:nth-child(2) { display: none; }
@media (min-width: 640px) { .topbar__list li:nth-child(2) { display: block; } }
@media (min-width: 900px) { .topbar__hours { display: inline-flex; } }
.lang-switch { display: flex; gap: 2px; }
.lang-switch a, .primary-nav__lang a { color: #fff; text-decoration: none; font-weight: 600; padding: 4px 10px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center; min-width: 44px; min-height: 44px; }
.lang-switch a[aria-current="true"] { background: var(--copper-600); color: #fff; }
.lang-switch a:hover { background: rgba(255, 255, 255, 0.14); color: #fff; }

.navbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: var(--header-h); }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.brand img { width: 70px; height: auto; }
.brand__text { display: none; line-height: 1.1; }
.brand__name { display: block; font-family: var(--font-head); font-weight: 800; font-size: 1.35rem; color: var(--copper-700); letter-spacing: -0.01em; }
.brand__sub { display: block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
@media (min-width: 640px) { .brand__text { display: block; } .brand img { width: 84px; } }
@media (min-width: 1024px) and (max-width: 1199px) { .brand__text { display: none; } .brand img { width: 64px; } }

.nav-toggle { width: 48px; height: 48px; border: 0; background: transparent; border-radius: 12px; position: relative; z-index: 210; cursor: pointer; }
.nav-toggle:hover { background: var(--copper-50); }
.nav-toggle__bar, .nav-toggle__bar::before, .nav-toggle__bar::after { position: absolute; left: 12px; width: 24px; height: 3px; background: var(--ink); border-radius: 3px; transition: transform 0.25s var(--ease), opacity 0.2s; content: ""; }
.nav-toggle__bar { top: 22px; }
.nav-toggle__bar::before { top: -8px; left: 0; }
.nav-toggle__bar::after { top: 8px; left: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar::before { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar::after { transform: translateY(-8px) rotate(-45deg); }

.primary-nav {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(88vw, 360px); z-index: 200;
  background: #fff; padding: 84px 20px 32px; overflow-y: auto;
  transform: translateX(105%); visibility: hidden; box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; gap: 20px;
}
body.nav-anim .primary-nav { transition: transform 0.3s var(--ease), visibility 0s linear 0.3s; }
.primary-nav.is-open { transform: none; visibility: visible; transition-delay: 0s, 0s; }
.nav-backdrop { position: fixed; inset: 0; background: rgba(31, 26, 23, 0.45); z-index: 95; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
body.nav-open .nav-backdrop { opacity: 1; pointer-events: auto; }
.primary-nav__list { list-style: none; margin: 0; padding: 0; }
.primary-nav__list > li > a { display: block; padding: 12px 8px; font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--ink); text-decoration: none; border-radius: 10px; }
.primary-nav__list > li > a:hover, .primary-nav__list > li > a[aria-current="page"] { color: var(--copper-700); background: var(--copper-50); }
.dropdown { list-style: none; margin: 0 0 6px; padding: 0 0 0 12px; }
.dropdown a { display: flex; align-items: center; gap: 10px; padding: 8px 10px; color: var(--ink-2); text-decoration: none; font-size: 0.93rem; border-radius: 8px; }
.dropdown a i { width: 1.2em; text-align: center; color: var(--copper-600); }
.dropdown a:hover { background: var(--copper-50); color: var(--copper-800); }
.primary-nav__extra { display: flex; flex-direction: column; gap: 14px; border-top: 1px solid var(--line); padding-top: 18px; }
.primary-nav__lang { display: flex; flex-wrap: wrap; gap: 6px; }
.primary-nav__lang a { color: var(--ink); background: var(--copper-100); }
.primary-nav__lang a[aria-current="true"] { background: var(--copper-600); color: #fff; }

@media (min-width: 1024px) {
  .nav-toggle { display: none; }
  .primary-nav, body.nav-anim .primary-nav { position: static; width: auto; transform: none; visibility: visible; padding: 0; overflow: visible; box-shadow: none; flex-direction: row; align-items: center; gap: 8px; background: transparent; transition: none; }
  .primary-nav__list { display: flex; align-items: center; gap: 2px; }
  .primary-nav__list > li { position: relative; }
  .primary-nav__list > li > a { padding: 10px 10px; font-size: 0.92rem; white-space: nowrap; }
  .lang-ms .primary-nav__list > li > a { font-size: 0.88rem; padding: 10px 8px; }
  .primary-nav__extra .btn { white-space: nowrap; }
  .has-sub > a::after { content: ""; display: inline-block; margin-left: 6px; width: 6px; height: 6px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: translateY(-3px) rotate(45deg); }
  .dropdown { position: absolute; top: 100%; left: 0; min-width: 300px; background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-lg); padding: 8px; margin: 0;
    opacity: 0; visibility: hidden; transform: translateY(8px); }
  .has-sub:hover .dropdown, .has-sub:focus-within .dropdown { opacity: 1; visibility: visible; transform: none; transition: opacity 0.2s, transform 0.2s var(--ease); }
  .primary-nav__extra { border: 0; padding: 0; flex-direction: row; align-items: center; }
  .primary-nav__lang { display: none; }
  .nav-backdrop { display: none; }
}

/* --------------------------------------------------------------------------
   Hero (image slider kept from the original site)
   -------------------------------------------------------------------------- */
.hero { background: var(--copper-50); }
.hero__slider { position: relative; background: #fff; overflow: hidden; }
.hero__track { position: relative; }
.hero__slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.7s var(--ease); }
.hero__slide.is-active { position: relative; opacity: 1; }
.hero__slide img { width: 100%; height: auto; aspect-ratio: 2 / 1; object-fit: cover; object-position: 32% 50%; }
@media (min-width: 640px) { .hero__slide img { aspect-ratio: 2.6 / 1; object-position: 30% 50%; } }
@media (min-width: 900px) { .hero__slide img { aspect-ratio: 1600 / 450; object-position: center; } }
.hero__arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; border: 0; background: rgba(255, 255, 255, 0.92); color: var(--ink); box-shadow: var(--shadow-md); cursor: pointer; display: grid; place-items: center; transition: background 0.2s, transform 0.2s; }
.hero__arrow:hover { background: var(--yellow-400); transform: translateY(-50%) scale(1.06); }
.hero__arrow--prev { left: 12px; }
.hero__arrow--next { right: 12px; }
.hero__dots { display: flex; justify-content: center; gap: 2px; padding: 4px 0 0; background: var(--copper-50); }
.hero__dots button { width: 44px; height: 44px; padding: 0; border: 0; background: none; cursor: pointer; display: grid; place-items: center; }
.hero__dots button::before { content: ""; width: 12px; height: 12px; border-radius: 50%; border: 2px solid var(--copper-500); background: transparent; transition: transform 0.2s, background 0.2s; }
.hero__dots button:hover::before { background: var(--copper-300); }
.hero__dots button[aria-current="true"]::before { background: var(--copper-600); transform: scale(1.2); }
.hero__content { padding-block: clamp(20px, 4vw, 44px) clamp(28px, 5vw, 56px); text-align: center; }
.hero__title { max-width: 22ch; margin-inline: auto; }
.hero__sub { max-width: 68ch; margin-inline: auto; color: var(--muted); font-size: clamp(1rem, 0.95rem + 0.4vw, 1.2rem); }
.hero__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 1.25rem; }
.hero__content .chips { justify-content: center; margin-top: 1.5rem; }
@media (min-width: 900px) { .hero__content { text-align: left; } .hero__title, .hero__sub { margin-inline: 0; } .hero__actions, .hero__content .chips { justify-content: flex-start; } }

/* --------------------------------------------------------------------------
   Sections and generic layout
   -------------------------------------------------------------------------- */
.section { padding-block: clamp(40px, 7vw, 80px); }
.section--cream { background: var(--copper-50); }
.section--yellow { background: var(--yellow-400); color: var(--ink); }
.section--yellow .eyebrow { color: var(--ink); }
.section--copper { background: linear-gradient(120deg, var(--copper-800), var(--copper-600)); color: #fff; }
.section--copper .section-title, .section--copper p { color: #fff; }
.section-head { margin-bottom: clamp(20px, 3vw, 36px); max-width: 70ch; }
.section-head--center { text-align: center; margin-inline: auto; }
.section-title { margin-bottom: 0.35em; }
.section-title--sm { font-size: 1.25rem; }
.section-sub { color: var(--muted); font-size: 1.05rem; margin: 0; }
.section-cta { text-align: center; margin: 2rem 0 0; }
.band { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
.band p { margin: 0; font-size: 1.05rem; }
.band--light { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(20px, 4vw, 36px); box-shadow: var(--shadow-sm); }
@media (min-width: 900px) { .band { flex-direction: row; align-items: center; justify-content: space-between; } .band .btn { flex-shrink: 0; } }
.two-col { display: grid; gap: clamp(24px, 4vw, 48px); }
@media (min-width: 900px) { .two-col { grid-template-columns: 1fr 1fr; } .two-col--form { grid-template-columns: 1.2fr 1fr; } .two-col--wide { grid-template-columns: 1.4fr 1fr; } }
.split { display: grid; gap: clamp(24px, 4vw, 56px); align-items: center; }
.split__media picture, .split__media img { border-radius: var(--radius); box-shadow: var(--shadow-md); }
@media (min-width: 900px) { .split { grid-template-columns: 5fr 7fr; } .section--split .split__media:last-child { order: 2; } }

/* Page head */
.page-head { background: var(--copper-50); padding-block: clamp(24px, 4vw, 48px); border-bottom: 1px solid var(--line-soft); position: relative; }
.page-head::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 6px; background: linear-gradient(90deg, var(--copper-500), var(--yellow-400), var(--teal-600), var(--blue-600)); }
.page-head--plain { padding-block: 16px; }
.page-head--plain::before { display: none; }
.page-head h1 { margin-top: 0.4em; }
.page-head h1 i { color: var(--copper-600); font-size: 0.8em; margin-right: 0.15em; }
.page-head--teal::before { background: var(--teal-600); }
.page-head--blue::before { background: var(--blue-600); }
.page-head--green::before { background: var(--green-600); }
.page-head--yellow::before { background: var(--yellow-400); }
.page-head--copper::before { background: var(--copper-500); }
.page-head__split { display: grid; gap: 20px; align-items: center; }
.page-head__img img { border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; }
@media (min-width: 900px) { .page-head__split { grid-template-columns: 1fr 320px; gap: 40px; } }
@media (max-width: 899px) { .page-head__img { max-width: 260px; } }

/* Breadcrumb */
.breadcrumb ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 4px 6px; font-size: 0.85rem; color: var(--muted); }
.breadcrumb li + li::before { content: "\203A"; margin-right: 6px; color: var(--copper-500); }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--copper-700); text-decoration: underline; }
.breadcrumb span[aria-current] { color: var(--ink-2); font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 60vw; display: inline-block; vertical-align: bottom; }

/* --------------------------------------------------------------------------
   Category cards and rows
   -------------------------------------------------------------------------- */
.cat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(12px, 2vw, 22px); }
@media (min-width: 640px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .cat-grid { grid-template-columns: repeat(4, 1fr); } }
.cat-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; text-decoration: none; color: var(--ink-2); box-shadow: var(--shadow-sm); transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s; }
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--copper-300); color: var(--ink-2); }
.cat-card__media { display: block; aspect-ratio: 1 / 1; overflow: hidden; background: var(--copper-50); }
.cat-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.cat-card:hover .cat-card__media img { transform: scale(1.05); }
.cat-card__body { padding: 14px 14px 16px; display: flex; flex-direction: column; gap: 4px; position: relative; }
.cat-card__icon { position: absolute; top: -22px; right: 14px; width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; color: #fff; background: var(--copper-600); box-shadow: var(--shadow-md); font-size: 1.1rem; }
.cat-card--teal .cat-card__icon { background: var(--teal-600); }
.cat-card--blue .cat-card__icon { background: var(--blue-600); }
.cat-card--green .cat-card__icon { background: var(--green-600); }
.cat-card--yellow .cat-card__icon { background: var(--yellow-400); color: var(--ink); }
.cat-card__title { font-family: var(--font-head); font-weight: 700; color: var(--ink); font-size: 1rem; padding-right: 48px; line-height: 1.25; }
.cat-card__count { font-size: 0.8rem; color: var(--copper-700); font-weight: 600; }
.cat-card__short { font-size: 0.85rem; color: var(--muted); display: none; }
@media (max-width: 639px) { .cat-card__icon { display: none; } .cat-card__title { padding-right: 0; font-size: 0.95rem; } }
@media (min-width: 640px) { .cat-card__short { display: block; } }

.cat-list { display: grid; gap: clamp(16px, 3vw, 28px); }
.cat-row { display: grid; gap: 16px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(16px, 3vw, 28px); box-shadow: var(--shadow-sm); border-left: 6px solid var(--copper-500); }
.cat-row--teal { border-left-color: var(--teal-600); }
.cat-row--blue { border-left-color: var(--blue-600); }
.cat-row--green { border-left-color: var(--green-600); }
.cat-row--yellow { border-left-color: var(--yellow-400); }
.cat-row__media img { border-radius: var(--radius-sm); width: 100%; }
.cat-row__title { font-size: 1.35rem; }
.cat-row__title a { color: var(--ink); text-decoration: none; }
.cat-row__title a:hover { color: var(--copper-700); }
.cat-row__title i { color: var(--copper-600); margin-right: 4px; }
.cat-row__count { color: var(--copper-700); font-weight: 600; font-size: 0.9rem; }
.cat-row__subs { font-size: 0.9rem; color: var(--muted); }
@media (min-width: 640px) { .cat-row { grid-template-columns: 200px 1fr; gap: 24px; } }
@media (min-width: 900px) { .cat-row { grid-template-columns: 260px 1fr; } }
.cat-links { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.cat-link { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: 999px; background: #fff; border: 1px solid var(--line); text-decoration: none; color: var(--ink); font-weight: 600; font-size: 0.92rem; transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; }
.cat-link:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--copper-300); color: var(--ink); }
.cat-link i { color: var(--copper-600); }
.cat-link--teal i { color: var(--teal-600); } .cat-link--blue i { color: var(--blue-600); } .cat-link--green i { color: var(--green-600); } .cat-link--yellow i { color: var(--yellow-500); }

/* --------------------------------------------------------------------------
   Product cards and grids
   -------------------------------------------------------------------------- */
.product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(10px, 2vw, 22px); }
@media (min-width: 640px) { .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.pcard { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s; }
.pcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--copper-300); }
.pcard.is-hidden { display: none; }
.pcard__media { display: block; aspect-ratio: 1 / 1; background: #fff; overflow: hidden; border-bottom: 1px solid var(--line-soft); }
.pcard__media img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.5s var(--ease); }
.pcard:hover .pcard__media img { transform: scale(1.04); }
.pcard__body { padding: 12px 12px 14px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.pcard__cat { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--teal-600); margin: 0; }
.pcard__title { font-family: var(--font-body); font-size: 0.9rem; font-weight: 600; line-height: 1.35; margin: 0; }
.pcard__title a { color: var(--ink); text-decoration: none; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; min-height: 44px; }
.pcard__title a:hover { color: var(--copper-700); }
.pcard__price { margin: 0; font-family: var(--font-head); font-weight: 800; font-size: 1.1rem; color: var(--copper-700); }
.pcard__from { font-family: var(--font-body); font-weight: 500; font-size: 0.78rem; color: var(--muted); }
.pcard__meta { margin: 0; font-size: 0.78rem; color: var(--muted); }
.pcard__actions { margin-top: auto; display: flex; flex-wrap: wrap; gap: 8px; padding-top: 6px; }
.pcard__actions .btn { flex: 1 1 auto; }
@media (max-width: 480px) { .pcard__actions .btn--ghost { display: none; } .pcard__actions .btn--sm { font-size: 0.8rem; padding: 0.4em 0.6em; } }

/* --------------------------------------------------------------------------
   Feature grid, values, mission and vision, steps, lists
   -------------------------------------------------------------------------- */
.feature-grid { display: grid; gap: 16px; }
@media (min-width: 640px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .feature-grid { grid-template-columns: repeat(4, 1fr); } }
.feature { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 20px; box-shadow: var(--shadow-sm); transition: transform 0.25s var(--ease), box-shadow 0.25s; }
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.feature__icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; font-size: 1.3rem; margin-bottom: 14px; background: var(--copper-100); color: var(--copper-700); }
.feature--teal .feature__icon { background: var(--teal-100); color: var(--teal-600); }
.feature--blue .feature__icon { background: var(--blue-100); color: var(--blue-600); }
.feature--green .feature__icon { background: var(--green-100); color: var(--green-600); }
.feature__title { margin-bottom: 0.35em; }
.feature p { margin: 0; color: var(--muted); font-size: 0.95rem; }

.values-grid { display: grid; gap: 14px; }
@media (min-width: 640px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(4, 1fr); } }
.value { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; position: relative; overflow: hidden; }
.value__n { font-family: var(--font-head); font-weight: 800; font-size: 2.4rem; line-height: 1; color: var(--num-copper); display: block; margin-bottom: 8px; }
.value--teal .value__n { color: var(--num-teal); } .value--blue .value__n { color: var(--num-blue); } .value--green .value__n { color: var(--num-green); } .value--yellow .value__n { color: var(--num-gold); }
.value::after { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: var(--copper-500); }
.value--teal::after { background: var(--teal-600); } .value--blue::after { background: var(--blue-600); } .value--green::after { background: var(--green-600); } .value--yellow::after { background: var(--yellow-400); }
.value p { margin: 0; font-size: 0.95rem; color: var(--muted); }

.mv-grid { display: grid; gap: 20px; }
@media (min-width: 900px) { .mv-grid { grid-template-columns: 1fr 1fr; } }
.mv { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(20px, 3vw, 32px); }
.mv__icon { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; background: var(--copper-600); color: #fff; font-size: 1.4rem; margin-bottom: 14px; }
.mv__icon--teal { background: var(--teal-600); }

.check-list { list-style: none; padding: 0; margin: 0 0 1.25rem; display: grid; gap: 10px; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; }
.check-list i { color: var(--green-600); margin-top: 0.3em; flex-shrink: 0; }
.section--yellow .check-list i { color: var(--ink); }
.numbered-list { list-style: none; padding: 0; margin: 0; counter-reset: n; display: grid; gap: 12px; }
.numbered-list li { counter-increment: n; display: grid; grid-template-columns: 40px 1fr; gap: 12px; align-items: start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 14px 16px; }
.numbered-list li::before { content: counter(n, decimal-leading-zero); font-family: var(--font-head); font-weight: 800; color: var(--copper-500); font-size: 1.2rem; line-height: 1.4; }
.numbered-list p { margin: 0; }
.plain-list { padding-left: 1.1em; margin: 0 0 1em; }
.plain-list li { margin-bottom: 4px; }
.card-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.card-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px 18px; }
.card-item h3, .card-item h4 { margin-bottom: 0.3em; font-size: 1.05rem; }
.card-item p { margin: 0; color: var(--muted); }
.steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.steps li { display: grid; grid-template-columns: 40px 1fr; gap: 14px; align-items: start; }
.steps__n { width: 40px; height: 40px; border-radius: 50%; background: var(--copper-600); color: #fff; font-family: var(--font-head); font-weight: 800; display: grid; place-items: center; }
.steps h3 { font-size: 1.05rem; margin-bottom: 0.2em; }
.steps p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.steps--grid { margin-bottom: 2rem; }
.steps--grid li { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px; }
@media (min-width: 640px) { .steps--grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps--grid { grid-template-columns: repeat(4, 1fr); } }
.spec-list { display: grid; gap: 8px; margin: 0 0 1rem; }
.spec-list div { display: grid; grid-template-columns: 130px 1fr; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--line-soft); font-size: 0.95rem; }
.spec-list dt { color: var(--muted); }
.spec-list dd { margin: 0; color: var(--ink); font-weight: 500; }
.spec-list--inline div { grid-template-columns: 160px 1fr; }

/* Rewards band art and vouchers */
.rewards-band { display: grid; gap: 24px; align-items: center; }
@media (min-width: 900px) { .rewards-band { grid-template-columns: 1.4fr 1fr; } }
.rewards-band__art { position: relative; min-height: 220px; display: none; }
@media (min-width: 900px) { .rewards-band__art { display: block; } }
.coin { position: absolute; width: 96px; height: 96px; border-radius: 50%; background: #fff; color: var(--copper-700); display: grid; place-items: center; font-size: 2.2rem; box-shadow: var(--shadow-lg); animation: float 6s ease-in-out infinite; }
.coin--1 { left: 10%; top: 10%; }
.coin--2 { left: 50%; top: 40%; color: var(--teal-600); animation-delay: -2s; }
.coin--3 { left: 22%; top: 65%; color: var(--blue-600); animation-delay: -4s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.voucher-grid { list-style: none; padding: 0; margin: 0 0 24px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
@media (min-width: 640px) { .voucher-grid { grid-template-columns: repeat(6, 1fr); } }
.voucher { position: relative; background: #fff; border: 2px dashed var(--copper-500); border-radius: 12px; padding: 18px 10px; text-align: center; transition: transform 0.2s; }
.voucher:hover { transform: translateY(-3px) rotate(-1deg); }
.voucher--teal { border-color: var(--teal-600); } .voucher--blue { border-color: var(--blue-600); } .voucher--green { border-color: var(--green-600); } .voucher--yellow { border-color: var(--yellow-500); }
.voucher__label { display: block; color: var(--copper-500); margin-bottom: 6px; }
.voucher--teal .voucher__label { color: var(--teal-600); } .voucher--blue .voucher__label { color: var(--blue-600); } .voucher--green .voucher__label { color: var(--green-600); } .voucher--yellow .voucher__label { color: var(--yellow-500); }
.voucher__value { font-family: var(--font-head); font-weight: 800; font-size: 1.35rem; color: var(--ink); }
.promo-grid { display: grid; gap: 12px; margin-bottom: 12px; }
@media (min-width: 640px) { .promo-grid { grid-template-columns: 1fr 1fr; } }
.promo { display: flex; gap: 14px; align-items: flex-start; background: var(--yellow-100); border-radius: var(--radius-sm); padding: 16px; }
.promo__icon { width: 44px; height: 44px; border-radius: 50%; background: var(--yellow-400); color: var(--ink); display: grid; place-items: center; flex-shrink: 0; }
.promo h3 { font-size: 1.05rem; margin-bottom: 0.2em; } .promo p { margin: 0; }
.callout { display: flex; gap: 18px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(18px, 3vw, 28px); }
.callout__icon { width: 52px; height: 52px; border-radius: 50%; background: var(--yellow-400); color: var(--ink); display: grid; place-items: center; font-size: 1.3rem; flex-shrink: 0; }
.callout p { margin: 0; }
.option-grid { display: grid; gap: 16px; }
@media (min-width: 640px) { .option-grid { grid-template-columns: 1fr 1fr; } }
.option { background: #fff; border: 1px solid var(--line); border-top: 6px solid var(--copper-500); border-radius: var(--radius); padding: 24px; }
.option--teal { border-top-color: var(--teal-600); }
.option__icon { width: 56px; height: 56px; border-radius: 14px; background: var(--copper-100); color: var(--copper-700); display: grid; place-items: center; font-size: 1.4rem; margin-bottom: 14px; }
.option--teal .option__icon { background: var(--teal-100); color: var(--teal-600); }
.option p { margin: 0; color: var(--muted); }

/* Reviews */
.rating-summary { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin: -10px 0 20px; color: var(--muted); }
.stars { color: #b8860b; letter-spacing: 2px; font-size: 1.35rem; font-weight: 700; }
.review-grid { display: grid; gap: 14px; }
@media (min-width: 640px) { .review-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .review-grid { grid-template-columns: repeat(3, 1fr); } }
.review { margin: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; position: relative; }
.review::before { content: "\201C"; position: absolute; top: 8px; right: 16px; font-family: Georgia, serif; font-size: 3rem; color: var(--copper-200); line-height: 1; }
.review__text { font-style: italic; margin-bottom: 12px; }
.review footer { font-size: 0.85rem; color: var(--muted); }
.review cite { font-style: normal; font-weight: 700; color: var(--ink); }

/* WhatsApp lines */
.wa-lines { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
@media (min-width: 640px) { .wa-lines { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .wa-lines--compact { grid-template-columns: repeat(4, 1fr); } .two-col .wa-lines--compact { grid-template-columns: repeat(2, 1fr); } }
.wa-line { display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; text-decoration: none; color: var(--ink); transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; }
.wa-line:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--wa); color: var(--ink); }
.wa-line__icon { width: 40px; height: 40px; border-radius: 50%; background: var(--wa); color: #fff; display: grid; place-items: center; font-size: 1.2rem; flex-shrink: 0; }
.wa-line__text { display: flex; flex-direction: column; line-height: 1.3; min-width: 0; }
.wa-line__label { font-size: 0.78rem; color: var(--muted); font-weight: 600; }
.wa-line__number { font-weight: 700; font-family: var(--font-head); }
.address-block p, .address-card p { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 0.6em; }
.address-block i, .address-card i { color: var(--copper-600); margin-top: 0.3em; }
.address-card { font-style: normal; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; margin-bottom: 1.5rem; }
.address-card__name { font-family: var(--font-head); font-weight: 800; font-size: 1.1rem; color: var(--ink); }
.map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); margin-bottom: 1.5rem; box-shadow: var(--shadow-sm); }
.map iframe { width: 100%; aspect-ratio: 4 / 3; border: 0; }
.social-list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.social-list a { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: rgba(255, 255, 255, 0.1); color: #fff; text-decoration: none; transition: background 0.2s, transform 0.2s; }
.social-list a:hover { background: var(--copper-500); color: #fff; transform: translateY(-2px); }
.social-list--dark a { background: var(--copper-100); color: var(--copper-800); }
.social-list--dark a:hover { background: var(--copper-600); color: #fff; }
.app-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.app-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 10px; background: rgba(255, 255, 255, 0.1); color: #fff; text-decoration: none; font-size: 0.85rem; font-weight: 600; transition: background 0.2s; }
.app-badge:hover { background: var(--copper-600); color: #fff; }
.app-badge i { font-size: 1.2rem; }
.app-badges--dark .app-badge { background: var(--ink); }
.app-badges--dark .app-badge:hover { background: var(--copper-700); }

/* --------------------------------------------------------------------------
   Catalog toolbar, search
   -------------------------------------------------------------------------- */
.toolbar { display: flex; flex-wrap: wrap; gap: 12px 18px; align-items: center; margin-bottom: 20px; }
.toolbar__filters { display: flex; flex-wrap: wrap; gap: 8px; }
.chip-btn { border: 1px solid var(--line); background: #fff; color: var(--ink-2); border-radius: 999px; padding: 8px 14px; font-size: 0.88rem; font-weight: 600; cursor: pointer; min-height: 40px; transition: background 0.2s, color 0.2s, border-color 0.2s; }
.chip-btn:hover { border-color: var(--copper-500); color: var(--copper-800); }
.chip-btn.is-active { background: var(--copper-600); border-color: var(--copper-600); color: #fff; }
.chip-btn__n { opacity: 0.75; font-weight: 500; margin-left: 4px; }
.toolbar__sort { display: flex; align-items: center; gap: 8px; margin-left: auto; font-size: 0.9rem; }
.toolbar__sort select { min-height: 40px; border: 1px solid var(--line); border-radius: 10px; padding: 6px 10px; background: #fff; color: var(--ink); font: inherit; }
.toolbar__count { width: 100%; margin: 0; font-size: 0.88rem; color: var(--muted); }
@media (min-width: 900px) { .toolbar__count { width: auto; } }

.search { position: relative; max-width: 640px; margin-top: 8px; }
.search__box { display: flex; align-items: center; gap: 10px; background: #fff; border: 2px solid var(--copper-300); border-radius: 999px; padding: 4px 6px 4px 18px; box-shadow: var(--shadow-sm); }
.search__box:focus-within { border-color: var(--copper-600); box-shadow: 0 0 0 4px rgba(179, 130, 81, 0.18); }
.search__box i { color: var(--copper-600); }
.search__box input { flex: 1; min-height: 44px; border: 0; background: transparent; font: inherit; color: var(--ink); outline: none; min-width: 0; }
.search__status { font-size: 0.85rem; color: var(--muted); margin: 8px 4px 0; min-height: 1.2em; }
.search__results { list-style: none; padding: 6px; margin: 4px 0 0; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-lg); max-height: 420px; overflow: auto; position: absolute; left: 0; right: 0; z-index: 20; }
.search__results a { display: grid; grid-template-columns: 56px 1fr auto; gap: 12px; align-items: center; padding: 8px; border-radius: 10px; text-decoration: none; color: var(--ink); }
.search__results a:hover, .search__results a:focus { background: var(--copper-50); }
.search__results img { width: 56px; height: 56px; object-fit: contain; border-radius: 8px; border: 1px solid var(--line-soft); background: #fff; }
.search__results .r-name { font-size: 0.9rem; font-weight: 600; line-height: 1.3; }
.search__results .r-cat { font-size: 0.75rem; color: var(--teal-600); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.search__results .r-price { font-family: var(--font-head); font-weight: 800; color: var(--copper-700); white-space: nowrap; font-size: 0.9rem; }

/* --------------------------------------------------------------------------
   Product detail
   -------------------------------------------------------------------------- */
.product { padding-block: 8px clamp(32px, 5vw, 64px); }
.product__grid { display: grid; gap: clamp(20px, 4vw, 48px); }
@media (min-width: 900px) { .product__grid { grid-template-columns: 1fr 1fr; align-items: start; } .product__gallery { position: sticky; top: calc(var(--header-h) + 16px); } }
.product__main { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; aspect-ratio: 1 / 1; }
.product__main img { width: 100%; height: 100%; object-fit: contain; }
.product__thumbs { list-style: none; padding: 0; margin: 10px 0 0; display: flex; gap: 8px; }
.thumb { width: 72px; height: 72px; padding: 0; border: 2px solid var(--line); border-radius: 10px; background: #fff; overflow: hidden; cursor: pointer; transition: border-color 0.2s, transform 0.2s; }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb:hover { transform: translateY(-2px); border-color: var(--copper-300); }
.thumb.is-active { border-color: var(--copper-600); }
.product__cat { font-size: 0.82rem; font-weight: 600; color: var(--muted); margin-bottom: 0.5em; }
.product__cat a { color: var(--teal-600); text-decoration: none; }
.product__cat a:hover { text-decoration: underline; }
.product__title { font-size: clamp(1.3rem, 1.1rem + 1vw, 1.8rem); font-family: var(--font-body); font-weight: 700; line-height: 1.3; }
.product__price { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.5rem, 1.3rem + 1vw, 2rem); color: var(--copper-700); margin: 0.2em 0 0.2em; }
.product__price-note { font-size: 0.85rem; margin-bottom: 1rem; }
.product__cta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 1.5rem; }
.product__cta .btn { flex: 1 1 220px; }
.product__variants { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 0; margin-bottom: 1.25rem; background: #fff; }
.product__variants summary { cursor: pointer; padding: 12px 16px; font-weight: 700; font-family: var(--font-head); display: flex; justify-content: space-between; align-items: center; list-style: none; }
.product__variants summary::-webkit-details-marker { display: none; }
.product__variants summary .count { background: var(--copper-100); color: var(--copper-800); border-radius: 999px; padding: 2px 10px; font-size: 0.85rem; }
.product__variants > p { padding: 0 16px; }
.variant-list { list-style: none; padding: 0 16px 14px; margin: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.variant-list li { background: var(--copper-50); border: 1px solid var(--line); border-radius: 8px; padding: 4px 10px; font-size: 0.85rem; }
.product__share { margin: 0.5rem 0 0; }
.product__desc { margin-top: clamp(28px, 5vw, 56px); }
.desc-cols { display: grid; gap: 20px; margin-bottom: 20px; }
@media (min-width: 900px) { .desc-cols { grid-template-columns: 1fr 1fr; } }
.desc-col { background: var(--copper-50); border-radius: var(--radius); padding: 20px 22px; }
.desc-col h3 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--copper-700); }
.desc-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.desc-list li { position: relative; padding-left: 20px; }
.desc-list li::before { content: ""; position: absolute; left: 0; top: 0.65em; width: 10px; height: 3px; border-radius: 3px; background: var(--copper-500); }
.desc-list__head { font-weight: 700; color: var(--ink); padding-left: 0 !important; margin-top: 6px; }
.desc-list__head::before { display: none; }
.desc-extra { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 0 18px; }
.desc-extra summary { cursor: pointer; padding: 12px 0; font-weight: 700; font-family: var(--font-head); }
.desc-extra .prose { padding-bottom: 12px; }
.desc-item { padding-left: 16px; border-left: 3px solid var(--copper-200); font-size: 0.95rem; margin-bottom: 0.5em; }
.prose p { max-width: 75ch; }
.prose--policy h2 { font-size: 1.35rem; margin-top: 1.8em; }
.prose--policy h3 { font-size: 1.1rem; margin-top: 1.4em; }
.prose--policy li { margin-bottom: 0.4em; }

/* --------------------------------------------------------------------------
   Accordion, forms
   -------------------------------------------------------------------------- */
.accordion { display: grid; gap: 10px; }
.accordion__item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.accordion__item summary { list-style: none; cursor: pointer; padding: 16px 18px; display: flex; justify-content: space-between; align-items: center; gap: 14px; font-family: var(--font-head); font-weight: 700; color: var(--ink); }
.accordion__item summary::-webkit-details-marker { display: none; }
.accordion__item summary:hover { background: var(--copper-50); }
.accordion__item summary i { color: var(--copper-600); transition: transform 0.25s var(--ease); flex-shrink: 0; }
.accordion__item[open] summary i { transform: rotate(180deg); }
.accordion__item[open] summary { border-bottom: 1px solid var(--line-soft); }
.accordion__body { padding: 14px 18px 18px; }
.accordion__body p:last-child { margin: 0; }
.job__head { display: flex; flex-direction: column; gap: 2px; }
.job__meta { font-family: var(--font-body); font-weight: 500; font-size: 0.82rem; color: var(--muted); }
.job h3 { font-size: 1rem; margin: 1em 0 0.4em; }

.form { display: grid; gap: 14px; }
.form label { display: block; font-weight: 600; font-size: 0.92rem; margin-bottom: 4px; color: var(--ink); }
.form .req { color: var(--red-600); }
.form input:not([type="radio"]):not([type="file"]), .form textarea, .form select { width: 100%; min-height: 46px; padding: 10px 14px; border: 1px solid var(--line); border-radius: 10px; background: #fff; font: inherit; color: var(--ink); transition: border-color 0.2s, box-shadow 0.2s; }
.form textarea { resize: vertical; min-height: 120px; }
.form input:focus, .form textarea:focus { border-color: var(--copper-600); box-shadow: 0 0 0 4px rgba(179, 130, 81, 0.18); outline: none; }
.form input[type="file"] { padding: 8px 0; }
.form__row--2 { display: grid; gap: 14px; }
@media (min-width: 640px) { .form__row--2 { grid-template-columns: 1fr 1fr; } }
.form__fieldset { border: 1px solid var(--line); border-radius: 10px; padding: 10px 14px 12px; margin: 0; }
.form__fieldset legend { font-weight: 600; font-size: 0.92rem; padding: 0 6px; }
.radio { display: inline-flex; align-items: center; gap: 8px; margin: 4px 18px 0 0; font-weight: 500 !important; }
.form__status { margin: 0; font-weight: 600; min-height: 1.4em; }
.form__status.is-ok { color: var(--green-600); }
.form__status.is-err { color: var(--red-600); }
.form__fallback { font-size: 0.85rem; margin: 0; }
.form.has-endpoint .form__fallback { display: none; }

/* --------------------------------------------------------------------------
   Footer, floating button, back to top
   -------------------------------------------------------------------------- */
.site-footer { background: var(--ink); color: #e9dccb; padding-block: clamp(36px, 6vw, 64px) 24px; margin-top: 0; }
.site-footer a { color: #fff; }
.site-footer a:hover { color: var(--yellow-400); }
.footer__grid { display: grid; gap: 28px; }
@media (min-width: 640px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: 1.4fr 0.8fr 1.1fr 1.2fr; gap: 40px; } }
.footer__company { font-family: var(--font-head); font-weight: 800; color: #fff; margin: 12px 0 6px; }
.footer__about img { width: 80px; }
.footer__title { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--copper-300); margin-bottom: 14px; }
.footer__links { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; font-size: 0.93rem; }
.footer__links a { text-decoration: none; }
.footer__links a:hover { text-decoration: underline; }
.footer__address { font-style: normal; font-size: 0.93rem; }
.footer__address p { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 8px; }
.footer__address i { color: var(--copper-300); margin-top: 0.3em; }
.footer__address a { text-decoration: none; }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, 0.12); margin-top: 32px; padding-top: 18px; display: flex; flex-direction: column; gap: 10px; font-size: 0.82rem; color: #bfae9c; }
.footer__bottom p { margin: 0; }
.footer__policies { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px 18px; }
.footer__policies a { text-decoration: none; }
@media (min-width: 900px) { .footer__bottom { flex-direction: row; justify-content: space-between; align-items: center; } }

.fab-wa { position: fixed; right: 18px; bottom: 18px; z-index: 90; width: 58px; height: 58px; border-radius: 50%; background: var(--wa-fab); color: #fff; display: grid; place-items: center; font-size: 1.8rem; text-decoration: none; box-shadow: var(--shadow-lg); transition: transform 0.2s var(--ease); }
.fab-wa:hover { transform: scale(1.08); color: #fff; }
.fab-wa__ring { position: absolute; inset: 0; border-radius: 50%; border: 3px solid var(--wa-bright); animation: pulse 2.2s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: 0.9; } 100% { transform: scale(1.9); opacity: 0; } }
.back-top { position: fixed; right: 26px; bottom: 90px; z-index: 90; width: 42px; height: 42px; border-radius: 50%; border: 0; background: var(--ink); color: #fff; cursor: pointer; box-shadow: var(--shadow-md); opacity: 0; transform: translateY(8px); transition: opacity 0.3s, transform 0.3s; display: grid; place-items: center; }
.back-top.is-visible { opacity: 1; transform: none; }
.back-top:hover { background: var(--copper-700); }

/* --------------------------------------------------------------------------
   404
   -------------------------------------------------------------------------- */
.notfound { padding-block: clamp(48px, 10vw, 120px); }
.notfound__code { font-family: var(--font-head); font-weight: 800; font-size: clamp(4rem, 12vw, 8rem); line-height: 1; color: var(--num-copper); margin: 0; }

/* --------------------------------------------------------------------------
   Tap target floor: every interactive target reaches 44 by 44 CSS pixels at
   every breakpoint. Links that sit inline inside running text are governed by
   the WCAG 2.5.8 inline exception instead and are reported separately by
   verify.py rather than padded, which would break the line box.
   -------------------------------------------------------------------------- */
.footer__links a,
.footer__policies a,
.footer__address a,
.dropdown a,
.cat-links a,
.primary-nav__list > li > a,
.social-list a,
.app-badge,
.wa-line {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.breadcrumb a,
.address-card p a,
.address-block p a,
.cat-row__title a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  min-width: 44px;
}
.address-card p a, .address-block p a, .cat-row__title a { min-width: 0; }
.form input[type="file"] { min-height: 44px; }
.product__cat a, .spec-list dd a { display: inline-flex; align-items: center; min-height: 44px; }
.footer__links a, .footer__policies a, .dropdown a, .social-list a { min-width: 44px; }
.social-list a { width: 44px; height: 44px; justify-content: center; }
.footer__address p { align-items: center; }
.btn--sm { min-height: 44px; }
.chip-btn { min-height: 44px; }
.toolbar__sort select { min-height: 44px; }
.thumb { width: 72px; height: 72px; }
.link-btn { min-height: 44px; min-width: 44px; justify-content: flex-start; }
.demo-bar__close { width: 44px; height: 44px; }

/* --------------------------------------------------------------------------
   Preview demo bar (only present in `python3 build.py --preview` output)
   -------------------------------------------------------------------------- */
.demo-bar {
  position: sticky; top: 0; z-index: 120;
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  padding: 10px clamp(12px, 4vw, 28px);
  background: linear-gradient(90deg, var(--ink), var(--copper-800));
  color: #fff; font-size: 0.9rem; line-height: 1.35;
  box-shadow: 0 2px 10px rgba(31, 26, 23, 0.25);
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.demo-bar.is-dismissed { transform: translateY(-100%); opacity: 0; }
.demo-bar__text { margin: 0; display: flex; align-items: center; gap: 8px; flex: 1 1 240px; }
.demo-bar__text i { color: var(--yellow-400); }
.demo-bar__cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--wa-bright); color: #06251d; text-decoration: none;
  font-weight: 700; padding: 8px 16px; border-radius: 999px;
  min-height: 44px; min-width: 44px;
  transition: transform 0.2s var(--ease), background 0.2s;
}
.demo-bar__cta:hover { background: #4ce287; color: #06251d; transform: translateY(-1px); }
.demo-bar__close {
  margin-left: auto; width: 44px; height: 44px; border: 0; border-radius: 50%;
  background: rgba(255, 255, 255, 0.14); color: #fff; cursor: pointer;
  display: grid; place-items: center; flex-shrink: 0;
}
.demo-bar__close:hover { background: rgba(255, 255, 255, 0.28); }
.is-preview .site-header { top: 0; }
@media (max-width: 639px) {
  .demo-bar { font-size: 0.82rem; padding: 8px 12px; gap: 8px; }
  .demo-bar__cta { padding: 6px 12px; font-size: 0.82rem; }
}

/* --------------------------------------------------------------------------
   Scroll reveal and motion preferences
   -------------------------------------------------------------------------- */
.js [data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.js [data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
  .fab-wa__ring { display: none; }
}

/* --------------------------------------------------------------------------
   Print
   -------------------------------------------------------------------------- */
@media print {
  .site-header, .site-footer, .fab-wa, .back-top, .hero__arrow, .hero__dots, .toolbar, .btn { display: none !important; }
  body { color: #000; }
  a { color: #000; text-decoration: none; }
}
