/* ─────────────────────────────────────────────────────────────
   Hoawood design system
   Ported from design/project/styles.css + JSX inline styles.
   Single source of truth for design tokens, utility classes,
   layout primitives, and page-specific components.
   ───────────────────────────────────────────────────────────── */

/* ── tokens ──────────────────────────────────────────────── */
:root {
  /* surfaces */
  --cream-50:  #FBF7EF;
  --cream-100: #F5EFE4;
  --cream-200: #ECE3D0;
  --cream-300: #DDD0B6;

  /* plywood */
  --ply-200: #E8D4B0;
  --ply-300: #D4B896;
  --ply-500: #B58A5C;
  --ply-700: #6B4F2C;

  /* ink */
  --ink-900: #1A1612;
  --ink-700: #3A332B;
  --ink-500: #6B5F52;
  --ink-300: #A89D8E;

  /* accent */
  --accent: #C95A2C;
  --accent-hot: #E0653A;
  --moss:  #4A5944;
  --clay:  #B86F3C;

  /* type */
  --font-display: "Instrument Serif", "Cormorant Garamond", Georgia, serif;
  --font-body:    "Manrope", ui-sans-serif, system-ui, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, monospace;

  /* radii */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-pill: 999px;

  /* compatibility shim for legacy templates that still reference --primary */
  --primary: var(--accent);
  --primary-hot: var(--accent-hot);
}

/* ── base ────────────────────────────────────────────────── */
* { box-sizing: border-box; }
html { scrollbar-gutter: stable; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--cream-100);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
::selection { background: var(--ply-300); color: var(--ink-900); }

img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
input, select, textarea { font: inherit; color: inherit; }

/* ── layout primitives ──────────────────────────────────── */
.container       { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.container-wide  { width: 100%; max-width: 1360px; margin: 0 auto; padding: 0 28px; }

@media (max-width: 900px) {
  .container, .container-wide { padding: 0 18px; }
}

.display { font-family: var(--font-display); font-weight: 400; letter-spacing: -0.01em; }
.mono    { font-family: var(--font-mono); font-feature-settings: "tnum"; letter-spacing: -0.01em; }

.eyebrow {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em;
  font-weight: 600; color: var(--ink-500);
}

/* ── buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 24px; border-radius: var(--r-pill);
  font-weight: 600; font-size: 13.5px; letter-spacing: 0.01em;
  transition: all .18s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--ink-900); color: var(--cream-50); }
.btn-primary:hover { background: var(--ply-700); }
.btn-accent  { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-hot); }
.btn-ghost   { background: transparent; color: var(--ink-900); border: 1px solid var(--ink-900); }
.btn-ghost:hover { background: var(--ink-900); color: var(--cream-50); }
.btn-quiet   { background: rgba(26,22,18,.06); color: var(--ink-900); }
.btn-quiet:hover { background: rgba(26,22,18,.1); }
.btn-light   { background: var(--cream-50); color: var(--ink-900); }
.btn-light:hover { background: var(--cream-200); }

/* ── chips ──────────────────────────────────────────────── */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: var(--r-pill);
  font-size: 12.5px; font-weight: 500;
  background: rgba(26,22,18,.04); color: var(--ink-700);
  border: 1px solid transparent; transition: all .15s ease;
  cursor: pointer;
}
.chip:hover { background: rgba(26,22,18,.08); }
.chip.active { background: var(--ink-900); color: var(--cream-50); }

/* ── badges ─────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center;
  padding: 5px 10px; border-radius: var(--r-pill);
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
}
.badge-accent { background: var(--accent); color: #fff; }
.badge-moss   { background: var(--moss); color: #fff; }
.badge-quiet  { background: var(--cream-200); color: var(--ink-700); }

/* ── inputs / forms ─────────────────────────────────────── */
.input {
  width: 100%; padding: 14px 16px; border-radius: var(--r-md);
  background: var(--cream-50); border: 1px solid var(--cream-300);
  font-size: 14px; outline: none; transition: border-color .15s;
}
.input:focus { border-color: var(--ink-900); }
textarea.input { min-height: 120px; resize: vertical; }

/* ── divider ────────────────────────────────────────────── */
.hr { height: 1px; background: rgba(26,22,18,.1); border: 0; margin: 0; }

/* ── texture overlay ────────────────────────────────────── */
.texture-paper { position: relative; }
.texture-paper::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(107,79,44,0.05) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: multiply;
  opacity: .35;
}

/* ── image hover ────────────────────────────────────────── */
.img-wrap { overflow: hidden; position: relative; display: block; }
.img-wrap img { transition: transform .8s cubic-bezier(.22,.61,.36,1); width: 100%; height: 100%; object-fit: cover; }
.img-wrap:hover img { transform: scale(1.04); }

/* ── scroller ───────────────────────────────────────────── */
.scroller {
  display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.scroller::-webkit-scrollbar { display: none; }
.scroller > * { scroll-snap-align: start; }

/* ── logo lockup ────────────────────────────────────────── */
.logo-mark {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--ink-900);
  display: inline-flex; align-items: center; gap: 8px;
  line-height: 1;
}
.logo-mark svg { display: block; }
.logo-mark.light { color: var(--cream-50); }

/* ── fade-in ────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}
.fade-in { animation: fadeUp .5s ease both; }

/* ── marquee ────────────────────────────────────────────── */
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =================================================================
   COMPONENTS
   ================================================================= */

