:root {
  --ink: #241f1d;
  --ink-2: #40362f;
  --soil: #2f241e;
  --bark: #765132;
  --bark-2: #a8784d;
  --moss: #5e6e4a;
  --sage: #9aaa82;
  --clay: #a76745;
  --sand: #eadcc5;
  --linen: #f7f0e3;
  --paper: #fffaf0;
  --white: #ffffff;
  --line: rgba(36, 31, 29, 0.14);
  --shadow: 0 28px 80px rgba(45, 32, 22, 0.18);
  --shadow-soft: 0 14px 42px rgba(45, 32, 22, 0.12);
  --radius-xl: 42px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --site-pad: clamp(18px, 4vw, 64px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 5%, rgba(154, 170, 130, 0.24), transparent 28rem),
    radial-gradient(circle at 92% 8%, rgba(167, 103, 69, 0.18), transparent 26rem),
    linear-gradient(135deg, #f9f3e8 0%, #efe1ca 45%, #f6efe2 100%);
  min-height: 100vh;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(36,31,29,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36,31,29,.028) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.5), transparent 70%);
  z-index: -1;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select { font: inherit; }
.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 999px;
}
.skip-link:focus { left: 12px; }
.site-shell { overflow: clip; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 12px var(--site-pad);
  background: rgba(247, 240, 227, 0.74);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(36,31,29,.1);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: max-content;
}
.brand img { width: 58px; height: 58px; object-fit: contain; }
.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: 1rem;
}
.brand em {
  display: block;
  color: rgba(36,31,29,.68);
  font-size: .78rem;
  font-style: normal;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 30px);
  flex: 1;
}
.nav a {
  text-decoration: none;
  color: rgba(36,31,29,.72);
  font-size: .94rem;
  letter-spacing: .02em;
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--bark);
  transform: scaleX(0);
  transition: transform .22s ease;
}
.nav a:hover::after { transform: scaleX(1); }
.header-cta, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border: 1px solid rgba(36,31,29,.16);
  border-radius: 999px;
  min-height: 44px;
  padding: 12px 18px;
  background: rgba(255,250,240,.72);
  box-shadow: 0 6px 24px rgba(45,32,22,.08);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.header-cta { min-width: 112px; }
