:root {
  --ink: #0a090a;
  --paper: #f0eadf;
  --cream: #d9ccbb;
  --wine: #7d1738;
  --wine-dark: #310b18;
  --acid: #d8ff45;
  --line: rgba(240, 234, 223, 0.22);
  --font-geist-sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-geist-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-geist-sans), Arial, sans-serif;
}

body.gh-editorial {
  background: var(--ink);
  color: var(--paper);
  min-height: 100vh;
}

body.gh-editorial main {
  margin: 0;
  max-width: none;
  padding: 0;
  width: 100%;
}

body.gh-editorial.admin-bar {
  min-height: calc(100vh - 32px);
}

button,
a {
  color: inherit;
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  text-decoration: none;
}

.announcement {
  align-items: center;
  background: var(--acid);
  color: var(--ink);
  display: grid;
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  font-weight: 700;
  grid-template-columns: 1fr auto 1fr;
  letter-spacing: 0.12em;
  min-height: 28px;
  padding: 0 24px;
  text-transform: uppercase;
}

.announcement > :last-child {
  text-align: right;
}

.site-header {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 76px;
  padding: 0 34px;
  position: relative;
  z-index: 10;
}

.wordmark {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.09em;
  justify-self: start;
}

.wordmark span {
  color: var(--acid);
}

.site-header nav {
  display: flex;
  justify-content: flex-start;
}