/* ── announcement bar ───────────────────────────────────── */
.announce {
  background: var(--ink-900); color: var(--cream-100);
  font-size: 11.5px; letter-spacing: 0.04em; text-align: center;
  padding: 8px 16px;
}

/* ── header ─────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--cream-100);
  border-bottom: 1px solid rgba(26,22,18,0.06);
}
/* TDS tds.css sets `.site-header a { color: #fff }` (white-on-dark assumption
 * from the hockey/TDS layout). Hoawood header is on cream — force ink color
 * back with higher specificity. Same for the logo + nav + icons. */
.site-header,
.site-header a,
.site-header .logo-mark,
.site-header .icon-btn,
.site-header .cart-btn,
.site-header__nav a { color: var(--ink-900); }
.site-header svg { color: inherit; }
.site-header .cart-btn { color: var(--cream-50); }
.site-header .cart-btn:hover { color: var(--cream-50); }
.site-header__nav a { color: var(--ink-700); }
.site-header__nav a:hover,
.site-header__nav a.active { color: var(--ink-900); }
.site-header .announce a,
.announce a { color: var(--cream-50); }
.site-header__main { padding: 12px 0; }
.site-header__row {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.site-header__nav { display: flex; align-items: center; gap: 28px; }
.site-header__nav a {
  position: relative; font-size: 16px; padding: 6px 14px;
  letter-spacing: 0.005em; color: var(--ink-700); font-weight: 600;
  border-radius: 999px;
  transition: color .15s, background .15s;
}
.site-header__nav a:hover { color: var(--ink-900); background: rgba(26,22,18,0.05); }
.site-header__nav a.active {
  color: var(--ink-900); font-weight: 700;
  background: rgba(201,90,44,0.12);          /* accent-tinted pill */
  box-shadow: inset 0 0 0 1px rgba(201,90,44,0.22);
}
.site-header__nav a.active:hover { background: rgba(201,90,44,0.18); }
.site-header__actions { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  width: 36px; height: 36px; border-radius: 999px;
  display: grid; place-items: center;
  color: var(--ink-900); transition: background .15s;
}
.icon-btn:hover { background: rgba(26,22,18,0.06); }
.cart-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  background: var(--ink-900); color: var(--cream-50);
  border-radius: 999px;
  font-size: 12.5px; font-weight: 600;
}
.cart-btn:hover { background: var(--ply-700); }
.site-header__actions { gap: 4px; }
.announce { padding: 6px 16px; font-size: 11px; }
.cart-btn .count { opacity: .85; }

/* mobile nav toggle */
.nav-toggle { display: none; }
@media (max-width: 980px) {
  .site-header__nav { display: none; }
  .nav-toggle { display: grid; }
  .site-header__nav.open {
    display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream-100); padding: 16px 20px 24px; gap: 12px;
    border-bottom: 1px solid rgba(26,22,18,0.06);
  }
  .cart-btn span:not(.count) { display: none; }
}

/* ── footer ─────────────────────────────────────────────── */
.site-footer {
  background: var(--ink-900); color: var(--cream-50);
  padding: 48px 0 20px; margin-top: 56px;
}
.site-footer__top {
  display: grid; grid-template-columns: 1.2fr 2fr; gap: 48px;
  padding-bottom: 36px; border-bottom: 1px solid rgba(251,247,239,0.1);
}
.site-footer__lede {
  margin-top: 18px; font-size: 14px; line-height: 1.6;
  color: rgba(251,247,239,0.7); max-width: 360px;
}
.site-footer__cols {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px;
}
/* Více bloků v jednom sloupci — výraznější vertikální mezera mezi nimi. */
.site-footer__col { display: flex; flex-direction: column; gap: 40px; }
.site-footer__block { display: block; }
.site-footer__col-title {
  font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(251,247,239,0.5); font-weight: 600; margin-bottom: 18px;
}
.site-footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.site-footer__col a {
  font-size: 13.5px; color: rgba(251,247,239,0.82);
  transition: color .15s;
}
.site-footer__col a:hover { color: var(--cream-50); }
.site-footer__bottom {
  padding-top: 24px; display: flex; justify-content: space-between;
  align-items: center; gap: 18px;
  font-size: 12.5px; color: rgba(251,247,239,0.5);
}
.site-footer__bottom a { color: rgba(251,247,239,0.6); }
.site-footer__bottom a:hover { color: var(--cream-50); }
@media (max-width: 900px) {
  /* Inline `grid-template-columns` z admin nastavení přebijem !important. */
  .site-footer__top { grid-template-columns: 1fr !important; gap: 36px !important; }
  .site-footer__cols { grid-template-columns: repeat(2, 1fr) !important; gap: 28px !important; }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .site-footer__lede { max-width: none; }
}
@media (max-width: 560px) {
  .site-footer__cols { grid-template-columns: 1fr !important; gap: 24px !important; }
  .site-footer { padding: 36px 0 16px; margin-top: 32px; }
  .site-footer__top { padding-bottom: 24px; }
  .site-footer__col { gap: 24px; }
  .site-footer__socials { gap: 8px !important; }
}
/* Footer logo nesmí roztáhnout sloupec ani na mobilu, ani když admin nastaví
   přehnaně velkou výšku. max-width na anchor + override inline height. */
.site-footer__logo { display: inline-block; max-width: 240px; }
.site-footer__logo img { max-width: 100%; height: auto !important; width: auto; }
@media (max-width: 700px) {
  .site-footer__logo { max-width: 180px; }
}