.btn:hover, .header-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn--primary {
  background: var(--soil);
  color: var(--paper);
  border-color: var(--soil);
}
.btn--quiet { background: rgba(255,250,240,.56); }
.btn--small { min-height: 42px; padding: 10px 14px; background: var(--paper); }
.eyebrow {
  margin: 0 0 14px;
  color: var(--clay);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 750;
  font-size: .78rem;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  min-height: calc(100vh - 86px);
  padding: clamp(54px, 8vw, 110px) var(--site-pad) clamp(40px, 6vw, 82px);
}
.hero__copy h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(3.2rem, 8vw, 8.8rem);
  letter-spacing: -.065em;
  line-height: .88;
  max-width: 920px;
}
.hero__lead {
  margin: 28px 0 0;
  max-width: 740px;
  color: rgba(36,31,29,.74);
  font-size: clamp(1.05rem, 1.4vw, 1.32rem);
  line-height: 1.65;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 680px;
  margin: 42px 0 0;
}
.hero__stats div {
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255,250,240,.52);
  border-radius: 22px;
}
.hero__stats dt {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}
.hero__stats dd {
  margin: 8px 0 0;
  color: rgba(36,31,29,.65);
  font-size: .9rem;
}
.hero__art {
  position: relative;
  min-height: clamp(520px, 58vw, 760px);
}
.wood-orbit {
  position: absolute;
  inset: 7% -6% 0 2%;
  border-radius: 48% 52% 44% 56% / 54% 38% 62% 46%;
  background:
    radial-gradient(circle at 48% 40%, rgba(255,250,240,.92) 0 22%, transparent 22.5%),
    repeating-radial-gradient(ellipse at 48% 42%, rgba(118,81,50,.4) 0 3px, transparent 4px 14px),
    linear-gradient(145deg, rgba(118,81,50,.32), rgba(154,170,130,.18));
  box-shadow: inset 0 0 0 1px rgba(36,31,29,.09), var(--shadow);
  transform: rotate(-6deg);
}
.hero-card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: rgba(255,250,240,.86);
  border: 1px solid rgba(36,31,29,.12);
  box-shadow: var(--shadow);
}
.hero-card--main {
  inset: 12% 8% 16% 0;
  border-radius: 46% 54% 42% 58% / 52% 46% 54% 48%;
  padding: 32px;
}
.hero-card--main img { width: 100%; height: 100%; object-fit: contain; filter: saturate(.95) contrast(1.03); }
.hero-card--mark {
  right: 0;
  bottom: 6%;
  width: min(32vw, 220px);
  aspect-ratio: 1;
  border-radius: 36px;
  padding: 26px;
  background: rgba(247,240,227,.9);
}
.hero-card--mark img { width: 100%; height: 100%; object-fit: contain; opacity: .82; }
.hero-note {
  position: absolute;
  left: 6%;
  bottom: 0;
  border-radius: 999px;
  padding: 12px 18px;
  color: var(--paper);
  background: var(--soil);
  box-shadow: var(--shadow-soft);
  transform: rotate(-3deg);
  font-family: Georgia, "Times New Roman", serif;
}
.intro-band {
  margin: 0 var(--site-pad);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(24px, 4vw, 44px) 0;
}
.intro-band p {
  margin: 0 auto;
  max-width: 1080px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 2.5vw, 3rem);
  line-height: 1.22;
  text-align: center;
}
.section { padding: clamp(68px, 9vw, 128px) var(--site-pad); }
.section__heading {
  display: grid;
  gap: 18px;
  max-width: 860px;
  margin-bottom: 34px;
}
.section__heading--wide {
  grid-template-columns: minmax(0, .9fr) minmax(280px, .75fr);
  max-width: none;
  align-items: end;
}
.section__heading h2,
.story-card h2,
.visit__panel h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 5rem);
  line-height: .96;
  letter-spacing: -.045em;
  font-weight: 500;
}
.section__heading p,
.story-card p,
.policy-card p,
.visit__panel p {
  color: rgba(36,31,29,.72);
  line-height: 1.7;
  font-size: 1.04rem;
}
.collection-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}
.collection-card {
  min-height: 370px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: left;
  position: relative;
  border: 1px solid rgba(36,31,29,.12);
  border-radius: 34px;
  overflow: hidden;
  padding: 18px;
  background: var(--paper);
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(45,32,22,.08);
  transition: transform .2s ease, box-shadow .2s ease;
}
.collection-card:nth-child(1), .collection-card:nth-child(2) { grid-column: span 2; }
.collection-card:nth-child(n+3) { grid-column: span 1; }
.collection-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.collection-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(36,31,29,.82), rgba(36,31,29,.08) 62%, transparent);
}
.collection-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.collection-card strong, .collection-card em, .collection-card__count { position: relative; z-index: 1; color: var(--paper); }
.collection-card strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.38rem; line-height: 1.05; margin-top: 12px; }
.collection-card em { font-style: normal; opacity: .82; line-height: 1.4; margin-top: 8px; font-size: .92rem; }
.collection-card__count { align-self: flex-start; border: 1px solid rgba(255,250,240,.38); border-radius: 999px; padding: 8px 11px; font-size: .78rem; background: rgba(255,250,240,.14); backdrop-filter: blur(8px); }
.catalogue { padding-top: clamp(54px, 8vw, 110px); }
.catalogue-tools {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(190px, 240px) auto auto;
  gap: 12px;
  align-items: end;
  margin-bottom: 18px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,250,240,.55);
  box-shadow: 0 8px 30px rgba(45,32,22,.06);
}
.search-box, .select-box { display: grid; gap: 8px; }
.search-box span, .select-box span { font-size: .82rem; color: rgba(36,31,29,.62); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.search-box input, .select-box select {
  width: 100%;
  border: 1px solid rgba(36,31,29,.16);
  border-radius: 999px;
  padding: 13px 16px;
  background: var(--paper);
  color: var(--ink);
  outline: none;
}
.search-box input:focus, .select-box select:focus { border-color: var(--bark); box-shadow: 0 0 0 4px rgba(118,81,50,.12); }
.toggle-row {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper);
  white-space: nowrap;
}
.toggle-row input { accent-color: var(--moss); }
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 20px;
}
.chip {
  border: 1px solid rgba(36,31,29,.15);
  border-radius: 999px;
  padding: 10px 13px;
  background: rgba(255,250,240,.7);
  color: rgba(36,31,29,.76);
  cursor: pointer;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.chip span { opacity: .65; margin-left: 4px; }
.chip:hover { transform: translateY(-1px); }
.chip.is-active { background: var(--soil); color: var(--paper); border-color: var(--soil); }
.result-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0 24px;
  color: rgba(36,31,29,.62);
  font-size: .94rem;
}
.dot { width: 5px; height: 5px; border-radius: 999px; background: rgba(36,31,29,.32); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.product-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  border: 1px solid rgba(36,31,29,.12);
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255,250,240,.78);
  box-shadow: 0 10px 32px rgba(45,32,22,.08);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); border-color: rgba(118,81,50,.25); }
