/*!
Theme Name: Little Pickles Play Cafe
Compiled CSS — generated from style.scss + _partials/*.scss.
Do not edit this file directly; edit the .scss sources and recompile
(`sass scss/style.scss scss/style.css` or via your usual build task).
*/
@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@500;600;700;800&family=Nunito+Sans:ital,opsz,wght@0,6..12,300;0,6..12,400;0,6..12,600;0,6..12,700;1,6..12,400&display=swap');

/* =========================================================================
   RESET
   ========================================================================= */
*, *::before, *::after { box-sizing: border-box; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  min-height: 100vh;
  background: #f5efe0;
  color: #26301f;
  font-family: 'Nunito Sans', 'Segoe UI', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}

img, picture, svg, video { max-width: 100%; display: block; }
ul, ol { padding: 0; margin: 0; list-style: none; }
p, h1, h2, h3, h4, h5, h6, figure { margin: 0; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: none; cursor: pointer; }
table { border-collapse: collapse; width: 100%; }
:focus-visible { outline: 3px solid #e8a33d; outline-offset: 2px; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #1c2b1a;
  color: #ffffff;
  padding: 12px 24px;
  z-index: 999;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* =========================================================================
   TYPOGRAPHY
   ========================================================================= */
h1, h2, h3, h4, .h1, .h2, .h3, .h4 {
  font-family: 'Baloo 2', 'Fredoka', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: #33512f;
}

h1, .h1 { font-size: 2.25rem; }
@media (min-width: 768px) { h1, .h1 { font-size: 3rem; } }
@media (min-width: 1024px) { h1, .h1 { font-size: 3.75rem; } }

h2, .h2 { font-size: 1.75rem; }
@media (min-width: 768px) { h2, .h2 { font-size: 2.25rem; } }

h3, .h3 { font-size: 1.375rem; }
@media (min-width: 768px) { h3, .h3 { font-size: 1.75rem; } }

h4, .h4 { font-size: 1.125rem; line-height: 1.35; }

p { line-height: 1.6; }
p + p { margin-top: 16px; }

.lead { font-size: 1.125rem; color: #5a6553; line-height: 1.35; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Baloo 2', 'Fredoka', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3f5d3a;
}
.eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e8a33d;
}