/* ── O nás (about) ─── responzivita ──────────────────── */
@media (max-width: 900px) {
  .about-hero { grid-template-columns: 1fr !important; gap: 28px !important; }
  .about-cols { grid-template-columns: 1fr !important; gap: 20px !important; }
}
.about-hero img { max-width: 100%; height: auto; }
.about-hero > div:first-child { min-width: 0; }

/* ── Kontakt ─── responzivita ──────────────────────── */
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr !important; gap: 28px !important; }
}
@media (max-width: 520px) {
  .contact-form-row { grid-template-columns: 1fr !important; }
}

/* ── product card ───────────────────────────────────────── */
.product-card {
  cursor: pointer; display: flex; flex-direction: column; gap: 14px;
  color: inherit;
}
.product-card__frame {
  position: relative; aspect-ratio: 1 / 1.05; border-radius: 16px;
  background: var(--cream-50); overflow: hidden;
  border: 1px solid rgba(26,22,18,0.05);
}
.product-card__frame img.primary,
.product-card__frame img.secondary {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity .35s ease, transform .8s cubic-bezier(.22,.61,.36,1);
}
.product-card__frame img.secondary { opacity: 0; }
/* Slight zoom on hover for any card (works even when only primary image exists). */
.product-card:hover .product-card__frame img.primary { transform: scale(1.04); }
/* Fade primary out only if a secondary image is actually rendered, so cards
 * with a single image never fade to white. */
.product-card:hover .product-card__frame img.secondary { opacity: 1; }
.product-card:hover .product-card__frame:has(img.secondary) img.primary { opacity: 0; transform: none; }
.product-card .badge {
  position: absolute; top: 14px; left: 14px;
}
.product-card__fav {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px; border-radius: 999px;
  background: rgba(251,247,239,0.9);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  display: grid; place-items: center;
  color: var(--ink-900);
  transition: color .15s ease, transform .15s ease;
}
.product-card__fav:hover { transform: scale(1.06); }
.product-card__fav.is-fav { color: var(--accent); }
.product-card__fav.is-fav svg { fill: currentColor; }
.product-card__quick {
  position: absolute; bottom: 14px; left: 14px; right: 14px;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px 14px; background: var(--ink-900); color: var(--cream-50);
  border-radius: 999px; font-size: 12.5px; font-weight: 600;
  opacity: 0; transform: translateY(6px);
  transition: all .25s ease;
}
.product-card:hover .product-card__quick { opacity: 1; transform: translateY(0); }
.product-card__body { display: flex; flex-direction: column; gap: 10px; padding: 4px 14px 14px; }
.product-card__swatches { display: flex; gap: 6px; align-items: center; min-height: 16px; }
.product-card__swatch {
  width: 12px; height: 12px; border-radius: 999px;
  border: 1px solid rgba(26,22,18,0.1);
}
.product-card__swatch-more { font-size: 11px; color: var(--ink-500); margin-left: 4px; }
.product-card__name-row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; }
.product-card__name {
  font-size: 15px; font-weight: 600; margin: 0;
  letter-spacing: -0.005em; line-height: 1.3;
}
.product-card__price {
  font-size: 14px; font-weight: 600;
  font-family: var(--font-mono); white-space: nowrap;
}
.product-card__sub-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.product-card__short { color: var(--ink-500); font-size: 12.5px; }
.product-card__old { font-size: 12px; color: var(--ink-300); text-decoration: line-through; font-family: var(--font-mono); }

/* ── category tile ──────────────────────────────────────── */
.cat-tile {
  position: relative; overflow: hidden; border-radius: 18px;
  cursor: pointer; padding: 0; text-align: left; display: block;
}
.cat-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s cubic-bezier(.22,.61,.36,1);
}
.cat-tile:hover img { transform: scale(1.04); }
.cat-tile__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,22,18,0.7) 0%, rgba(26,22,18,0.15) 50%, transparent 100%);
}
.cat-tile__label { position: absolute; left: 22px; right: 22px; bottom: 22px; z-index: 2; color: #fff; }
.cat-tile__count {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(251,247,239,0.7);
}
.cat-tile__name {
  font-family: var(--font-display); font-size: 26px;
  line-height: 1.05; margin-top: 6px;
}
.cat-tile.lg .cat-tile__name { font-size: 40px; }

/* ── breadcrumbs ────────────────────────────────────────── */
.breadcrumbs {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--ink-500);
  text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600;
  padding: 24px 0 0;
}
.breadcrumbs a { color: var(--ink-500); transition: color .15s; }
.breadcrumbs a:hover { color: var(--ink-900); }
.breadcrumbs .sep { opacity: .5; }

/* ── page hero ──────────────────────────────────────────── */
.page-hero { padding: 28px 0 22px; }
.page-hero__eyebrow { color: var(--ply-700); }
.page-hero__title {
  font-family: var(--font-display); font-size: clamp(36px, 4.4vw, 60px);
  margin: 10px 0 12px; line-height: 1; letter-spacing: -0.02em;
  color: var(--ink-900); font-weight: 400;
}
.page-hero__title em { font-style: italic; color: var(--ply-700); }
.page-hero__lede { font-size: 15px; color: var(--ink-700); max-width: 560px; margin: 0; }

