/* =========================================================
   Domowa Tężnia — Main stylesheet
   Tokens → base → layout → components → blocks → woo → utils
   ========================================================= */

:root {
  --green-900: #1E2B24;
  --green-800: #2D4A3E;
  --green-700: #3E5E4F;
  --green-500: #7A9274;
  --green-300: #C8D5BF;
  --green-100: #E8EFE4;
  --cream:     #FAF7F0;
  --salt:      #F4F1EA;
  --wood:      #B89068;
  --wood-dk:   #8B6F47;
  --honey:     #D4A574;
  --honey-dk:  #B88952;
  --ink:       #1E2B24;
  --ink-soft:  #4A5A52;
  --line:      #D9DDD1;
  --white:     #FFFFFF;

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

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

  --shadow-sm: 0 1px 2px rgba(30,43,36,.05), 0 1px 3px rgba(30,43,36,.06);
  --shadow-md: 0 6px 16px rgba(30,43,36,.08), 0 2px 6px rgba(30,43,36,.06);

  --max-w: 1240px;
  --max-w-narrow: 760px;
  --gutter: clamp(16px, 4vw, 40px);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--green-800); text-decoration-color: color-mix(in srgb, var(--green-800) 30%, transparent); text-underline-offset: 3px; }
a:hover { text-decoration-color: var(--green-800); }
button { font: inherit; }
ul, ol { padding-left: 1.2em; }
figure, blockquote { margin: 0; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2rem 0; }

/* ---------- a11y ---------- */
.sr-only, .sr-only-focusable:not(:focus):not(:focus-within) {
  position: absolute !important;
  width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link { position: absolute; left: 50%; top: 8px; transform: translateX(-50%); z-index: 999; background: var(--green-800); color: var(--cream); padding: .6rem 1rem; border-radius: var(--r-sm); }
:focus-visible { outline: 2px solid var(--honey); outline-offset: 2px; border-radius: 4px; }

/* ---------- typography ---------- */
.display { font-family: var(--font-display); font-weight: 500; letter-spacing: -0.01em; line-height: 1.05; color: var(--green-900); }
h1.display { font-size: clamp(2rem, 4vw + 1rem, 3.75rem); }
h2.display { font-size: clamp(1.6rem, 2.2vw + 1rem, 2.5rem); }
h3.display { font-size: clamp(1.25rem, 1vw + 1rem, 1.7rem); }
em { font-style: italic; color: var(--green-700); }
.eyebrow {
  font-size: .78rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--green-700); font-weight: 600;
}
.eyebrow--honey { color: var(--honey); }

/* ---------- layout ---------- */
.container { width: 100%; max-width: var(--max-w); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: var(--max-w-narrow); }

.section { padding: clamp(3rem, 6vw, 6rem) 0; }
.section--alt { background: var(--salt); }
.section--dark { background: linear-gradient(120deg, var(--green-800), var(--green-900)); color: var(--cream); }
.section--dark .display, .section--dark h2, .section--dark h3 { color: var(--cream); }
.section--dark .eyebrow { color: var(--honey); }

.section__head { margin-bottom: 2.5rem; max-width: 56ch; }
.section__head--row { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; flex-wrap: wrap; max-width: 100%; }
.section__more { font-weight: 600; color: var(--green-800); font-size: .95rem; }