.text-muted { color: #5a6553; }
.text-center { text-align: center; }

.section-heading { max-width: 640px; margin-bottom: 32px; }
.section-heading--center { margin-inline: auto; text-align: center; }
.section-heading .eyebrow { margin-bottom: 12px; }
.section-heading h2 { margin-top: 8px; }
.section-heading .lead { margin-top: 12px; }

/* =========================================================================
   LAYOUT
   ========================================================================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
}
@media (min-width: 1024px) { .container { padding-inline: 48px; } }

.container--narrow {
  width: 100%;
  max-width: 800px;
  margin-inline: auto;
  padding-inline: 24px;
}
@media (min-width: 1024px) { .container--narrow { padding-inline: 48px; } }

.section { padding-block: 64px; }
@media (min-width: 1024px) { .section { padding-block: 96px; } }
.section--tight { padding-block: 32px; }
.section--alt { background: #efe6d2; }
.section--dark { background: #1c2b1a; color: #f5efe0; }

.site-main { display: block; }

.breadcrumbs {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-block: 16px;
  font-size: 0.875rem;
  color: #5a6553;
}
@media (min-width: 1024px) { .breadcrumbs { padding-inline: 48px; } }
.breadcrumbs a:hover { color: #3f5d3a; }
.breadcrumbs .sep { opacity: 0.5; }

.cta-banner { padding-block: 64px; background: #3f5d3a; color: #ffffff; text-align: center; }
@media (min-width: 1024px) { .cta-banner { padding-block: 96px; } }
.cta-banner__inner { width: 100%; max-width: 800px; margin-inline: auto; padding-inline: 24px; }
@media (min-width: 1024px) { .cta-banner__inner { padding-inline: 48px; } }
.cta-banner h2 { color: #f5efe0; }
.cta-banner .lead { color: rgba(245, 239, 224, 0.85); margin-top: 12px; }
.cta-banner__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; margin-top: 32px; }

.faqs-wrap { width: 100%; max-width: 800px; margin-inline: auto; padding-inline: 24px; padding-block: 64px; }
@media (min-width: 1024px) { .faqs-wrap { padding-inline: 48px; padding-block: 96px; } }

/* =========================================================================
   BUTTONS
   ========================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Baloo 2', 'Fredoka', system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 999px;
  border: 2px solid transparent;
  padding: 12px 32px;
  min-height: 44px;
  cursor: pointer;
  transition: transform 250ms cubic-bezier(0.16,1,0.3,1),
    background-color 250ms cubic-bezier(0.16,1,0.3,1),
    color 250ms cubic-bezier(0.16,1,0.3,1),
    box-shadow 250ms cubic-bezier(0.16,1,0.3,1);
  background: #3f5d3a;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(28,43,26,0.08);
}
.btn:hover { transform: translateY(-2px); background: #33512f; box-shadow: 0 8px 24px rgba(28,43,26,0.12); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid #e8a33d; outline-offset: 2px; }

.btn--accent { background: #e8a33d; color: #1c2b1a; }
.btn--accent:hover { background: #c8852a; }

.btn--outline { background: transparent; border-color: #3f5d3a; color: #3f5d3a; box-shadow: none; }
.btn--outline:hover { background: #3f5d3a; color: #ffffff; }

.btn--ghost { background: transparent; color: #33512f; box-shadow: none; padding-inline: 16px; }
.btn--ghost:hover { background: #dfe9d6; }

.btn--lg { padding: 16px 48px; font-size: 1.125rem; }
.btn--block { width: 100%; }
.btn[disabled], .btn.disabled { opacity: 0.5; pointer-events: none; }

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #dfe9d6;
  color: #3f5d3a;
  flex-shrink: 0;
}
.icon-badge svg { width: 28px; height: 28px; }

/* =========================================================================
   FORMS
   ========================================================================= */
.form-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.form-field label { font-family: 'Baloo 2', 'Fredoka', system-ui, sans-serif; font-weight: 600; font-size: 0.875rem; color: #33512f; }
.form-field label .required { color: #b3492f; }
.form-field input:not([type="checkbox"]):not([type="radio"]),
.form-field select,
.form-field textarea {
  border: 2px solid rgba(51,81,47,0.16);
  border-radius: 8px;
  padding: 12px 16px;
  background: #ffffff;
  font-size: 1rem;
  min-height: 48px;
  transition: border-color 250ms cubic-bezier(0.16,1,0.3,1), box-shadow 250ms cubic-bezier(0.16,1,0.3,1);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: #3f5d3a;
  box-shadow: 0 0 0 4px rgba(63,93,58,0.15);
  outline: none;
}
.form-field input::placeholder { color: #5a6553; }
.form-field textarea { min-height: 120px; resize: vertical; }
.form-field .field-hint { font-size: 0.875rem; color: #5a6553; }
.form-field .field-error { font-size: 0.875rem; color: #b3492f; }
.form-field.has-error input, .form-field.has-error select, .form-field.has-error textarea { border-color: #b3492f; }

.form-row { display: grid; gap: 24px; }
@media (min-width: 480px) { .form-row { grid-template-columns: repeat(2, 1fr); } }

.checkbox-field { display: flex; align-items: flex-start; gap: 12px; font-size: 0.875rem; }
.checkbox-field input { margin-top: 3px; width: 18px; height: 18px; accent-color: #3f5d3a; }

/* =========================================================================
   HEADER + FULL-PAGE NAVIGATION
   ========================================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 236, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(51,81,47,0.16);
}
.site-header__inner {
  width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: 24px;
  display: flex; align-items: center; justify-content: space-between;
  min-height: 84px; gap: 24px;
}
@media (min-width: 1024px) { .site-header__inner { padding-inline: 48px; } }

.site-branding { display: flex; align-items: center; gap: 12px; }
.site-branding .custom-logo, .site-branding img { height: 56px; width: auto; }
.site-branding__text { display: flex; flex-direction: column; line-height: 1.1; }
.site-branding .site-title { font-family: 'Baloo 2', 'Fredoka', system-ui, sans-serif; font-size: 1.125rem; font-weight: 700; color: #33512f; }
.site-branding .site-tagline { font-size: 0.875rem; color: #5a6553; }

.header-actions { display: flex; align-items: center; gap: 16px; }
.header-actions .btn { display: none; }
@media (min-width: 768px) { .header-actions .btn { display: inline-flex; } }

.menu-toggle {
  position: relative; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: #3f5d3a; flex-shrink: 0;
}
.menu-toggle:hover { background: #33512f; }
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after {
  content: ''; display: block; width: 22px; height: 2px; background: #ffffff; border-radius: 999px;
  transition: transform 250ms cubic-bezier(0.16,1,0.3,1), opacity 250ms cubic-bezier(0.16,1,0.3,1);
}
.menu-toggle span { position: relative; }
.menu-toggle span::before { position: absolute; top: -7px; left: 0; }
.menu-toggle span::after { position: absolute; top: 7px; left: 0; }
.nav-open .menu-toggle span { background: transparent; }
.nav-open .menu-toggle span::before { transform: translateY(7px) rotate(45deg); }
.nav-open .menu-toggle span::after { transform: translateY(-7px) rotate(-45deg); }

.primary-navigation {
  position: fixed; inset: 0; z-index: 200; background: #1c2b1a; color: #f5efe0;
  display: flex; flex-direction: column; visibility: hidden; opacity: 0;
  transition: opacity 400ms cubic-bezier(0.16,1,0.3,1), visibility 400ms; overflow-y: auto;
}
.nav-open .primary-navigation { visibility: visible; opacity: 1; }
.primary-navigation__inner {
  width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: 24px;
  flex: 1; display: flex; flex-direction: column; justify-content: center; padding-block: 96px 48px;
}
@media (min-width: 1024px) { .primary-navigation__inner { padding-inline: 48px; } }
.primary-navigation__top { display: flex; align-items: center; justify-content: space-between; padding-block: 24px; }
.primary-navigation__top .site-title { color: #f5efe0; }
.primary-navigation__top .site-tagline { color: rgba(245,239,224,0.6); }
.primary-navigation__close { background: rgba(245,239,224,0.1); }

.primary-navigation .nav-menu { display: flex; flex-direction: column; gap: 12px; margin-block: 48px; }
.primary-navigation .nav-menu li { border-bottom: 1px solid rgba(245,239,224,0.12); }
.primary-navigation .nav-menu li:first-child { border-top: 1px solid rgba(245,239,224,0.12); }
.primary-navigation .nav-menu a {
  display: flex; align-items: center; justify-content: space-between;
  font-family: 'Baloo 2', 'Fredoka', system-ui, sans-serif; font-size: 1.75rem; font-weight: 700;
  padding-block: 16px; color: #f5efe0;
  transition: color 250ms cubic-bezier(0.16,1,0.3,1), padding-left 250ms cubic-bezier(0.16,1,0.3,1);
}
@media (min-width: 768px) { .primary-navigation .nav-menu a { font-size: 3rem; } }
.primary-navigation .nav-menu a::after {
  content: '\2192'; opacity: 0; transform: translateX(-8px);
  transition: opacity 250ms cubic-bezier(0.16,1,0.3,1), transform 250ms cubic-bezier(0.16,1,0.3,1);
}
.primary-navigation .nav-menu a:hover, .primary-navigation .nav-menu a:focus-visible { color: #e8a33d; padding-left: 12px; }
.primary-navigation .nav-menu a:hover::after, .primary-navigation .nav-menu a:focus-visible::after { opacity: 1; transform: translateX(0); }
.primary-navigation .nav-menu .current-menu-item > a { color: #a9c39c; }

.primary-navigation__footer {
  display: flex; flex-wrap: wrap; gap: 32px; justify-content: space-between; align-items: flex-end;
  padding-top: 32px; border-top: 1px solid rgba(245,239,224,0.12);
}
.primary-navigation__contact { display: flex; flex-direction: column; gap: 8px; font-size: 1rem; color: rgba(245,239,224,0.8); }
.primary-navigation__social { display: flex; gap: 12px; }
.primary-navigation__social a {
  width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: rgba(245,239,224,0.1);
}
.primary-navigation__social a:hover { background: #e8a33d; color: #1c2b1a; }
.primary-navigation__social a svg { width: 20px; height: 20px; }

body.nav-open { overflow: hidden; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer { background: #1c2b1a; color: rgba(245,239,224,0.8); }
.site-footer__top {
  width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: 24px;
  display: grid; gap: 48px; padding-block: 64px; grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .site-footer__top { padding-inline: 48px; } }
@media (min-width: 768px) { .site-footer__top { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }

.site-footer__brand { display: flex; flex-direction: column; gap: 16px; }
.site-footer__brand img { height: 48px; }
.site-footer__brand p { max-width: 32ch; color: rgba(245,239,224,0.65); }

.site-footer__social { display: flex; gap: 12px; }
.site-footer__social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(245,239,224,0.08); display: flex; align-items: center; justify-content: center; }
.site-footer__social a:hover { background: #e8a33d; color: #1c2b1a; }
.site-footer__social a svg { width: 18px; height: 18px; }

.site-footer__heading {
  font-family: 'Baloo 2', 'Fredoka', system-ui, sans-serif; font-weight: 700; color: #f5efe0;
  margin-bottom: 16px; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.06em;
}
.site-footer__links { display: flex; flex-direction: column; gap: 12px; }
.site-footer__links a:hover { color: #e8a33d; }

.site-footer__contact { display: flex; flex-direction: column; gap: 12px; }
.site-footer__contact li { display: flex; gap: 12px; align-items: flex-start; }
.site-footer__contact svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; color: #a9c39c; }

.site-footer__bottom { border-top: 1px solid rgba(245,239,224,0.1); }
.site-footer__bottom-inner {
  width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: 24px;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  padding-block: 24px; font-size: 0.875rem; color: rgba(245,239,224,0.55);
}
@media (min-width: 1024px) { .site-footer__bottom-inner { padding-inline: 48px; } }
.site-footer__bottom a:hover { color: #f5efe0; }

/* =========================================================================
   HERO + OPENING TIMES
   ========================================================================= */
.hero { position: relative; background: linear-gradient(180deg, #faf6ec 0%, #f5efe0 100%); overflow: hidden; }
.hero__inner {
  width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: 24px;
  display: grid; gap: 48px; padding-block: 64px 96px; align-items: center;
}
@media (min-width: 1024px) { .hero__inner { padding-inline: 48px; grid-template-columns: 1fr 1fr; padding-block: 96px 128px; } }

.hero__content { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; text-align: left; }
.hero__eyebrow { margin-bottom: 4px; }
.hero__title { max-width: 14ch; }
.hero__lede { max-width: 46ch; font-size: 1.125rem; color: #5a6553; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 12px; }

.hero__usps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; width: 100%; }
@media (min-width: 480px) { .hero__usps { gap: 24px; } }
.hero__usp { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; }
.hero__usp .icon-badge { width: 52px; height: 52px; }
.hero__usp .icon-badge svg { width: 24px; height: 24px; }
.hero__usp span { font-family: 'Baloo 2', 'Fredoka', system-ui, sans-serif; font-weight: 700; font-size: 0.875rem; color: #33512f; line-height: 1.35; }

.hero__media { position: relative; }
.hero__figure {
  position: relative; border-radius: 24px; overflow: hidden; box-shadow: 0 16px 40px rgba(28,43,26,0.16);
  aspect-ratio: 4 / 3; background: #dfe9d6;
}
.hero__figure img { width: 100%; height: 100%; object-fit: cover; }

.hero__badge {
  position: absolute; bottom: -24px; left: -24px; background: #1c2b1a; color: #f5efe0;
  border-radius: 16px; padding: 16px 24px; box-shadow: 0 8px 24px rgba(28,43,26,0.12);
  max-width: 220px; display: none;
}
.hero__badge strong { display: block; font-family: 'Baloo 2', 'Fredoka', system-ui, sans-serif; font-size: 1.125rem; color: #ffffff; }
@media (min-width: 768px) { .hero__badge { display: block; } }

.hero__blob { position: absolute; border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%; z-index: -1; }
.hero__blob--one { width: 340px; height: 340px; background: #dfe9d6; top: -120px; right: -140px; }
.hero__blob--two { width: 220px; height: 220px; background: #e8a33d; opacity: 0.15; bottom: -80px; left: -80px; }

.opening-times { background: #33512f; color: #f5efe0; }
.opening-times__inner {
  width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: 24px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; padding-block: 24px;
}
@media (min-width: 1024px) { .opening-times__inner { padding-inline: 48px; } }
.opening-times__title { font-family: 'Baloo 2', 'Fredoka', system-ui, sans-serif; font-weight: 700; font-size: 1rem; display: flex; align-items: center; gap: 8px; }
.opening-times__list { display: flex; flex-wrap: wrap; gap: 8px 24px; font-size: 0.875rem; }
.opening-times__list li { display: flex; gap: 8px; }
.opening-times__list strong { color: #a9c39c; }

/* =========================================================================
   CARDS / INFO GRID / PARTNER STRIP / FEATURE SPLIT
   ========================================================================= */
.info-grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 480px) { .info-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .info-grid { grid-template-columns: repeat(3, 1fr); } }

.info-card {
  background: #ffffff; border-radius: 24px; box-shadow: 0 2px 8px rgba(28,43,26,0.08);
  transition: box-shadow 250ms cubic-bezier(0.16,1,0.3,1), transform 250ms cubic-bezier(0.16,1,0.3,1);
  padding: 32px; display: flex; flex-direction: column; gap: 16px;
}
.info-card:hover { box-shadow: 0 8px 24px rgba(28,43,26,0.12); transform: translateY(-4px); }
.info-card h3 { color: #33512f; }
.info-card p { color: #5a6553; }

.partner-strip {
  background: #eef3e8; border-radius: 24px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 32px; padding: 32px 48px;
  border: 1px dashed rgba(51,81,47,0.16);
}
.partner-strip__logo {
  width: 96px; height: 96px; border-radius: 50%; background: #ffffff; display: flex; align-items: center; justify-content: center;
  font-family: 'Baloo 2', 'Fredoka', system-ui, sans-serif; font-weight: 700; color: #33512f; flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(28,43,26,0.08);
}
.partner-strip__body { flex: 1; min-width: 220px; }
.partner-strip__title { font-family: 'Baloo 2', 'Fredoka', system-ui, sans-serif; font-weight: 700; color: #33512f; margin-bottom: 8px; }

.feature-split { display: grid; gap: 48px; }
@media (min-width: 1024px) { .feature-split { grid-template-columns: 1fr 1fr; align-items: center; } }
@media (min-width: 1024px) { .feature-split--reverse { direction: rtl; } .feature-split--reverse > * { direction: ltr; } }
.feature-split__media { border-radius: 24px; overflow: hidden; aspect-ratio: 4 / 3; background: #dfe9d6; box-shadow: 0 8px 24px rgba(28,43,26,0.12); }
.feature-split__media img { width: 100%; height: 100%; object-fit: cover; }
.feature-split__list { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.feature-split__list li { display: flex; align-items: flex-start; gap: 12px; color: #5a6553; }
.feature-split__list svg { width: 22px; height: 22px; color: #3f5d3a; flex-shrink: 0; margin-top: 2px; }

/* =========================================================================
   REVIEWS
   ========================================================================= */
.reviews { padding-block: 64px; background: #33512f; color: #f5efe0; position: relative; overflow: hidden; }
@media (min-width: 1024px) { .reviews { padding-block: 96px; } }
.reviews .section-heading h2, .reviews .section-heading .eyebrow { color: #f5efe0; }
.reviews .section-heading .lead { color: rgba(245,239,224,0.75); }
.reviews__inner { width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: 24px; position: relative; }
@media (min-width: 1024px) { .reviews__inner { padding-inline: 48px; } }
.reviews__grid { display: grid; gap: 24px; margin-top: 48px; grid-template-columns: 1fr; }
@media (min-width: 480px) { .reviews__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .reviews__grid { grid-template-columns: repeat(3, 1fr); } }

.review-card {
  background: #faf6ec; color: #26301f; border-radius: 24px; padding: 32px;
  display: flex; flex-direction: column; gap: 16px; box-shadow: 0 8px 24px rgba(28,43,26,0.12);
}
.review-card__stars { display: flex; gap: 2px; color: #e8a33d; }
.review-card__stars svg { width: 18px; height: 18px; }
.review-card__quote { font-size: 1rem; line-height: 1.6; color: #26301f; }
.review-card__meta { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review-card__avatar {
  width: 44px; height: 44px; border-radius: 50%; background: #dfe9d6; color: #33512f;
  display: flex; align-items: center; justify-content: center; font-family: 'Baloo 2', 'Fredoka', system-ui, sans-serif; font-weight: 700; flex-shrink: 0;
}
.review-card__name { font-family: 'Baloo 2', 'Fredoka', system-ui, sans-serif; font-weight: 700; font-size: 0.875rem; color: #33512f; }
.review-card__source { font-size: 0.875rem; color: #5a6553; }

.reviews__summary {
  display: flex; flex-wrap: wrap; align-items: center; gap: 24px; margin-top: 32px; padding-top: 32px;
  border-top: 1px solid rgba(245,239,224,0.15);
}
.reviews__summary strong { font-family: 'Baloo 2', 'Fredoka', system-ui, sans-serif; font-size: 1.75rem; color: #f5efe0; }

/* =========================================================================
   ABOUT PAGE — STORY / VALUES / TIMELINE / DOCUMENT LINKS
   ========================================================================= */
.story-section { padding-block: 64px; }
@media (min-width: 1024px) { .story-section { padding-block: 96px; } }
.story-section__inner { width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: 24px; display: grid; gap: 48px; }
@media (min-width: 1024px) { .story-section__inner { padding-inline: 48px; grid-template-columns: 1fr 1fr; align-items: center; } }
.story-section__media { border-radius: 24px; overflow: hidden; box-shadow: 0 8px 24px rgba(28,43,26,0.12); aspect-ratio: 4 / 3; background: #dfe9d6; }
.story-section__media img { width: 100%; height: 100%; object-fit: cover; }
.story-section__body p + p { margin-top: 16px; }

.values-grid { padding-block: 64px; background: #efe6d2; }
@media (min-width: 1024px) { .values-grid { padding-block: 96px; } }
.values-grid__inner { width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: 24px; }
@media (min-width: 1024px) { .values-grid__inner { padding-inline: 48px; } }

.timeline {
  width: 100%; max-width: 800px; margin-inline: auto; padding-inline: 24px; padding-block: 64px;
  display: flex; flex-direction: column; gap: 32px; position: relative;
}
@media (min-width: 1024px) { .timeline { padding-inline: 48px; padding-block: 96px; } }
.timeline::before { content: ''; position: absolute; left: 27px; top: 8px; bottom: 8px; width: 2px; background: #dfe9d6; }

.timeline-item { display: flex; gap: 24px; position: relative; }
.timeline-item__marker {
  width: 56px; height: 56px; border-radius: 50%; background: #3f5d3a; color: #ffffff;
  display: flex; align-items: center; justify-content: center; font-family: 'Baloo 2', 'Fredoka', system-ui, sans-serif; font-weight: 700;
  flex-shrink: 0; z-index: 1;
}
.timeline-item__body h4 { color: #33512f; margin-bottom: 4px; }
.timeline-item__body p { color: #5a6553; }

.document-links { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 24px; }
.document-link {
  display: inline-flex; align-items: center; gap: 12px; padding: 12px 24px; border-radius: 16px;
  background: #ffffff; border: 1px solid rgba(51,81,47,0.16); font-family: 'Baloo 2', 'Fredoka', system-ui, sans-serif; font-weight: 600;
  color: #33512f; transition: box-shadow 250ms cubic-bezier(0.16,1,0.3,1), transform 250ms cubic-bezier(0.16,1,0.3,1);
}
.document-link svg { width: 20px; height: 20px; color: #3f5d3a; }
.document-link:hover { box-shadow: 0 2px 8px rgba(28,43,26,0.08); transform: translateY(-2px); }

/* =========================================================================
   FAQS + GENERIC PAGE HERO
   ========================================================================= */
.page-hero { background: #dfe9d6; text-align: center; }
.page-hero__inner { width: 100%; max-width: 800px; margin-inline: auto; padding-inline: 24px; padding-block: 64px; }
@media (min-width: 1024px) { .page-hero__inner { padding-inline: 48px; } }
.page-hero .eyebrow { justify-content: center; }
.page-hero h1 { margin-top: 12px; }
.page-hero .lead { margin-inline: auto; margin-top: 12px; }

.faq-list {
  width: 100%; max-width: 800px; margin-inline: auto; padding-inline: 24px; padding-block: 64px;
  display: flex; flex-direction: column; gap: 16px;
}
@media (min-width: 1024px) { .faq-list { padding-inline: 48px; padding-block: 96px; } }

.faq-item {
  background: #ffffff; border-radius: 24px; border: 1px solid rgba(51,81,47,0.16); box-shadow: none; overflow: hidden;
}
.faq-item__question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 24px 32px; font-family: 'Baloo 2', 'Fredoka', system-ui, sans-serif; font-weight: 700; font-size: 1.125rem; color: #33512f; text-align: left;
}
.faq-item__question::after { content: '+'; font-size: 1.75rem; line-height: 1; color: #3f5d3a; transition: transform 250ms cubic-bezier(0.16,1,0.3,1); flex-shrink: 0; }
.faq-item[open] .faq-item__question::after, .faq-item.is-open .faq-item__question::after { transform: rotate(45deg); }
.faq-item__answer { padding: 0 32px 24px; color: #5a6553; }

.faq-cta { background: #e8a33d; color: #1c2b1a; box-shadow: none; text-align: center; padding: 48px; margin-top: 32px; border-radius: 24px; }
.faq-cta h3 { color: #1c2b1a; margin-bottom: 12px; }

/* =========================================================================
   WOOCOMMERCE
   ========================================================================= */
.woocommerce-notices-wrapper, .woocommerce-message, .woocommerce-info, .woocommerce-error {
  width: 100%; max-width: 800px; margin-inline: auto; padding-inline: 24px;
  background: #ffffff; border-radius: 24px; box-shadow: 0 2px 8px rgba(28,43,26,0.08);
  border-left: 4px solid #3f5d3a; padding: 16px 24px; margin-block: 24px; list-style: none; color: #26301f;
}
@media (min-width: 1024px) { .woocommerce-notices-wrapper, .woocommerce-message, .woocommerce-info, .woocommerce-error { padding-inline: 48px; } }
.woocommerce-message a.button, .woocommerce-info a.button, .woocommerce-error a.button { margin-left: 12px; }
.woocommerce-error { border-left-color: #b3492f; }

.shop-intro { padding-block: 64px 24px; text-align: center; }
@media (min-width: 1024px) { .shop-intro { padding-block: 96px 24px; } }
.shop-intro__inner { width: 100%; max-width: 800px; margin-inline: auto; padding-inline: 24px; }
@media (min-width: 1024px) { .shop-intro__inner { padding-inline: 48px; } }

.woocommerce-result-count, .woocommerce-ordering { font-size: 0.875rem; color: #5a6553; }

.shop-toolbar {
  width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: 24px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; padding-bottom: 32px;
}
@media (min-width: 1024px) { .shop-toolbar { padding-inline: 48px; } }
.shop-toolbar select { border: 1px solid rgba(51,81,47,0.16); border-radius: 8px; padding: 8px 12px; }

/* WooCommerce's own woocommerce-layout.css ships:
   .woocommerce ul.products li.product, .woocommerce-page ul.products li.product
   { float:left; width:22.05%; margin:0 3.8% 2.992em 0; }
   That selector has HIGHER specificity than a bare `ul.products li.product`,
   so it was winning regardless of load order and squashing every card down
   to ~22% of its grid track. Matching that ancestor context + !important
   below guarantees our grid layout wins instead. */
.woocommerce ul.products,
.woocommerce-page ul.products,
ul.products {
  width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: 24px;
  display: grid !important; grid-template-columns: repeat(2, 1fr); gap: 24px; padding-bottom: 96px;
}
@media (min-width: 1024px) { .woocommerce ul.products, .woocommerce-page ul.products, ul.products { padding-inline: 48px; } }
@media (min-width: 480px) { .woocommerce ul.products, .woocommerce-page ul.products, ul.products { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .woocommerce ul.products, .woocommerce-page ul.products, ul.products { grid-template-columns: repeat(4, 1fr); gap: 32px; } }

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
ul.products li.product {
  background: #ffffff; border-radius: 24px; box-shadow: 0 2px 8px rgba(28,43,26,0.08);
  transition: box-shadow 250ms cubic-bezier(0.16,1,0.3,1), transform 250ms cubic-bezier(0.16,1,0.3,1);
  position: relative; overflow: hidden; display: flex; flex-direction: column; list-style: none;
  float: none !important; width: auto !important; margin: 0 !important; clear: none !important;
}
ul.products li.product:hover { box-shadow: 0 8px 24px rgba(28,43,26,0.12); transform: translateY(-4px); }
ul.products li.product a { display: flex; flex-direction: column; flex: 1; color: inherit; }
ul.products li.product img { aspect-ratio: 1 / 1; object-fit: cover; width: 100%; border-radius: 24px 24px 0 0; }
ul.products li.product .woocommerce-loop-product__title {
  font-family: 'Baloo 2', 'Fredoka', system-ui, sans-serif; font-weight: 700; font-size: 1rem; color: #33512f; padding: 16px 24px 0;
}
ul.products li.product .price { padding: 8px 24px 16px; font-family: 'Baloo 2', 'Fredoka', system-ui, sans-serif; font-weight: 700; color: #3f5d3a; font-size: 1.125rem; }
ul.products li.product .price del { color: #5a6553; opacity: 0.6; font-weight: 400; margin-right: 8px; }
ul.products li.product .price ins { text-decoration: none; }
ul.products li.product .button, ul.products li.product .add_to_cart_button {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Baloo 2', 'Fredoka', system-ui, sans-serif; font-weight: 600; letter-spacing: 0.01em;
  border-radius: 999px; border: 2px solid transparent; padding: 12px 32px; min-height: 44px; cursor: pointer;
  transition: transform 250ms cubic-bezier(0.16,1,0.3,1), background-color 250ms cubic-bezier(0.16,1,0.3,1), color 250ms cubic-bezier(0.16,1,0.3,1), box-shadow 250ms cubic-bezier(0.16,1,0.3,1);
  margin: 0 24px 24px; background: #3f5d3a; color: #ffffff; font-size: 0.875rem;
}
ul.products li.product .button:hover, ul.products li.product .add_to_cart_button:hover { background: #33512f; transform: translateY(-2px); }
ul.products li.product .onsale {
  position: absolute; top: 16px; left: 16px; background: #e8a33d; color: #1c2b1a;
  font-family: 'Baloo 2', 'Fredoka', system-ui, sans-serif; font-weight: 700; font-size: 0.875rem; padding: 4px 12px; border-radius: 999px; z-index: 2;
}
ul.products li.product .star-rating { margin: 8px 24px 0; color: #e8a33d; font-size: 0.875rem; }

.woocommerce-pagination {
  width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: 24px;
  display: flex; justify-content: center; gap: 8px; padding-bottom: 64px;
}
@media (min-width: 1024px) { .woocommerce-pagination { padding-inline: 48px; } }
.woocommerce-pagination a, .woocommerce-pagination span {
  display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%;
  background: #ffffff; border: 1px solid rgba(51,81,47,0.16); font-family: 'Baloo 2', 'Fredoka', system-ui, sans-serif; font-weight: 600;
}
.woocommerce-pagination .current { background: #3f5d3a; color: #ffffff; border-color: #3f5d3a; }

/* ---- Single product ---- */
div.product {
  width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: 24px; padding-block: 64px;
  display: grid; gap: 48px;
  /* Grid items default to align-items:stretch, which was forcing the
     (short) gallery column to stretch down to match the (much longer)
     summary/description column — showing as a block of empty sage
     background under the gallery on products with a long description. */
  align-items: start;
}
@media (min-width: 1024px) { div.product { padding-inline: 48px; padding-block: 96px; grid-template-columns: 1fr 1fr; } }
div.product .woocommerce-product-gallery { border-radius: 24px; overflow: hidden; box-shadow: 0 8px 24px rgba(28,43,26,0.12); background: #dfe9d6; }
@media (min-width: 1024px) {
  div.product .woocommerce-product-gallery { position: relative; top: 0; }
}
div.product .woocommerce-product-gallery img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
div.product .woocommerce-product-gallery .flex-control-thumbs {
  display: flex; flex-wrap: wrap; gap: 8px; padding: 12px; margin: 0; background: #ffffff; list-style: none;
}
div.product .woocommerce-product-gallery .flex-control-thumbs li { width: calc(20% - 8px); list-style: none; }
div.product .woocommerce-product-gallery .flex-control-thumbs img {
  aspect-ratio: 1 / 1; border-radius: 8px; cursor: pointer; opacity: 0.6;
  transition: opacity 250ms cubic-bezier(0.16,1,0.3,1), box-shadow 250ms cubic-bezier(0.16,1,0.3,1);
}
div.product .woocommerce-product-gallery .flex-control-thumbs img:hover { opacity: 1; }
div.product .woocommerce-product-gallery .flex-control-thumbs img.flex-active { opacity: 1; box-shadow: 0 0 0 2px #3f5d3a; }
div.product .summary { display: flex; flex-direction: column; gap: 16px; }
div.product .summary .product_title { color: #33512f; }
div.product .summary .price { font-family: 'Baloo 2', 'Fredoka', system-ui, sans-serif; font-size: 1.75rem; font-weight: 700; color: #3f5d3a; }
div.product .summary .price del { color: #5a6553; opacity: 0.6; margin-right: 12px; font-size: 1.125rem; }
div.product .summary .woocommerce-product-rating { display: flex; align-items: center; gap: 12px; color: #e8a33d; }
div.product .summary .woocommerce-product-details__short-description { color: #5a6553; }
div.product .summary .woocommerce-product-details__short-description p + p { margin-top: 12px; }
div.product .summary form.cart { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 12px; }
div.product .summary form.cart .quantity { display: flex; }
div.product .summary form.cart .quantity input.qty {
  width: 72px; text-align: center; border: 2px solid rgba(51,81,47,0.16); border-radius: 8px; min-height: 48px;
}
div.product .summary form.cart .single_add_to_cart_button {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Baloo 2', 'Fredoka', system-ui, sans-serif; font-weight: 600; border-radius: 999px; border: 2px solid transparent;
  padding: 12px 32px; min-height: 44px; cursor: pointer; background: #3f5d3a; color: #ffffff;
  transition: transform 250ms cubic-bezier(0.16,1,0.3,1), background-color 250ms cubic-bezier(0.16,1,0.3,1);
}
div.product .summary form.cart .single_add_to_cart_button:hover { background: #33512f; transform: translateY(-2px); }
div.product .summary .product_meta { margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(51,81,47,0.16); font-size: 0.875rem; color: #5a6553; }
div.product .summary .product_meta > span { display: block; margin-bottom: 4px; }
div.product .summary .product_meta a { color: #3f5d3a; }

div.product .woocommerce-tabs { grid-column: 1 / -1; margin-top: 32px; }
div.product .woocommerce-tabs ul.tabs { display: flex; gap: 8px; border-bottom: 2px solid rgba(51,81,47,0.16); }
div.product .woocommerce-tabs ul.tabs li a {
  display: inline-block; padding: 12px 24px; font-family: 'Baloo 2', 'Fredoka', system-ui, sans-serif; font-weight: 700; color: #5a6553;
}
div.product .woocommerce-tabs ul.tabs li.active a { color: #3f5d3a; border-bottom: 2px solid #3f5d3a; }
div.product .woocommerce-tabs .panel { padding-top: 24px; color: #5a6553; }
div.product .related.products { grid-column: 1 / -1; margin-top: 64px; }
div.product .related.products > h2 { margin-bottom: 24px; }

/* ---- Cart ---- */
.woocommerce-cart-form, table.shop_table {
  width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: 24px; width: 100%;
}
@media (min-width: 1024px) { .woocommerce-cart-form, table.shop_table { padding-inline: 48px; } }
.woocommerce-cart-form th, table.shop_table th {
  font-family: 'Baloo 2', 'Fredoka', system-ui, sans-serif; font-weight: 700; color: #33512f; text-align: left; padding: 16px; border-bottom: 2px solid rgba(51,81,47,0.16);
}
.woocommerce-cart-form td, table.shop_table td { padding: 16px; border-bottom: 1px solid rgba(51,81,47,0.16); vertical-align: middle; }
.woocommerce-cart-form td.product-thumbnail img, table.shop_table td.product-thumbnail img { width: 72px; border-radius: 8px; }
.woocommerce-cart-form td.product-name a, table.shop_table td.product-name a { font-family: 'Baloo 2', 'Fredoka', system-ui, sans-serif; font-weight: 700; color: #33512f; }
.woocommerce-cart-form td.product-price, .woocommerce-cart-form td.product-subtotal,
table.shop_table td.product-price, table.shop_table td.product-subtotal { color: #3f5d3a; font-weight: 700; }
.woocommerce-cart-form td.product-remove a, table.shop_table td.product-remove a { color: #b3492f; font-size: 1.125rem; }
.woocommerce-cart-form td.actions, table.shop_table td.actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; border-bottom: none; }
.woocommerce-cart-form td.actions .button, table.shop_table td.actions .button {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: 'Baloo 2', 'Fredoka', system-ui, sans-serif;
  font-weight: 600; border-radius: 999px; border: 2px solid transparent; padding: 12px 32px; min-height: 44px; cursor: pointer;
  background: #3f5d3a; color: #ffffff;
}
.woocommerce-cart-form td.actions .coupon, table.shop_table td.actions .coupon { display: flex; gap: 8px; }
.woocommerce-cart-form td.actions input#coupon_code, table.shop_table td.actions input#coupon_code {
  border: 2px solid rgba(51,81,47,0.16); border-radius: 8px; padding: 8px 16px;
}

.cart-collaterals { width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: 24px; display: flex; justify-content: flex-end; margin-top: 48px; }
@media (min-width: 1024px) { .cart-collaterals { padding-inline: 48px; } }
.cart-collaterals .cart_totals {
  background: #ffffff; border-radius: 24px; box-shadow: 0 2px 8px rgba(28,43,26,0.08); padding: 32px; width: 100%; max-width: 420px;
}
.cart-collaterals .cart_totals h2 { margin-bottom: 16px; }
.cart-collaterals .cart_totals table { width: 100%; }
.cart-collaterals .cart_totals th { border-bottom: 1px solid rgba(51,81,47,0.16); padding: 12px 0; }
.cart-collaterals .cart_totals td { border-bottom: 1px solid rgba(51,81,47,0.16); padding: 12px 0; text-align: right; }
.cart-collaterals .cart_totals .order-total .woocommerce-Price-amount { font-family: 'Baloo 2', 'Fredoka', system-ui, sans-serif; font-weight: 700; color: #3f5d3a; font-size: 1.125rem; }
.cart-collaterals .cart_totals .wc-proceed-to-checkout { margin-top: 24px; }
.cart-collaterals .cart_totals .wc-proceed-to-checkout .checkout-button {
  display: flex; align-items: center; justify-content: center; gap: 8px; font-family: 'Baloo 2', 'Fredoka', system-ui, sans-serif;
  font-weight: 600; border-radius: 999px; border: 2px solid transparent; padding: 12px 32px; min-height: 44px; cursor: pointer;
  width: 100%; background: #3f5d3a; color: #ffffff;
}
.cart-collaterals .cart_totals .wc-proceed-to-checkout .checkout-button:hover { background: #33512f; }

/* ---- Checkout ---- */
form.checkout, .woocommerce-checkout {
  width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: 24px; padding-block: 64px;
  display: grid; gap: 48px;
}
@media (min-width: 1024px) { form.checkout, .woocommerce-checkout { padding-inline: 48px; padding-block: 96px; grid-template-columns: 1.3fr 1fr; align-items: start; } }
form.checkout #customer_details, .woocommerce-checkout #customer_details { display: contents; }
form.checkout .col-1, form.checkout .col-2, .woocommerce-checkout .col-1, .woocommerce-checkout .col-2 {
  background: #ffffff; border-radius: 24px; box-shadow: 0 2px 8px rgba(28,43,26,0.08); padding: 32px;
}
form.checkout h3, .woocommerce-checkout h3 { margin-bottom: 16px; }
form.checkout #order_review_heading, .woocommerce-checkout #order_review_heading { margin-top: 32px; }
form.checkout #order_review, .woocommerce-checkout #order_review {
  background: #ffffff; border-radius: 24px; box-shadow: 0 2px 8px rgba(28,43,26,0.08); padding: 32px; grid-row: span 2;
}
form.checkout #order_review table.shop_table, .woocommerce-checkout #order_review table.shop_table { max-width: none; }
form.checkout #order_review table.shop_table td, form.checkout #order_review table.shop_table th,
.woocommerce-checkout #order_review table.shop_table td, .woocommerce-checkout #order_review table.shop_table th { padding: 12px 0; }
form.checkout #order_review .place-order, .woocommerce-checkout #order_review .place-order { margin-top: 24px; }
form.checkout #order_review .place-order #place_order, .woocommerce-checkout #order_review .place-order #place_order {
  display: flex; align-items: center; justify-content: center; gap: 8px; font-family: 'Baloo 2', 'Fredoka', system-ui, sans-serif;
  font-weight: 600; border-radius: 999px; border: 2px solid transparent; padding: 12px 32px; min-height: 44px; cursor: pointer;
  width: 100%; background: #3f5d3a; color: #ffffff;
}
form.checkout #order_review .place-order #place_order:hover, .woocommerce-checkout #order_review .place-order #place_order:hover { background: #33512f; }
form.checkout .woocommerce-billing-fields__field-wrapper, form.checkout .woocommerce-shipping-fields__field-wrapper,
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper, .woocommerce-checkout .woocommerce-shipping-fields__field-wrapper {
  display: grid; gap: 16px;
}
@media (min-width: 480px) {
  form.checkout .woocommerce-billing-fields__field-wrapper, form.checkout .woocommerce-shipping-fields__field-wrapper,
  .woocommerce-checkout .woocommerce-billing-fields__field-wrapper, .woocommerce-checkout .woocommerce-shipping-fields__field-wrapper { grid-template-columns: repeat(2, 1fr); }
}
form.checkout .woocommerce-billing-fields__field-wrapper p.form-row-wide,
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper p.form-row-wide { grid-column: 1 / -1; }
form.checkout .woocommerce-additional-fields, .woocommerce-checkout .woocommerce-additional-fields { grid-column: 1 / -1; }

/* =========================================================================
   RESPONSIVE SAFETY NET
   ========================================================================= */
@media (max-width: 767px) {
  .hero__usps { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .hero__figure { aspect-ratio: 3 / 2; }
  .site-branding .site-tagline { display: none; }
  .cart-collaterals { justify-content: stretch; }
  .cart-collaterals .cart_totals { max-width: none; }
}
@media (max-width: 479px) {
  ul.products { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  div.product .woocommerce-tabs ul.tabs { flex-wrap: wrap; }
}
@media print {
  .site-header, .primary-navigation, .site-footer, .menu-toggle { display: none !important; }
}