/* ── product detail ─────────────────────────────────────── */
.pd-grid { display: grid; grid-template-columns: 0.9fr 1fr; gap: 48px; padding: 24px 0 64px; align-items: start; }
@media (max-width: 900px) { .pd-grid { grid-template-columns: 1fr; gap: 24px; } }
.pd-gallery { display: flex; flex-direction: column; gap: 10px; position: sticky; top: 84px; }
.pd-gallery__main {
  aspect-ratio: 1; border-radius: 16px; overflow: hidden;
  background: var(--cream-50); border: 1px solid rgba(26,22,18,0.05);
  cursor: zoom-in;
}
.pd-gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.pd-gallery__thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.pd-gallery__thumb {
  aspect-ratio: 1; border-radius: 8px; overflow: hidden;
  cursor: pointer; border: 2px solid transparent; padding: 0; background: var(--cream-50);
}
.pd-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.pd-gallery__thumb.active { border-color: var(--ink-900); }
.pd-info { display: flex; flex-direction: column; gap: 18px; }
.pd-title { font-family: var(--font-display); font-size: clamp(32px, 3.6vw, 48px); line-height: 1; margin: 0; font-weight: 400; letter-spacing: -0.02em; }
.pd-price-row { display: flex; align-items: baseline; gap: 14px; }
.pd-price { font-family: var(--font-mono); font-size: 24px; font-weight: 600; }
.pd-old   { font-family: var(--font-mono); font-size: 15px; color: var(--ink-300); text-decoration: line-through; }
.pd-summary { font-size: 15px; line-height: 1.55; color: var(--ink-700); }
.pd-variants { display: flex; flex-direction: column; gap: 14px; }
.pd-variants__label { font-size: 12px; color: var(--ink-500); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; }
.pd-variants__swatches { display: flex; gap: 10px; flex-wrap: wrap; }
.pd-swatch {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px 6px 6px; border-radius: 999px;
  background: var(--cream-50); border: 1px solid var(--cream-300);
  font-size: 13px; cursor: pointer; transition: border-color .15s;
}
.pd-swatch.active { border-color: var(--ink-900); }
.pd-swatch__dot { width: 22px; height: 22px; border-radius: 999px; border: 1px solid rgba(26,22,18,0.1); }
.pd-cta-row { display: flex; gap: 12px; align-items: stretch; }
.pd-qty { display: inline-flex; align-items: center; gap: 4px; background: var(--cream-200); border-radius: 999px; padding: 4px; }
.pd-qty button { width: 34px; height: 34px; border-radius: 999px; display: grid; place-items: center; }
.pd-qty button:hover { background: var(--cream-300); }
.pd-qty span { min-width: 28px; text-align: center; font-weight: 600; }
.pd-details {
  display: grid; grid-template-columns: 1fr 1fr;
  column-gap: 40px; row-gap: 0;
  margin-top: 12px;
  border-top: 1px solid rgba(26,22,18,0.1);
}
.pd-details > div {
  padding: 14px 18px 14px 0;
  border-bottom: 1px solid rgba(26,22,18,0.08);
  display: flex; justify-content: space-between; gap: 16px; font-size: 13.5px;
  min-width: 0;
}
.pd-details > div:nth-child(odd) {
  border-right: 1px solid rgba(26,22,18,0.08);
  padding-right: 28px;
}
.pd-details > div:nth-child(even) {
  padding-left: 4px;
}
@media (max-width: 640px) {
  .pd-details { grid-template-columns: 1fr; column-gap: 0; }
  .pd-details > div:nth-child(odd) { border-right: 0; padding-right: 0; }
  .pd-details > div:nth-child(even) { padding-left: 0; }
}
.pd-details strong { color: var(--ink-900); font-weight: 600; }
.pd-details span { color: var(--ink-500); }

/* ── section heading ────────────────────────────────────── */
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; margin-bottom: 24px; flex-wrap: wrap; }
.section-head h2 {
  font-family: var(--font-display); font-size: clamp(28px, 3vw, 40px);
  margin: 6px 0 0; line-height: 1; font-weight: 400; letter-spacing: -0.01em;
}
.section-head .eyebrow { color: var(--ply-700); }

.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 1100px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px)  { .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (max-width: 480px)  { .product-grid { grid-template-columns: 1fr; } }

/* ── stat ───────────────────────────────────────────────── */
.stat { }
.stat__value { font-family: var(--font-display); font-size: 28px; line-height: 1; color: var(--ink-900); }

/* Banner tile (homepage bannery section) */
.banner-tile { transition: box-shadow .25s ease; }
.banner-tile:hover { box-shadow: 0 18px 50px rgba(26,22,18,0.18); }
.banner-tile:hover .banner-tile__img { transform: scale(1.04); }
@media (max-width: 900px) {
  section .container-wide div[style*="repeat(3"][style*="grid-template-columns"] { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  section .container-wide div[style*="repeat(3"][style*="grid-template-columns"],
  section .container-wide div[style*="repeat(2"][style*="grid-template-columns"] { grid-template-columns: 1fr; }
}

/* USP strip (4 výhody pod hero) */
.usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 980px) { .usp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .usp-grid { grid-template-columns: 1fr; } }
.stat__label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-500); margin-top: 4px; }

/* ── references masonry (Pinterest-style CSS columns) ──── */
.ref-masonry {
  column-count: 4;
  column-gap: 16px;
}
@media (max-width: 1200px) { .ref-masonry { column-count: 3; } }
@media (max-width: 800px)  { .ref-masonry { column-count: 2; column-gap: 12px; } }
@media (max-width: 480px)  { .ref-masonry { column-count: 1; } }

