:root {
  --ink: #20211e;
  --ink-soft: #50524a;
  --paper: #f5f2ea;
  --paper-deep: #e9e4d8;
  --white: #fffdf8;
  --forest: #1f281f;
  --forest-deep: #151b15;
  --moss: #66705a;
  --sage: #9ca28c;
  --gold: #a47d3c;
  --violet: #78627e;
  --ocean: #415962;
  --line: rgba(32, 33, 30, 0.18);
  --line-light: rgba(255, 253, 248, 0.22);
  --serif: Georgia, "Times New Roman", "Noto Serif", serif;
  --sans: "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --container: 1440px;
  --gutter: clamp(20px, 4vw, 72px);
  --section-space: clamp(84px, 10vw, 156px);
  --shadow: 0 24px 60px rgba(25, 28, 23, 0.13);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 140px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.is-locked {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3,
dl,
dd,
figure {
  margin: 0;
}

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

::selection {
  color: var(--white);
  background: var(--violet);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

.container {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: var(--section-space);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--forest-deep);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  margin-bottom: 18px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.3;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.06;
}

h1 {
  font-size: clamp(3.2rem, 6.6vw, 7.1rem);
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(2.35rem, 4.4vw, 4.9rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: 1.35rem;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 13px 24px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-align: center;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button-light {
  color: var(--forest-deep);
  background: var(--white);
}

.button-light:hover {
  color: var(--white);
  background: var(--gold);
}

.button-dark {
  color: var(--white);
  background: var(--forest-deep);
}

.button-dark:hover {
  background: var(--gold);
}

.button-outline-light {
  color: var(--white);
  border-color: var(--line-light);
}

.button-outline-light:hover {
  color: var(--forest-deep);
  background: var(--white);
  border-color: var(--white);
}

.button-full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.text-link-light {
  color: var(--white);
}

.section-heading {
  margin-bottom: clamp(42px, 5vw, 74px);
}

.split-heading,
.product-heading,
.worlds-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.55fr);
  align-items: end;
  gap: 50px;
}

.split-heading > p,
.worlds-heading > p {
  max-width: 500px;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.announcement {
  position: relative;
  z-index: 102;
  min-height: 32px;
  display: grid;
  place-items: center;
  padding: 6px var(--gutter);
  color: var(--white);
  background: var(--forest-deep);
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-align: center;
  text-transform: uppercase;
}

.announcement a {
  border-bottom: 1px solid currentColor;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(245, 242, 234, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.utility-bar {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.utility-bar nav {
  display: flex;
  gap: 26px;
}

.utility-bar a:hover,
.primary-nav a:hover,
.header-action:hover {
  color: var(--gold);
}

.header-main {
  min-height: 96px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.brand-logo {
  justify-self: center;
}

.brand-logo-frame,
.footer-logo-frame {
  position: relative;
  display: block;
  overflow: hidden;
}

.brand-logo-frame {
  width: 184px;
  height: 70px;
}

.brand-logo-frame img {
  width: 184px;
  height: 70px;
  object-fit: contain;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

.header-action,
.icon-button,
.wishlist-button,
.filter-pill {
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.header-action {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-action svg {
  width: 20px;
  height: 20px;
}

.cart-count {
  min-width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--forest-deep);
  font-size: 0.63rem;
  letter-spacing: 0;
}

.primary-nav {
  border-top: 1px solid var(--line);
}

.nav-list {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 4vw, 66px);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-button,
.mobile-search {
  display: none;
}

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 18px var(--gutter) 28px;
  background: var(--paper);
  border-top: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.mobile-menu a {
  display: block;
  border-bottom: 1px solid var(--line);
  padding: 13px 0;
  font-family: var(--serif);
  font-size: 1.25rem;
}

.hero {
  min-height: min(820px, calc(100vh - 174px));
  display: grid;
  grid-template-columns: minmax(420px, 42%) minmax(0, 58%);
  color: var(--white);
  background: var(--forest-deep);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 8vw, 132px) clamp(42px, 6vw, 110px);
  background:
    radial-gradient(circle at 0 100%, rgba(164, 125, 60, 0.22), transparent 36%),
    linear-gradient(145deg, #202b20 0%, #141a14 78%);
}

.hero-copy .eyebrow {
  color: #c9c2ad;
}

.hero-copy h1 {
  max-width: 800px;
}

.hero-lede {
  max-width: 570px;
  margin-top: 34px;
  color: rgba(255, 253, 248, 0.76);
  font-family: var(--serif);
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  line-height: 1.6;
}

.button-row {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 42px;
}

.hero-note {
  max-width: 470px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  margin-top: auto;
  padding-top: 52px;
  color: rgba(255, 253, 248, 0.65);
  font-size: 0.82rem;
}

.hero-note strong {
  color: var(--white);
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
}

.hero-note-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.68rem;
}

.hero-visual {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: #d5cdc0;
}

.hero-image-main,
.hero-image-main img {
  width: 100%;
  height: 100%;
}

.hero-image-main img {
  object-fit: cover;
  object-position: center 25%;
}

.hero-image-inset {
  position: absolute;
  right: clamp(22px, 4vw, 70px);
  bottom: clamp(22px, 4vw, 66px);
  width: clamp(180px, 19vw, 305px);
  color: var(--ink);
  background: var(--paper);
  padding: 10px;
  box-shadow: var(--shadow);
}

.hero-image-inset img {
  aspect-ratio: 1;
  object-fit: cover;
}

.hero-image-inset figcaption {
  display: flex;
  justify-content: space-between;
  padding: 10px 3px 2px;
  font-size: 0.62rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-image-inset figcaption span {
  color: var(--ink-soft);
}

.category-intro {
  overflow: hidden;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.category-card {
  position: relative;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px;
  overflow: hidden;
  transition: background 250ms ease, color 250ms ease;
}

.category-card::after {
  content: "";
  position: absolute;
  right: -75px;
  bottom: -75px;
  width: 220px;
  height: 220px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.1;
}

.category-card svg {
  width: 120px;
  height: 120px;
  margin: 42px auto 34px;
  stroke-width: 1.15;
}

.category-card h3 {
  font-size: 1.8rem;
}

.category-card p {
  max-width: 240px;
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.category-index {
  font-size: 0.67rem;
  letter-spacing: 0.1em;
}

.card-link {
  margin-top: auto;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.category-card:hover {
  color: var(--white);
  background: var(--forest);
}

.category-card:hover p {
  color: rgba(255, 253, 248, 0.72);
}

.category-card-home { background: #eae3d6; }
.category-card-garden { background: #dde0d2; }
.category-card-seasonal { background: #e2d9dc; }

.products-section {
  background: var(--white);
}

.product-heading {
  grid-template-columns: minmax(0, 1fr) auto;
}

.filter-pills {
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-pill {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 15px;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.filter-pill:hover,
.filter-pill.is-active {
  color: var(--white);
  background: var(--forest-deep);
  border-color: var(--forest-deep);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 3vw, 52px) clamp(16px, 2vw, 32px);
}

.product-card[hidden] {
  display: none;
}

.product-media {
  position: relative;
  overflow: hidden;
  background: #eee9e0;
}

.product-media > img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.65, 0.35, 1);
}

.product-card:hover .product-media > img {
  transform: scale(1.035);
}

.product-badge {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  padding: 6px 9px;
  color: var(--forest-deep);
  background: rgba(255, 253, 248, 0.88);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.wishlist-button {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.86);
  backdrop-filter: blur(6px);
}

.wishlist-button svg {
  width: 18px;
  height: 18px;
}

.wishlist-button[aria-pressed="true"] svg {
  fill: var(--violet);
  stroke: var(--violet);
}

.quick-add {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 16px;
  left: 16px;
  min-height: 46px;
  border: 0;
  color: var(--white);
  background: rgba(21, 27, 21, 0.94);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  cursor: pointer;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

.product-card:hover .quick-add,
.quick-add:focus-visible {
  opacity: 1;
  transform: translateY(0);
}

.quick-add:hover {
  background: var(--gold);
}

.product-info {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5px 18px;
  padding-top: 18px;
}

.product-kicker {
  grid-column: 1 / -1;
  color: var(--ink-soft);
  font-size: 0.64rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.product-info h3 {
  font-family: var(--sans);
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.4;
}

.price {
  font-size: 0.84rem;
  white-space: nowrap;
}

.prototype-note {
  margin-top: 42px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  text-align: center;
}

.seasonal-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #d9d1c4;
}

.seasonal-image {
  min-height: 720px;
}

.seasonal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 23%;
}

.seasonal-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(70px, 8vw, 140px);
}

.seasonal-copy > p:not(.eyebrow) {
  max-width: 540px;
  margin: 30px 0 38px;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 1.1rem;
}

.seasonal-details {
  width: 100%;
  margin-top: 54px;
  border-top: 1px solid var(--line);
}

.seasonal-details div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  font-size: 0.78rem;
}

.seasonal-details dt {
  color: var(--ink-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.worlds {
  color: var(--white);
  background: var(--forest-deep);
}

.worlds .eyebrow,
.worlds-heading > p {
  color: rgba(255, 253, 248, 0.64);
}

.world-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.world-card {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  padding: 26px;
  overflow: hidden;
}

.world-card::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 50%;
  width: 100px;
  height: 100px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.35;
  transform: translateX(-50%);
}

.world-card::after {
  content: "";
  position: absolute;
  top: 76px;
  left: 50%;
  width: 110px;
  height: 1px;
  background: currentColor;
  opacity: 0.38;
  transform: translateX(-50%) rotate(-18deg);
}

.world-card > span {
  position: absolute;
  top: 18px;
  left: 18px;
  font-size: 0.64rem;
  letter-spacing: 0.08em;
}

.world-card h3 {
  font-size: 1.75rem;
}

.world-card p {
  margin-top: 10px;
  color: rgba(255, 253, 248, 0.62);
  font-size: 0.78rem;
}

.world-stars { background: linear-gradient(165deg, #20251f, #333b32); }
.world-mountains { background: linear-gradient(165deg, #30352f, #4a5148); }
.world-ocean { background: linear-gradient(165deg, #24363b, #405c65); }
.world-wilds { background: linear-gradient(165deg, #48513d, #69735b); }
.world-human { background: linear-gradient(165deg, #4a3d34, #806b59); }

.story {
  background: var(--paper-deep);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.8fr);
  align-items: center;
  gap: clamp(60px, 9vw, 150px);
}

.story-collage {
  position: relative;
  min-height: 650px;
}

.story-collage img {
  position: absolute;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.story-image-one {
  top: 0;
  left: 0;
  width: 68%;
  aspect-ratio: 0.88;
}

.story-image-two {
  right: 0;
  bottom: 0;
  width: 47%;
  aspect-ratio: 0.88;
}

.story-stamp {
  position: absolute;
  right: 6%;
  top: 3%;
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 0.9rem;
  line-height: 1.35;
  text-align: center;
  transform: rotate(8deg);
}

.story-copy {
  max-width: 620px;
}

.story-lede {
  margin: 34px 0 20px;
  font-family: var(--serif);
  font-size: 1.35rem;
}

.story-copy > p:not(.eyebrow):not(.story-lede) {
  margin-bottom: 18px;
  color: var(--ink-soft);
}

.story-copy .text-link {
  margin-top: 20px;
}

.custom-callout {
  padding-block: clamp(64px, 7vw, 105px);
  color: var(--white);
  background: var(--violet);
}

.custom-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.65fr) auto;
  align-items: center;
  gap: clamp(30px, 5vw, 82px);
}

.custom-inner h2 {
  max-width: 720px;
  font-size: clamp(2.2rem, 3.5vw, 4rem);
}

.custom-inner > p {
  color: rgba(255, 253, 248, 0.75);
}

.journal-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.78fr 0.78fr;
  gap: 22px;
}

.journal-card {
  min-height: 440px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  padding: 32px;
}

.journal-lead {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 30px;
  padding: 14px;
}

.journal-lead img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
}

.journal-lead > div {
  align-self: end;
  padding: 26px 20px 26px 0;
}

.article-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  color: var(--ink-soft);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journal-card h3 {
  margin-bottom: 18px;
  font-size: clamp(1.65rem, 2.4vw, 2.55rem);
}

.journal-card h3 a:hover {
  color: var(--gold);
}

.journal-card > p:not(.article-meta):not(.article-number),
.journal-lead > div > p:last-child {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.article-number {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin-bottom: auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: var(--serif);
}

.trust-strip {
  padding-block: 46px;
  border-block: 1px solid var(--line);
  background: var(--paper-deep);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  border-right: 1px solid var(--line);
  padding: 0 24px;
}

.trust-grid > div:first-child {
  padding-left: 0;
}

.trust-grid > div:last-child {
  border-right: 0;
  padding-right: 0;
}

.trust-grid span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.3rem;
}

.trust-grid p {
  color: var(--ink-soft);
  font-size: 0.75rem;
}

.trust-grid strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.faq {
  display: grid;
  grid-template-columns: minmax(280px, 0.6fr) minmax(0, 1fr);
  gap: clamp(60px, 10vw, 170px);
}

.faq-intro {
  position: sticky;
  top: 190px;
  align-self: start;
}

.faq-intro > p:last-child {
  max-width: 360px;
  margin-top: 24px;
  color: var(--ink-soft);
}

.accordion details {
  border-top: 1px solid var(--line);
}

.accordion details:last-child {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  position: relative;
  padding: 26px 50px 26px 0;
  font-family: var(--serif);
  font-size: 1.35rem;
  cursor: pointer;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::before,
.accordion summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 5px;
  width: 16px;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease;
}

.accordion summary::after {
  transform: rotate(90deg);
}

.accordion details[open] summary::after {
  transform: rotate(0);
}

.accordion details p {
  max-width: 760px;
  padding: 0 60px 28px 0;
  color: var(--ink-soft);
}

.newsletter {
  padding-block: clamp(70px, 8vw, 120px);
  color: var(--white);
  background: var(--ocean);
}

.newsletter-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.7fr);
  align-items: end;
  gap: clamp(60px, 10vw, 170px);
}

.newsletter h2 {
  max-width: 850px;
  font-size: clamp(2.2rem, 4vw, 4.3rem);
}

.newsletter-form label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.email-field {
  display: grid;
  grid-template-columns: 1fr auto;
  border-bottom: 1px solid rgba(255, 253, 248, 0.6);
}

.email-field input {
  min-width: 0;
  border: 0;
  padding: 16px 0;
  color: var(--white);
  background: transparent;
  outline: 0;
}

.email-field input::placeholder {
  color: rgba(255, 253, 248, 0.58);
}

.email-field button {
  border: 0;
  padding: 0 5px 0 20px;
  color: var(--white);
  background: transparent;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.form-note,
.form-status {
  margin-top: 12px;
  color: rgba(255, 253, 248, 0.62);
  font-size: 0.68rem;
}

.site-footer {
  color: var(--white);
  background: var(--forest-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 0.6fr);
  gap: 48px;
  padding-block: 72px;
}

.footer-brand p {
  max-width: 280px;
  color: rgba(255, 253, 248, 0.55);
  font-family: var(--serif);
}

.footer-logo-frame {
  width: 188px;
  height: 76px;
  margin: 0 0 18px;
}

.footer-logo-frame img {
  width: 188px;
  height: 76px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-grid h2 {
  margin-bottom: 20px;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) a {
  display: block;
  width: fit-content;
  margin-bottom: 10px;
  color: rgba(255, 253, 248, 0.63);
  font-size: 0.78rem;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line-light);
  padding-block: 22px;
  color: rgba(255, 253, 248, 0.45);
  font-size: 0.67rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.overlay {
  position: fixed;
  z-index: 300;
  inset: 0;
  background: rgba(17, 21, 17, 0.58);
  backdrop-filter: blur(2px);
}

.cart-drawer {
  position: fixed;
  z-index: 320;
  top: 0;
  right: 0;
  width: min(470px, 100%);
  height: 100dvh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  color: var(--ink);
  background: var(--white);
  box-shadow: -30px 0 70px rgba(17, 21, 17, 0.2);
  transform: translateX(105%);
  transition: transform 260ms cubic-bezier(0.2, 0.7, 0.3, 1);
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.drawer-header {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 0 26px;
}

.drawer-header h2,
.search-dialog h2,
.checkout-modal h2 {
  font-size: 1.7rem;
}

.icon-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
}

.icon-button svg {
  width: 22px;
  height: 22px;
}

@media (min-width: 921px) {
  .menu-button {
    display: none;
  }
}

.cart-items {
  overflow-y: auto;
  padding: 24px;
}

.empty-cart {
  height: 100%;
  display: grid;
  place-content: center;
  gap: 24px;
  color: var(--ink-soft);
  text-align: center;
}

.empty-cart .text-link {
  margin-inline: auto;
}

.cart-line {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding: 0 0 20px;
  margin-bottom: 20px;
}

.cart-line img {
  width: 90px;
  height: 110px;
  object-fit: cover;
}

.cart-line h3 {
  font-family: var(--sans);
  font-size: 0.83rem;
  font-weight: 500;
  line-height: 1.4;
}

.cart-line .line-price {
  margin-top: 5px;
  font-size: 0.77rem;
}

.quantity-controls {
  width: fit-content;
  display: grid;
  grid-template-columns: 32px 34px 32px;
  align-items: center;
  margin-top: 16px;
  border: 1px solid var(--line);
}

.quantity-controls button {
  height: 32px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.quantity-controls span {
  text-align: center;
  font-size: 0.75rem;
}

.remove-line {
  align-self: start;
  border: 0;
  padding: 0;
  color: var(--ink-soft);
  background: transparent;
  font-size: 0.65rem;
  text-decoration: underline;
  cursor: pointer;
}

.drawer-footer {
  border-top: 1px solid var(--line);
  padding: 22px 26px 28px;
}

.subtotal {
  display: flex;
  justify-content: space-between;
  margin-bottom: 7px;
  font-family: var(--serif);
  font-size: 1.15rem;
}

.drawer-footer > p {
  margin-bottom: 18px;
  color: var(--ink-soft);
  font-size: 0.68rem;
}

.search-dialog,
.checkout-modal {
  position: fixed;
  z-index: 330;
  top: 50%;
  left: 50%;
  width: min(720px, calc(100% - 36px));
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -46%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.search-dialog.is-open,
.checkout-modal.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%);
}

.search-dialog-header {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 0 30px;
}

.search-dialog form {
  padding: 36px 30px 42px;
}

.search-dialog label {
  display: block;
  margin-bottom: 12px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.search-input-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  border-bottom: 1px solid var(--ink);
}

.search-input-wrap input {
  min-width: 0;
  border: 0;
  padding: 12px 0;
  background: transparent;
  font-family: var(--serif);
  font-size: 1.5rem;
  outline: 0;
}

.search-input-wrap button {
  border: 0;
  padding-left: 18px;
  background: transparent;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.search-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.search-suggestions button {
  border: 0;
  padding: 0;
  color: var(--ink);
  background: transparent;
  text-decoration: underline;
  cursor: pointer;
}

.search-dialog .form-status {
  color: var(--ink-soft);
}

.checkout-modal {
  padding: clamp(34px, 5vw, 70px);
}

.checkout-modal .modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
}

.checkout-modal h2 {
  max-width: 560px;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.checkout-modal > p:not(.eyebrow) {
  max-width: 570px;
  margin: 24px 0 32px;
  color: var(--ink-soft);
}

.toast {
  position: fixed;
  z-index: 400;
  right: 24px;
  bottom: 24px;
  max-width: min(360px, calc(100% - 48px));
  padding: 13px 18px;
  color: var(--white);
  background: var(--forest-deep);
  box-shadow: var(--shadow);
  font-size: 0.78rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 46% 54%;
  }

  .hero-copy {
    padding-inline: clamp(34px, 5vw, 70px);
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-card {
    min-height: 390px;
  }

  .world-grid {
    grid-template-columns: repeat(5, 240px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .world-card {
    scroll-snap-align: start;
  }

  .custom-inner {
    grid-template-columns: 1fr 1fr;
  }

  .custom-inner .button {
    grid-column: 2;
    justify-self: start;
  }

  .journal-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .journal-card:last-child {
    grid-column: 1 / -1;
    min-height: 280px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
  }

  .trust-grid > div:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 920px) {
  :root {
    --section-space: 90px;
  }

  html {
    scroll-padding-top: 102px;
  }

  .announcement {
    min-height: 30px;
    font-size: 0.6rem;
  }

  .utility-bar,
  .primary-nav,
  .desktop-search,
  .account-link {
    display: none;
  }

  .header-main {
    min-height: 76px;
    grid-template-columns: 1fr auto 1fr;
    padding-inline: 16px;
  }

  .menu-button,
  .mobile-search {
    display: grid;
  }

  .menu-button {
    justify-self: start;
  }

  .brand-logo-frame {
    width: 128px;
    height: 58px;
  }

  .brand-logo-frame img {
    width: 128px;
    height: 58px;
  }

  .header-actions {
    gap: 10px;
  }

  .header-action span:not(.cart-count) {
    display: none;
  }

  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 620px;
    padding: 84px var(--gutter) 70px;
  }

  .hero-visual {
    min-height: min(760px, 90vw);
  }

  .split-heading,
  .worlds-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-add {
    opacity: 1;
    transform: none;
  }

  .seasonal-feature {
    grid-template-columns: 1fr;
  }

  .seasonal-image {
    min-height: min(720px, 110vw);
  }

  .seasonal-copy {
    padding: 84px var(--gutter);
  }

  .story-grid {
    grid-template-columns: 1fr;
  }

  .story-collage {
    min-height: min(680px, 100vw);
  }

  .custom-inner {
    grid-template-columns: 1fr;
  }

  .custom-inner .button {
    grid-column: 1;
  }

  .journal-grid {
    grid-template-columns: 1fr;
  }

  .journal-card:last-child {
    grid-column: auto;
  }

  .faq {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .faq-intro {
    position: static;
  }

  .newsletter-inner {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 50px;
  }

  .footer-grid {
    grid-template-columns: 1.3fr repeat(3, 0.7fr);
    gap: 24px;
  }
}

@media (max-width: 680px) {
  :root {
    --gutter: 18px;
    --section-space: 72px;
  }

  body {
    font-size: 15px;
  }

  h1 {
    font-size: clamp(3.1rem, 15vw, 4.8rem);
  }

  h2 {
    font-size: clamp(2.25rem, 10vw, 3.5rem);
  }

  .announcement p {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .hero-copy {
    min-height: 600px;
    padding-top: 70px;
  }

  .hero-lede {
    margin-top: 26px;
  }

  .button-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    margin-top: 34px;
  }

  .hero-note {
    margin-top: 30px;
    padding-top: 30px;
  }

  .hero-visual {
    min-height: 118vw;
  }

  .hero-image-inset {
    width: 42vw;
  }

  .hero-image-inset figcaption {
    display: none;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    min-height: 350px;
  }

  .category-card svg {
    margin-block: 28px;
  }

  .product-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .filter-pills {
    overflow-x: auto;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 10px;
  }

  .product-media .product-badge {
    top: 8px;
    left: 8px;
  }

  .wishlist-button {
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
  }

  .quick-add {
    right: 8px;
    bottom: 8px;
    left: 8px;
    min-height: 40px;
    font-size: 0.6rem;
  }

  .product-info {
    display: block;
    padding-top: 13px;
  }

  .product-info h3 {
    margin: 5px 0;
    font-size: 0.82rem;
  }

  .product-kicker {
    font-size: 0.56rem;
  }

  .price {
    font-size: 0.76rem;
  }

  .seasonal-image {
    min-height: 118vw;
  }

  .seasonal-copy {
    padding-block: 72px;
  }

  .seasonal-details div {
    grid-template-columns: 80px 1fr;
  }

  .world-grid {
    grid-template-columns: repeat(5, 78vw);
  }

  .world-card {
    min-height: 340px;
  }

  .story-collage {
    min-height: 112vw;
  }

  .story-stamp {
    width: 112px;
    height: 112px;
    font-size: 0.72rem;
  }

  .journal-lead {
    display: block;
  }

  .journal-lead img {
    min-height: 0;
    aspect-ratio: 1;
  }

  .journal-lead > div {
    padding: 28px 12px 20px;
  }

  .journal-card {
    min-height: 360px;
    padding: 24px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    row-gap: 0;
  }

  .trust-grid > div,
  .trust-grid > div:first-child,
  .trust-grid > div:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 22px 0;
  }

  .trust-grid > div:last-child {
    border-bottom: 0;
  }

  .accordion summary {
    font-size: 1.18rem;
  }

  .accordion details p {
    padding-right: 20px;
  }

  .newsletter-inner {
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .search-dialog form {
    padding-inline: 20px;
  }

  .search-input-wrap input {
    font-size: 1.2rem;
  }

  .toast {
    right: 18px;
    bottom: 18px;
    max-width: calc(100% - 36px);
  }
}

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

/* WordPress integration */
.nav-list,
.mobile-menu ul,
.site-footer ul,
.comment-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-nav .menu-item-has-children {
  position: relative;
}

.primary-nav .sub-menu {
  position: absolute;
  z-index: 30;
  top: 100%;
  left: 50%;
  min-width: 13rem;
  margin: 0;
  padding: 0.7rem;
  list-style: none;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 18px 35px rgba(30, 35, 27, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 0.5rem);
  transition: 180ms ease;
}

.primary-nav .menu-item-has-children:hover > .sub-menu,
.primary-nav .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.primary-nav .sub-menu a {
  display: block;
  padding: 0.65rem 0.8rem;
  white-space: nowrap;
}

.custom-logo-link,
.brand-logo {
  display: block;
}

.custom-logo {
  display: block;
  width: min(172px, 32vw);
  height: auto;
}

body.admin-bar .site-header {
  top: 32px;
}

.product-card h3 a,
.post-card h2 a,
.journal-card h3 a {
  color: inherit;
  text-decoration: none;
}

.product-media > a:first-of-type {
  display: block;
  height: 100%;
}

.product-media > a:first-of-type img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-media > .button,
.product-media > .added_to_cart {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 3;
  width: auto;
  min-height: 46px;
  padding: 0.85rem 1rem;
  color: var(--ink);
  background: rgba(249, 247, 240, 0.94);
  border: 0;
  text-align: center;
  text-decoration: none;
  opacity: 0;
  transform: translateY(10px);
  transition: 180ms ease;
}

.product-media:hover > .button,
.product-media:focus-within > .button,
.product-media:hover > .added_to_cart,
.product-media:focus-within > .added_to_cart {
  opacity: 1;
  transform: translateY(0);
}

.product-media > .added_to_cart {
  bottom: 66px;
  color: var(--paper);
  background: var(--forest);
}

.front-page-editor-content {
  padding-top: 2rem;
}

.content-shell,
.commerce-shell {
  min-height: 55vh;
  padding-top: clamp(4.5rem, 8vw, 8rem);
  padding-bottom: clamp(5rem, 9vw, 9rem);
}

.archive-header,
.entry-header {
  max-width: 850px;
  margin-bottom: clamp(2.5rem, 5vw, 5rem);
}

.archive-header h1,
.entry-header h1,
.empty-state h1 {
  max-width: 16ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.035em;
}

.entry-deck,
.archive-description {
  max-width: 680px;
  margin-top: 1.5rem;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.65;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 3.5rem);
}

.post-card-image {
  display: block;
  aspect-ratio: 4 / 3;
  margin-bottom: 1.5rem;
  overflow: hidden;
  background: var(--paper-deep);
}

.post-card-image img,
.entry-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card h2 {
  margin: 0 0 1rem;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.5vw, 2.4rem);
  font-weight: 400;
  line-height: 1.1;
}

.entry-hero-image {
  max-height: 780px;
  margin: 0 0 clamp(2.5rem, 6vw, 6rem);
  overflow: hidden;
}

.entry-content {
  max-width: 780px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.entry-content > * + * {
  margin-top: 1.45em;
}

.entry-content h2,
.entry-content h3,
.comments-area h2 {
  margin-top: 2em;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.1;
}

.entry-content img {
  height: auto;
}

.entry-content a {
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.post-navigation,
.navigation.pagination,
.comments-area {
  max-width: 780px;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.post-navigation {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.page-numbers {
  display: inline-grid;
  min-width: 2.5rem;
  min-height: 2.5rem;
  place-items: center;
  border: 1px solid var(--line);
  text-decoration: none;
}

.page-numbers.current {
  color: var(--paper);
  background: var(--forest);
  border-color: var(--forest);
}

.empty-state {
  display: grid;
  max-width: 850px;
  gap: 1.5rem;
}

.search-dialog-form .search-form,
.search-form {
  display: flex;
  align-items: stretch;
  gap: 0.75rem;
}

.search-form label {
  flex: 1;
}

.search-field,
.woocommerce input.input-text,
.woocommerce textarea,
.woocommerce select,
.comment-form input,
.comment-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 0.75rem 0.9rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0;
  font: inherit;
}

.newsletter-placeholder {
  max-width: 36rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.site-footer .menu li + li {
  margin-top: 0.55rem;
}

/* WooCommerce storefront, product, cart and checkout */
.woocommerce .woocommerce-breadcrumb {
  margin-bottom: 2rem;
  color: var(--ink-soft);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.woocommerce .woocommerce-products-header__title,
.woocommerce div.product .product_title,
.woocommerce-cart .entry-title,
.woocommerce-checkout .entry-title,
.woocommerce-account .entry-title {
  font-family: var(--serif);
  font-size: clamp(2.7rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 0.98;
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  margin-top: 2rem;
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  clear: both;
  gap: clamp(1.5rem, 3vw, 3.5rem);
  margin: 3rem 0 0;
  padding: 0;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
}

.woocommerce ul.products li.product {
  float: none;
  width: auto;
  margin: 0;
}

.woocommerce ul.products li.product a img {
  aspect-ratio: 1 / 1;
  margin: 0 0 1.15rem;
  object-fit: cover;
  background: var(--paper-deep);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  padding: 0;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 400;
}

.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--ink);
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  padding: 0.95rem 1.25rem;
  color: var(--paper);
  background: var(--forest);
  border: 1px solid var(--forest);
  border-radius: 0;
  font-weight: 600;
  transition: 160ms ease;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  color: var(--paper);
  background: var(--ink);
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
  margin-bottom: 5rem;
}

.woocommerce div.product div.summary .product_meta,
.woocommerce div.product .woocommerce-tabs {
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  padding: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border-color: var(--line);
  border-radius: 0;
  background: transparent;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  color: var(--ink);
  background: var(--sage);
  border-top-color: var(--forest);
}

.woocommerce table.shop_table,
.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
  border-color: var(--line);
  border-radius: 0;
}

.woocommerce-checkout #payment {
  background: var(--sage);
  border-radius: 0;
}

.woocommerce-checkout #payment div.payment_box {
  background: var(--paper);
}

.woocommerce-checkout #payment div.payment_box::before {
  border-bottom-color: var(--paper);
}

@media (max-width: 820px) {
  body.admin-bar .site-header {
    top: 46px;
  }

  .primary-nav .sub-menu {
    position: static;
    min-width: 0;
    padding: 0 0 0 1rem;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .post-grid,
  .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-media > .button,
  .product-media > .added_to_cart {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 560px) {
  .post-grid,
  .woocommerce ul.products {
    grid-template-columns: 1fr;
  }

  .search-form {
    align-items: stretch;
    flex-direction: column;
  }
}

@media screen and (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}