.product-card__image {
  height: 250px;
  margin: 10px 10px 0;
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 35%, rgba(255,250,240,.98), rgba(234,220,197,.58) 58%, rgba(154,170,130,.18)),
    linear-gradient(135deg, rgba(118,81,50,.08), rgba(255,250,240,.62));
}
.product-card__image img { width: 100%; height: 100%; object-fit: contain; padding: 12px; mix-blend-mode: multiply; }
.product-card__body { padding: 18px; display: flex; flex-direction: column; gap: 12px; }
.product-card__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.product-card__category {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(94,110,74,.12);
  color: #4d5e3b;
  font-weight: 750;
  font-size: .72rem;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.product-card__item { color: rgba(36,31,29,.52); font-size: .84rem; white-space: nowrap; }
.product-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: -.02em;
}
.product-card__desc { margin: 0; color: rgba(36,31,29,.66); line-height: 1.5; font-size: .94rem; }
.product-card__meta { display: grid; gap: 6px; color: rgba(36,31,29,.64); font-size: .9rem; }
.product-card__meta span { display: inline-flex; gap: 6px; }
.product-card__footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 6px; }
.price { font-family: Georgia, "Times New Roman", serif; font-size: 1.48rem; color: var(--soil); white-space: nowrap; }
.card-button {
  border: 1px solid rgba(36,31,29,.14);
  border-radius: 999px;
  padding: 10px 12px;
  background: var(--soil);
  color: var(--paper);
  cursor: pointer;
}
.card-button:hover { background: #4c382b; }
.tag-row { display: flex; flex-wrap: wrap; gap: 7px; }
.tag {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(36,31,29,.12);
  border-radius: 999px;
  padding: 6px 9px;
  color: rgba(36,31,29,.66);
  background: rgba(255,250,240,.58);
  font-size: .8rem;
}
.empty-state, .noscript-block {
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  background: rgba(255,250,240,.75);
}
.story {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .55fr);
  gap: 18px;
  align-items: stretch;
}
.story-card, .quote-card, .visit__panel, .policy-card, .steps article {
  border: 1px solid rgba(36,31,29,.12);
  border-radius: var(--radius-xl);
  background: rgba(255,250,240,.68);
  box-shadow: 0 10px 36px rgba(45,32,22,.07);
}
.story-card { padding: clamp(30px, 5vw, 62px); }
.quote-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background: var(--soil);
  color: var(--paper);
}
.quote-card img { width: 138px; margin: 0 auto 18px; filter: invert(1) sepia(.08); opacity: .86; }
.quote-card blockquote { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.4rem, 2vw, 2.2rem); line-height: 1.22; }
.quote-card p { color: rgba(255,250,240,.7); margin: 18px 0 0; }
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.steps article { padding: 26px; }
.steps span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--clay);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}
.steps h3 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: 1.5rem; }
.steps p { color: rgba(36,31,29,.66); line-height: 1.6; }
.visit {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .68fr);
  gap: 18px;
}
.visit__panel { padding: clamp(30px, 5vw, 58px); background: linear-gradient(135deg, rgba(47,36,30,.96), rgba(76,56,43,.92)); color: var(--paper); }
.visit__panel p, .visit__panel .eyebrow { color: rgba(255,250,240,.78); }
.visit__panel .btn--primary { background: var(--paper); color: var(--soil); border-color: var(--paper); }
.visit__panel .btn--quiet { color: var(--paper); background: rgba(255,250,240,.1); border-color: rgba(255,250,240,.22); }
.visit__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.policy-card { padding: 30px; }
.policy-card h3 { margin: 0 0 8px; font-family: Georgia, "Times New Roman", serif; font-size: 1.35rem; }
.site-footer {
  margin: 0 var(--site-pad) 28px;
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  color: rgba(36,31,29,.64);
}
.site-footer img { width: 86px; height: 86px; object-fit: contain; }
.fine-print { font-size: .86rem; }
.product-dialog {
  width: min(1120px, calc(100vw - 28px));
  border: 1px solid rgba(36,31,29,.16);
  border-radius: 34px;
  padding: 0;
  background: var(--linen);
  box-shadow: 0 35px 120px rgba(0,0,0,.34);
  color: var(--ink);
}
.product-dialog::backdrop { background: rgba(36,31,29,.58); backdrop-filter: blur(8px); }
.dialog-close {
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(36,31,29,.14);
  border-radius: 999px;
  background: rgba(255,250,240,.9);
  cursor: pointer;
  font-size: 1.5rem;
}
.dialog-grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(320px, .85fr); gap: 0; }
.dialog-image {
  min-height: min(65vh, 620px);
  background: radial-gradient(circle at 50% 38%, rgba(255,250,240,.96), rgba(234,220,197,.58) 60%, rgba(94,110,74,.16));
  border-radius: 34px 0 0 34px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.dialog-image img { width: 100%; height: 100%; object-fit: contain; max-height: 620px; padding: 28px; mix-blend-mode: multiply; }
.dialog-thumbs { display: flex; flex-wrap: wrap; gap: 8px; padding: 12px 16px 16px; }
.dialog-thumbs button { width: 58px; height: 58px; border-radius: 13px; border: 1px solid rgba(36,31,29,.14); background: var(--paper); padding: 2px; cursor: pointer; }
.dialog-thumbs button.is-active { border-color: var(--soil); box-shadow: 0 0 0 3px rgba(118,81,50,.12); }
.dialog-thumbs img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; }
.dialog-copy { padding: clamp(28px, 5vw, 56px); }
.dialog-copy h2 { margin: 0 0 14px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2rem, 4vw, 4rem); line-height: .98; letter-spacing: -.045em; font-weight: 500; }
.dialog-copy p { color: rgba(36,31,29,.7); line-height: 1.65; }
.detail-list { display: grid; grid-template-columns: 130px 1fr; gap: 10px 18px; margin: 24px 0; }
.detail-list dt { color: rgba(36,31,29,.5); }
.detail-list dd { margin: 0; font-weight: 700; }
.dialog-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.dialog-links a { text-decoration: none; }
.noscript-table { width: 100%; border-collapse: collapse; margin-top: 16px; }
.noscript-table th, .noscript-table td { border: 1px solid var(--line); padding: 9px; text-align: left; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .58s ease, transform .58s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1180px) {
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .collection-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .collection-card:nth-child(n) { grid-column: span 1; }
}
@media (max-width: 920px) {
  .site-header { flex-wrap: wrap; }
  .nav { order: 3; width: 100%; justify-content: flex-start; overflow-x: auto; padding-bottom: 4px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__art { min-height: 520px; }
  .section__heading--wide, .story, .visit, .dialog-grid { grid-template-columns: 1fr; }
  .dialog-image { border-radius: 34px 34px 0 0; min-height: 440px; }
  .catalogue-tools { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-footer { flex-direction: column; text-align: center; }
}
@media (max-width: 640px) {
  :root { --site-pad: 16px; }
  .header-cta { display: none; }
  .brand img { width: 48px; height: 48px; }
  .hero__copy h1 { font-size: clamp(3rem, 17vw, 5.2rem); }
  .hero__stats { grid-template-columns: 1fr; }
  .hero__art { min-height: 390px; }
  .hero-card--main { inset: 8% 0 18% 0; padding: 18px; }
  .hero-card--mark { width: 140px; padding: 18px; }
  .collection-grid, .product-grid { grid-template-columns: 1fr; }
  .catalogue-tools { grid-template-columns: 1fr; }
  .product-card__image { height: 230px; }
  .section { padding-top: 64px; padding-bottom: 64px; }
  .detail-list { grid-template-columns: 1fr; gap: 6px; }
}
@media print {
  body { background: white; color: #111; }
  body::before, .site-header, .hero, .intro-band, .collections, .story, .buying, .visit, .site-footer, .catalogue-tools, .chips, .product-card__image, .card-button, .product-dialog { display: none !important; }
  .section { padding: 0; }
  .section__heading p { display: none; }
  .product-grid { display: block; }
  .product-card { break-inside: avoid; box-shadow: none; border: 1px solid #ddd; margin: 0 0 8px; border-radius: 0; }
  .product-card__body { padding: 8px; }
  .product-card h3 { font-size: 12pt; }
  .product-card__desc, .tag-row { display: none; }
}