/* ── Homepage responsivita ──────────────────────────────
   Inline styly v hp.php drží grid pevně počet sloupců; pod 900 / 600px
   překlopíme do single-column nebo zúženého layoutu. Class hooky
   `hp-*` jsou v hp.php přímo na grid divech.
*/
@media (max-width: 900px) {
  .hp-hero        { grid-template-columns: 1fr !important; gap: 28px !important; padding: 18px 18px 32px !important; }
  .hp-hero h1     { font-size: clamp(32px, 7vw, 44px) !important; }
  .hp-about      { grid-template-columns: 1fr !important; gap: 28px !important; }
  .hp-bannery-grid{ grid-template-columns: 1fr !important; gap: 14px !important; }
  .hp-cats-grid  { grid-template-columns: repeat(2, 1fr) !important; }
  .hp-refs-grid  { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
  .hp-reviews-grid{grid-template-columns: 1fr !important; gap: 16px !important; }
  .hp-blog-grid  { grid-template-columns: 1fr !important; gap: 18px !important; }
  .newsletter     { grid-template-columns: 1fr !important; padding: 32px 24px !important; gap: 18px !important; }
  .section-head   { gap: 12px !important; }
  .section-head h2{ font-size: clamp(26px, 5.5vw, 34px) !important; }
}
@media (max-width: 600px) {
  .hp-cats-grid   { grid-template-columns: 1fr !important; }
  .hp-refs-grid   { grid-template-columns: 1fr !important; }
  .container,
  .container-wide{ padding-left: 14px !important; padding-right: 14px !important; }
}
/* Kategorie — inline `grid-column: span 2` a `aspect-ratio: 2/1.1` na první (lg)
   dlaždici dělá overlap/overflow na úzkých breakpoints. Vrátíme jí standard. */
@media (max-width: 900px) {
  .hp-cats-grid .cat-tile { grid-column: span 1 !important; aspect-ratio: 1 / 1.1 !important; }
  .hp-cats-grid .cat-tile.lg .cat-tile__name { font-size: 26px !important; }
}
@media (max-width: 600px) {
  .hp-cats-grid .cat-tile { aspect-ratio: 16 / 10 !important; }
}
/* obrázky v gridu nesmí přesahovat */
.hp-bannery-grid img,
.hp-refs-grid img,
.hp-blog-grid img,
.hp-about img { max-width: 100%; height: auto; }
/* hero media + overlay (mobile) */
@media (max-width: 900px) {
  .hp-hero__media   { max-height: none !important; aspect-ratio: 4 / 3 !important; margin-left: 0 !important; }
  .hp-hero__overlay { bottom: -18px !important; left: -12px !important; width: 38% !important; border-width: 6px !important; }
}
/* About image — povolit shrink */
.hp-about > div:first-child { min-width: 0; }
.hp-about img { max-width: 100%; height: auto; }

.ref-card {
  position: relative; display: block; width: 100%;
  margin: 0 0 16px;
  padding: 0; border: 0;
  background: var(--cream-200);
  border-radius: 16px;
  overflow: hidden;
  cursor: zoom-in;
  break-inside: avoid;          /* keep each tile in one column */
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  box-shadow: 0 1px 0 rgba(26,22,18,0.05);
  transition: box-shadow .25s ease, transform .25s ease;
}
.ref-card:hover { box-shadow: 0 16px 36px rgba(26,22,18,0.18); transform: translateY(-2px); }

.ref-card__img-wrap {
  display: block; line-height: 0;
  background: var(--cream-200);
}
.ref-card__img-wrap img {
  width: 100%; height: auto;
  display: block;
  transition: transform .9s cubic-bezier(.22,.61,.36,1), filter .25s ease;
}
.ref-card:hover .ref-card__img-wrap img { transform: scale(1.04); filter: brightness(0.96); }

/* Soft gradient overlay only visible when content needs to be readable. */
.ref-card__overlay {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(to top, rgba(26,22,18,0.55) 0%, rgba(26,22,18,0) 45%),
    radial-gradient(circle at 50% 50%, rgba(0,0,0,0) 60%, rgba(0,0,0,0.06) 100%);
  opacity: 0; transition: opacity .25s ease;
}
.ref-card:hover .ref-card__overlay { opacity: 1; }

.ref-card__zoom {
  position: absolute; top: 14px; right: 14px;
  width: 38px; height: 38px; border-radius: 999px;
  background: rgba(251,247,239,0.92);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  color: var(--ink-900);
  display: grid; place-items: center;
  opacity: 0; transform: translateY(-4px);
  transition: opacity .2s ease, transform .25s ease;
  pointer-events: none;
}
.ref-card:hover .ref-card__zoom { opacity: 1; transform: translateY(0); }

.ref-card__caption {
  position: absolute; bottom: 14px; left: 16px; right: 16px;
  color: var(--cream-50);
  display: flex; flex-direction: column; gap: 2px;
  opacity: 0; transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
}
.ref-card:hover .ref-card__caption { opacity: 1; transform: translateY(0); }
.ref-card__loc {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(251,247,239,0.78);
}
.ref-card__title {
  font-family: var(--font-display); font-size: 20px; line-height: 1.15;
  font-weight: 400;
}

/* Backwards compatibility (used by homepage references teaser) */
.ref-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 140px; gap: 16px;
}
@media (max-width: 1100px) { .ref-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px)  { .ref-grid { grid-template-columns: repeat(2, 1fr); } }
.ref-tile {
  position: relative; overflow: hidden; border-radius: 16px;
  cursor: pointer; background: var(--cream-200); display: block;
}
.ref-tile.tall   { grid-row: span 3; }
.ref-tile.wide   { grid-row: span 2; grid-column: span 2; }
.ref-tile.square { grid-row: span 2; }
@media (max-width: 800px) { .ref-tile.wide { grid-column: span 2; } }
.ref-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.22,.61,.36,1); }
.ref-tile:hover img { transform: scale(1.04); }
.ref-tile__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 50%, transparent 100%); }
.ref-tile__caption { position: absolute; bottom: 18px; left: 18px; right: 18px; color: #fff; }
.ref-tile__loc { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(251,247,239,0.7); }
.ref-tile__title { font-family: var(--font-display); font-size: 22px; line-height: 1.1; margin-top: 4px; }

/* ── header search ──────────────────────────────────────── */
.site-search { position: relative; display: flex; align-items: center; }
.site-search__input {
  width: 0; max-width: 0; padding: 10px 0; opacity: 0;
  border: 1px solid var(--cream-300); background: var(--cream-50);
  border-radius: 999px; margin-left: 0;
  transition: width .25s ease, max-width .25s ease, opacity .15s ease, padding .25s ease, margin-left .25s ease;
  pointer-events: none; font-size: 13px;
}
.site-search.open .site-search__input {
  width: 240px; max-width: 240px; opacity: 1; padding: 10px 16px;
  margin-left: 8px; pointer-events: auto;
}

/* ── logo nesmí flex-shrinkem deformovat výška × šířka poměr ── */
.site-header__row .logo-mark { flex-shrink: 0; min-width: 0; }
.site-header__row .logo-mark img { display: block; height: auto; width: auto; max-width: 100%; }
.site-header__row .logo-mark img[style*="height"] { height: var(--logo-h, auto); }
@media (max-width: 700px) {
  /* Na úzké obrazovce shrinkneme logo do max 38 px výšky, ať se vejde vedle ikon. */
  .site-header__row .logo-mark img { max-height: 38px !important; height: 38px !important; }
  .site-header__row .logo-mark { max-width: 55vw; }

  /* Search expanded = absolutní pruh přes celý header row.
     Tím neovlivňuje flex layout (logo nezúží) a překryje vše vlevo. */
  .site-header__row { position: relative; }
  .site-search.open .site-search__input {
    position: absolute;
    left: 12px; right: 12px;
    top: 50%; transform: translateY(-50%);
    width: auto !important; max-width: none !important;
    height: 40px;
    box-shadow: 0 10px 24px rgba(26,22,18,0.12);
    z-index: 30;
  }
}

/* ── lightbox ───────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(20,17,14,0.78);
  -webkit-backdrop-filter: blur(14px) saturate(110%);
  backdrop-filter: blur(14px) saturate(110%);
  display: flex; align-items: center; justify-content: center;
  padding: 6vh 4vw;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox__stage {
  position: relative;
  max-width: 94vw; max-height: 88vh;
  display: flex; align-items: center; justify-content: center;
  animation: fadeUp .35s ease both;
}
.lightbox__img {
  max-width: 100%; max-height: 88vh;
  width: auto; height: auto;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 40px 120px rgba(0,0,0,0.55);
  user-select: none;
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  width: 48px; height: 48px; border-radius: 999px;
  background: rgba(251,247,239,0.94);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  color: var(--ink-900);
  display: grid; place-items: center;
  cursor: pointer; transition: transform .15s, background .15s, box-shadow .15s;
  box-shadow: 0 14px 32px rgba(0,0,0,0.25);
  border: 0;
}
.lightbox__close:hover,
.lightbox__nav:hover { background: var(--cream-50); transform: scale(1.06); box-shadow: 0 18px 40px rgba(0,0,0,0.32); }
.lightbox__close { top: 16px; right: 16px; }
.lightbox__nav { top: 50%; }
.lightbox__nav.prev { left: -68px; transform: translateY(-50%); }
.lightbox__nav.next { right: -68px; transform: translateY(-50%); }
.lightbox__nav.prev:hover { transform: translateY(-50%) scale(1.06); }
.lightbox__nav.next:hover { transform: translateY(-50%) scale(1.06); }
@media (max-width: 900px) {
  .lightbox { padding: 4vh 2vw; }
  .lightbox__nav.prev { left: 10px; }
  .lightbox__nav.next { right: 10px; }
  .lightbox__nav, .lightbox__close { width: 42px; height: 42px; }
}
.lightbox__count {
  position: absolute; bottom: -38px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-mono); font-size: 11.5px;
  color: rgba(251,247,239,0.78);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(20,17,14,0.6);
  padding: 6px 14px; border-radius: 999px;
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  white-space: nowrap;
}
.lightbox__caption {
  position: absolute; bottom: -78px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-display); font-size: 22px; font-style: italic;
  color: var(--cream-50);
  text-align: center; max-width: min(90vw, 720px);
  line-height: 1.25;
  padding: 0 16px;
  text-shadow: 0 1px 16px rgba(0,0,0,0.45);
}
@media (max-width: 640px) {
  .lightbox__caption { font-size: 17px; bottom: -64px; }
}

/* ── favorites login popover ───────────────────────────── */
.fav-popover {
  position: absolute; z-index: 250;
  background: var(--cream-50);
  border: 1px solid rgba(26,22,18,0.08);
  border-radius: 16px;
  padding: 18px 18px 16px;
  width: 280px;
  box-shadow: 0 24px 60px rgba(26,22,18,0.22);
  opacity: 0; transform: translateY(-6px) scale(0.96);
  transition: opacity .18s ease, transform .22s cubic-bezier(.22,.61,.36,1);
  display: flex; gap: 14px; align-items: flex-start;
}
.fav-popover.open { opacity: 1; transform: translateY(0) scale(1); }
.fav-popover::before {
  content: ""; position: absolute;
  top: -7px; left: var(--fav-pop-arrow, 50%);
  width: 14px; height: 14px;
  background: var(--cream-50);
  border-top: 1px solid rgba(26,22,18,0.08);
  border-left: 1px solid rgba(26,22,18,0.08);
  transform: translateX(-50%) rotate(45deg);
}
.fav-popover__icon {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--accent); color: var(--cream-50);
  display: grid; place-items: center; flex-shrink: 0;
}
.fav-popover__body { flex: 1; min-width: 0; }
.fav-popover__body strong {
  display: block; font-size: 14.5px; font-weight: 700;
  color: var(--ink-900); margin-bottom: 4px;
}
.fav-popover__body p {
  margin: 0 0 12px; font-size: 12.5px; line-height: 1.45;
  color: var(--ink-500);
}
.fav-popover__cta {
  display: flex; gap: 6px; flex-wrap: wrap;
}
.fav-popover__cta .btn-sm { padding: 8px 14px; font-size: 12.5px; }
.fav-popover__close {
  position: absolute; top: 8px; right: 8px;
  width: 26px; height: 26px; border-radius: 999px;
  display: grid; place-items: center;
  color: var(--ink-500); background: transparent;
  transition: background .15s ease, color .15s ease;
}
.fav-popover__close:hover { background: rgba(26,22,18,0.06); color: var(--ink-900); }

