/* Guideline MNF — warm walnut with light/dark mode */
:root {
  color-scheme: light dark;

  /* Light mode (default): greige paper, smoked walnut */
  --bg: #eeebe7;
  --bg-elev: #f8f6f3;
  --bg-soft: #e4e0da;
  --bg-panel: rgba(248, 246, 243, 0.86);

  --ink: #1f1b18;
  --ink-soft: #443c36;
  --ink-muted: #756b63;

  --walnut: #7a6353;
  --walnut-deep: #55423a;
  --walnut-dark: #352a25;
  --walnut-glow: #a08b78;
  --wood-light: #cfc5b9;
  --wood-mid: #b8ab9c;

  --wood-img: url("/media/wood-walnut-light.png");
  --wood-wash: url("/media/wood-walnut-light.png");

  --line: rgba(85, 66, 58, 0.13);
  --line-strong: rgba(85, 66, 58, 0.24);
  --paper: rgba(248, 246, 243, 0.94);
  --shadow: 0 24px 70px rgba(53, 42, 37, 0.14);
  --shadow-sm: 0 8px 24px rgba(53, 42, 37, 0.09);

  --radius: 3px;
  --radius-lg: 8px;
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body: "Figtree", system-ui, sans-serif;
  --max: 1220px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

@media (prefers-color-scheme: dark) {
  :root:not(.light) {
    --bg: #161412;
    --bg-elev: #1f1c19;
    --bg-soft: #282420;
    --bg-panel: rgba(31, 28, 25, 0.88);

    --ink: #f1eeea;
    --ink-soft: #d2ccc5;
    --ink-muted: #9f978f;

    --walnut: #98826f;
    --walnut-deep: #64524a;
    --walnut-dark: #3a302a;
    --walnut-glow: #b9a692;
    --wood-light: #5b4f46;
    --wood-mid: #443b34;

    --wood-img: url("/media/wood-walnut-light.png");
    --wood-wash: url("/media/wood-walnut-dark.png");

    --line: rgba(190, 178, 166, 0.12);
    --line-strong: rgba(190, 178, 166, 0.22);
    --paper: rgba(22, 20, 18, 0.94);
    --shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
    --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.3);
  }
}

:root.dark {
  --bg: #161412;
  --bg-elev: #1f1c19;
  --bg-soft: #282420;
  --bg-panel: rgba(31, 28, 25, 0.88);

  --ink: #f1eeea;
  --ink-soft: #d2ccc5;
  --ink-muted: #9f978f;

  --walnut: #98826f;
  --walnut-deep: #64524a;
  --walnut-dark: #3a302a;
  --walnut-glow: #b9a692;
  --wood-light: #5b4f46;
  --wood-mid: #443b34;

  --wood-img: url("/media/wood-walnut-light.png");
  --wood-wash: url("/media/wood-walnut-dark.png");

  --line: rgba(190, 178, 166, 0.12);
  --line-strong: rgba(190, 178, 166, 0.22);
  --paper: rgba(22, 20, 18, 0.94);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
  --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.3);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  background:
    radial-gradient(1300px 900px at 8% -8%, var(--wood-light), transparent 55%),
    radial-gradient(1000px 700px at 105% 8%, var(--wood-mid), transparent 48%),
    radial-gradient(900px 600px at 50% 115%, var(--wood-light), transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 55%, var(--bg) 100%);
  background-attachment: fixed;
  transition: background 0.5s var(--ease), color 0.5s var(--ease);
}

::selection {
  background: rgba(176, 125, 86, 0.25);
  color: var(--ink);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--walnut-glow);
}

.wrap {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 4px;
  background: var(--wood-img) center / cover;
  opacity: 0.9;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.9rem 0;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.18rem;
  text-decoration: none;
  letter-spacing: 0.04em;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1.42rem;
  font-weight: 600;
  color: var(--ink);
  text-transform: lowercase;
}

.brand__mnf {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--walnut);
  text-transform: lowercase;
  transform: translateY(-0.58em);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 500;
}

.nav a {
  text-decoration: none;
  color: var(--ink-muted);
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.35s var(--ease);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1.5px;
  background: var(--walnut);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.nav a[aria-current="page"],
.nav a:hover {
  color: var(--ink);
}

.nav a[aria-current="page"]::after,
.nav a:hover::after {
  transform: scaleX(1);
}

.nav__cta {
  padding: 0.5rem 1rem;
  border: 1px solid var(--line-strong);
  color: var(--ink) !important;
  border-radius: var(--radius);
  background: rgba(139, 94, 60, 0.1);
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), color 0.35s var(--ease);
}

.nav__cta::after { display: none; }

.nav__cta:hover {
  background: var(--walnut-deep);
  border-color: var(--walnut);
  color: var(--bg-elev) !important;
}

.theme-toggle {
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--ink-muted);
  border-radius: 50%;
  width: 2.1rem;
  height: 2.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font: inherit;
  font-size: 1.05rem;
  transition: all 0.3s var(--ease);
}