.page-hero { padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 3vw, 3rem); background: linear-gradient(180deg, var(--green-100) 0%, var(--cream) 100%); }
.page-hero .display { margin: .5rem 0 .5rem; max-width: 20ch; }
.page-hero__desc { max-width: 60ch; color: var(--ink-soft); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5em;
  padding: .85rem 1.4rem;
  font-weight: 600; font-size: .95rem;
  border-radius: var(--r-pill);
  border: 1.5px solid transparent;
  text-decoration: none; cursor: pointer;
  transition: transform .15s ease, background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--compact { padding: .55rem 1rem; font-size: .85rem; }
.btn--primary { background: var(--green-800); color: var(--cream); }
.btn--primary:hover { background: var(--green-900); color: var(--cream); }
.btn--ghost { background: transparent; color: var(--green-800); border-color: var(--green-800); }
.btn--ghost:hover { background: var(--green-800); color: var(--cream); }
.btn--honey { background: var(--honey); color: var(--green-900); }
.btn--honey:hover { background: var(--honey-dk); color: var(--cream); }

/* ---------- topbar + header ---------- */
.topbar { background: var(--green-900); color: var(--green-300); font-size: .8rem; }
.topbar__row { display: flex; justify-content: space-between; padding: .5rem 0; flex-wrap: wrap; gap: .5rem; }
.topbar a { color: var(--green-300); text-decoration: none; }
.topbar a:hover { color: var(--cream); }

.site-header { background: var(--white); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; backdrop-filter: blur(8px); background: rgba(255,255,255,.92); }
.site-header__row { display: flex; align-items: center; gap: 1.5rem; padding: 1rem 0; }
.brand { display: flex; align-items: center; gap: .6rem; font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; color: var(--green-800); text-decoration: none; }
.brand__mark { display: inline-flex; color: var(--green-800); }
.brand__name em { font-style: italic; font-weight: 400; }

.primary-nav { flex: 1; display: flex; justify-content: center; }
.nav-list { display: flex; gap: 1.6rem; list-style: none; margin: 0; padding: 0; }
.nav-item { position: relative; }
.nav-link { color: var(--ink); font-weight: 500; font-size: .95rem; text-decoration: none; padding: .5rem 0; }
.nav-link:hover, .nav-item.is-active .nav-link { color: var(--green-800); text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 2px; text-decoration-color: var(--honey); }
.sub-menu { position: absolute; top: 100%; left: 0; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); padding: .5rem; min-width: 220px; list-style: none; margin: 0; box-shadow: var(--shadow-md); opacity: 0; pointer-events: none; transform: translateY(-4px); transition: .15s; }
.nav-item:hover > .sub-menu, .nav-item:focus-within > .sub-menu { opacity: 1; pointer-events: auto; transform: none; }
.sub-menu .nav-link { display: block; padding: .5rem .75rem; border-radius: var(--r-sm); }
.sub-menu .nav-link:hover { background: var(--salt); text-decoration: none; }

.nav-toggle { display: none; background: none; border: 0; padding: .5rem; color: var(--green-800); cursor: pointer; border-radius: var(--r-sm); }
.header-actions { display: flex; align-items: center; gap: .8rem; }
.header-action { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; color: var(--ink); background: transparent; position: relative; text-decoration: none; }
.header-action:hover { background: var(--salt); color: var(--green-800); }
.header-action--cart .cart-count { position: absolute; top: 0; right: 0; background: var(--honey); color: var(--green-900); font-size: .65rem; font-weight: 700; min-width: 18px; height: 18px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; padding: 0 4px; }