/* ── toast ──────────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 28px; left: 50%; transform: translate(-50%, 80px);
  background: var(--ink-900); color: var(--cream-50);
  padding: 14px 24px; border-radius: 999px;
  font-size: 14px; font-weight: 500;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  z-index: 200; opacity: 0; pointer-events: none;
  transition: opacity .25s ease, transform .35s cubic-bezier(.22,.61,.36,1);
  display: inline-flex; align-items: center; gap: 10px;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); pointer-events: auto; }
.toast--success { background: var(--moss); }
.toast a {
  color: var(--cream-50); text-decoration: underline; font-weight: 600;
}

/* ── cart drawer ────────────────────────────────────────── */
.cart-scrim {
  position: fixed; inset: 0; background: rgba(26,22,18,0.4);
  z-index: 99; opacity: 0; pointer-events: none;
  transition: opacity .25s;
}
.cart-scrim.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(460px, 100%); background: var(--cream-50);
  z-index: 100; display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .35s cubic-bezier(.22,.61,.36,1);
  box-shadow: -20px 0 50px rgba(0,0,0,0.15);
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer__head { padding: 28px 28px 18px; display: flex; align-items: flex-start; justify-content: space-between; }
.cart-drawer__head h2 { margin: 4px 0 0; font-family: var(--font-display); font-size: 28px; font-weight: 400; }
.cart-drawer__close { width: 40px; height: 40px; border-radius: 999px; background: rgba(26,22,18,0.06); display: grid; place-items: center; }
.cart-drawer__list { flex: 1; overflow-y: auto; padding: 8px 28px; display: flex; flex-direction: column; gap: 20px; }
.cart-drawer__item { display: flex; gap: 14px; padding-bottom: 20px; border-bottom: 1px solid rgba(26,22,18,0.08); }
.cart-drawer__item img { width: 80px; height: 80px; border-radius: 8px; object-fit: cover; }
.cart-drawer__qty {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--cream-200); border-radius: 999px; padding: 3px;
}
.cart-drawer__qty button {
  width: 26px; height: 26px; border-radius: 999px;
  display: grid; place-items: center;
  background: transparent; color: var(--ink-900);
  transition: background .15s;
}
.cart-drawer__qty button:hover { background: var(--cream-300); }
.cart-drawer__qty span { min-width: 22px; text-align: center; font-size: 13px; font-weight: 600; }
.cart-drawer__foot { padding: 28px; border-top: 1px solid rgba(26,22,18,0.08); background: var(--cream-100); }
.cart-drawer__foot .row { display: flex; justify-content: space-between; }