.editorial-main-menu {
  align-items: center;
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.editorial-main-menu li {
  margin: 0;
  position: relative;
}

.site-header nav a {
  color: var(--cream);
  font-size: 12px;
  letter-spacing: 0.13em;
  padding: 29px 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-header nav a:hover {
  color: var(--acid);
}

.editorial-main-menu .sub-menu {
  background: var(--ink);
  border: 1px solid var(--line);
  display: none;
  left: -18px;
  list-style: none;
  margin: 0;
  min-width: 240px;
  padding: 10px 0;
  position: absolute;
  top: calc(100% + 23px);
  z-index: 50;
}

.editorial-main-menu .sub-menu .sub-menu {
  left: 100%;
  top: -11px;
}

.editorial-main-menu li:hover > .sub-menu,
.editorial-main-menu li:focus-within > .sub-menu {
  display: block;
}

.editorial-main-menu .sub-menu a {
  display: block;
  font-size: 9px;
  padding: 11px 18px;
}

.editorial-main-menu .menu-item-has-children > a::after {
  color: var(--acid);
  content: " +";
}

.mobile-navigation {
  display: none;
  justify-self: center;
  position: relative;
}

.mobile-navigation summary {
  cursor: pointer;
  font-size: 10px;
  letter-spacing: 0.12em;
  list-style: none;
  text-transform: uppercase;
}

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

.mobile-navigation-panel {
  background: var(--ink);
  border: 1px solid var(--line);
  max-height: calc(100vh - 120px);
  min-width: min(86vw, 340px);
  overflow: auto;
  padding: 18px 22px;
  position: absolute;
  right: 50%;
  top: 34px;
  transform: translateX(50%);
  z-index: 60;
}

.editorial-mobile-menu,
.editorial-mobile-menu .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.editorial-mobile-menu li {
  position: relative;
}

.editorial-mobile-menu a {
  border-bottom: 1px solid var(--line);
  display: flex;
  min-height: 58px;
  align-items: center;
  font-size: 13px;
  letter-spacing: 0.1em;
  padding: 12px 54px 12px 0;
  text-transform: uppercase;
}

.editorial-mobile-menu > li:first-child > a {
  border-top: 1px solid var(--line);
}

.editorial-mobile-menu .sub-menu a {
  color: rgba(240, 234, 223, 0.72);
  font-size: 10px;
  min-height: 50px;
  padding-left: 20px;
}

.editorial-mobile-menu .sub-menu .sub-menu a {
  color: rgba(240, 234, 223, 0.58);
  font-size: 9px;
  padding-left: 40px;
}

.editorial-mobile-menu .sub-menu .sub-menu .sub-menu a {
  padding-left: 58px;
}

.editorial-mobile-menu .current-menu-item > a,
.editorial-mobile-menu .current-menu-ancestor > a {
  color: var(--acid);
}

.editorial-mobile-menu .sub-menu[hidden] {
  display: none;
}

.mobile-submenu-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  border-left: 1px solid var(--line);
  color: var(--acid);
  cursor: pointer;
  display: flex;
  height: 44px;
  justify-content: center;
  padding: 0;
  position: absolute;
  right: 0;
  top: 7px;
  width: 44px;
}

.mobile-submenu-toggle::before,
.mobile-submenu-toggle::after {
  background: currentColor;
  content: "";
  height: 1px;
  position: absolute;
  transition: transform 160ms ease;
  width: 12px;
}

.mobile-submenu-toggle::after {
  transform: rotate(90deg);
}

.mobile-submenu-toggle[aria-expanded="true"]::after {
  transform: rotate(0);
}

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

.header-search {
  position: relative;
}

.header-search summary {
  cursor: pointer;
  font-size: 10px;
  letter-spacing: 0.1em;
  list-style: none;
  text-transform: uppercase;
}

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

.header-search[open] summary,
.account-button:hover {
  color: var(--acid);
}

.header-search-panel {
  background: var(--ink);
  border: 1px solid var(--line);
  padding: 16px;
  position: absolute;
  right: -12px;
  top: 46px;
  width: min(390px, 78vw);
  z-index: 70;
}

.account-button {
  align-items: center;
  display: inline-flex;
  font-size: 10px;
  justify-content: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.header-action-icon {
  display: none;
  fill: currentColor;
}

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

.editorial-product-search label {
  display: block;
  min-width: 0;
}

.editorial-product-search input[type="search"] {
  background: #111;
  border: 1px solid var(--line);
  border-right: 0;
  color: var(--paper);
  font: inherit;
  font-size: 13px;
  height: 46px;
  padding: 0 14px;
  width: 100%;
}

.editorial-product-search input[type="search"]::placeholder {
  color: rgba(240, 234, 223, 0.45);
}

.editorial-product-search input[type="search"]:focus {
  border-color: var(--acid);
  outline: 0;
}

.editorial-product-search button {
  background: var(--acid);
  border: 1px solid var(--acid);
  color: var(--ink);
  cursor: pointer;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 0 18px;
  text-transform: uppercase;
}

.mobile-navigation-kicker {
  color: rgba(240, 234, 223, 0.5);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.12em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.mobile-navigation-links {
  display: grid !important;
  margin-top: 22px;
}

.mobile-navigation-links a {
  align-items: center;
  border-top: 1px solid var(--line);
  display: grid;
  font-size: 13px;
  grid-template-columns: 34px 1fr;
  letter-spacing: -0.01em;
  padding: 15px 0;
}

.mobile-navigation-links a:last-child {
  border-bottom: 1px solid var(--line);
}

.mobile-navigation-links span {
  color: var(--acid);
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
}

.mobile-navigation-utility {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 20px;
}

.mobile-navigation-utility a {
  color: rgba(240, 234, 223, 0.68);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bag-button {
  background: transparent;
  border: 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

a.bag-button {
  align-items: center;
  display: flex;
}

.bag-button .gh-cart-count {
  align-items: center;
  background: var(--paper);
  border-radius: 50%;
  color: var(--ink);
  display: inline-flex;
  font-size: 11px;
  height: 24px;
  justify-content: center;
  margin-left: 8px;
  width: 24px;
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(440px, 0.92fr);
  min-height: calc(100vh - 104px);
}

.editorial-art {
  --editorial-glow: rgba(216, 255, 69, 0.11);
  --editorial-start: #190711;
  --editorial-mid: #310b18;
  --editorial-orb-light: #ef6e87;
  --editorial-orb-mid: #8d183c;
  --editorial-orb-dark: #430a20;
  background:
    radial-gradient(circle at 25% 15%, var(--editorial-glow), transparent 26%),
    linear-gradient(135deg, var(--editorial-start) 0%, var(--editorial-mid) 42%, #090609 100%);
  border-right: 1px solid var(--line);
  min-height: 760px;
  overflow: hidden;
  padding: 34px;
  position: relative;
}

.editorial-product-gallery {
  background: #171417;
  display: flex;
  flex-direction: column;
  padding: 34px;
}

.editorial-product-gallery::after {
  display: none;
}

.product-gallery-stage {
  display: grid;
  flex: 1;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 38px 0 42px;
  min-height: 0;
  overflow: auto;
}

.product-gallery-frame {
  background: #eee8dd;
  margin: 0;
  min-height: 230px;
  overflow: hidden;
  position: relative;
}

.product-gallery-frame.is-primary {
  grid-column: 1 / -1;
  min-height: 520px;
}

.product-gallery-open {
  background: transparent;
  border: 0;
  cursor: zoom-in;
  display: block;
  height: 100%;
  padding: 0;
  width: 100%;
}

.product-gallery-open:focus-visible {
  outline: 3px solid var(--acid);
  outline-offset: -3px;
}

.single-product-image {
  display: block;
  height: 100%;
  object-fit: contain;
  transition: transform 400ms ease;
  width: 100%;
}

.product-gallery-frame:hover .single-product-image {
  transform: scale(1.025);
}

.editorial-product-gallery .art-kicker,
.editorial-product-gallery .art-caption {
  flex: 0 0 auto;
}

.mobile-gallery-controls {
  display: none;
}

.product-gallery-lightbox {
  background: rgba(8, 7, 8, 0.98);
  border: 0;
  color: var(--paper);
  height: 100dvh;
  inset: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  width: 100vw;
}

.product-gallery-lightbox::backdrop {
  background: rgba(0, 0, 0, 0.92);
}

.product-gallery-lightbox-inner {
  align-items: center;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  height: 100%;
  padding: 72px 24px 58px;
  position: relative;
  width: 100%;
}

.product-gallery-lightbox-media {
  height: 100%;
  margin: 0;
  min-height: 0;
  touch-action: pan-y;
}

.product-gallery-lightbox-media img {
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.product-gallery-lightbox-close,
.product-gallery-lightbox-nav {
  background: rgba(240, 234, 223, 0.08);
  border: 1px solid rgba(240, 234, 223, 0.32);
  color: var(--paper);
  cursor: pointer;
}

.product-gallery-lightbox-close:focus-visible,
.product-gallery-lightbox-nav:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 3px;
}

.product-gallery-lightbox-close {
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  min-height: 40px;
  padding: 0 16px;
  position: absolute;
  right: 20px;
  top: 18px;
}

.product-gallery-lightbox-nav {
  align-items: center;
  border-radius: 50%;
  display: flex;
  font-size: 22px;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.product-gallery-lightbox-nav.is-previous {
  justify-self: start;
}

.product-gallery-lightbox-nav.is-next {
  justify-self: end;
}

.product-gallery-lightbox-counter {
  bottom: 22px;
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
  left: 50%;
  letter-spacing: 0.12em;
  position: absolute;
  transform: translateX(-50%);
}

.editorial-art::after {
  background-image:
    linear-gradient(rgba(240, 234, 223, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240, 234, 223, 0.055) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
  pointer-events: none;
  position: absolute;
}

.art-kicker,
.art-caption {
  display: flex;
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  justify-content: space-between;
  letter-spacing: 0.12em;
  position: relative;
  text-transform: uppercase;
  z-index: 4;
}

.art-kicker {
  color: var(--acid);
}

.art-caption {
  bottom: 32px;
  color: rgba(240, 234, 223, 0.7);
  left: 34px;
  position: absolute;
  right: 34px;
}

.cherry-orb {
  background:
    radial-gradient(circle at 35% 25%, var(--editorial-orb-light), var(--editorial-orb-mid) 27%, var(--editorial-orb-dark) 68%, #110509 100%);
  border-radius: 50%;
  box-shadow:
    inset -22px -28px 50px rgba(0, 0, 0, 0.55),
    0 50px 120px rgba(0, 0, 0, 0.35);
  position: absolute;
}

.editorial-blue {
  --editorial-glow: rgba(106, 172, 255, 0.14);
  --editorial-start: #07101f;
  --editorial-mid: #132f5b;
  --editorial-orb-light: #b3d7ff;
  --editorial-orb-mid: #3863a2;
  --editorial-orb-dark: #0b1831;
}

.editorial-lemon {
  --editorial-glow: rgba(216, 255, 69, 0.2);
  --editorial-start: #181806;
  --editorial-mid: #504b0f;
  --editorial-orb-light: #fbffc6;
  --editorial-orb-mid: #d8ff45;
  --editorial-orb-dark: #707d14;
}

.editorial-purple {
  --editorial-glow: rgba(188, 114, 235, 0.17);
  --editorial-start: #11081a;
  --editorial-mid: #3d1c57;
  --editorial-orb-light: #e7b8ff;
  --editorial-orb-mid: #8a45ac;
  --editorial-orb-dark: #271235;
}

.editorial-dosi {
  --editorial-glow: rgba(226, 223, 91, 0.15);
  --editorial-start: #171708;
  --editorial-mid: #454611;
  --editorial-orb-light: #fbf3c6;
  --editorial-orb-mid: #b6b441;
  --editorial-orb-dark: #41410e;
}

.editorial-market {
  --editorial-glow: rgba(217, 113, 54, 0.17);
  --editorial-start: #170b07;
  --editorial-mid: #532511;
  --editorial-orb-light: #ffd1af;
  --editorial-orb-mid: #bd6334;
  --editorial-orb-dark: #4a1c0b;
}

.editorial-gruntz {
  --editorial-glow: rgba(90, 190, 125, 0.16);
  --editorial-start: #09150f;
  --editorial-mid: #1b4732;
  --editorial-orb-light: #caf4cf;
  --editorial-orb-mid: #55a674;
  --editorial-orb-dark: #153a27;
}

.editorial-cosmic {
  --editorial-glow: rgba(125, 104, 230, 0.19);
  --editorial-start: #080d17;
  --editorial-mid: #281f58;
  --editorial-orb-light: #c4c7ff;
  --editorial-orb-mid: #6656bd;
  --editorial-orb-dark: #19163b;
}

.cherry-orb-one {
  height: min(32vw, 480px);
  left: 9%;
  top: 24%;
  width: min(32vw, 480px);
}

.cherry-orb-two {
  bottom: 8%;
  height: min(23vw, 350px);
  right: -4%;
  width: min(23vw, 350px);
}

.cream-orbit {
  border: 1px solid rgba(240, 234, 223, 0.54);
  border-radius: 50%;
  height: 62%;
  left: 17%;
  position: absolute;
  top: 19%;
  transform: rotate(-22deg);
  width: 72%;
}

.cream-orbit::after {
  background: var(--paper);
  border-radius: 50%;
  content: "";
  height: 13px;
  left: 15%;
  position: absolute;
  top: 5%;
  width: 13px;
}

.art-type {
  left: 7%;
  position: absolute;
  right: 4%;
  top: 28%;
  z-index: 3;
}

.art-type strong {
  display: block;
  font-size: clamp(78px, 10vw, 164px);
  font-weight: 900;
  letter-spacing: -0.095em;
  line-height: 0.72;
  mix-blend-mode: screen;
}

.art-type strong:nth-child(2) {
  color: var(--acid);
  margin-left: 9%;
}

.art-type em {
  color: var(--cream);
  display: block;
  font-family: Georgia, serif;
  font-size: clamp(74px, 10vw, 150px);
  line-height: 0.75;
  margin-left: 36%;
  margin-top: 38px;
  transform: rotate(-8deg);
}

.product-panel {
  align-self: start;
  padding: 48px clamp(34px, 4.5vw, 72px);
  position: sticky;
  top: 24px;
}

.breadcrumbs,
.eyebrow {
  color: rgba(240, 234, 223, 0.54);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.breadcrumbs a:hover {
  color: var(--acid);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 28px 0 20px;
}

.tag-row span {
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--cream);
  font-size: 10px;
  letter-spacing: 0.1em;
  padding: 7px 12px;
  text-transform: uppercase;
}

.product-panel h1 {
  font-size: clamp(58px, 5.2vw, 82px);
  letter-spacing: -0.085em;
  line-height: 0.86;
  margin: 0 0 24px;
  max-width: 700px;
  text-transform: uppercase;
}

.product-intro {
  color: var(--cream);
  font-family: Georgia, serif;
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
  max-width: 600px;
}

.profile-notes {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 28px 0 20px;
  padding: 16px 0;
}

.profile-notes div {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-right: 12px;
}

.profile-notes span,
.purchase-heading span {
  color: rgba(240, 234, 223, 0.48);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.profile-notes strong {
  font-size: 12px;
  font-weight: 500;
}

.purchase-heading {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
}

.purchase-heading > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.purchase-heading small {
  color: var(--acid);
  font-size: 10px;
}

.purchase-current-price {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.purchase-current-price > span {
  color: rgba(240, 234, 223, 0.45);
}

.purchase-current-price > strong {
  font-size: 28px;
  letter-spacing: -0.04em;
}

.gh-editorial-purchase {
  background: rgba(240, 234, 223, 0.025);
  border: 1px solid var(--line);
  padding: 18px;
}

.weight-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(4, 1fr);
}

.weight-option {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 0;
  display: flex;
  flex-direction: column;
  min-height: 92px;
  padding: 13px 10px;
  text-align: left;
  transition: 160ms ease;
}

.weight-option:hover,
.weight-option.selected {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--ink);
  transform: translateY(-2px);
}

.weight-option strong {
  font-size: 16px;
}

.weight-option span {
  font-size: 10px;
  margin-top: 4px;
  opacity: 0.64;
}

.weight-option .weight-total {
  color: var(--paper);
  font-size: 12px;
  font-weight: 600;
  margin-top: 12px;
}

.weight-option.selected .weight-total,
.weight-option:hover .weight-total {
  color: var(--ink);
}

.weight-option small {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  font-size: 9px;
  gap: 2px;
  margin-top: auto;
  opacity: 0.5;
}

.weight-option small b {
  color: var(--acid);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.weight-option.selected small b,
.weight-option:hover small b {
  color: var(--wine);
}

.add-to-bag {
  align-items: center;
  background: var(--acid);
  border: 0;
  color: var(--ink);
  display: flex;
  font-size: 12px;
  font-weight: 800;
  justify-content: space-between;
  letter-spacing: 0.1em;
  margin-top: 12px;
  min-height: 56px;
  padding: 0 20px;
  text-transform: uppercase;
  transition: 180ms ease;
  width: 100%;
}

.add-to-bag:hover {
  background: var(--paper);
}

.add-to-bag.added {
  background: var(--paper);
}

.order-confidence {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 16px;
}

.order-confidence a {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 12px 2px 0;
}

.order-confidence > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 12px 2px 0;
}

.order-confidence a + a {
  border-left: 1px solid var(--line);
  padding-left: 12px;
}

.order-confidence > div + div {
  border-left: 1px solid var(--line);
  padding-left: 12px;
}

.order-confidence span {
  color: var(--acid);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
}

.order-confidence strong {
  color: rgba(240, 234, 223, 0.68);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.order-confidence a:hover strong {
  color: var(--paper);
}

.purchase-microcopy {
  color: rgba(240, 234, 223, 0.48);
  font-family: Georgia, serif;
  font-size: 12px;
  line-height: 1.5;
  margin: 12px 0 0;
}

.generic-product-page .product-panel h1 {
  font-size: clamp(42px, 4.4vw, 70px);
  line-height: 0.9;
}

.generic-product-page .purchase-heading small {
  max-width: 360px;
}

.generic-product-page.is-external-product .gh-editorial-purchase form.cart:not(.variations_form) {
  display: block;
}

.generic-product-page.is-external-product .gh-editorial-purchase .single_add_to_cart_button {
  width: 100%;
}

.generic-product-page.product-family-accessory .editorial-product-gallery,
.generic-product-page.product-family-edible .editorial-product-gallery {
  background: #121112;
}

.mobile-product-gallery {
  display: none;
}

.mobile-purchase-bar {
  display: none;
}

body.single-product.gh-editorial #sim-chat-button {
  border-radius: 50% !important;
  height: 50px !important;
  min-width: 50px !important;
  padding: 0 !important;
  width: 50px !important;
}

body.single-product.gh-editorial #sim-chat-button > span:not(.sim-chat-button-icon):not(#sim-chat-unread) {
  display: none !important;
}

body.single-product.gh-editorial #sim-chat-button .sim-chat-button-icon {
  margin: 0 !important;
}

.editorial-section,
.standards-section,
.detail-section {
  padding: clamp(76px, 10vw, 150px) clamp(28px, 6vw, 96px);
}

.editorial-section {
  background: var(--paper);
  color: var(--ink);
}

.editorial-section .eyebrow,
.standards-heading .eyebrow {
  color: rgba(10, 9, 10, 0.48);
}

.editorial-grid {
  display: grid;
  gap: 8vw;
  grid-template-columns: 1.15fr 0.85fr;
  margin-top: 62px;
}

.editorial-grid h2,
.standards-heading h2,
.detail-title h2 {
  font-size: clamp(52px, 7vw, 110px);
  letter-spacing: -0.075em;
  line-height: 0.92;
  margin: 0;
}

.editorial-copy {
  align-self: end;
}

.editorial-copy > p {
  font-family: Georgia, serif;
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.55;
  margin: 0;
}

.quote-line {
  border-top: 1px solid rgba(10, 9, 10, 0.22);
  display: flex;
  flex-wrap: wrap;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  gap: 18px;
  letter-spacing: 0.1em;
  margin-top: 38px;
  padding-top: 15px;
}

.standards-section {
  background: var(--acid);
  color: var(--ink);
}

.standards-heading {
  align-items: end;
  display: flex;
  justify-content: space-between;
}

.standards-heading h2 {
  max-width: 920px;
}

.standard-cards {
  border-top: 1px solid rgba(10, 9, 10, 0.35);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 70px;
}

.standard-cards article {
  border-right: 1px solid rgba(10, 9, 10, 0.25);
  min-height: 270px;
  padding: 20px 26px 20px 0;
}

.standard-cards article + article {
  padding-left: 26px;
}

.standard-cards article:last-child {
  border-right: 0;
}

.standard-cards article > span {
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
}

.standard-cards h3 {
  font-size: 25px;
  letter-spacing: -0.04em;
  margin: 94px 0 12px;
}

.standard-cards p {
  font-family: Georgia, serif;
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  max-width: 240px;
}

.detail-section {
  display: grid;
  gap: 9vw;
  grid-template-columns: 0.9fr 1.1fr;
}

.detail-title {
  position: sticky;
  top: 40px;
  align-self: start;
}

.detail-title h2 {
  font-size: clamp(48px, 5.5vw, 88px);
  margin-top: 36px;
}

.detail-list {
  border-top: 1px solid var(--line);
}

.detail-list details {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}

.detail-list summary {
  cursor: pointer;
  display: flex;
  font-size: 14px;
  justify-content: space-between;
  letter-spacing: 0.04em;
  list-style: none;
  text-transform: uppercase;
}

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

.detail-list summary span:last-child {
  color: var(--acid);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
}

.detail-list p {
  color: var(--cream);
  font-family: Georgia, serif;
  font-size: 16px;
  line-height: 1.65;
  margin: 20px 0 2px;
  max-width: 580px;
}

.closing-banner {
  align-items: center;
  background: var(--wine);
  display: flex;
  justify-content: space-between;
  min-height: 230px;
  overflow: hidden;
  padding: 28px clamp(28px, 6vw, 96px);
}

.closing-banner > span {
  color: var(--acid);
  font-size: clamp(100px, 16vw, 250px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.72;
}

.closing-banner p {
  font-family: Georgia, serif;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  max-width: 480px;
}

.closing-banner p strong {
  color: var(--paper);
  display: block;
  font-family: var(--font-geist-sans), Arial, sans-serif;
  font-size: clamp(28px, 2.6vw, 42px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.05;
  margin-bottom: 14px;
}

.closing-banner p span {
  color: var(--cream);
  display: block;
}

.closing-banner > div {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.closing-banner .text-link {
  align-self: flex-start;
}

footer {
  color: rgba(240, 234, 223, 0.48);
  display: flex;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  justify-content: space-between;
  letter-spacing: 0.1em;
  padding: 28px 34px;
  text-transform: uppercase;
}

.store-hero {
  background: #070607;
  min-height: clamp(680px, calc(100vh - 104px), 860px);
  overflow: hidden;
  position: relative;
}

.store-hero::after {
  background:
    linear-gradient(90deg, rgba(4, 3, 4, 0.78) 0%, rgba(4, 3, 4, 0.48) 35%, rgba(4, 3, 4, 0.04) 67%),
    linear-gradient(0deg, rgba(4, 3, 4, 0.34), transparent 38%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.store-hero-media {
  inset: 0;
  position: absolute;
}

.store-hero-media img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.store-hero-copy {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(680px, calc(100vh - 104px), 860px);
  max-width: min(58vw, 850px);
  padding: clamp(52px, 4.5vw, 72px) clamp(30px, 6vw, 94px);
  position: relative;
  z-index: 2;
}

.store-hero-copy h1,
.collection-hero h1 {
  font-size: clamp(66px, 7.6vw, 128px);
  letter-spacing: -0.09em;
  line-height: 0.82;
  margin: 35px 0 40px;
  text-transform: uppercase;
}

.store-hero-copy h1 {
  font-size: clamp(66px, 6.4vw, 106px);
  margin-bottom: 26px;
  margin-top: 28px;
}

.store-hero-copy h1 em,
.collection-hero h1 em,
.featured-edit-heading h2 em {
  color: var(--acid);
  font-family: Georgia, serif;
  font-weight: 400;
  text-transform: none;
}

.store-hero-intro {
  color: rgba(240, 234, 223, 0.86);
  font-family: Georgia, serif;
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.6;
  margin: 0;
  max-width: 560px;
}

.store-hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 34px;
}

.primary-link {
  align-items: center;
  background: var(--acid);
  color: var(--ink);
  display: inline-flex;
  font-size: 11px;
  font-weight: 800;
  justify-content: center;
  letter-spacing: 0.1em;
  min-height: 54px;
  padding: 0 22px;
  text-transform: uppercase;
  transition: 160ms ease;
}

.primary-link:hover {
  background: var(--paper);
  transform: translateY(-2px);
}

.primary-link.inverse {
  background: var(--ink);
  color: var(--paper);
}

.primary-link.inverse:hover {
  background: var(--wine);
  color: var(--paper);
}

.text-link {
  border-bottom: 1px solid rgba(240, 234, 223, 0.42);
  color: var(--cream);
  font-size: 11px;
  letter-spacing: 0.08em;
  padding-bottom: 5px;
  text-transform: uppercase;
}

.hero-proof-row {
  border-top: 1px solid rgba(240, 234, 223, 0.24);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin-top: 38px;
  padding-top: 16px;
}

.hero-proof-row span {
  align-items: center;
  color: rgba(240, 234, 223, 0.72);
  display: inline-flex;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-proof-row span::before {
  background: var(--acid);
  border-radius: 50%;
  content: "";
  height: 5px;
  margin-right: 8px;
  width: 5px;
}

.store-hero-art {
  background:
    radial-gradient(circle at 76% 18%, rgba(216, 255, 69, 0.13), transparent 22%),
    linear-gradient(145deg, #16060d, #4b0e24 47%, #090609);
  border-left: 1px solid var(--line);
  min-height: 760px;
  overflow: hidden;
  padding: 34px;
  position: relative;
}

.store-hero-art::after {
  background-image:
    linear-gradient(rgba(240, 234, 223, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240, 234, 223, 0.055) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
  pointer-events: none;
  position: absolute;
}

.hero-edition,
.hero-art-note {
  display: flex;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  justify-content: space-between;
  letter-spacing: 0.14em;
  position: relative;
  text-transform: uppercase;
  z-index: 4;
}

.hero-edition {
  color: var(--acid);
}

.hero-art-note {
  bottom: 28px;
  color: rgba(240, 234, 223, 0.62);
  left: 34px;
  position: absolute;
  right: 34px;
}

.hero-orb {
  border-radius: 50%;
  position: absolute;
}

.hero-orb-a {
  background: radial-gradient(circle at 32% 26%, #f48196, #8b173b 30%, #240813 73%);
  box-shadow: inset -34px -38px 80px rgba(0, 0, 0, 0.45);
  height: min(38vw, 560px);
  left: 7%;
  top: 18%;
  width: min(38vw, 560px);
}

.hero-orb-b {
  background: radial-gradient(circle at 35% 30%, #ebff8b, #b6db23 32%, #4e6410 72%);
  bottom: -6%;
  height: min(23vw, 340px);
  right: -3%;
  width: min(23vw, 340px);
}

.hero-ring {
  border: 1px solid rgba(240, 234, 223, 0.5);
  border-radius: 50%;
  height: 67%;
  left: 14%;
  position: absolute;
  top: 18%;
  transform: rotate(19deg);
  width: 76%;
}

.hero-art-type {
  left: 7%;
  position: absolute;
  right: 4%;
  top: 30%;
  z-index: 3;
}

.hero-art-type strong {
  display: block;
  font-size: clamp(86px, 11vw, 175px);
  font-weight: 900;
  letter-spacing: -0.1em;
  line-height: 0.7;
  mix-blend-mode: screen;
}

.hero-art-type strong:nth-child(2) {
  color: var(--acid);
  margin-left: 3%;
}

.hero-art-type em {
  color: var(--paper);
  display: block;
  font-family: Georgia, serif;
  font-size: clamp(86px, 10vw, 155px);
  line-height: 0.72;
  margin-left: 46%;
  margin-top: 34px;
  transform: rotate(-9deg);
}

.manifesto-strip {
  background: var(--acid);
  color: var(--ink);
  display: grid;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  font-weight: 700;
  grid-template-columns: repeat(4, 1fr);
  letter-spacing: 0.12em;
  padding: 18px clamp(24px, 5vw, 72px);
  text-transform: uppercase;
}

.manifesto-strip span {
  text-align: center;
}

.featured-edit {
  background: var(--paper);
  color: var(--ink);
  display: grid;
  gap: 5vw;
  grid-template-columns: 0.82fr 1fr 0.78fr;
  padding: clamp(88px, 10vw, 150px) clamp(28px, 6vw, 96px);
}

.featured-edit-heading h2 {
  font-size: clamp(62px, 7vw, 112px);
  letter-spacing: -0.085em;
  line-height: 0.78;
  margin: 40px 0 0;
  text-transform: uppercase;
}

.featured-edit-heading h2 em {
  color: var(--wine);
}

.featured-edit-art {
  align-items: center;
  background: var(--wine-dark);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 570px;
  overflow: hidden;
  padding: 26px;
  position: relative;
}

.featured-edit-art > span {
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
  position: relative;
  text-transform: uppercase;
  z-index: 2;
}

.featured-product-image {
  height: 100%;
  inset: 0;
  object-fit: contain;
  position: absolute;
  transition: transform 450ms ease;
  width: 100%;
}

.featured-edit-art:hover .featured-product-image {
  transform: scale(1.025);
}

.featured-edit-art::after {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.32), transparent 18%, transparent 80%, rgba(0, 0, 0, 0.45));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.featured-edit-copy {
  align-self: end;
}

.featured-edit-copy > p {
  font-family: Georgia, serif;
  font-size: 19px;
  line-height: 1.6;
  margin: 0 0 34px;
}

.featured-edit-copy dl {
  border-top: 1px solid rgba(10, 9, 10, 0.2);
  margin: 0 0 34px;
}

.featured-edit-copy dl div {
  border-bottom: 1px solid rgba(10, 9, 10, 0.2);
  display: flex;
  font-size: 11px;
  justify-content: space-between;
  padding: 14px 0;
  text-transform: uppercase;
}

.featured-edit-copy dt {
  color: rgba(10, 9, 10, 0.5);
}

.featured-edit-copy dd {
  margin: 0;
}

.home-selection {
  padding: clamp(80px, 9vw, 135px) clamp(28px, 6vw, 96px);
}

.section-line-heading {
  align-items: end;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding-bottom: 26px;
}

.section-line-heading h2 {
  font-size: clamp(52px, 6vw, 92px);
  letter-spacing: -0.07em;
  margin: 24px 0 0;
}

.section-line-heading > a {
  color: var(--acid);
  font-size: 11px;
  letter-spacing: 0.08em;
  padding-bottom: 8px;
  text-transform: uppercase;
}

.home-product-grid,
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.home-product-grid {
  border-left: 1px solid var(--line);
}

.product-card {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  display: block;
  min-width: 0;
  padding: 26px;
}

.product-card-featured {
  cursor: pointer;
}

.product-card-featured:hover .product-card-image {
  transform: scale(1.035);
}

.product-art {
  align-items: center;
  aspect-ratio: 1 / 1;
  background: #0a090a;
  display: flex;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.product-art::after {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), transparent 22%, transparent 76%, rgba(0, 0, 0, 0.38));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.product-card-image {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  transition: transform 350ms ease;
  width: 100%;
}

.home-product-grid .product-card-image {
  object-fit: cover;
  object-position: 50% 50%;
}

.product-art-index {
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  left: 18px;
  letter-spacing: 0.1em;
  position: absolute;
  top: 16px;
  z-index: 3;
}

.product-art small {
  bottom: 16px;
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
  left: 18px;
  letter-spacing: 0.08em;
  color: #fff;
  opacity: 0.78;
  position: absolute;
  right: 18px;
  text-align: center;
  text-transform: uppercase;
  z-index: 3;
}

.product-card-meta {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
  min-height: 112px;
  padding: 20px 0 14px;
}

.product-card-meta p {
  color: rgba(240, 234, 223, 0.5);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.08em;
  margin: 0 0 9px;
  text-transform: uppercase;
}

.product-card-meta h3 {
  color: var(--paper);
  font-size: clamp(20px, 2vw, 29px);
  letter-spacing: -0.045em;
  line-height: 1;
  margin: 0;
  max-width: 270px;
  text-transform: uppercase;
}

.product-card-price {
  display: flex;
  flex-direction: column;
  text-align: right;
}

.product-card-price small {
  color: rgba(240, 234, 223, 0.45);
  font-size: 8px;
  text-transform: uppercase;
}

.product-card-price strong {
  color: var(--acid);
  font-size: 25px;
}

.product-card-foot {
  border-top: 1px solid var(--line);
  color: rgba(240, 234, 223, 0.52);
  display: flex;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  justify-content: space-between;
  letter-spacing: 0.08em;
  padding-top: 12px;
  text-transform: uppercase;
}

.product-card-featured .product-card-foot span:last-child {
  color: var(--acid);
}

.product-card-price .woocommerce-Price-amount,
.product-card-foot .woocommerce-Price-amount {
  color: inherit;
}

.price-proof {
  background: var(--wine);
  display: grid;
  gap: 6vw;
  grid-template-columns: 0.82fr 1.18fr;
  padding: clamp(72px, 8vw, 112px) clamp(28px, 6vw, 96px);
}

.price-proof-heading .eyebrow {
  color: rgba(240, 234, 223, 0.62);
}

.price-proof-heading h2 {
  color: var(--paper);
  font-size: clamp(54px, 5.4vw, 84px);
  letter-spacing: -0.08em;
  line-height: 0.9;
  margin: 28px 0 30px;
}

.price-proof-heading > p:last-child {
  color: var(--cream);
  font-family: Georgia, serif;
  font-size: 17px;
  line-height: 1.65;
  margin: 0;
  max-width: 520px;
}

.price-proof-grid {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-proof-grid article {
  border-left: 1px solid rgba(240, 234, 223, 0.26);
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 18px 24px 4px;
}

.price-proof-grid article > span {
  color: var(--acid);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.1em;
}

.price-proof-grid article h3 {
  color: var(--paper);
  font-size: clamp(24px, 2.1vw, 34px);
  letter-spacing: -0.045em;
  line-height: 1.05;
  margin: clamp(64px, 6vw, 92px) 0 18px;
}

.price-proof-grid article p {
  color: var(--cream);
  font-family: Georgia, serif;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.grade-story {
  background: var(--acid);
  color: var(--ink);
  display: grid;
  gap: 4vw;
  grid-template-columns: 1fr repeat(3, minmax(0, 0.86fr));
  padding: clamp(72px, 8vw, 112px) clamp(28px, 6vw, 96px);
}

.grade-story .eyebrow {
  color: rgba(10, 9, 10, 0.48);
}

.grade-story-title h2 {
  color: var(--ink);
  font-size: clamp(52px, 5.4vw, 82px);
  letter-spacing: -0.08em;
  line-height: 0.9;
  margin: 28px 0 0;
}

.grade-story article {
  border-top: 1px solid rgba(10, 9, 10, 0.35);
  display: flex;
  flex-direction: column;
  min-height: 340px;
  padding-top: 18px;
}

.grade-story article > span {
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
}

.grade-story article h3 {
  font-size: 31px;
  letter-spacing: -0.045em;
  line-height: 1.05;
  margin: clamp(64px, 6vw, 92px) 0 18px;
  min-height: 2.1em;
}

.grade-story article p {
  font-family: Georgia, serif;
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 28px;
}

.grade-story article a {
  border-bottom: 1px solid rgba(10, 9, 10, 0.38);
  font-size: 10px;
  letter-spacing: 0.08em;
  margin-top: auto;
  padding-bottom: 8px;
  text-transform: uppercase;
}

.trust-editorial {
  display: grid;
  gap: 7vw;
  grid-template-columns: 0.95fr 1.05fr;
  padding: clamp(72px, 8vw, 112px) clamp(28px, 6vw, 96px);
}

.trust-editorial h2 {
  font-size: clamp(48px, 5.3vw, 78px);
  letter-spacing: -0.07em;
  line-height: 0.92;
  margin: 28px 0 0;
}

.trust-editorial-notes {
  border-top: 1px solid var(--line);
}

.trust-editorial-notes a {
  align-items: start;
  border-bottom: 1px solid var(--line);
  color: var(--cream);
  display: grid;
  gap: 24px;
  grid-template-columns: 118px minmax(0, 1fr) 140px;
  min-height: 148px;
  padding: 24px 0;
  transition: color 160ms ease;
}

.trust-editorial-notes a:hover {
  color: var(--acid);
}

.trust-editorial-notes span,
.trust-editorial-notes em {
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  font-style: normal;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.trust-editorial-notes span {
  color: rgba(240, 234, 223, 0.45);
}

.trust-editorial-notes strong {
  display: block;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.trust-editorial-notes div p {
  color: var(--cream);
  font-family: Georgia, serif;
  font-size: 14px;
  line-height: 1.5;
  margin: 10px 0 0;
}

.trust-editorial-notes em {
  color: var(--acid);
  justify-self: end;
  padding-top: 3px;
  white-space: nowrap;
}

.store-footer {
  background: var(--ink);
}

.collection-hero {
  align-items: end;
  background: var(--paper);
  color: var(--ink);
  display: grid;
  gap: clamp(70px, 9vw, 150px);
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  min-height: 520px;
  padding: clamp(76px, 8vw, 120px) clamp(28px, 6vw, 96px) clamp(68px, 7vw, 104px);
}

.collection-hero .eyebrow {
  color: rgba(10, 9, 10, 0.48);
}

.collection-hero h1 {
  font-size: clamp(66px, 7.5vw, 118px);
  letter-spacing: -0.08em;
  line-height: 0.82;
  margin-bottom: 0;
  margin-top: 36px;
  text-transform: uppercase;
}

.term-concentrates .category-archive .collection-hero h1 {
  font-size: clamp(58px, 5.8vw, 100px);
  letter-spacing: -0.075em;
}

.collection-hero h1 em {
  color: var(--wine);
  display: block;
  font-size: 0.78em;
  margin-top: 14px;
  text-transform: none;
}

.collection-hero-copy > span {
  color: rgba(10, 9, 10, 0.46);
  display: block;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: 0.13em;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.collection-hero-copy > p {
  font-family: Georgia, serif;
  font-size: 20px;
  line-height: 1.55;
  margin: 0;
  max-width: 520px;
}

.collection-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.collection-proof span {
  border: 1px solid rgba(10, 9, 10, 0.2);
  border-radius: 100px;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.08em;
  padding: 9px 12px;
  text-transform: uppercase;
}

.collection-tier-guide {
  background: var(--wine);
  color: var(--paper);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.collection-tier-guide > a {
  border-right: 1px solid rgba(240, 234, 223, 0.2);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  min-height: 290px;
  padding: 32px clamp(24px, 3vw, 46px) 68px;
  position: relative;
}

.collection-tier-guide > a:last-child {
  border-right: 0;
}

.collection-tier-guide > a::after {
  border-bottom: 1px solid var(--acid);
  bottom: 30px;
  content: attr(data-cta);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.08em;
  left: clamp(24px, 3vw, 46px);
  opacity: 1;
  position: absolute;
  right: auto;
  transition: 160ms ease;
}

.collection-tier-guide > a:hover,
.collection-tier-guide > a.is-active {
  background: rgba(216, 255, 69, 0.07);
}

.collection-tier-guide > a:hover::after,
.collection-tier-guide > a.is-active::after {
  padding-right: 8px;
}

.collection-tier-guide > a > span {
  color: var(--acid);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.collection-tier-guide h2 {
  font-size: clamp(26px, 2.2vw, 36px);
  letter-spacing: -0.05em;
  margin: 46px 0 16px;
  text-transform: uppercase;
}

.collection-tier-guide p {
  color: rgba(240, 234, 223, 0.82);
  font-family: Georgia, serif;
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  max-width: 390px;
}

.collection-toolbar {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 30px;
  justify-content: space-between;
  min-height: 110px;
  padding: 20px clamp(28px, 4vw, 60px);
}

.collection-toolbar-copy {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 8px;
}

.collection-toolbar-copy > span {
  color: rgba(240, 234, 223, 0.45);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.12em;
}

.collection-toolbar-copy strong {
  color: var(--paper);
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: 400;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.filter-buttons button {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--cream);
  font-size: 9px;
  letter-spacing: 0.08em;
  padding: 11px 16px;
  text-transform: uppercase;
}

.filter-buttons button:hover,
.filter-buttons button.active {
  background: var(--acid);
  border-color: var(--acid);
  color: var(--ink);
}

.collection-category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.collection-category-nav a {
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--cream);
  font-size: 9px;
  letter-spacing: 0.08em;
  padding: 11px 16px;
  text-transform: uppercase;
}

.collection-category-nav a:hover,
.collection-category-nav a.active {
  background: var(--acid);
  border-color: var(--acid);
  color: var(--ink);
}

.collection-category-nav span {
  margin-left: 5px;
}

.collection-grid {
  border-left: 1px solid var(--line);
  margin-left: -1px;
}

.category-archive .collection-hero {
  min-height: 430px;
  padding-bottom: clamp(54px, 5.5vw, 78px);
  padding-top: clamp(62px, 6vw, 88px);
}

.category-archive.category-count-1 .collection-grid {
  border-left: 0;
  grid-template-columns: minmax(420px, 720px);
  justify-content: center;
  margin-left: 0;
  padding: 0 clamp(28px, 6vw, 96px);
}

.category-archive.category-count-1 .catalog-product-card {
  border-left: 1px solid var(--line);
}

.gh-product-item {
  display: contents;
}

.gh-product-item[hidden] {
  display: none !important;
}

.gh-empty-collection {
  font-family: Georgia, serif;
  font-size: 22px;
  grid-column: 1 / -1;
  min-height: 280px;
  padding: 70px clamp(28px, 6vw, 96px);
}

.gh-editorial-pagination {
  border-top: 1px solid var(--line);
  padding: 36px clamp(28px, 6vw, 96px);
}

.gh-editorial-pagination .page-numbers {
  align-items: center;
  display: flex;
  gap: 8px;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.gh-editorial-pagination .page-numbers a,
.gh-editorial-pagination .page-numbers span {
  align-items: center;
  border: 1px solid var(--line);
  display: inline-flex;
  font-size: 11px;
  height: 40px;
  justify-content: center;
  min-width: 40px;
}

.gh-editorial-pagination .page-numbers .current,
.gh-editorial-pagination .page-numbers a:hover {
  background: var(--acid);
  border-color: var(--acid);
  color: var(--ink);
}

.collection-note {
  align-items: start;
  background: var(--paper);
  color: var(--ink);
  display: grid;
  gap: clamp(48px, 8vw, 140px);
  grid-template-columns: minmax(180px, 0.45fr) minmax(0, 1.55fr);
  padding: clamp(58px, 5vw, 78px) clamp(28px, 6vw, 96px);
}

.collection-note .eyebrow {
  color: rgba(10, 9, 10, 0.48);
}

.collection-note-copy h2 {
  color: var(--ink);
  font-size: clamp(38px, 4vw, 62px);
  letter-spacing: -0.055em;
  line-height: 1.02;
  margin: 0;
  max-width: 1080px;
}

.collection-note-copy p {
  color: rgba(10, 9, 10, 0.66);
  font-family: Georgia, serif;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.55;
  margin: 22px 0 0;
  max-width: 760px;
}

.next-edit {
  align-items: end;
  background: var(--paper);
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  min-height: 420px;
  padding: clamp(76px, 9vw, 130px) clamp(28px, 6vw, 96px);
}

.next-edit .eyebrow {
  color: rgba(10, 9, 10, 0.48);
}

.next-edit > div > span {
  display: block;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  margin-top: 58px;
  text-transform: uppercase;
}

.next-edit h2 {
  font-size: clamp(58px, 8vw, 128px);
  letter-spacing: -0.085em;
  line-height: 0.82;
  margin: 18px 0 0;
  text-transform: uppercase;
}

.next-edit > a {
  align-items: center;
  border: 1px solid rgba(10, 9, 10, 0.25);
  display: flex;
  font-size: 10px;
  gap: 45px;
  letter-spacing: 0.1em;
  min-height: 54px;
  padding: 0 18px;
  text-transform: uppercase;
}

.next-edit > a:hover {
  background: var(--ink);
  color: var(--paper);
}

.next-edit > a span {
  font-size: 18px;
}

.gh-editorial .woocommerce-notices-wrapper {
  background: var(--paper);
  color: var(--ink);
}

.gh-editorial .woocommerce-message,
.gh-editorial .woocommerce-info,
.gh-editorial .woocommerce-error {
  border: 0;
  border-bottom: 1px solid rgba(10, 9, 10, 0.18);
  margin: 0;
  padding: 18px clamp(28px, 6vw, 96px);
}

.gh-editorial-purchase .gh-native-cart {
  margin-top: 12px;
}

.gh-editorial-purchase form.cart {
  margin: 0;
}

.gh-editorial-purchase form.cart table.variations {
  border: 0;
  margin: 0 0 12px;
  width: 100%;
}

.gh-editorial-purchase form.cart table.variations th,
.gh-editorial-purchase form.cart table.variations td {
  border: 0;
  padding: 6px 0;
}

.gh-editorial-purchase form.cart table.variations label {
  color: rgba(240, 234, 223, 0.6);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gh-editorial-purchase form.cart table.variations select {
  background: var(--paper);
  border: 0;
  border-radius: 0;
  color: var(--ink);
  min-height: 46px;
  padding: 0 12px;
  width: 100%;
}

.gh-js .gh-editorial-purchase.has-editorial-weights table.variations {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.gh-editorial-purchase .reset_variations,
.gh-editorial-purchase .woocommerce-variation-price {
  display: none !important;
}

.gh-editorial-purchase .woocommerce-variation-availability {
  color: rgba(240, 234, 223, 0.55);
  font-size: 10px;
  margin-bottom: 8px;
}

.gh-editorial-purchase .woocommerce-variation-add-to-cart,
.gh-editorial-purchase form.cart:not(.variations_form) {
  align-items: stretch;
  display: grid;
  gap: 8px;
  grid-template-columns: 82px 1fr;
}

.gh-editorial-purchase .quantity {
  margin: 0 !important;
}

.gh-editorial-purchase .quantity .qty {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--paper);
  height: 56px;
  margin: 0;
  padding: 0 10px;
  text-align: center;
  width: 100%;
}

.gh-editorial-purchase .single_add_to_cart_button {
  align-items: center;
  background: var(--acid) !important;
  border: 0 !important;
  border-radius: 0 !important;
  color: var(--ink) !important;
  display: inline-flex !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  justify-content: center;
  letter-spacing: 0.1em;
  min-height: 56px;
  padding: 0 20px !important;
  text-transform: uppercase;
  width: 100%;
}

.gh-editorial-purchase .single_add_to_cart_button:hover {
  background: var(--paper) !important;
}

.gh-editorial-purchase .single_add_to_cart_button.disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.gh-editorial .woocommerce-variation-description {
  color: var(--cream);
  font-family: Georgia, serif;
  font-size: 13px;
}

.preview-not-found {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  padding: 40px 20px;
  text-align: center;
}

.preview-not-found span {
  color: var(--acid);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.preview-not-found h1 {
  font-size: clamp(64px, 10vw, 150px);
  letter-spacing: -0.09em;
  line-height: 0.8;
  margin: 32px 0 44px;
  text-transform: uppercase;
}

.transaction-hero {
  align-items: end;
  background: var(--paper);
  color: var(--ink);
  display: grid;
  gap: clamp(60px, 8vw, 140px);
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  min-height: 430px;
  padding: clamp(72px, 8vw, 118px) clamp(28px, 6vw, 96px) clamp(62px, 7vw, 96px);
}

.transaction-hero .eyebrow {
  color: rgba(10, 9, 10, 0.48);
}

.transaction-hero h1 {
  font-size: clamp(64px, 7.5vw, 118px);
  letter-spacing: -0.08em;
  line-height: 0.84;
  margin: 30px 0 0;
  max-width: 880px;
  text-transform: uppercase;
}

.transaction-hero-copy > p {
  font-family: Georgia, serif;
  font-size: 20px;
  line-height: 1.55;
  margin: 0;
  max-width: 520px;
}

.transaction-progress {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 32px;
}

.transaction-progress span {
  border-top: 1px solid rgba(10, 9, 10, 0.2);
  color: rgba(10, 9, 10, 0.42);
  display: flex;
  flex-direction: column;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  gap: 8px;
  letter-spacing: 0.08em;
  padding-top: 10px;
  text-transform: uppercase;
}

.transaction-progress span.is-active {
  border-color: var(--wine);
  color: var(--ink);
}

.transaction-progress b {
  color: var(--wine);
  font-weight: 600;
}

.transaction-content {
  background: var(--ink);
  min-height: 520px;
  padding: clamp(62px, 7vw, 106px) clamp(28px, 6vw, 96px);
}

.transaction-content > .woocommerce,
.transaction-content > article,
.transaction-content .entry-content > .woocommerce {
  margin: 0 auto;
  max-width: 1320px;
}

.gh-transaction .woocommerce-notices-wrapper {
  background: transparent;
}

.gh-transaction .woocommerce-message,
.gh-transaction .woocommerce-info,
.gh-transaction .woocommerce-error {
  background: rgba(216, 255, 69, 0.08);
  border: 1px solid rgba(216, 255, 69, 0.38);
  color: var(--paper);
  margin: 0 0 24px;
  padding: 16px 18px;
}

.gh-transaction .woocommerce-error {
  background: rgba(125, 23, 56, 0.22);
  border-color: rgba(240, 234, 223, 0.28);
}

.gh-transaction .woocommerce-message a,
.gh-transaction .woocommerce-info a {
  color: var(--acid);
}

.gh-transaction .woocommerce-cart-form,
.gh-transaction .cart-collaterals,
.gh-transaction .ct-customer-details,
.gh-transaction .ct-order-review,
.gh-transaction .woocommerce-order {
  background: rgba(240, 234, 223, 0.025);
  border: 1px solid var(--line);
}

.gh-transaction .woocommerce-cart-form {
  padding: 20px 24px;
}

.gh-transaction .cart-collaterals {
  padding: 26px;
}

.gh-transaction .cart_totals h2,
.gh-transaction .woocommerce-billing-fields > h3,
.gh-transaction #order_review_heading,
.gh-transaction .woocommerce-additional-fields > h3 {
  color: var(--paper);
  font-size: 24px;
  letter-spacing: -0.035em;
  margin: 0 0 28px;
  text-transform: uppercase;
}

.gh-transaction table.shop_table {
  border: 0;
  color: var(--paper);
  margin: 0;
}

.gh-transaction table.shop_table th,
.gh-transaction table.shop_table td {
  border-color: var(--line);
  color: var(--paper);
}

.gh-transaction table.shop_table thead th {
  color: rgba(240, 234, 223, 0.5);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gh-transaction .product-name a {
  color: var(--paper);
}

.gh-transaction .product-name,
.gh-transaction .product-subtotal,
.gh-transaction .cart-subtotal,
.gh-transaction .order-total {
  font-size: 14px;
}

.gh-transaction .product-thumbnail img {
  background: var(--paper);
  height: 92px;
  object-fit: contain;
  width: 92px;
}

.gh-transaction .quantity .qty,
.gh-transaction input.input-text,
.gh-transaction textarea,
.gh-transaction select,
.gh-transaction .select2-selection {
  background: transparent !important;
  border: 1px solid var(--line) !important;
  border-radius: 0 !important;
  color: var(--paper) !important;
  min-height: 50px;
}

.gh-transaction input.input-text,
.gh-transaction textarea {
  padding: 12px 14px !important;
}

.gh-transaction input.input-text:focus,
.gh-transaction textarea:focus,
.gh-transaction select:focus {
  border-color: var(--acid) !important;
  box-shadow: none !important;
}

.gh-transaction .select2-container--default .select2-selection--single .select2-selection__rendered,
.gh-transaction .select2-container--default .select2-selection--single .select2-selection__arrow {
  color: var(--paper);
  line-height: 48px;
}

.gh-transaction .form-row label,
.gh-transaction .woocommerce-shipping-fields label {
  color: var(--cream);
  font-size: 12px;
}

.gh-transaction .form-row .required {
  color: var(--acid);
}

.gh-transaction button.button,
.gh-transaction .button,
.gh-transaction a.checkout-button,
.gh-transaction #place_order {
  border-radius: 0 !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em;
  min-height: 52px;
  padding: 0 18px !important;
  text-transform: uppercase;
}

.gh-transaction a.checkout-button,
.gh-transaction #place_order {
  align-items: center;
  background: var(--acid) !important;
  border: 0 !important;
  color: var(--ink) !important;
  display: flex !important;
  justify-content: center;
  width: 100%;
}

.gh-transaction button.button,
.gh-transaction .button:not(.checkout-button) {
  background: transparent !important;
  border: 1px solid var(--line) !important;
  color: var(--paper) !important;
}

.gh-transaction button.button:hover,
.gh-transaction .button:not(.checkout-button):hover {
  border-color: var(--acid) !important;
  color: var(--acid) !important;
}

.gh-transaction .coupon {
  align-items: stretch;
  display: flex;
  gap: 8px;
}

.gh-transaction .coupon .input-text {
  min-width: 190px;
}

.gh-transaction .cart-collaterals .cart_totals {
  width: 100%;
}

.gh-transaction .wc-proceed-to-checkout {
  padding: 18px 0 0;
}

.gh-transaction form.checkout {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1.06fr) minmax(420px, 0.94fr);
}

.gh-transaction .ct-customer-details,
.gh-transaction .ct-order-review {
  padding: clamp(24px, 3vw, 40px);
  width: auto;
}

.gh-transaction .ct-order-review {
  position: sticky;
  top: 24px;
}

.gh-transaction .col2-set {
  display: block;
}

.gh-transaction .col-1,
.gh-transaction .col-2 {
  float: none;
  width: 100%;
}

.gh-transaction #order_review {
  background: transparent;
}

.gh-transaction #payment {
  background: transparent;
  border-top: 1px solid var(--line);
  margin-top: 24px;
  padding-top: 24px;
}

.gh-transaction #payment .wc_payment_methods {
  background: transparent;
  border: 0;
  margin: 0 0 20px;
  padding: 0;
}

.gh-transaction #payment .wc_payment_method {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.gh-transaction #payment .payment_box {
  background: rgba(240, 234, 223, 0.06);
  color: var(--cream);
  font-family: Georgia, serif;
  font-size: 13px;
  line-height: 1.55;
  margin: 12px 0 0;
  padding: 14px;
}

.gh-transaction .woocommerce-privacy-policy-text,
.gh-transaction .woocommerce-terms-and-conditions-checkbox-text {
  color: rgba(240, 234, 223, 0.62);
  font-family: Georgia, serif;
  font-size: 12px;
  line-height: 1.5;
}

.gh-transaction .woocommerce-privacy-policy-text a,
.gh-transaction .woocommerce-terms-and-conditions-checkbox-text a {
  color: var(--acid);
  text-decoration: underline;
}

.gh-transaction .woocommerce-thankyou-order-received {
  color: var(--acid);
  font-family: Georgia, serif;
  font-size: 24px;
}

.gh-transaction .wc-empty-cart-message {
  margin: 0;
}

.gh-transaction .return-to-shop {
  margin: 24px 0 0;
}

.transaction-assurance {
  background: var(--wine);
  color: var(--paper);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.transaction-assurance a {
  border-right: 1px solid rgba(240, 234, 223, 0.2);
  min-height: 230px;
  padding: 34px clamp(24px, 3vw, 46px);
}

.transaction-assurance a:last-child {
  border-right: 0;
}

.transaction-assurance span {
  color: var(--acid);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
}

.transaction-assurance strong {
  display: block;
  font-size: clamp(24px, 2.4vw, 36px);
  letter-spacing: -0.045em;
  margin: 68px 0 12px;
  text-transform: uppercase;
}

.transaction-assurance p {
  color: rgba(240, 234, 223, 0.66);
  font-family: Georgia, serif;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  max-width: 330px;
}

.transaction-next-steps {
  background: var(--paper);
  color: var(--ink);
  display: grid;
  gap: 70px;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  padding: 90px clamp(34px, 6vw, 96px);
}

.transaction-next-steps > div > p {
  color: var(--wine);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.13em;
  margin: 0 0 34px;
}

.transaction-next-steps h2 {
  color: var(--ink) !important;
  font-size: clamp(44px, 5vw, 76px);
  letter-spacing: -0.065em;
  line-height: 0.92;
  margin: 0;
  max-width: 520px;
}

.transaction-next-steps ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.transaction-next-steps li {
  border-top: 1px solid rgba(10, 9, 10, 0.22);
  display: grid;
  gap: 12px 20px;
  grid-template-columns: 50px minmax(140px, 0.55fr) 1fr;
  padding: 24px 0;
}

.transaction-next-steps li:last-child {
  border-bottom: 1px solid rgba(10, 9, 10, 0.22);
}

.transaction-next-steps li span {
  color: var(--wine);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
}

.transaction-next-steps li strong {
  font-size: 14px;
  text-transform: uppercase;
}

.transaction-next-steps li p {
  color: rgba(10, 9, 10, 0.64);
  font-family: Georgia, serif;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.gh-transaction .woocommerce-order {
  border: 1px solid var(--line);
}

.gh-transaction .woocommerce-thankyou-order-received {
  background: rgba(216, 255, 69, 0.08);
  border: 1px solid rgba(216, 255, 69, 0.4);
  color: var(--acid);
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 24px;
  padding: 22px 24px;
  text-transform: uppercase;
}

.gh-transaction .woocommerce-thankyou-order-received::before {
  content: none !important;
  display: none !important;
}

.gh-transaction .woocommerce-order-overview {
  border: 1px solid var(--copper);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}

.gh-transaction .woocommerce-order-overview li {
  border-bottom: 1px solid var(--copper);
  border-right: 1px solid var(--copper);
  float: none;
  font-size: 12px;
  margin: 0;
  padding: 20px;
}

.gh-transaction .woocommerce-order-overview li:nth-child(even) {
  border-right: 0;
}

.gh-transaction .woocommerce-order-overview li:nth-last-child(-n+2) {
  border-bottom: 0;
}

.gh-transaction .woocommerce-order-overview strong {
  display: block;
  font-size: 15px;
  margin-top: 8px;
}

.account-hero,
.product-search-hero {
  background: var(--paper);
  color: var(--ink);
  display: grid;
  gap: clamp(50px, 7vw, 110px);
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  min-height: 530px;
  padding: clamp(70px, 8vw, 120px) clamp(34px, 6vw, 96px);
}

.account-hero .eyebrow,
.product-search-hero .eyebrow {
  color: rgba(10, 9, 10, 0.52);
  margin: 0;
}

.account-hero h1,
.product-search-hero h1 {
  color: var(--copper);
  font-size: clamp(70px, 8.2vw, 126px);
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 0.84;
  margin: 38px 0 0;
  max-width: 880px;
  text-transform: uppercase;
}

.product-search-hero h1 {
  font-size: clamp(62px, 7vw, 108px);
}

.product-search-hero h1 em {
  color: var(--wine);
  font-family: Georgia, serif;
  font-weight: 400;
  text-transform: none;
}

.account-hero-copy,
.product-search-hero-copy {
  align-self: end;
}

.account-hero-copy > p,
.product-search-hero-copy > p {
  font-family: Georgia, serif;
  font-size: clamp(19px, 1.7vw, 26px);
  line-height: 1.4;
  margin: 0;
  max-width: 620px;
}

.account-reference {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
}

.account-reference span {
  border-top: 1px solid rgba(10, 9, 10, 0.2);
  color: rgba(10, 9, 10, 0.5);
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
  padding: 12px 8px 0 0;
  text-transform: uppercase;
}

.account-reference b {
  color: var(--wine);
  display: block;
  margin-bottom: 10px;
}

.account-content {
  background: var(--ink);
  padding: 86px clamp(34px, 6vw, 96px) 110px;
}

.account-frame {
  border: 1px solid var(--line);
  margin: 0 auto;
  max-width: 1320px;
  padding: clamp(24px, 4vw, 54px);
}

.gh-account .woocommerce {
  color: var(--paper);
}

.gh-account .woocommerce::after,
.gh-account .woocommerce::before {
  content: "";
  display: table;
}

.gh-account .woocommerce::after {
  clear: both;
}

.gh-account .woocommerce-MyAccount-navigation {
  background: transparent !important;
  float: left;
  margin: 0;
  padding: 0;
  width: 25%;
}

.gh-account .woocommerce-MyAccount-navigation ul {
  background: transparent !important;
  border: 0 !important;
  display: block !important;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100% !important;
}

.gh-account .woocommerce-MyAccount-navigation li {
  background: transparent !important;
  border-top: 1px solid var(--line);
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}

.gh-account .woocommerce-MyAccount-navigation li:last-child {
  border-bottom: 1px solid var(--line);
}

.gh-account .woocommerce-MyAccount-navigation a {
  background: transparent !important;
  color: rgba(240, 234, 223, 0.66);
  display: block !important;
  font-size: 11px;
  letter-spacing: 0.08em;
  line-height: 1.35;
  padding: 17px 14px !important;
  text-transform: uppercase;
  white-space: nowrap;
  width: 100% !important;
}

.gh-account .woocommerce-MyAccount-navigation a::before {
  display: none !important;
}

.gh-account .woocommerce-MyAccount-navigation .is-active a,
.gh-account .woocommerce-MyAccount-navigation a:hover {
  background: var(--acid) !important;
  color: var(--ink) !important;
}

.gh-account .ct-acount-nav {
  background: var(--ink) !important;
}

body.gh-account .account-frame .woocommerce-MyAccount-navigation,
body.gh-account .account-frame .woocommerce-MyAccount-navigation ul,
body.gh-account .account-frame .woocommerce-MyAccount-navigation li,
body.gh-account .account-frame .woocommerce-MyAccount-navigation li a {
  background-color: var(--ink) !important;
  box-sizing: border-box !important;
  max-width: none !important;
}

body.gh-account .account-frame .woocommerce-MyAccount-navigation,
body.gh-account .account-frame .woocommerce-MyAccount-navigation ul,
body.gh-account .account-frame .woocommerce-MyAccount-navigation li {
  display: block !important;
  min-width: 100% !important;
}

body.gh-account .account-frame .woocommerce-MyAccount-navigation li a {
  display: flex !important;
  min-width: 100% !important;
}

body.gh-account .account-frame .woocommerce-MyAccount-navigation li::before,
body.gh-account .account-frame .woocommerce-MyAccount-navigation li::after,
body.gh-account .account-frame .woocommerce-MyAccount-navigation li a::before,
body.gh-account .account-frame .woocommerce-MyAccount-navigation li a::after {
  display: none !important;
}

body.gh-account .account-frame .woocommerce-MyAccount-navigation::before,
body.gh-account .account-frame .woocommerce-MyAccount-navigation::after,
body.gh-account .account-frame .woocommerce-MyAccount-navigation ul::before,
body.gh-account .account-frame .woocommerce-MyAccount-navigation ul::after {
  content: none !important;
  display: none !important;
}

body.gh-account .account-frame .woocommerce-MyAccount-navigation .is-active a,
body.gh-account .account-frame .woocommerce-MyAccount-navigation li a:hover {
  background-color: var(--acid) !important;
}

.gh-account .woocommerce-MyAccount-content {
  float: right;
  min-height: 300px;
  padding-left: clamp(32px, 5vw, 74px);
  width: 75%;
}

.gh-account .woocommerce-notices-wrapper {
  background: transparent !important;
  margin: 0 !important;
  min-height: 0 !important;
  padding: 0 !important;
}

.gh-account .woocommerce-notices-wrapper:not(:has(.woocommerce-message, .woocommerce-info, .woocommerce-error)) {
  display: none !important;
}

.gh-account .woocommerce-MyAccount-content > p:first-child {
  font-family: Georgia, serif;
  font-size: 22px;
  line-height: 1.45;
  margin-top: 0;
}

.gh-account .woocommerce a {
  color: var(--acid);
  text-decoration: underline;
}

.gh-account .u-columns {
  display: grid;
  gap: 36px;
  grid-template-columns: repeat(2, 1fr);
}

.gh-account .u-column1,
.gh-account .u-column2 {
  border: 1px solid var(--line);
  float: none;
  padding: clamp(22px, 3vw, 38px);
  width: auto;
}

.gh-account h2,
.gh-account h3,
.gh-account legend {
  color: var(--paper);
  font-size: clamp(26px, 2.4vw, 38px);
  letter-spacing: -0.045em;
  margin: 0 0 28px;
  text-transform: uppercase;
}

.gh-account .form-row {
  margin: 0 0 20px;
}

.gh-account .form-row label {
  color: rgba(240, 234, 223, 0.78);
  display: block;
  font-size: 11px;
  margin-bottom: 9px;
}

.gh-account input.input-text,
.gh-account input[type="text"],
.gh-account input[type="email"],
.gh-account input[type="password"],
.gh-account textarea,
.gh-account select {
  background: #111;
  border: 1px solid var(--line);
  color: var(--paper);
  font: inherit;
  min-height: 50px;
  padding: 12px 14px;
  width: 100%;
}

.gh-account input:focus,
.gh-account textarea:focus,
.gh-account select:focus {
  border-color: var(--acid);
  outline: 0;
}

.gh-account button.button,
.gh-account a.button {
  background: var(--acid);
  border: 1px solid var(--acid);
  border-radius: 0;
  color: var(--ink);
  display: inline-block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 16px 22px;
  text-decoration: none;
  text-transform: uppercase;
}

.gh-account table.shop_table {
  border: 1px solid var(--line);
  border-collapse: collapse;
  width: 100%;
}

.gh-account table.shop_table th,
.gh-account table.shop_table td {
  border-bottom: 1px solid var(--line);
  padding: 15px 12px;
  text-align: left;
}

.gh-account .woocommerce-message,
.gh-account .woocommerce-info,
.gh-account .woocommerce-error {
  background: rgba(216, 255, 69, 0.08);
  border: 1px solid rgba(216, 255, 69, 0.35);
  color: var(--paper);
  list-style: none;
  margin: 0 0 26px;
  padding: 18px 20px;
}

.account-assurance {
  background: var(--wine);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.account-assurance a {
  border-right: 1px solid rgba(240, 234, 223, 0.2);
  min-height: 210px;
  padding: 30px clamp(24px, 3vw, 46px);
}

.account-assurance a:last-child {
  border-right: 0;
}

.account-assurance span {
  color: var(--acid);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
}

.account-assurance strong {
  display: block;
  font-size: clamp(23px, 2.1vw, 32px);
  letter-spacing: -0.04em;
  margin: 56px 0 12px;
  text-transform: uppercase;
}

.account-assurance p {
  color: rgba(240, 234, 223, 0.66);
  font-family: Georgia, serif;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.hero-product-search {
  margin-top: 32px;
  max-width: 620px;
}

.hero-product-search input[type="search"] {
  background: transparent;
  border-color: rgba(10, 9, 10, 0.25);
  color: var(--ink);
  height: 54px;
}

.hero-product-search input[type="search"]::placeholder {
  color: rgba(10, 9, 10, 0.4);
}

.product-search-results {
  background: var(--ink);
  min-height: 460px;
  padding: 84px clamp(34px, 6vw, 96px) 110px;
}

.product-search-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
}

.product-search-card {
  border: 1px solid var(--line);
  min-width: 0;
}

.product-search-image {
  background: #151315;
  display: block;
  min-height: 370px;
  overflow: hidden;
  position: relative;
}

.product-search-image img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  transition: transform 0.4s ease;
  width: 100%;
}

.product-search-card:hover .product-search-image img {
  transform: scale(1.025);
}

.product-search-image span {
  background: var(--acid);
  color: var(--ink);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  left: 14px;
  padding: 8px 9px;
  position: absolute;
  top: 14px;
  z-index: 2;
}

.product-search-card-copy {
  padding: 26px;
}

.product-search-card-copy > p {
  color: rgba(240, 234, 223, 0.46);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.1em;
  margin: 0 0 20px;
  text-transform: uppercase;
}

.product-search-card h2 {
  font-size: clamp(25px, 2.4vw, 38px);
  letter-spacing: -0.05em;
  line-height: 0.98;
  margin: 0 0 24px;
}

.product-search-price {
  font-size: 15px;
  margin-bottom: 24px;
}

.product-search-card .text-link,
.product-search-empty a {
  color: var(--acid);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-search-results .navigation.pagination {
  margin-top: 50px;
}

.product-search-results .nav-links {
  display: flex;
  gap: 8px;
}

.product-search-results .page-numbers {
  border: 1px solid var(--line);
  color: var(--paper);
  padding: 12px 15px;
}

.product-search-results .page-numbers.current {
  background: var(--acid);
  color: var(--ink);
}

.product-search-empty {
  border: 1px solid var(--line);
  padding: clamp(34px, 7vw, 90px);
}

.product-search-empty > p {
  color: var(--acid);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
}

.product-search-empty h2 {
  font-size: clamp(38px, 5vw, 72px);
  letter-spacing: -0.06em;
  margin: 70px 0 30px;
  max-width: 760px;
}

body.gh-account #sim-chat-button,
body.gh-product-search #sim-chat-button,
body.gh-transaction #sim-chat-button {
  border-radius: 50% !important;
  height: 50px !important;
  min-width: 50px !important;
  padding: 0 !important;
  width: 50px !important;
}

body.gh-account #sim-chat-button > span:not(.sim-chat-button-icon):not(#sim-chat-unread),
body.gh-product-search #sim-chat-button > span:not(.sim-chat-button-icon):not(#sim-chat-unread),
body.gh-transaction #sim-chat-button > span:not(.sim-chat-button-icon):not(#sim-chat-unread) {
  display: none !important;
}

body.gh-account #sim-chat-button .sim-chat-button-icon,
body.gh-product-search #sim-chat-button .sim-chat-button-icon,
body.gh-transaction #sim-chat-button .sim-chat-button-icon {
  margin: 0 !important;
}

.information-hero {
  align-items: end;
  background: var(--paper);
  color: var(--ink);
  display: grid;
  gap: clamp(70px, 9vw, 150px);
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  min-height: 520px;
  padding: clamp(76px, 8vw, 120px) clamp(28px, 6vw, 96px) clamp(68px, 7vw, 104px);
}

.information-hero .eyebrow {
  color: rgba(10, 9, 10, 0.48);
}

.information-hero h1 {
  font-size: clamp(62px, 7.2vw, 112px);
  letter-spacing: -0.08em;
  line-height: 0.84;
  margin: 36px 0 0;
  text-transform: uppercase;
}

.information-hero h1 em {
  color: var(--wine);
  display: block;
  font-size: 0.63em;
  line-height: 1;
  margin-top: 16px;
  text-transform: none;
}

.information-hero-copy > span {
  color: rgba(10, 9, 10, 0.46);
  display: block;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: 0.13em;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.information-hero-copy > p {
  font-family: Georgia, serif;
  font-size: 20px;
  line-height: 1.55;
  margin: 0;
  max-width: 520px;
}

.information-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
}

.information-sidebar {
  border-right: 1px solid var(--line);
  padding: clamp(54px, 6vw, 90px) clamp(24px, 4vw, 58px);
}

.information-sidebar .eyebrow {
  color: var(--acid);
  margin-bottom: 38px;
}

.information-sidebar nav {
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 110px;
}

.information-sidebar a {
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: rgba(240, 234, 223, 0.66);
  display: flex;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  justify-content: space-between;
  letter-spacing: 0.08em;
  padding: 16px 0;
  text-transform: uppercase;
}

.information-sidebar a:hover,
.information-sidebar a.active {
  color: var(--acid);
}

.information-content {
  background: #121012;
  color: rgba(240, 234, 223, 0.78);
  font-family: Georgia, serif;
  font-size: 17px;
  line-height: 1.75;
  min-height: 620px;
  overflow-wrap: anywhere;
  padding: clamp(58px, 7vw, 110px) clamp(28px, 8vw, 128px);
}

.information-content > :first-child,
.information-content .elementor > :first-child,
.information-content .elementor-widget-container > :first-child {
  margin-top: 0;
}

.information-content .elementor,
.information-content .elementor-section,
.information-content .elementor-container,
.information-content .elementor-column,
.information-content .elementor-widget-wrap,
.information-content .elementor-widget,
.information-content .elementor-widget-container {
  background: transparent !important;
  display: block;
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: none !important;
  min-height: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  width: 100% !important;
}

.information-content h1,
.information-content h2,
.information-content h3,
.information-content h4 {
  color: var(--paper);
  font-family: var(--font-syne), Arial, sans-serif;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 2.2em 0 0.7em;
  text-transform: uppercase;
}

.information-content h1,
.information-content h2 {
  font-size: clamp(32px, 4vw, 58px);
}

.information-content h3 {
  font-size: clamp(24px, 2.4vw, 36px);
}

.information-content p,
.information-content ul,
.information-content ol,
.information-content blockquote {
  margin: 0 0 1.4em;
  max-width: 860px;
}

.information-content ul,
.information-content ol {
  padding-left: 1.4em;
}

.information-content li + li {
  margin-top: 0.5em;
}

.information-content a {
  color: var(--acid);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.information-content img {
  height: auto;
  max-width: 100%;
}

.information-content table {
  border-collapse: collapse;
  display: block;
  margin: 30px 0;
  max-width: 100%;
  overflow-x: auto;
}

.information-content th,
.information-content td {
  border: 1px solid var(--line);
  padding: 12px;
  text-align: left;
}

.information-next {
  align-items: end;
  background: var(--wine);
  color: var(--paper);
  display: grid;
  gap: 40px;
  grid-template-columns: 0.55fr 1fr auto;
  padding: clamp(70px, 8vw, 110px) clamp(28px, 6vw, 96px);
}

.information-next .eyebrow {
  color: var(--acid);
  align-self: start;
}

.information-next h2 {
  font-size: clamp(44px, 6vw, 88px);
  letter-spacing: -0.07em;
  line-height: 0.9;
  margin: 0;
  text-transform: uppercase;
}

.information-next h2 em {
  color: var(--acid);
  display: block;
  font-size: 0.8em;
  margin-top: 8px;
  text-transform: none;
}

.information-next .ghost-button {
  border: 1px solid rgba(240, 234, 223, 0.5);
  color: var(--paper);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  padding: 15px 18px;
  text-transform: uppercase;
}

.information-next .ghost-button:hover {
  background: var(--acid);
  border-color: var(--acid);
  color: var(--ink);
}

body.gh-information #sim-chat-button {
  border-radius: 50% !important;
  height: 50px !important;
  min-width: 50px !important;
  padding: 0 !important;
  width: 50px !important;
}

body.gh-information #sim-chat-button > span:not(.sim-chat-button-icon):not(#sim-chat-unread) {
  display: none !important;
}

body.gh-information #sim-chat-button .sim-chat-button-icon {
  margin: 0 !important;
}

.generic-page-body {
  background: #121012;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.generic-page-content {
  min-height: 520px;
  width: 100%;
}

.generic-page-content iframe {
  background: var(--paper);
  border: 0;
  display: block;
  min-height: min(76vh, 900px);
  width: 100%;
}

.generic-page-content form {
  background: rgba(240, 234, 223, 0.035);
  border: 1px solid var(--line);
  margin: 28px 0;
  max-width: 860px;
  padding: clamp(22px, 4vw, 42px);
}

.generic-page-content label {
  color: var(--paper);
  display: block;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: 0.07em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.generic-page-content input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
.generic-page-content select,
.generic-page-content textarea {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--paper);
  font-family: Georgia, serif;
  font-size: 16px;
  min-height: 50px;
  padding: 12px 14px;
  width: 100%;
}

.generic-page-content textarea {
  min-height: 150px;
}

.generic-page-content button,
.generic-page-content input[type="submit"],
.generic-page-content .button {
  background: var(--acid);
  border: 0;
  border-radius: 0;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 0.08em;
  min-height: 48px;
  padding: 15px 20px;
  text-decoration: none;
  text-transform: uppercase;
}

.generic-page-content .form-row,
.generic-page-content .wpforms-field {
  margin: 0 0 20px;
}

.generic-page-content .woocommerce-privacy-policy-text,
.generic-page-content .terms-label {
  color: rgba(240, 234, 223, 0.68);
  font-family: Georgia, serif;
  font-size: 14px;
  line-height: 1.6;
  text-transform: none;
}

.generic-page-affiliate-dashboard .become-an-affiliate-form,
.generic-page-affiliate-dashboard .forms-container,
.generic-page-affiliate-dashboard .register-form {
  background: transparent !important;
  color: var(--paper) !important;
  padding: clamp(20px, 4vw, 44px) !important;
}

.generic-page-affiliate-dashboard .become-an-affiliate-form {
  border: 1px solid var(--line);
}

.generic-page-affiliate-dashboard .become-an-affiliate-form p,
.generic-page-affiliate-dashboard .forms-container p,
.generic-page-affiliate-dashboard .register-form p {
  color: rgba(240, 234, 223, 0.78) !important;
}

.generic-page-affiliate-dashboard button.btn,
.generic-page-affiliate-dashboard .button,
.generic-page-affiliate-dashboard input[type="submit"] {
  background: var(--acid) !important;
  border-color: var(--acid) !important;
  color: var(--ink) !important;
  min-height: 48px !important;
  padding: 14px 20px !important;
}

.generic-page-content .elementor-spacer,
.generic-page-content .elementor-spacer-inner {
  display: none !important;
  min-height: 0 !important;
}

.generic-page-content .elementor-icon-box-wrapper {
  align-items: flex-start;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: 42px minmax(0, 1fr);
  margin-bottom: 22px;
  padding-bottom: 22px;
}

.generic-page-content .elementor-icon {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.generic-page-content .elementor-icon svg {
  fill: var(--acid);
  height: 17px;
  width: 17px;
}

.generic-page-content .elementor-icon-box-title {
  font-size: 24px;
  margin: 0 0 6px;
}

.generic-page-content .elementor-icon-box-description {
  margin: 0;
}

.content-index-grid,
.site-search-results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.content-index-card,
.site-search-result {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  min-height: 380px;
  padding: clamp(28px, 4vw, 58px);
}

.content-index-card > span,
.site-search-result > span {
  color: var(--acid);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.content-index-card h2,
.site-search-result h2 {
  font-size: clamp(30px, 3.5vw, 52px);
  letter-spacing: -0.055em;
  margin: 72px 0 20px;
  text-transform: uppercase;
}

.content-index-card p,
.site-search-result p {
  color: rgba(240, 234, 223, 0.65);
  font-family: Georgia, serif;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.content-index-card em,
.site-search-result em {
  color: var(--acid);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  font-style: normal;
  letter-spacing: 0.07em;
  margin-top: auto;
  padding-top: 40px;
  text-transform: uppercase;
}

.content-index-card:hover,
.site-search-result:hover {
  background: rgba(216, 255, 69, 0.05);
}

.content-index-empty {
  grid-column: 1 / -1;
  min-height: 480px;
  padding: clamp(60px, 8vw, 120px) clamp(28px, 6vw, 96px);
}

.content-index-empty .eyebrow {
  color: var(--acid);
}

.content-index-empty h2 {
  font-size: clamp(44px, 6vw, 88px);
  letter-spacing: -0.07em;
  margin: 70px 0 22px;
  max-width: 900px;
  text-transform: uppercase;
}

.content-index-empty > p:not(.eyebrow) {
  color: rgba(240, 234, 223, 0.68);
  font-family: Georgia, serif;
  font-size: 18px;
  line-height: 1.6;
  max-width: 660px;
}

.content-index-empty .ghost-button {
  border: 1px solid var(--line);
  color: var(--paper);
  display: inline-flex;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  margin-top: 34px;
  padding: 15px 18px;
  text-transform: uppercase;
}

.site-search-page .editorial-product-search,
.not-found-page .editorial-product-search {
  margin-top: 30px;
  max-width: 520px;
}

.site-search-results .catalog-product-card {
  min-height: 100%;
}

.not-found-hero {
  background: var(--paper);
  color: var(--ink);
  display: grid;
  gap: clamp(50px, 8vw, 130px);
  grid-template-columns: 0.4fr minmax(0, 1fr);
  min-height: calc(100vh - 104px);
  padding: clamp(76px, 9vw, 130px) clamp(28px, 6vw, 96px);
}

.not-found-hero .eyebrow {
  color: rgba(10, 9, 10, 0.48);
}

.not-found-hero h1 {
  font-size: clamp(64px, 9vw, 140px);
  letter-spacing: -0.09em;
  line-height: 0.82;
  margin: 0 0 38px;
  text-transform: uppercase;
}

.not-found-hero h1 em {
  color: var(--wine);
  display: block;
  font-size: 0.62em;
  margin-top: 18px;
  text-transform: none;
}

.not-found-hero div > p {
  font-family: Georgia, serif;
  font-size: 19px;
  line-height: 1.55;
  max-width: 620px;
}

.not-found-hero .editorial-product-search {
  border-color: rgba(10, 9, 10, 0.25);
}

.not-found-hero .editorial-product-search input[type="search"] {
  color: var(--ink);
}

.not-found-hero .ghost-button {
  border: 1px solid rgba(10, 9, 10, 0.3);
  color: var(--ink);
  display: inline-flex;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  margin-top: 16px;
  padding: 15px 18px;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .announcement-center,
  .site-header nav {
    display: none;
  }

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

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

  .information-hero {
    gap: 54px;
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .information-layout {
    grid-template-columns: 1fr;
  }

  .information-sidebar {
    border-bottom: 1px solid var(--line);
    border-right: 0;
  }

  .information-sidebar nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    position: static;
  }

  .information-sidebar a:nth-child(odd) {
    margin-right: 22px;
  }

  .information-next {
    grid-template-columns: 1fr 1fr;
  }

  .information-next .eyebrow {
    grid-column: 1 / -1;
  }

  .content-index-grid,
  .site-search-results {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .not-found-hero {
    grid-template-columns: 1fr;
  }

  .wordmark {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  .mobile-navigation {
    display: block;
    position: static;
  }

  .site-header .mobile-navigation-menu {
    display: block;
  }

  .mobile-navigation summary {
    align-items: center;
    display: flex;
    gap: 8px;
    min-height: 44px;
  }

  .mobile-navigation[open] summary {
    color: var(--acid);
  }

  .mobile-navigation-panel {
    left: 0;
    right: auto;
    top: 100%;
    transform: none;
    width: min(420px, 100vw);
  }

  .header-search {
    display: none;
  }

  .header-utility {
    gap: 2px;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .account-button,
  .bag-button {
    align-items: center;
    display: inline-flex;
    justify-content: center;
    min-height: 44px;
    min-width: 38px;
    padding: 0 8px;
    position: relative;
  }

  .header-label {
    display: none;
  }

  .header-action-icon {
    display: block;
    height: 18px;
    width: 18px;
  }

  .bag-button .gh-cart-count {
    background: var(--acid);
    border: 2px solid var(--ink);
    color: var(--ink);
    font-size: 8px;
    height: 17px;
    line-height: 13px;
    margin: 0;
    min-width: 17px;
    padding: 0 3px;
    position: absolute;
    right: 1px;
    top: 3px;
    width: auto;
  }

  .mobile-menu-icon {
    fill: currentColor;
  }

  .product-hero {
    grid-template-columns: 1fr;
  }

  .editorial-art {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    min-height: 660px;
  }

  .editorial-product-gallery {
    min-height: 780px;
  }

  .cherry-orb-one {
    height: 430px;
    width: 430px;
  }

  .cherry-orb-two {
    height: 300px;
    width: 300px;
  }

  .product-panel {
    padding-bottom: 80px;
    padding-top: 80px;
    position: static;
  }

  .editorial-grid,
  .detail-section {
    grid-template-columns: 1fr;
  }

  .editorial-copy {
    max-width: 700px;
  }

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

  .standard-cards article:nth-child(2) {
    border-right: 0;
  }

  .standard-cards article:nth-child(n+3) {
    border-top: 1px solid rgba(10, 9, 10, 0.25);
  }

  .detail-title {
    position: static;
  }

  .store-hero {
    min-height: 720px;
  }

  .store-hero-copy {
    min-height: 720px;
    max-width: 70%;
  }

  .featured-edit {
    grid-template-columns: 1fr 1fr;
  }

  .featured-edit-copy {
    grid-column: 1 / -1;
    max-width: 720px;
  }

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

  .price-proof {
    grid-template-columns: 1fr;
  }

  .price-proof-heading {
    max-width: 760px;
  }

  .price-proof-grid article {
    min-height: 300px;
  }

  .grade-story-title {
    grid-column: 1 / -1;
  }

  .grade-story article {
    min-height: 300px;
  }

  .collection-hero,
  .trust-editorial {
    grid-template-columns: 1fr;
  }

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

  .next-edit {
    align-items: flex-start;
    flex-direction: column;
    gap: 45px;
  }

  .transaction-hero {
    grid-template-columns: 1fr;
  }

  .gh-transaction form.checkout {
    grid-template-columns: 1fr;
  }

  .gh-transaction .ct-order-review {
    position: static;
  }

  .transaction-next-steps,
  .account-hero,
  .product-search-hero {
    grid-template-columns: 1fr;
  }

  .account-hero-copy,
  .product-search-hero-copy {
    align-self: auto;
  }

  .gh-account .woocommerce-MyAccount-navigation,
  .gh-account .woocommerce-MyAccount-content {
    float: none;
    padding-left: 0;
    width: 100%;
  }

  .gh-account .woocommerce-MyAccount-navigation {
    margin-bottom: 42px;
  }

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

@media (max-width: 620px) {
  .category-archive .collection-hero {
    gap: 34px;
    padding: 56px 20px 48px;
  }

  .category-archive.category-count-1 .collection-grid {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .information-hero {
    gap: 46px;
    padding: 72px 20px 62px;
  }

  .information-hero h1 {
    font-size: 50px;
    margin-top: 28px;
  }

  .information-hero-copy > p {
    font-size: 17px;
  }

  .information-sidebar {
    padding: 44px 20px;
  }

  .information-sidebar nav {
    grid-template-columns: 1fr;
  }

  .information-sidebar a:nth-child(odd) {
    margin-right: 0;
  }

  .information-content {
    font-size: 16px;
    padding: 54px 20px 70px;
  }

  .information-next {
    align-items: start;
    grid-template-columns: 1fr;
    padding: 72px 20px;
  }

  .information-next .eyebrow {
    grid-column: auto;
  }

  .information-next h2 {
    font-size: 52px;
  }

  .information-next .ghost-button {
    justify-self: start;
  }

  .generic-page-content iframe {
    min-height: 68vh;
  }

  .generic-page-content form {
    padding: 20px;
  }

  .content-index-grid,
  .site-search-results {
    grid-template-columns: 1fr;
  }

  .content-index-card,
  .site-search-result {
    min-height: 310px;
    padding: 34px 20px;
  }

  .content-index-card h2,
  .site-search-result h2 {
    margin-top: 52px;
  }

  .content-index-empty {
    min-height: 420px;
    padding: 72px 20px;
  }

  .not-found-hero {
    gap: 44px;
    min-height: calc(100vh - 84px);
    padding: 72px 20px;
  }

  .not-found-hero h1 {
    font-size: 58px;
  }

  .announcement {
    font-size: 8px;
    letter-spacing: 0.1em;
    min-height: 26px;
    padding: 0 14px;
  }

  .announcement > span {
    white-space: nowrap;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 58px;
    padding: 0 14px;
  }

  .wordmark {
    font-size: 25px;
  }

  .mobile-navigation summary,
  .account-button,
  .bag-button {
    min-height: 44px;
  }

  .mobile-navigation summary {
    font-size: 9px;
  }

  .mobile-navigation-panel {
    border-left: 0;
    border-right: 0;
    left: 0;
    max-height: calc(100dvh - 84px);
    padding: 20px 18px 24px;
    right: 0;
    top: 100%;
    width: 100vw;
  }

  .bag-button {
    font-size: 9px;
    letter-spacing: 0.1em;
  }

  .account-button,
  .bag-button {
    min-width: 36px;
    padding: 0 7px;
  }

  .header-action-icon {
    height: 17px;
    width: 17px;
  }

  .bag-button .gh-cart-count {
    font-size: 7px;
    height: 16px;
    min-width: 16px;
    right: 0;
    top: 4px;
  }

  .editorial-art {
    min-height: 510px;
    padding: 20px;
  }

  .editorial-product-gallery {
    min-height: auto;
    padding: 0;
  }

  .product-gallery-stage {
    display: flex;
    flex: 0 0 auto;
    gap: 0;
    margin: 0;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    touch-action: pan-x pan-y;
  }

  .product-gallery-stage::-webkit-scrollbar {
    display: none;
  }

  .product-gallery-frame,
  .product-gallery-frame.is-primary {
    aspect-ratio: 1 / 1;
    flex: 0 0 100%;
    grid-column: auto;
    min-height: 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .editorial-product-gallery .art-kicker {
    left: 14px;
    position: absolute;
    right: 14px;
    top: 14px;
  }

  .editorial-product-gallery .art-kicker span {
    background: rgba(10, 9, 10, 0.72);
    border: 1px solid rgba(240, 234, 223, 0.2);
    border-radius: 100px;
    padding: 8px 10px;
  }

  .product-gallery-frame:hover .single-product-image {
    transform: none;
  }

  .cherry-orb-one {
    height: 280px;
    left: 5%;
    top: 28%;
    width: 280px;
  }

  .cherry-orb-two {
    bottom: 10%;
    height: 180px;
    width: 180px;
  }

  .art-type {
    left: 5%;
    top: 32%;
  }

  .art-type strong {
    font-size: 65px;
  }

  .art-type em {
    font-size: 65px;
    margin-left: 25%;
    margin-top: 25px;
  }

  .art-caption {
    display: none;
  }

  .mobile-gallery-controls {
    align-items: center;
    color: rgba(240, 234, 223, 0.7);
    display: grid;
    font-family: var(--font-geist-mono), monospace;
    font-size: 9px;
    grid-template-columns: 58px minmax(0, 1fr) 58px;
    letter-spacing: 0.1em;
    background: rgba(10, 9, 10, 0.78);
    border: 1px solid rgba(240, 234, 223, 0.22);
    border-radius: 100px;
    bottom: 14px;
    left: 14px;
    min-height: 40px;
    padding: 8px 12px;
    position: absolute;
    right: 14px;
    z-index: 8;
  }

  .mobile-gallery-counter {
    justify-self: start;
  }

  .mobile-gallery-hint {
    justify-self: end;
  }

  .mobile-gallery-dots {
    align-items: center;
    display: flex;
    gap: 8px;
    justify-content: center;
  }

  .mobile-gallery-dots button {
    background: rgba(240, 234, 223, 0.28);
    border: 0;
    border-radius: 50%;
    height: 7px;
    padding: 0;
    transition: background-color 180ms ease, transform 180ms ease;
    width: 7px;
  }

  .mobile-gallery-dots button[aria-current="true"] {
    background: var(--acid);
    transform: scale(1.35);
  }

  .mobile-gallery-dots button:focus-visible {
    outline: 2px solid var(--acid);
    outline-offset: 3px;
  }

  .product-gallery-lightbox-inner {
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    padding: 68px 10px 54px;
  }

  .product-gallery-lightbox-nav {
    height: 42px;
    width: 42px;
  }

  .product-gallery-lightbox-close {
    right: 12px;
    top: 12px;
  }

  .product-panel {
    padding: 38px 20px 68px;
  }

  body.single-product.gh-editorial {
    padding-bottom: 72px;
  }

  body.single-product.gh-editorial #sim-chat-button {
    bottom: 86px !important;
  }

  .mobile-purchase-bar {
    align-items: center;
    background: rgba(10, 9, 10, 0.96);
    border-top: 1px solid var(--line);
    bottom: 0;
    display: grid;
    gap: 12px;
    grid-template-columns: minmax(0, 1fr) auto;
    left: 0;
    min-height: 72px;
    padding: 10px 14px;
    position: fixed;
    right: 0;
    z-index: 99998;
  }

  .mobile-purchase-bar > div {
    min-width: 0;
  }

  .mobile-purchase-bar > div > span {
    color: rgba(240, 234, 223, 0.58);
    display: block;
    font-size: 8px;
    letter-spacing: 0.08em;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .mobile-purchase-bar strong .amount,
  .mobile-purchase-bar strong .woocommerce-Price-currencySymbol {
    display: inline;
  }

  .mobile-purchase-bar strong del,
  .mobile-purchase-bar strong ins {
    white-space: nowrap;
  }

  .mobile-purchase-bar strong {
    color: var(--paper);
    display: block;
    font-size: 20px;
    letter-spacing: -0.04em;
    margin-top: 3px;
  }

  .mobile-purchase-bar button {
    background: var(--acid);
    border: 0;
    color: var(--ink);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
    min-height: 48px;
    padding: 0 20px;
    text-transform: uppercase;
  }

  .product-panel h1 {
    font-size: clamp(42px, 12vw, 50px);
  }

  .generic-product-page .product-panel h1 {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 0.94;
  }

  .profile-notes {
    gap: 8px;
    grid-template-columns: repeat(2, 1fr);
  }

  .profile-notes div {
    padding-right: 4px;
  }

  .profile-notes div:last-child {
    grid-column: 1 / -1;
  }

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

  .gh-editorial-purchase {
    padding: 15px;
  }

  .purchase-heading {
    align-items: flex-start;
    gap: 18px;
  }

  .purchase-current-price {
    flex: 0 0 auto;
  }

  .order-confidence {
    grid-template-columns: 1fr;
  }

  .order-confidence a,
  .order-confidence > div {
    padding: 12px 0;
  }

  .order-confidence a + a,
  .order-confidence > div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
  }

  .editorial-section,
  .standards-section,
  .detail-section {
    padding: 72px 20px;
  }

  .editorial-grid {
    gap: 48px;
    margin-top: 38px;
  }

  .editorial-grid h2,
  .standards-heading h2 {
    font-size: 48px;
  }

  .standards-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
  }

  .standard-cards {
    grid-template-columns: 1fr;
    margin-top: 46px;
  }

  .standard-cards article,
  .standard-cards article + article {
    border-bottom: 1px solid rgba(10, 9, 10, 0.25);
    border-right: 0;
    min-height: 210px;
    padding: 20px 0;
  }

  .standard-cards h3 {
    margin-top: 68px;
  }

  .closing-banner {
    align-items: flex-start;
    flex-direction: column;
    gap: 40px;
    padding-bottom: 48px;
    padding-top: 48px;
  }

  .closing-banner > span {
    font-size: 120px;
  }

  footer {
    flex-direction: column;
    gap: 8px;
    padding: 24px 20px;
  }

  .store-hero-copy {
    justify-content: flex-start;
    min-height: calc(100svh - 92px);
    max-width: none;
    padding: 66px 20px 260px;
  }

  .store-hero-copy h1,
  .collection-hero h1 {
    font-size: clamp(48px, 14vw, 61px);
  }

  .store-hero-copy h1 {
    margin-bottom: 28px;
    margin-top: 28px;
  }

  .store-hero {
    min-height: calc(100svh - 92px);
  }

  .store-hero::after {
    background:
      linear-gradient(90deg, rgba(3, 3, 3, 0.58), rgba(3, 3, 3, 0.38) 68%, rgba(3, 3, 3, 0.08)),
      linear-gradient(180deg, rgba(3, 3, 3, 0.86) 0%, rgba(3, 3, 3, 0.72) 42%, rgba(3, 3, 3, 0.22) 62%, transparent 74%),
      linear-gradient(0deg, rgba(3, 3, 3, 0.34), transparent 28%);
  }

  .store-hero-media img {
    object-position: center bottom;
  }

  .store-hero-intro {
    font-size: 16px;
    line-height: 1.5;
    max-width: 70%;
  }

  .store-hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-top: 32px;
  }

  .store-hero-actions .primary-link {
    min-height: 50px;
  }

  .hero-proof-row {
    display: none;
  }

  .manifesto-strip {
    gap: 13px;
    grid-template-columns: repeat(2, 1fr);
    padding: 16px 18px;
  }

  .featured-edit {
    gap: 48px;
    grid-template-columns: 1fr;
    padding: 72px 20px;
  }

  .featured-edit-copy {
    grid-column: auto;
  }

  .featured-edit-art {
    min-height: 480px;
  }

  .home-selection {
    padding: 72px 20px;
  }

  .section-line-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .home-product-grid,
  .collection-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    padding: 18px;
  }

  .product-card-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    min-height: 0;
  }

  .product-card-meta h3 {
    max-width: none;
  }

  .product-card-price {
    align-items: baseline;
    flex-direction: row;
    gap: 8px;
    text-align: left;
  }

  .product-art {
    aspect-ratio: 1 / 1;
  }

  .grade-story {
    gap: 40px;
    grid-template-columns: 1fr;
    padding: 64px 20px;
  }

  .price-proof {
    gap: 44px;
    padding: 64px 20px;
  }

  .price-proof-heading h2 {
    font-size: 48px;
  }

  .price-proof-grid {
    grid-template-columns: 1fr;
  }

  .price-proof-grid article {
    border-left: 0;
    border-top: 1px solid rgba(240, 234, 223, 0.26);
    min-height: 210px;
    padding: 18px 0 26px;
  }

  .grade-story-title {
    grid-column: auto;
  }

  .grade-story article {
    min-height: 240px;
  }

  .grade-story article h3 {
    min-height: 0;
  }

  .grade-story article a {
    margin-top: 0;
  }

  .trust-editorial {
    padding: 64px 20px;
  }

  .trust-editorial h2 {
    font-size: 48px;
  }

  .trust-editorial-notes a {
    gap: 12px;
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .trust-editorial-notes em {
    justify-self: start;
    margin-top: 6px;
  }

  .collection-hero {
    gap: 52px;
    min-height: 0;
    padding: 72px 20px 62px;
  }

  .collection-hero h1 {
    font-size: clamp(51px, 14vw, 61px);
    margin-top: 30px;
  }

  .collection-hero h1 em {
    font-size: 0.72em;
    margin-top: 10px;
  }

  .collection-hero-copy > p {
    font-size: 18px;
  }

  .collection-proof {
    gap: 7px;
    margin-top: 26px;
  }

  .collection-proof span {
    font-size: 7px;
    padding: 8px 10px;
  }

  .collection-tier-guide {
    grid-template-columns: 1fr;
  }

  .collection-tier-guide > a {
    border-bottom: 1px solid rgba(240, 234, 223, 0.2);
    border-right: 0;
    min-height: 0;
    padding: 30px 20px 76px;
  }

  .collection-tier-guide > a:last-child {
    border-bottom: 0;
  }

  .collection-tier-guide > a::after {
    bottom: 30px;
    left: 20px;
    opacity: 1;
    right: auto;
  }

  .collection-tier-guide h2 {
    font-size: 30px;
    margin: 32px 0 13px;
  }

  .collection-tier-guide p {
    font-size: 14px;
  }

  .collection-toolbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
    padding: 24px 20px 28px;
  }

  .collection-toolbar-copy {
    gap: 6px;
  }

  .collection-toolbar-copy strong {
    font-size: 17px;
  }

  .filter-buttons {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .collection-category-nav {
    justify-content: flex-start;
  }

  .collection-category-nav a {
    padding: 10px 13px;
  }

  .collection-note {
    gap: 28px;
    grid-template-columns: 1fr;
    padding: 54px 20px 60px;
  }

  .collection-note-copy h2 {
    font-size: clamp(38px, 11vw, 48px);
  }

  .collection-note-copy p {
    font-size: 16px;
    margin-top: 18px;
  }

  .transaction-hero {
    gap: 48px;
    min-height: 0;
    padding: 72px 20px 62px;
  }

  .transaction-hero h1 {
    font-size: 52px;
    margin-top: 28px;
  }

  .transaction-hero-copy > p {
    font-size: 17px;
  }

  .transaction-progress {
    margin-top: 26px;
  }

  .transaction-content {
    padding: 54px 20px;
  }

  .gh-transaction .woocommerce-cart-form,
  .gh-transaction .cart-collaterals,
  .gh-transaction .ct-customer-details,
  .gh-transaction .ct-order-review,
  .gh-transaction .woocommerce-order {
    padding: 18px;
  }

  .gh-transaction .coupon {
    align-items: stretch;
    flex-direction: column;
  }

  .gh-transaction .coupon .input-text {
    min-width: 0;
    width: 100%;
  }

  .gh-transaction .woocommerce-cart-form table.shop_table td {
    padding-left: 0;
    padding-right: 0;
  }

  .gh-transaction .product-thumbnail img {
    height: 76px;
    width: 76px;
  }

  .transaction-assurance {
    grid-template-columns: 1fr;
  }

  .transaction-assurance a {
    border-bottom: 1px solid rgba(240, 234, 223, 0.2);
    border-right: 0;
    min-height: 0;
    padding: 30px 20px 34px;
  }

  .transaction-assurance a:last-child {
    border-bottom: 0;
  }

  .transaction-assurance strong {
    font-size: 28px;
    margin-top: 44px;
  }

  .transaction-next-steps {
    gap: 44px;
    padding: 70px 20px;
  }

  .transaction-next-steps h2 {
    font-size: 48px;
  }

  .transaction-next-steps li {
    gap: 10px;
    grid-template-columns: 34px 1fr;
  }

  .transaction-next-steps li p {
    grid-column: 2;
  }

  .gh-transaction .woocommerce-order-overview {
    grid-template-columns: 1fr;
  }

  .gh-transaction .woocommerce-order-overview li,
  .gh-transaction .woocommerce-order-overview li:nth-child(even),
  .gh-transaction .woocommerce-order-overview li:nth-last-child(-n+2) {
    border-bottom: 1px solid var(--copper);
    border-right: 0;
  }

  .gh-transaction .woocommerce-order-overview li:last-child {
    border-bottom: 0;
  }

  .account-hero,
  .product-search-hero {
    gap: 48px;
    min-height: 0;
    padding: 72px 20px 62px;
  }

  .account-hero h1,
  .product-search-hero h1 {
    font-size: 52px;
    margin-top: 28px;
  }

  .account-hero-copy > p,
  .product-search-hero-copy > p {
    font-size: 17px;
  }

  .account-reference {
    margin-top: 26px;
  }

  .account-content,
  .product-search-results {
    padding: 54px 20px 70px;
  }

  .account-frame {
    padding: 18px;
  }

  .gh-account .u-columns {
    grid-template-columns: 1fr;
  }

  .gh-account .u-column1,
  .gh-account .u-column2 {
    padding: 20px;
  }

  .gh-account .woocommerce-MyAccount-content > p:first-child {
    font-size: 18px;
  }

  .gh-account table.shop_table {
    display: block;
    overflow-x: auto;
  }

  .account-assurance {
    grid-template-columns: 1fr;
  }

  .account-assurance a {
    border-bottom: 1px solid rgba(240, 234, 223, 0.2);
    border-right: 0;
    min-height: 0;
    padding: 30px 20px 34px;
  }

  .account-assurance a:last-child {
    border-bottom: 0;
  }

  .account-assurance strong {
    font-size: 27px;
    margin-top: 42px;
  }

  .hero-product-search {
    margin-top: 26px;
  }

  .product-search-grid {
    grid-template-columns: 1fr;
  }

  .product-search-image {
    min-height: 330px;
  }

  .product-search-card-copy {
    padding: 22px;
  }

  .next-edit {
    min-height: 390px;
    padding: 72px 20px;
  }

  .next-edit h2 {
    font-size: 54px;
  }

  #sim-chat-button {
    border-radius: 50% !important;
    bottom: 14px !important;
    height: 48px !important;
    min-width: 48px !important;
    padding: 0 !important;
    right: 14px !important;
    width: 48px !important;
  }

  #sim-chat-button > span:not(.sim-chat-button-icon):not(#sim-chat-unread) {
    display: none !important;
  }

  #sim-chat-button .sim-chat-button-icon {
    font-size: 18px !important;
    margin: 0 !important;
  }
}

@media (max-width: 620px) {
  .category-archive .collection-hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .category-archive .collection-hero-heading,
  .category-archive .collection-hero-copy {
    min-width: 0;
    width: 100%;
  }

  .term-concentrates .category-archive .collection-hero h1 {
    font-size: clamp(36px, 12vw, 52px);
    overflow-wrap: anywhere;
  }
}

/* Price hierarchy: make the active price and weight totals immediately scannable. */
.purchase-current-price {
  background: rgba(216, 255, 69, 0.07);
  border-left: 3px solid var(--acid);
  min-width: 176px;
  padding: 10px 14px;
}

.purchase-current-price > span {
  color: var(--acid);
  font-size: 10px;
  font-weight: 700;
}

.purchase-current-price > strong {
  color: var(--acid);
  font-size: clamp(32px, 3vw, 40px);
  font-weight: 800;
  line-height: 1;
  margin-top: 5px;
  white-space: nowrap;
}

.purchase-current-price > strong ins {
  color: var(--acid);
  text-decoration: none;
}

.purchase-current-price > strong del {
  color: rgba(240, 234, 223, 0.48);
  font-size: 0.52em;
  font-weight: 500;
  margin-left: 8px;
}

.purchase-current-price > strong .price,
.purchase-current-price > strong .sale-price {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}

.purchase-current-price > strong .sale-price {
  align-items: baseline;
  display: inline-flex;
  flex-direction: row;
  gap: 10px;
}

.purchase-current-price > strong .sale-price ins {
  color: var(--acid);
  display: inline;
  font-size: 1em;
  order: 1;
}

.purchase-current-price > strong .sale-price del {
  color: rgba(240, 234, 223, 0.48);
  display: inline;
  font-size: 0.52em;
  margin-left: 0;
  order: 2;
}

.purchase-current-price .woocommerce-Price-amount,
.purchase-current-price .woocommerce-Price-currencySymbol {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  opacity: 1;
}

.weight-option .weight-total {
  color: var(--paper);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.1;
  opacity: 1;
}

.weight-option.selected .weight-total,
.weight-option:hover .weight-total {
  color: var(--ink);
  font-size: 19px;
}

.weight-option small {
  font-size: 10px;
  opacity: 0.72;
}

.weight-option small b {
  font-size: 9px;
  font-weight: 800;
}

@media (max-width: 620px) {
  .purchase-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .purchase-current-price {
    align-items: flex-start;
    min-width: 0;
    width: 100%;
  }

  .purchase-current-price > strong {
    font-size: 34px;
  }

  .weight-option .weight-total {
    font-size: 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
  }
}