@media (max-width: 960px) {
  .nav-toggle { display: inline-flex; }
  .nav-wrap { display: none; position: absolute; left: 0; right: 0; top: 100%; background: var(--white); border-bottom: 1px solid var(--line); padding: 1rem var(--gutter); box-shadow: var(--shadow-md); }
  .nav-wrap.is-open { display: block; }
  .nav-list { flex-direction: column; gap: .25rem; }
  .nav-link { padding: .75rem 0; display: block; border-bottom: 1px solid var(--line); }
  .primary-nav { justify-content: flex-end; }
}
@media (max-width: 640px) {
  .topbar { display: none; }
  .btn--compact { display: none; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--green-100) 0%, var(--cream) 100%);
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 4rem);
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; right: -120px; top: -120px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--green-500) 25%, transparent), transparent 70%);
  pointer-events: none;
}
.hero__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem, 4vw, 4rem); align-items: center; position: relative; z-index: 2; }
.hero__title { margin: .75rem 0 1rem; }
.hero__lead { font-size: 1.05rem; color: var(--ink-soft); max-width: 48ch; margin-bottom: 1.5rem; }
.hero__cta { display: flex; gap: .75rem; flex-wrap: wrap; }
.hero__meta { display: flex; gap: 1.25rem; margin-top: 2rem; font-size: .85rem; color: var(--ink-soft); flex-wrap: wrap; }
.hero__media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  background: linear-gradient(160deg, #E8DDC8 0%, #B89068 100%);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.hero__product {
  position: absolute; inset: 22% 28%;
  background: radial-gradient(ellipse, #F4D7A6 0%, #C98E4D 60%, #8B6F47 100%);
  border-radius: 10px;
  box-shadow: 0 0 100px rgba(244,215,166,.5);
}
.hero__badge {
  position: absolute; top: 1rem; right: 1rem;
  width: 74px; height: 74px; border-radius: 50%;
  background: var(--cream); color: var(--green-900);
  display: flex; align-items: center; justify-content: center;
  text-align: center; font-family: var(--font-display); font-size: .8rem; line-height: 1.1;
  box-shadow: var(--shadow-md); padding: .4rem;
}

@media (max-width: 800px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { aspect-ratio: 16 / 12; max-width: 520px; margin-inline: auto; }
}

/* ---------- trust ---------- */
.trust { background: var(--white); border-block: 1px solid var(--line); font-size: .85rem; color: var(--ink-soft); }
.trust__row { display: flex; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; padding: .85rem 0; }
.trust__dot { width: 8px; height: 8px; background: var(--green-500); border-radius: 50%; display: inline-block; margin-right: .4rem; vertical-align: middle; }

/* ---------- features ---------- */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.feature {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); padding: 1.4rem; transition: transform .15s, box-shadow .15s;
}
.feature:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.feature__icn { width: 42px; height: 42px; border-radius: 50%; background: var(--green-100); color: var(--green-800); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.feature h3 { font-family: var(--font-display); font-size: 1.1rem; margin: 0 0 .4rem; color: var(--green-900); }
.feature p { margin: 0; color: var(--ink-soft); font-size: .92rem; }
@media (max-width: 800px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .features { grid-template-columns: 1fr; } }

/* ---------- products ---------- */
.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.product { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; text-decoration: none; color: inherit; display: flex; flex-direction: column; transition: transform .15s, box-shadow .15s; }
.product:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.product__media { position: relative; aspect-ratio: 1 / 1; background: linear-gradient(160deg, #E8DDC8, #B89068); overflow: hidden; }
.product__media::after {
  content: ""; position: absolute; inset: 30% 30%;
  background: radial-gradient(ellipse, #F4D7A6, #C98E4D);
  border-radius: 6px;
}
.product__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.product__media img + *::after { display: none; }
.product__meta { padding: 1rem 1.2rem 1.3rem; }
.product__name { font-family: var(--font-display); font-size: 1.15rem; margin: 0 0 .25rem; color: var(--green-900); }
.product__short { color: var(--ink-soft); font-size: .85rem; margin: 0 0 .75rem; }
.product__price .price { font-weight: 700; color: var(--green-800); font-size: 1.05rem; }
.pill { position: absolute; top: .75rem; left: .75rem; background: var(--honey); color: var(--green-900); font-size: .65rem; padding: .25rem .6rem; border-radius: var(--r-pill); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; z-index: 2; }

@media (max-width: 800px) { .products { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .products { grid-template-columns: 1fr; } }

/* ---------- steps ---------- */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.step { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); padding: 1.5rem 1.3rem; }
.step__n { font-family: var(--font-display); font-size: 2rem; color: var(--honey); display: block; line-height: 1; margin-bottom: .5rem; }
.step h3 { font-size: 1rem; margin: 0 0 .3rem; color: var(--green-900); }
.step p { margin: 0; color: var(--ink-soft); font-size: .88rem; }
@media (max-width: 800px) { .steps { grid-template-columns: repeat(2, 1fr); } }

/* ---------- testimonial ---------- */
.testimonial { background: var(--green-800); color: var(--cream); border-radius: var(--r-lg); padding: clamp(2rem, 4vw, 3.5rem) clamp(1.5rem, 3vw, 3rem); text-align: center; }
.testimonial blockquote { font-family: var(--font-display); font-style: italic; font-size: clamp(1.15rem, 1.5vw + .5rem, 1.8rem); line-height: 1.35; max-width: 42ch; margin: 0 auto 1.25rem; }
.testimonial figcaption { color: var(--green-300); font-size: .88rem; letter-spacing: .06em; }

/* ---------- posts ---------- */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.post-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; transition: transform .15s, box-shadow .15s; }
.post-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.post-card__media { display: block; aspect-ratio: 3 / 2; background: linear-gradient(135deg, var(--green-300), var(--green-500)); overflow: hidden; }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; }
.post-card__meta { padding: 1.1rem 1.2rem 1.3rem; }
.post-card__cat { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--green-700); font-weight: 700; margin-bottom: .5rem; }
.post-card h2, .post-card h3 { font-family: var(--font-display); font-size: 1.1rem; margin: 0 0 .35rem; line-height: 1.25; }
.post-card h2 a, .post-card h3 a { color: var(--green-900); text-decoration: none; }
.post-card h2 a:hover, .post-card h3 a:hover { color: var(--green-700); }
.post-card__date { font-size: .78rem; color: var(--ink-soft); }
.post-card p { color: var(--ink-soft); font-size: .92rem; margin: 0 0 .5rem; }

.posts--list { grid-template-columns: 1fr; gap: 1rem; }
.post-card--horizontal { display: grid; grid-template-columns: 240px 1fr; }
.post-card--horizontal .post-card__media { aspect-ratio: auto; min-height: 160px; }
@media (max-width: 800px) { .posts { grid-template-columns: 1fr; } .post-card--horizontal { grid-template-columns: 1fr; } }

/* ---------- prose (blog post / page content) ---------- */
.prose { font-size: 1.05rem; line-height: 1.75; color: var(--ink); }
.prose > * + * { margin-top: 1rem; }
.prose h2 { font-family: var(--font-display); font-size: 1.7rem; color: var(--green-900); margin-top: 2.5rem; }
.prose h3 { font-family: var(--font-display); font-size: 1.3rem; color: var(--green-900); margin-top: 2rem; }
.prose blockquote { border-left: 4px solid var(--green-500); background: var(--green-100); padding: 1rem 1.25rem; border-radius: 0 var(--r-sm) var(--r-sm) 0; font-family: var(--font-display); font-style: italic; color: var(--green-900); }
.prose img, .prose figure { border-radius: var(--r-md); }
.prose ul, .prose ol { padding-left: 1.4em; }
.prose li + li { margin-top: .4rem; }
.prose code, .prose pre { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; background: var(--salt); border-radius: var(--r-sm); }
.prose code { padding: .12em .4em; font-size: .92em; }
.prose pre { padding: 1rem; overflow: auto; }
.prose table { width: 100%; border-collapse: collapse; }
.prose th, .prose td { border-bottom: 1px solid var(--line); padding: .6rem .4rem; text-align: left; }

/* ---------- post meta / breadcrumbs ---------- */
.post-hero { padding: clamp(2rem, 4vw, 3.5rem) 0 1rem; background: linear-gradient(180deg, var(--green-100), var(--cream)); }
.breadcrumbs { font-size: .85rem; color: var(--ink-soft); margin-bottom: 1rem; }
.breadcrumbs a { color: var(--green-800); text-decoration: none; }
.post-meta { display: flex; align-items: center; gap: .75rem; margin-top: 1rem; color: var(--ink-soft); font-size: .9rem; }
.post-meta img { border-radius: 50%; }
.post-cover { margin: 1.5rem 0 2rem; }
.post-cover img { border-radius: var(--r-md); }

.post-promo { margin: 2.5rem 0; background: var(--green-800); color: var(--cream); border-radius: var(--r-md); padding: 1.25rem 1.5rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.post-promo h3 { font-family: var(--font-display); color: var(--cream); margin: .25rem 0 0; font-size: 1.2rem; }

/* ---------- newsletter ---------- */
.newsletter__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }
.newsletter h2 { color: var(--cream); margin: .5rem 0 .5rem; }
.newsletter p { color: var(--green-300); max-width: 52ch; }
.newsletter__form { display: flex; gap: .5rem; }
.newsletter__form input[type="email"] {
  flex: 1;
  padding: .85rem 1.1rem;
  border-radius: var(--r-pill);
  border: 1px solid rgba(244,241,234,.25);
  background: rgba(250,247,240,.08);
  color: var(--cream);
  font: inherit;
}
.newsletter__form input::placeholder { color: var(--green-300); }
@media (max-width: 800px) { .newsletter__grid { grid-template-columns: 1fr; } .newsletter__form { flex-direction: column; } .newsletter__form .btn { width: 100%; justify-content: center; } }

/* ---------- footer ---------- */
.site-footer { background: var(--green-900); color: var(--green-300); padding: clamp(3rem, 5vw, 4.5rem) 0 1.5rem; }
.site-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 2rem; }
.site-footer h3 { color: var(--cream); font-size: .85rem; letter-spacing: .15em; text-transform: uppercase; margin: 0 0 .8rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; font-size: .92rem; line-height: 1.9; }
.site-footer a { color: var(--green-300); text-decoration: none; }
.site-footer a:hover { color: var(--cream); }
.site-footer__brand .brand { color: var(--cream); margin-bottom: .75rem; }
.site-footer__brand .brand__mark { color: var(--cream); }
.site-footer__brand p { max-width: 40ch; font-size: .9rem; }
.site-footer__tagline { letter-spacing: .2em; color: var(--honey); font-size: .75rem; margin-top: .5rem; }
.site-footer__legal { display: flex; justify-content: space-between; padding-top: 1.25rem; margin-top: 2rem; border-top: 1px solid rgba(244,241,234,.15); font-size: .78rem; color: color-mix(in srgb, var(--green-300) 70%, transparent); flex-wrap: wrap; gap: 1rem; }
@media (max-width: 900px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .site-footer__grid { grid-template-columns: 1fr; } }