.theme-toggle:hover {
  border-color: var(--walnut);
  color: var(--walnut);
  background: rgba(139, 94, 60, 0.1);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink-muted);
  padding: 0.45rem 0.75rem;
  font: inherit;
  cursor: pointer;
  border-radius: var(--radius);
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.92rem 1.5rem;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  border-radius: var(--radius);
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--walnut-deep);
  color: #f4f0eb !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  box-shadow: 0 10px 28px rgba(53, 42, 37, 0.22);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--wood-img) center / 260px auto;
  opacity: 0.9;
  transition: opacity 0.3s var(--ease), transform 0.6s var(--ease);
  pointer-events: none;
}

.btn--primary:hover {
  box-shadow: 0 14px 36px rgba(53, 42, 37, 0.3);
}

.btn--primary:hover::before {
  opacity: 0.75;
  transform: scale(1.06);
}

.btn--ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--ink-soft) !important;
}

.btn--ghost:hover {
  border-color: var(--walnut);
  color: var(--walnut-deep) !important;
  background: rgba(139, 94, 60, 0.1);
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: min(96vh, 900px);
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.74) contrast(1.08) saturate(0.95);
  transform: scale(1.02);
  animation: heroDrift 20s var(--ease) infinite alternate;
}

@keyframes heroDrift {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to { transform: scale(1.07) translate3d(-1.2%, -0.9%, 0); }
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--bg) 18%, transparent) 0%, color-mix(in srgb, var(--bg) 55%, transparent) 48%, color-mix(in srgb, var(--bg) 86%, transparent) 100%),
    linear-gradient(90deg, color-mix(in srgb, var(--bg) 58%, transparent), transparent 60%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 6rem 0 4.5rem;
  color: var(--ink);
  max-width: 40rem;
}

.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 5.6rem);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin: 0 0 1.2rem;
  text-shadow: 0 8px 30px rgba(34, 24, 19, 0.35);
}

.hero__brand span {
  display: inline-block;
  font-size: 0.34em;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--walnut);
  vertical-align: super;
  margin-left: 0.15em;
  letter-spacing: 0.14em;
}

.hero__lead {
  margin: 0 0 2rem;
  font-size: 1.18rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--ink) 84%, transparent);
  max-width: 32rem;
  text-shadow: 0 2px 12px rgba(34, 24, 19, 0.15);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero .btn--primary {
  background: var(--ink);
  color: var(--bg-elev) !important;
}

.hero .btn--primary:hover {
  background: var(--walnut-deep);
}

.hero .btn--ghost {
  border-color: color-mix(in srgb, var(--ink) 34%, transparent);
  color: var(--ink) !important;
}

.hero .btn--ghost:hover {
  border-color: var(--walnut);
  background: rgba(139, 94, 60, 0.14);
}

/* —— Sections —— */
.section {
  padding: 5.5rem 0;
}

.section__head {
  max-width: 38rem;
  margin-bottom: 2.75rem;
}

.eyebrow {
  margin: 0 0 0.7rem;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--walnut-deep);
}

.section h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--ink);
}

.section__head p {
  margin: 0;
  color: var(--ink-muted);
}

/* —— Category grid —— */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

.cat-tile {
  position: relative;
  display: block;
  text-decoration: none;
  min-height: 260px;
  overflow: hidden;
  color: var(--bg-elev);
  isolation: isolate;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.cat-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.cat-tile img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.8s var(--ease);
  filter: brightness(0.9) saturate(0.92);
}

.cat-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(34, 24, 19, 0.2) 0%, rgba(34, 24, 19, 0.55) 50%, rgba(34, 24, 19, 0.82) 100%);
  border-radius: var(--radius-lg);
}

.cat-tile:hover img {
  transform: scale(1.06);
  filter: brightness(1) saturate(1);
}

.cat-tile__meta {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 1;
}

.cat-tile__meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.cat-tile__meta span {
  font-size: 0.85rem;
  color: var(--wood-light);
  font-weight: 500;
}

/* —— Product grid —— */
.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.2rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filter {
  border: 1px solid var(--line);
  background: transparent;
  padding: 0.45rem 0.9rem;
  font: inherit;
  font-size: 0.85rem;
  color: var(--ink-muted);
  cursor: pointer;
  text-decoration: none;
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
}

.filter:hover,
.filter.is-active {
  border-color: var(--walnut);
  color: var(--ink);
  background: rgba(139, 94, 60, 0.12);
}

.search {
  min-width: min(280px, 100%);
  padding: 0.65rem 0.95rem;
  border: 1px solid var(--line);
  background: var(--bg-elev);
  color: var(--ink-soft);
  font: inherit;
  border-radius: var(--radius);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.search::placeholder {
  color: var(--ink-muted);
}

.search:focus {
  outline: none;
  border-color: var(--walnut);
  box-shadow: 0 0 0 3px rgba(139, 94, 60, 0.18);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem 1.25rem;
}

.product {
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius-lg);
  background: var(--bg-elev);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}