/* ── auth / account / forms ─────────────────────────────── */
.auth-card {
  max-width: 480px; margin: 60px auto; padding: 40px;
  background: var(--cream-50); border-radius: 20px;
  border: 1px solid rgba(26,22,18,0.06);
}
.auth-card h1 { font-family: var(--font-display); font-size: 40px; line-height: 1; margin: 0 0 8px; font-weight: 400; }
.form-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-row label { font-size: 12px; font-weight: 600; color: var(--ink-700); text-transform: uppercase; letter-spacing: 0.08em; }

/* ── alerts ─────────────────────────────────────────────── */
.alert { padding: 14px 18px; border-radius: 12px; font-size: 14px; margin-bottom: 18px; }
.alert-success { background: #E8F0E4; color: var(--moss); }
.alert-error   { background: rgba(201,90,44,0.1); color: var(--accent); }

/* ── manifesto band ─────────────────────────────────────── */
.manifesto {
  padding: 96px 0; background: var(--cream-200); margin: 32px 0;
}
@media (max-width: 800px) { .manifesto { padding: 56px 0; margin: 18px 0; } }
@media (max-width: 800px) { .manifesto__quote-mark { font-size: 100px; line-height: 0.8; } }
@media (max-width: 800px) { .manifesto__attr { padding-right: 16px; margin-top: 20px; } }
.manifesto__grid { display: grid; grid-template-columns: auto 1fr; gap: 64px; align-items: center; }
@media (max-width: 800px) { .manifesto__grid { grid-template-columns: 1fr; gap: 24px; } }
.manifesto__quote-mark {
  font-family: var(--font-display); font-size: 200px; line-height: 1;
  color: var(--ply-700); font-style: italic;
}
.manifesto__text {
  font-family: var(--font-display); font-size: clamp(28px, 3vw, 42px);
  line-height: 1.2; margin: 0; color: var(--ink-900); letter-spacing: -0.01em; font-weight: 400;
}
.manifesto__text em { color: var(--ply-700); }
.manifesto__attr { display: flex; justify-content: flex-end; margin-top: 32px; padding-right: 40px; font-size: 13px; color: var(--ink-500); }
.manifesto__attr strong { color: var(--ink-900); }

/* ── newsletter band ────────────────────────────────────── */
.newsletter {
  background: var(--ply-300); border-radius: 24px;
  padding: 64px 56px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
  position: relative; overflow: hidden;
}
@media (max-width: 800px) { .newsletter { grid-template-columns: 1fr; padding: 40px 28px; gap: 24px; } }
.newsletter::before {
  content: ""; position: absolute; right: -80px; top: -80px;
  width: 320px; height: 320px; border-radius: 999px;
  background: rgba(251,247,239,0.2);
}
.newsletter > * { position: relative; z-index: 2; }
.newsletter h3 {
  font-family: var(--font-display); font-size: clamp(32px, 3.5vw, 44px);
  margin: 8px 0 16px; line-height: 1; color: var(--ink-900); font-weight: 400;
}
.newsletter p { font-size: 15px; color: var(--ink-700); margin: 0; max-width: 380px; }
.newsletter form { display: flex; gap: 8px; }
.newsletter .input {
  background: var(--cream-50); border: none; padding: 18px 22px;
  font-size: 15px; flex: 1;
}

/* ── testimonial card ───────────────────────────────────── */
.testimonial {
  background: var(--cream-50); padding: 32px 28px;
  border-radius: 16px; border: 1px solid rgba(26,22,18,0.06);
}
.testimonial__quote {
  font-family: var(--font-display); font-size: 22px; line-height: 1.3;
  margin: 0; color: var(--ink-900); font-weight: 400;
}
.testimonial__stars { display: flex; color: var(--accent); gap: 2px; margin-bottom: 16px; }
.testimonial__foot {
  margin-top: 24px; padding-top: 18px;
  border-top: 1px solid rgba(26,22,18,0.08);
  display: flex; justify-content: space-between; font-size: 13px;
}
.testimonial__foot span { color: var(--ink-500); }

/* ── cookie banner ──────────────────────────────────────── */
.cookie-banner {
  position: fixed; bottom: 16px; left: 16px; right: 16px;
  max-width: 720px; margin: 0 auto;
  background: var(--cream-50);
  border: 1px solid rgba(26,22,18,0.08);
  border-radius: 18px;
  padding: 18px 22px;
  z-index: 200;
  box-shadow: 0 24px 60px rgba(26,22,18,0.18);
  display: flex; gap: 18px; align-items: center;
  animation: fadeUp .35s ease both;
}
.cookie-banner[hidden] { display: none !important; }
.cookie-banner__content { flex: 1; min-width: 0; }
.cookie-banner__content strong { display: block; font-weight: 600; color: var(--ink-900); font-size: 14px; margin-bottom: 2px; }
.cookie-banner__content p { margin: 0; font-size: 13px; color: var(--ink-700); line-height: 1.5; }
.cookie-banner__content a { color: var(--ink-900); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-banner__actions .btn { padding: 10px 18px; font-size: 13px; }
@media (max-width: 700px) {
  .cookie-banner { flex-direction: column; align-items: stretch; padding: 16px; }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__actions .btn { flex: 1; }
}

/* ── compat shims (legacy TDS templates that still load) ──── */
.text-red, .text-primary { color: var(--accent); }
.bg-primary { background: var(--ink-900); color: var(--cream-50); }

/* When hoawood.css is loaded AFTER tds.css for legacy pages (cart, checkout,
 * account, info), remap TDS design tokens to Hoawood equivalents so the
 * un-restyled pages adopt the Hoawood palette without per-class rewrites.
 */
:root {
  /* TDS surfaces → Hoawood creams */
  --bg-0: var(--cream-50);
  --bg-1: var(--cream-100);
  --bg-2: var(--cream-50);
  --bg-3: var(--cream-200);
  --bg-4: var(--cream-300);
  --bg-dark:   var(--ink-900);
  --bg-dark-2: var(--ink-700);

  /* TDS foreground → Hoawood ink */
  --fg-0: var(--ink-900);
  --fg-1: var(--ink-700);
  --fg-2: var(--ink-500);
  --fg-3: var(--ink-300);
  --fg-on-dark:   var(--cream-50);
  --fg-on-dark-2: rgba(251,247,239,0.7);

  /* TDS red → Hoawood accent (so old TDS buttons look on-brand) */
  --red:      var(--accent);
  --red-hot:  var(--accent-hot);
  --red-deep: var(--ply-700);
  --red-tint: rgba(201, 90, 44, 0.10);
  --red-glow: rgba(201, 90, 44, 0.25);
}