/* ---------- search form ---------- */
.search-form { display: flex; gap: .4rem; margin-top: 1rem; }
.search-form input[type="search"] {
  flex: 1; padding: .75rem 1rem;
  border: 1px solid var(--line); background: var(--white);
  border-radius: var(--r-pill); font: inherit; color: var(--ink);
}
.search-form button {
  padding: .75rem 1.2rem; background: var(--green-800); color: var(--cream); border: 0; border-radius: var(--r-pill); cursor: pointer;
  display: inline-flex; align-items: center; gap: .3rem;
}

/* ---------- WooCommerce tweaks ---------- */
.woocommerce .woo-wrap { padding: clamp(2rem, 4vw, 4rem) 0; }
.woocommerce ul.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; list-style: none; padding: 0; }
.woocommerce ul.products li.product { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; padding: 0; width: auto !important; margin: 0 !important; float: none !important; }
.woocommerce ul.products li.product a { text-decoration: none; color: inherit; }
.woocommerce ul.products li.product img { width: 100%; height: auto; margin: 0; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { font-family: var(--font-display); font-size: 1.15rem; color: var(--green-900); padding: 1rem 1.2rem 0; }
.woocommerce ul.products li.product .price { padding: .25rem 1.2rem; color: var(--green-800); font-weight: 700; font-size: 1.05rem; display: block; }
.woocommerce ul.products li.product .price del { color: var(--ink-soft); font-weight: 400; margin-right: .4rem; }
.woocommerce ul.products li.product .button { display: inline-block; margin: .75rem 1.2rem 1.2rem; padding: .6rem 1.1rem; background: var(--green-800); color: var(--cream); border-radius: var(--r-pill); font-size: .88rem; font-weight: 600; text-decoration: none; }
.woocommerce ul.products li.product .button:hover { background: var(--green-900); color: var(--cream); }
.woocommerce div.product .product_title { font-family: var(--font-display); color: var(--green-900); }
.woocommerce div.product p.price, .woocommerce div.product span.price { color: var(--green-800); font-size: 1.4rem; font-weight: 700; }
.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
  background: var(--green-800); color: var(--cream); border-radius: var(--r-pill); padding: .85rem 1.5rem; font-weight: 600;
}
.woocommerce #respond input#submit:hover, .woocommerce a.button:hover, .woocommerce button.button:hover { background: var(--green-900); color: var(--cream); }
.woocommerce a.button.alt, .woocommerce button.button.alt { background: var(--honey); color: var(--green-900); }
.woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover { background: var(--honey-dk); }
.woocommerce-message, .woocommerce-info { background: var(--green-100); border-top-color: var(--green-700) !important; color: var(--green-900); }
@media (max-width: 800px) { .woocommerce ul.products { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .woocommerce ul.products { grid-template-columns: 1fr; } }

/* ---------- error 404 ---------- */
.error-404 .display { max-width: 20ch; margin-inline: auto; margin-top: .5rem; }

/* ---------- small utils ---------- */
.page-head { text-align: center; max-width: 60ch; margin: 0 auto 2.5rem; }
.page-head__lead { color: var(--ink-soft); max-width: 55ch; margin: .5rem auto 0; }
.page-head .display { margin-top: .5rem; }

/* ---------- print ---------- */
@media print {
  .site-header, .site-footer, .topbar, .newsletter, .trust { display: none !important; }
  body { background: white; color: black; }
}