.product:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--line-strong);
}

.product__media {
  aspect-ratio: 5 / 4;
  background: var(--bg-soft);
  overflow: hidden;
  position: relative;
}

.product__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, color-mix(in srgb, var(--walnut-dark) 22%, transparent) 100%);
  pointer-events: none;
}

.product__body {
  position: relative;
}

.product__body::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: var(--wood-img) center / cover;
  opacity: 0.85;
}

.product__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.6s var(--ease);
  filter: saturate(0.9) brightness(0.96);
}

.product:hover .product__media img {
  transform: scale(1.05);
  filter: saturate(1) brightness(1);
}

.product__body {
  padding: 1.1rem 1.25rem 1.35rem;
}

.product__name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--ink);
}

.product__cat {
  margin: 0.25rem 0 0;
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.product__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--walnut-deep);
  border: 1px solid var(--line);
  padding: 0.32rem 0.65rem;
  border-radius: 100px;
  transition: all 0.3s var(--ease);
}

.product:hover .product__chip {
  border-color: var(--walnut);
  color: var(--walnut);
  background: rgba(139, 94, 60, 0.1);
}

.product__chip::after {
  content: "→";
  transition: transform 0.3s var(--ease);
}

.product:hover .product__chip::after {
  transform: translateX(3px);
}

/* —— Product detail —— */
.pdp {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: start;
  padding: 3.5rem 0 5rem;
}

.pdp__gallery {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.pdp__gallery img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.pdp__title {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.pdp__meta {
  color: var(--ink-muted);
  margin: 0 0 1.5rem;
}

.pdp__text {
  color: var(--ink-soft);
}

.quote-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

/* —— Forms —— */
.panel {
  width: min(460px, 100%);
  margin: 3.5rem auto 4.5rem;
  padding: 2.25rem;
  background: var(--bg-panel);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 6px;
  background: var(--wood-img) center / cover;
}

.panel h1 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--ink);
}

.panel > p {
  margin: 0 0 1.75rem;
  color: var(--ink-muted);
}

.field {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}

.field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.75rem 0.95rem;
  border: 1px solid var(--line);
  background: var(--bg-elev);
  color: var(--ink-soft);
  font: inherit;
  border-radius: var(--radius);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--walnut);
  box-shadow: 0 0 0 3px rgba(139, 94, 60, 0.18);
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.form-note {
  margin: 1.1rem 0 0;
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.form-note code {
  background: rgba(139, 94, 60, 0.13);
  color: var(--walnut-deep);
  padding: 0.15rem 0.35rem;
  border-radius: var(--radius);
}

.tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.4rem;
}

.tabs button {
  flex: 1;
  border: 1px solid var(--line);
  background: transparent;
  padding: 0.65rem;
  font: inherit;
  font-weight: 600;
  color: var(--ink-muted);
  cursor: pointer;
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
}

.tabs button.is-active {
  background: var(--walnut-deep);
  border-color: var(--walnut);
  color: var(--bg-elev);
}

/* —— Contact strip —— */
.contact-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 2.5rem 0;
  border-top: 1px solid var(--line);
}

.contact-strip h3 {
  margin: 0 0 0.45rem;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--walnut-deep);
  font-weight: 700;
}

.contact-strip p,
.contact-strip a {
  margin: 0;
  text-decoration: none;
  color: var(--ink-muted);
  transition: color 0.3s var(--ease);
}

.contact-strip a:hover {
  color: var(--walnut);
}

/* —— Footer —— */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0 3rem;
  color: var(--ink-muted);
  font-size: 0.88rem;
  background: linear-gradient(180deg, transparent 0%, color-mix(in srgb, var(--walnut-dark) 8%, transparent) 100%);
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--wood-wash) center / cover;
  opacity: 0.22;
  pointer-events: none;
}

.site-footer > .wrap {
  position: relative;
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.85rem;
}

.preview-banner {
  background: color-mix(in srgb, var(--walnut-deep) 20%, transparent);
  color: var(--ink-soft);
  text-align: center;
  font-size: 0.82rem;
  padding: 0.55rem 1rem;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.preview-banner a {
  color: var(--walnut);
}

.empty {
  padding: 3.5rem 0;
  color: var(--ink-muted);
}

/* —— Motion —— */
@media (prefers-reduced-motion: reduce) {
  .hero__media img { animation: none; }
  .btn:hover, .cat-tile:hover, .product:hover, .cat-tile:hover img, .product:hover .product__media img { transform: none; }
}

@media (max-width: 980px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .pdp { grid-template-columns: 1fr; gap: 2rem; }
  .contact-strip { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .menu-toggle { display: inline-flex; }
  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 0.85rem;
  }
  .site-header.is-open .nav { display: flex; }
  .site-header__inner { flex-wrap: wrap; }
  .product-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr; }
  .product-grid { gap: 1.35rem; }
}
