:root {
  --ink: #0c2138;
  --ink-2: #173b59;
  --teal: #0b7480;
  --teal-soft: #dceff0;
  --gold: #e3a624;
  --gold-deep: #b77a09;
  --plum: #713c58;
  --clay: #d56d53;
  --cream: #f7f5f0;
  --paper: #ffffff;
  --mist: #edf1f3;
  --line: #d9e0e3;
  --muted: #62717c;
  --soft-ink: #314657;
  --shadow: 0 14px 36px rgba(12, 33, 56, .10);
  --shadow-small: 0 6px 18px rgba(12, 33, 56, .08);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
}

body.locked {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

button {
  cursor: pointer;
}

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

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

.shell {
  width: min(1440px, calc(100% - 56px));
  margin-inline: auto;
}

.announcement {
  min-height: 38px;
  display: flex;
  align-items: center;
  background: var(--ink);
  color: #f8fbfc;
  font-size: 12px;
}

.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.announcement span,
.announcement strong {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.announcement strong {
  color: #ffd878;
}

.announcement svg {
  width: 15px;
  height: 15px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.header-main {
  min-height: 82px;
  display: grid;
  grid-template-columns: 230px minmax(300px, 1fr) auto;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand > span {
  display: grid;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1;
  white-space: nowrap;
}

.brand strong {
  color: var(--teal);
  font-weight: 700;
}

.brand small {
  margin-top: 5px;
  color: var(--muted);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.site-search {
  height: 48px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 0 13px;
  border: 1px solid #cbd5d9;
  border-radius: 6px;
  background: #f8fafb;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.site-search:focus-within {
  border-color: var(--teal);
  background: var(--paper);
  box-shadow: 0 0 0 3px rgba(11, 116, 128, .12);
}

.site-search svg {
  width: 19px;
  color: var(--muted);
}

.site-search input {
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.site-search kbd {
  padding: 4px 7px;
  border: 1px solid var(--line);
  border-bottom-width: 2px;
  border-radius: 4px;
  background: var(--paper);
  color: var(--muted);
  font-size: 10px;
}

.header-actions {
  display: flex;
  align-items: center;
}

.header-action {
  min-width: 98px;
  height: 52px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 9px;
  padding: 0 14px;
  border: 0;
  border-left: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  text-align: left;
}

.header-action svg {
  width: 21px;
  height: 21px;
  color: var(--teal);
}

.header-action > span {
  display: grid;
  gap: 2px;
  font-size: 12px;
  font-weight: 800;
}

.header-action small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
}

.header-action:hover,
.header-action:focus-visible {
  background: var(--mist);
}

.cart-action {
  background: var(--ink);
  color: #fff;
}

.cart-action svg,
.cart-action small {
  color: #fff;
}

.cart-action:hover,
.cart-action:focus-visible {
  background: var(--ink-2);
}

.department-bar {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.department-inner {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.department-trigger,
.track-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 850;
}

.department-trigger {
  min-width: 230px;
  align-self: stretch;
  padding: 0 18px;
  background: var(--teal);
  color: #fff;
}

.department-trigger svg,
.track-link svg {
  width: 17px;
  height: 17px;
}

.department-inner nav {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 28px;
}

.department-inner nav a,
.track-link {
  color: var(--soft-ink);
  font-size: 12px;
  font-weight: 750;
}

.department-inner nav a:hover,
.track-link:hover {
  color: var(--teal);
}

.hero {
  position: relative;
  min-height: 535px;
  overflow: hidden;
  background: #ddd1b9;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroReveal 1.1s ease-out both;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(248, 239, 220, .98) 0%, rgba(248, 239, 220, .94) 33%, rgba(248, 239, 220, .40) 53%, rgba(248, 239, 220, 0) 72%);
}

.hero-motion {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-float {
  position: absolute;
  color: rgba(255, 255, 255, .88);
  filter: drop-shadow(0 5px 9px rgba(12, 33, 56, .28));
}

.hero-float svg {
  width: 34px;
  height: 34px;
  stroke-width: 1.35;
}

.hero-float-one {
  top: 18%;
  right: 10%;
  animation: pantryFloatOne 6.5s ease-in-out infinite;
}

.hero-float-two {
  right: 36%;
  bottom: 13%;
  color: rgba(255, 216, 120, .94);
  animation: pantryFloatTwo 7.5s ease-in-out infinite;
}

.hero-float-three {
  top: 39%;
  right: 27%;
  animation: pantryFloatThree 5.6s ease-in-out infinite;
}

@keyframes heroReveal {
  from { opacity: 0; transform: scale(1.025); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes pantryFloatOne {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-7deg); }
  50% { transform: translate3d(-12px, 16px, 0) rotate(6deg); }
}

@keyframes pantryFloatTwo {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(5deg); }
  50% { transform: translate3d(14px, -14px, 0) rotate(-8deg); }
}

@keyframes pantryFloatThree {
  0%, 100% { transform: translate3d(0, 0, 0) scale(.92); opacity: .65; }
  50% { transform: translate3d(-8px, -12px, 0) scale(1.08); opacity: 1; }
}

.hero-inner {
  min-height: 535px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  width: min(560px, 48%);
  padding: 42px 0 54px;
}

.kicker {
  margin: 0 0 9px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.story-copy h2,
.catalog-sidebar h2,
.wholesale-copy h2,
.promise-intro h2,
.tracking h2,
.drawer-header h2,
.checkout-intro h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 550px;
  margin: 0;
  font-size: 59px;
  line-height: 1.02;
}

.hero-word-wrap {
  display: block;
  min-height: 1.03em;
  color: var(--teal);
}

.hero-word {
  display: inline-block;
  transition: opacity .18s ease, transform .18s ease;
}

.hero-word.changing {
  opacity: 0;
  transform: translateY(.2em);
}

.hero-lead {
  max-width: 540px;
  margin: 21px 0 0;
  color: var(--soft-ink);
  font-size: 17px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 28px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 850;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-small);
}

.button svg {
  width: 17px;
  height: 17px;
}

.button-primary {
  background: var(--ink);
  color: #fff;
}

.button-primary:hover {
  background: var(--ink-2);
}

.button-light {
  border-color: #c9bfae;
  background: rgba(255, 255, 255, .84);
  color: var(--ink);
}

.button-gold {
  background: var(--gold);
  color: var(--ink);
}

.hero-proof {
  position: absolute;
  left: 0;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--soft-ink);
  font-size: 11px;
  font-weight: 750;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-proof svg {
  width: 16px;
  height: 16px;
  color: var(--teal);
}

.service-ribbon {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.service-grid {
  min-height: 86px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.service-grid > div {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 0 25px;
  border-right: 1px solid var(--line);
}

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

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

.service-grid svg {
  width: 25px;
  height: 25px;
  color: var(--teal);
}

.service-grid span {
  display: grid;
  gap: 3px;
}

.service-grid strong {
  font-size: 12px;
}

.service-grid small {
  color: var(--muted);
  font-size: 11px;
}

.section {
  padding-block: 76px;
}

.section + .section {
  padding-top: 12px;
}

.section-heading {
  min-height: 67px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.section-heading h2,
.story-copy h2,
.catalog-sidebar h2,
.wholesale-copy h2,
.promise-intro h2,
.tracking h2 {
  margin: 0;
  font-size: 37px;
  line-height: 1.15;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 850;
}

.text-link svg {
  width: 16px;
  height: 16px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.mobile-collection-heading {
  display: none;
}

.category-card {
  min-width: 0;
  min-height: 248px;
  display: grid;
  grid-template-rows: 168px 1fr;
  gap: 0;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--paper);
  color: var(--ink);
  text-align: left;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.category-card:hover,
.category-card.active {
  border-color: var(--teal);
  transform: translateY(-3px);
  box-shadow: var(--shadow-small);
}

.category-photo {
  display: block;
  overflow: hidden;
  background: #e8edef;
}

.category-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.category-card:hover .category-photo img {
  transform: scale(1.035);
}

.category-copy {
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 15px 16px 17px;
}

.category-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 600;
}

.category-card small {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.visual-discovery {
  padding-bottom: 76px;
}

.collection-grid {
  min-height: 540px;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}

.collection-card {
  min-width: 0;
  min-height: 0;
  position: relative;
  overflow: hidden;
  display: block;
  padding: 0;
  border: 0;
  border-radius: 7px;
  background: var(--ink);
  color: #fff;
  text-align: left;
}

.collection-lead {
  grid-row: 1 / span 2;
}

.collection-card > img,
.collection-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.collection-card > img {
  object-fit: cover;
  transition: transform .45s ease;
}

.collection-card:hover > img {
  transform: scale(1.025);
}

.collection-shade {
  background: linear-gradient(180deg, rgba(12, 33, 56, .06) 22%, rgba(12, 33, 56, .88) 100%);
}

.collection-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: grid;
  gap: 8px;
  padding: 28px;
}

.collection-copy small {
  color: #ffd878;
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.collection-copy strong {
  max-width: 580px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.15;
}

.collection-card:not(.collection-lead) .collection-copy strong {
  font-size: 22px;
}

.collection-copy em {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 4px;
  color: #fff;
  font-size: 10px;
  font-style: normal;
  font-weight: 850;
}

.collection-copy svg {
  width: 15px;
  height: 15px;
}

.carousel-actions {
  display: flex;
  gap: 8px;
}

.carousel-actions button,
.icon-button {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--paper);
  color: var(--ink);
}

.carousel-actions button:hover,
.icon-button:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.carousel-actions svg,
.icon-button svg {
  width: 18px;
  height: 18px;
}

.product-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 2px;
}

.product-card {
  min-width: 0;
  overflow: hidden;
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #f7f9f9;
  scroll-snap-align: start;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.product-card:hover {
  border-color: #bfcbd0;
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.product-visual {
  position: relative;
  aspect-ratio: 1 / .82;
  display: grid;
  place-items: center;
  overflow: hidden;
  margin: 10px 10px 0;
  border: 1px solid #e1e7e9;
  border-radius: 5px;
  background: var(--paper);
  box-shadow: 0 8px 20px rgba(12, 33, 56, .055);
}

.product-visual::after {
  display: none;
}

.product-visual > img {
  width: 88%;
  height: 86%;
  object-fit: contain;
  transition: transform .25s ease;
}

.product-card:hover .product-visual > img {
  transform: scale(1.045);
}

.product-fallback {
  width: 88%;
  height: 84%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 9px;
  border: 1px dashed #cedadc;
  background: var(--paper);
  color: var(--soft-ink);
  font-family: Georgia, "Times New Roman", serif;
  text-align: center;
}

.product-visual > img + .product-fallback {
  display: none;
}

.product-fallback img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.product-fallback span {
  font-size: 12px;
}

.product-badges {
  position: absolute;
  top: 11px;
  left: 11px;
  z-index: 2;
  display: grid;
  gap: 5px;
}

.product-badge {
  width: fit-content;
  padding: 5px 7px;
  border-radius: 3px;
  background: var(--ink);
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-badge.sale {
  background: var(--clay);
}

.product-badge.new {
  background: var(--plum);
}

.wishlist-toggle,
.quick-view {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
}

.wishlist-toggle {
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
}

.wishlist-toggle.active {
  border-color: var(--plum);
  background: var(--plum);
  color: #fff;
}

.quick-view {
  right: 10px;
  bottom: 10px;
  width: 38px;
  height: 38px;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity .2s ease, transform .2s ease;
}

.product-card:hover .quick-view {
  opacity: 1;
  transform: translateY(0);
}

.wishlist-toggle svg,
.quick-view svg {
  width: 16px;
  height: 16px;
}

.product-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 16px;
  background: var(--paper);
}

.product-brand {
  margin: 0 0 6px;
  color: var(--teal);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-title {
  min-height: 43px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.25;
}

.product-title button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
}

.product-title button:hover {
  color: var(--teal);
}

.product-title,
.product-title button,
.story-product h3,
.deal-card h3,
.wholesale-item h3,
.cart-line h3,
.detail-copy h2 {
  text-transform: uppercase;
}

.product-unit {
  min-height: 33px;
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 8px;
  color: var(--gold-deep);
  font-size: 10px;
  font-weight: 800;
}

.product-rating svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

.product-bottom {
  display: grid;
  grid-template-columns: 1fr 42px;
  align-items: end;
  gap: 10px;
  margin-top: auto;
  padding-top: 13px;
}

.price-stack {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
}

.price {
  color: var(--ink);
  font-size: 19px;
  font-weight: 900;
}

.was {
  color: var(--muted);
  font-size: 11px;
  text-decoration: line-through;
}

.add-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 5px;
  background: var(--teal);
  color: #fff;
  transition: background .2s ease, transform .2s ease;
}

.add-button:hover {
  background: var(--ink);
  transform: translateY(-2px);
}

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

.story-band {
  min-height: 410px;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  margin-block: 10px 76px;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.story-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 54px;
  border-right: 1px solid rgba(255, 255, 255, .14);
}

.story-copy h2,
.wholesale-copy h2 {
  max-width: 520px;
  font-size: 42px;
}

.story-copy > p:not(.kicker),
.wholesale-copy > p:not(.kicker) {
  max-width: 540px;
  margin: 18px 0 25px;
  color: #cbd8e1;
  line-height: 1.65;
}

.light-kicker {
  color: #ffd878;
}

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

.story-product {
  min-width: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, .14);
  background: #102b45;
}

.story-product:last-child {
  border-right: 0;
  background: var(--plum);
}

.story-product .product-visual {
  align-self: stretch;
  margin: 0;
  border-color: rgba(255, 255, 255, .48);
  background: var(--paper);
  box-shadow: 0 16px 32px rgba(5, 16, 26, .18);
}

.story-product h3 {
  margin: 17px 0 5px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 500;
}

.story-product p {
  margin: 0;
  color: #d9e3e9;
  font-size: 12px;
}

.story-product button {
  width: fit-content;
  margin-top: 14px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #ffd878;
  font-weight: 850;
}

.deal-code {
  padding: 10px 13px;
  border: 1px dashed var(--gold-deep);
  border-radius: 5px;
  color: var(--soft-ink);
  font-size: 11px;
}

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

.deal-card {
  min-height: 220px;
  display: grid;
  grid-template-columns: 1fr 150px;
  align-items: center;
  gap: 15px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--paper);
}

.deal-card:nth-child(2) {
  background: #edf5f5;
}

.deal-card:nth-child(3) {
  background: #f4edf1;
}

.deal-card h3 {
  margin: 8px 0 5px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 600;
}

.deal-card p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 11px;
}

.deal-card .product-visual {
  aspect-ratio: 1;
  margin: 0;
  border-color: #e1e7e9;
  background: var(--paper);
  box-shadow: 0 10px 24px rgba(12, 33, 56, .08);
}

.deal-card .product-fallback {
  width: 100%;
  height: 100%;
}

.catalog {
  display: grid;
  grid-template-columns: 246px minmax(0, 1fr);
  gap: 34px;
  padding-block: 82px;
}

.catalog-sidebar {
  align-self: start;
  position: sticky;
  top: 170px;
}

.catalog-sidebar h2 {
  font-size: 35px;
}

.catalog-copy {
  margin: 14px 0 24px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.filter-group {
  display: grid;
  gap: 7px;
  margin-top: 15px;
}

.filter-group label,
.stacked-form label {
  color: var(--soft-ink);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

select,
input,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid #cbd5d9;
  border-radius: 5px;
  outline: 0;
  background: var(--paper);
  color: var(--ink);
}

textarea {
  min-height: 86px;
  padding-top: 11px;
  resize: vertical;
}

select:focus,
input:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(11, 116, 128, .10);
}

.clear-filter {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--teal);
  font-size: 11px;
  font-weight: 850;
}

.clear-filter svg {
  width: 14px;
  height: 14px;
}

.catalog-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  margin-top: 25px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.catalog-note svg {
  width: 20px;
  color: var(--gold-deep);
}

.catalog-note p {
  display: grid;
  gap: 5px;
  margin: 0;
  font-size: 11px;
}

.catalog-note span {
  color: var(--muted);
  line-height: 1.45;
}

.catalog-toolbar {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.catalog-toolbar p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.sort-control {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 11px;
}

.sort-control select {
  min-height: 36px;
  width: auto;
}

.mobile-filters {
  display: none;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.empty-state {
  grid-column: 1 / -1;
  min-height: 280px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  border: 1px dashed #b9c6cb;
  background: var(--paper);
  text-align: center;
}

.empty-state svg {
  width: 34px;
  height: 34px;
  color: var(--teal);
}

.empty-state h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
}

.empty-state p {
  margin: 0;
  color: var(--muted);
}

.wholesale {
  min-height: 480px;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  margin-bottom: 82px;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.wholesale-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 52px;
  border-right: 1px solid rgba(255, 255, 255, .14);
}

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

.wholesale-item {
  min-width: 0;
  display: grid;
  grid-template-columns: 84px 1fr;
  align-items: center;
  gap: 18px;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, .14);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.wholesale-item:nth-child(2n) {
  border-right: 0;
}

.wholesale-item:nth-last-child(-n+2) {
  border-bottom: 0;
}

.wholesale-item .product-visual {
  width: 84px;
  aspect-ratio: 1;
  margin: 0;
  border-color: rgba(255, 255, 255, .48);
  background: var(--paper);
  box-shadow: 0 10px 22px rgba(5, 16, 26, .18);
}

.wholesale-item .product-fallback {
  width: 100%;
  height: 100%;
}

.wholesale-item .product-fallback img {
  width: 42px;
  height: 42px;
}

.wholesale-item h3 {
  margin: 0 0 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 500;
}

.wholesale-item p {
  margin: 0 0 8px;
  color: #b7c8d3;
  font-size: 10px;
}

.wholesale-price {
  color: #ffd878;
  font-size: 17px;
  font-weight: 900;
}

.promise-section {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 70px;
  padding-top: 0;
}

.promise-intro p:not(.kicker) {
  max-width: 490px;
  color: var(--muted);
  line-height: 1.65;
}

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

.promise-grid article {
  padding: 23px 22px;
  border-right: 1px solid var(--line);
}

.promise-grid article:last-child {
  border-right: 0;
}

.promise-grid span {
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 900;
}

.promise-grid h3 {
  min-height: 44px;
  margin: 20px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.promise-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.tracking {
  display: grid;
  grid-template-columns: .6fr 1.4fr;
  align-items: center;
  gap: 60px;
  padding: 58px;
  margin-block: 0 82px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.tracking p:not(.kicker) {
  color: var(--muted);
  line-height: 1.6;
}

.order-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.order-steps li {
  position: relative;
  display: grid;
  place-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-align: center;
}

.order-steps li::after {
  content: "";
  position: absolute;
  top: 16px;
  left: 50%;
  width: 100%;
  height: 1px;
  background: var(--line);
  z-index: 0;
}

.order-steps li:last-child::after {
  display: none;
}

.order-steps span {
  z-index: 1;
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
}

.order-steps .active {
  color: var(--teal);
}

.order-steps .active span {
  border-color: var(--teal);
  background: var(--teal);
  color: #fff;
}

.site-footer {
  background: #081827;
  color: #e6eef2;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.35fr .65fr .65fr 1fr;
  gap: 70px;
  padding-block: 66px;
}

.footer-brand p,
.footer-news p {
  max-width: 330px;
  color: #9fb0bb;
  font-size: 12px;
  line-height: 1.65;
}

.footer-brand > a:last-child {
  color: #ffd878;
  font-size: 12px;
  font-weight: 800;
}

.footer-logo {
  color: #fff;
}

.footer-logo img {
  width: 48px;
  height: 48px;
}

.footer-main h3 {
  margin: 0 0 19px;
  color: #fff;
  font-size: 12px;
}

.footer-main > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footer-main > div a,
.footer-main > div button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #9fb0bb;
  font-size: 11px;
}

.footer-main > div a:hover,
.footer-main > div button:hover {
  color: #fff;
}

.footer-news form {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 44px;
  margin-top: 6px;
}

.footer-news input {
  border-color: #365064;
  border-radius: 5px 0 0 5px;
  background: #102b45;
  color: #fff;
}

.footer-news button {
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 0 5px 5px 0;
  background: var(--gold) !important;
  color: var(--ink) !important;
}

.footer-bottom {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #284156;
  color: #8195a3;
  font-size: 10px;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr min(440px, 100%);
  visibility: hidden;
  opacity: 0;
  transition: opacity .2s ease, visibility .2s ease;
}

.cart-drawer.open {
  visibility: visible;
  opacity: 1;
}

.drawer-backdrop {
  grid-column: 1;
  grid-row: 1;
  border: 0;
  background: rgba(7, 21, 34, .56);
}

.cart-panel {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  height: 100%;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  transform: translateX(100%);
  background: var(--paper);
  transition: transform .28s ease;
}

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

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

.drawer-header h2 {
  margin: 0;
  font-size: 28px;
}

.cart-delivery {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  margin: 18px 24px 0;
  padding: 13px;
  background: var(--teal-soft);
  color: var(--ink);
}

.cart-delivery svg {
  width: 21px;
  color: var(--teal);
}

.cart-delivery span {
  display: grid;
  gap: 2px;
  font-size: 11px;
}

.cart-delivery small {
  color: var(--muted);
}

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

.empty-cart {
  min-height: 100%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 11px;
  color: var(--muted);
  text-align: center;
}

.empty-cart svg {
  width: 36px;
  height: 36px;
  color: var(--teal);
}

.empty-cart h3 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.empty-cart p {
  max-width: 270px;
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
}

.cart-line {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.cart-thumb {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid #e1e7e9;
  border-radius: 4px;
  background: var(--paper);
  box-shadow: 0 5px 12px rgba(12, 33, 56, .05);
}

.cart-thumb img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.cart-line h3 {
  margin: 0 0 4px;
  font-size: 12px;
}

.cart-line p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}

.qty-controls {
  display: grid;
  grid-template-columns: 28px 28px 28px;
  align-items: center;
  text-align: center;
}

.qty-controls button {
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}

.qty-controls strong {
  font-size: 11px;
}

.cart-summary {
  display: grid;
  gap: 11px;
  padding: 20px 24px 24px;
  border-top: 1px solid var(--line);
}

.cart-summary > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 11px;
}

.cart-summary > div strong {
  color: var(--ink);
}

.cart-summary .cart-total {
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 16px;
}

.cart-summary > small {
  color: var(--muted);
  font-size: 9px;
  text-align: center;
}

.wide {
  width: 100%;
}

dialog {
  padding: 0;
  border: 0;
  color: var(--ink);
}

dialog::backdrop {
  background: rgba(7, 21, 34, .62);
}

.product-dialog {
  width: min(980px, calc(100% - 36px));
  max-height: min(740px, calc(100% - 36px));
  overflow: auto;
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 30px 80px rgba(5, 16, 26, .28);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 570px;
}

.detail-gallery {
  min-width: 0;
  display: grid;
  place-items: center;
  padding: 44px;
  background: #edf1f2;
}

.detail-gallery .product-visual {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
  margin: 0;
  border-color: #dce3e5;
  background: var(--paper);
  box-shadow: 0 18px 38px rgba(12, 33, 56, .12);
}

.detail-copy {
  display: flex;
  flex-direction: column;
  padding: 54px 48px 44px;
}

.detail-copy h2 {
  margin: 6px 0 11px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 37px;
  font-weight: 500;
  line-height: 1.12;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 11px;
}

.detail-description {
  margin: 22px 0;
  color: var(--soft-ink);
  font-size: 13px;
  line-height: 1.75;
  white-space: pre-line;
}

.detail-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 22px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.detail-specs span {
  display: grid;
  gap: 5px;
  padding: 12px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 9px;
  text-transform: uppercase;
}

.detail-specs strong {
  color: var(--ink);
  font-size: 12px;
  text-transform: none;
}

.detail-buy {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 16px;
  margin-top: auto;
}

.detail-price .price {
  font-size: 28px;
}

.account-dialog {
  width: min(1120px, calc(100% - 36px));
  max-height: calc(100% - 36px);
  overflow: auto;
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 30px 80px rgba(5, 16, 26, .28);
}

.checkout-shell {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  min-height: 690px;
}

.checkout-intro {
  padding: 54px 38px;
  background: var(--ink);
  color: #fff;
}

.checkout-intro > img {
  width: 74px;
  height: 74px;
  margin-bottom: 48px;
  object-fit: contain;
}

.checkout-intro h2 {
  margin: 7px 0 18px;
  font-size: 38px;
}

.checkout-intro > p:not(.kicker) {
  color: #c0d0da;
  line-height: 1.7;
}

.checkout-intro ul {
  display: grid;
  gap: 15px;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
  color: #dce6ec;
  font-size: 11px;
}

.checkout-intro li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.checkout-intro li svg {
  width: 17px;
  color: #ffd878;
}

.checkout-forms {
  display: grid;
  gap: 28px;
  padding: 48px;
}

.checkout-forms section + section {
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.form-title {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  gap: 11px;
  margin-bottom: 20px;
}

.form-title > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.form-title .kicker {
  margin-bottom: 2px;
}

.form-title h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 500;
}

.stacked-form {
  display: grid;
  gap: 12px;
}

.stacked-form label {
  display: grid;
  gap: 6px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.form-status {
  min-height: 20px;
  margin: 10px 0 0;
  color: var(--teal);
  font-size: 11px;
  font-weight: 750;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  z-index: 150;
  min-width: 260px;
  max-width: calc(100% - 32px);
  padding: 13px 17px;
  border-radius: 5px;
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
  font-size: 12px;
  font-weight: 750;
  text-align: center;
  opacity: 0;
  transform: translate(-50%, 16px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.mobile-nav {
  display: none;
}

.skeleton {
  position: relative;
  overflow: hidden;
  background: #e4eaec;
}

.skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .72), transparent);
  animation: skeletonMove 1.2s infinite;
}

@keyframes skeletonMove {
  to { transform: translateX(100%); }
}

@media (max-width: 1240px) {
  .header-main {
    grid-template-columns: 205px 1fr auto;
    gap: 18px;
  }

  .header-action {
    min-width: 54px;
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 0 11px;
  }

  .header-action > span {
    display: none;
  }

  .department-inner nav {
    gap: 18px;
  }

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

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

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

@media (max-width: 940px) {
  html {
    scroll-padding-top: 116px;
  }

  .shell {
    width: min(100% - 32px, 760px);
  }

  .announcement-inner span {
    display: none;
  }

  .announcement-inner {
    justify-content: center;
  }

  .header-main {
    min-height: 66px;
    grid-template-columns: 1fr auto;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand > span {
    font-size: 22px;
  }

  .site-search {
    grid-column: 1 / -1;
    grid-row: 2;
    height: 44px;
    margin-bottom: 11px;
  }

  .site-search kbd {
    display: none;
  }

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

  .cart-action {
    width: 46px;
    height: 46px;
    min-width: 46px;
    padding: 0;
    border-radius: 5px;
  }

  .department-bar {
    display: none;
  }

  .hero {
    min-height: 495px;
  }

  .hero-inner {
    min-height: 495px;
  }

  .hero-media {
    object-position: 64% center;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(248, 239, 220, .98) 0%, rgba(248, 239, 220, .92) 46%, rgba(248, 239, 220, .20) 82%);
  }

  .hero-content {
    width: 67%;
    padding-bottom: 70px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-proof {
    gap: 13px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    padding-block: 10px;
  }

  .service-grid > div {
    padding: 12px 18px;
    border-bottom: 1px solid var(--line);
  }

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

  .service-grid > div:nth-last-child(-n+2) {
    border-bottom: 0;
  }

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

  .category-card {
    min-width: 0;
  }

  .collection-grid {
    min-height: 510px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 290px 206px;
  }

  .collection-lead {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .story-band,
  .wholesale {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .story-copy,
  .wholesale-copy {
    padding: 44px max(22px, calc((100vw - 728px) / 2));
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
  }

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

  .deal-card {
    grid-template-columns: 1fr 180px;
  }

  .catalog {
    grid-template-columns: 1fr;
    padding-top: 56px;
  }

  .catalog-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-items: end;
  }

  .catalog-sidebar > .kicker,
  .catalog-sidebar > h2,
  .catalog-copy,
  .catalog-note {
    display: none;
  }

  .filter-group {
    margin: 0;
  }

  .clear-filter {
    grid-column: 1 / -1;
    margin: 0;
  }

  .wholesale-list {
    min-height: 390px;
  }

  .promise-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .tracking {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 38px;
  }

  .footer-main {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

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

  .footer-news form {
    max-width: 430px;
  }

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

  .detail-gallery {
    min-height: 370px;
  }

  .checkout-shell {
    grid-template-columns: 1fr;
  }

  .checkout-intro {
    min-height: 280px;
  }

  .checkout-intro > img {
    margin-bottom: 20px;
  }

  .checkout-intro ul {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 24px;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }

  .shell {
    width: calc(100% - 28px);
  }

  .announcement {
    min-height: 31px;
  }

  .announcement strong {
    font-size: 10px;
  }

  .header-main {
    width: 100%;
    padding-inline: 14px;
  }

  .brand > span {
    font-size: 19px;
  }

  .brand small {
    display: none;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .hero {
    min-height: 602px;
    background: #f8efdc;
  }

  .hero-inner {
    min-height: 602px;
    justify-content: flex-start;
  }

  .hero-media {
    height: 224px;
    bottom: auto;
    object-position: 66% center;
  }

  .hero-motion {
    height: 224px;
    bottom: auto;
  }

  .hero-float svg {
    width: 27px;
    height: 27px;
  }

  .hero-overlay {
    height: 240px;
    bottom: auto;
    background: linear-gradient(180deg, rgba(248, 239, 220, 0) 48%, rgba(248, 239, 220, 1) 100%);
  }

  .hero-content {
    width: 100%;
    padding-top: 240px;
    padding-bottom: 72px;
  }

  .hero h1 {
    max-width: 355px;
    font-size: 34px;
    line-height: 1.03;
  }

  .hero-lead {
    max-width: 350px;
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.5;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    width: 100%;
    gap: 8px;
    margin-top: 20px;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 44px;
    padding-inline: 9px;
    font-size: 11px;
  }

  .hero-proof {
    right: 0;
    bottom: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px 14px;
    padding-top: 12px;
    border-top: 1px solid rgba(12, 33, 56, .13);
  }

  .hero-proof span:last-child {
    display: none;
  }

  .service-grid {
    width: calc(100% - 28px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-inline: auto;
    padding: 0;
  }

  .service-grid > div {
    min-width: 0;
    min-height: 82px;
    padding: 12px 10px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line) !important;
  }

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

  .service-grid > div:nth-last-child(-n+2) {
    border-bottom: 0 !important;
  }

  .service-grid svg {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
  }

  .service-grid strong {
    font-size: 11px;
  }

  .service-grid small {
    font-size: 9px;
    line-height: 1.35;
  }

  .section {
    padding-block: 54px;
  }

  .section + .section {
    padding-top: 4px;
  }

  .section-heading {
    align-items: start;
    margin-bottom: 9px;
  }

  .section-heading h2,
  .catalog-sidebar h2,
  .promise-intro h2,
  .tracking h2 {
    font-size: 29px;
  }

  .text-link {
    display: none;
  }

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

  .category-card {
    min-width: 0;
    min-height: 188px;
    grid-template-rows: 110px 1fr;
  }

  .category-copy {
    gap: 5px;
    padding: 11px 12px 13px;
  }

  .category-card strong {
    font-size: 16px;
  }

  .category-card small {
    font-size: 9px;
  }

  .visual-discovery {
    width: 100%;
    padding-bottom: 54px;
  }

  .mobile-collection-heading {
    width: calc(100% - 28px);
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin: 0 auto 15px;
  }

  .mobile-collection-heading .kicker {
    margin-bottom: 5px;
  }

  .mobile-collection-heading strong {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    font-weight: 600;
  }

  .mobile-collection-heading > span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--muted);
    font-size: 9px;
    font-weight: 850;
    white-space: nowrap;
  }

  .mobile-collection-heading svg {
    width: 14px;
    height: 14px;
  }

  .collection-grid {
    min-height: auto;
    width: calc(100% - 28px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 250px 190px;
    gap: 9px;
    margin-inline: auto;
    padding: 0;
  }

  .collection-card,
  .collection-lead {
    min-width: 0;
    height: auto;
    grid-row: auto;
    grid-column: auto;
  }

  .collection-lead {
    grid-column: 1 / -1;
  }

  .collection-copy {
    gap: 6px;
    padding: 17px;
  }

  .collection-copy strong,
  .collection-card:not(.collection-lead) .collection-copy strong {
    font-size: 18px;
  }

  .product-rail {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    overflow: visible;
    padding: 0;
  }

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

  .story-band {
    margin-bottom: 54px;
  }

  .story-copy,
  .wholesale-copy {
    padding: 42px 20px;
  }

  .story-copy h2,
  .wholesale-copy h2 {
    font-size: 34px;
  }

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

  .story-product {
    padding: 14px;
  }

  .story-product h3 {
    font-size: 16px;
  }

  .deal-code {
    display: none;
  }

  .deal-card {
    min-height: 190px;
    grid-template-columns: 1fr 112px;
    padding: 18px;
  }

  .deal-card h3 {
    font-size: 19px;
  }

  .catalog {
    width: 100%;
    display: block;
    padding-block: 54px;
  }

  .catalog-sidebar {
    width: calc(100% - 28px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin: 0 auto 18px;
  }

  .catalog-content {
    width: calc(100% - 28px);
    margin-inline: auto;
  }

  .catalog-toolbar {
    align-items: start;
  }

  .sort-control {
    display: grid;
    gap: 4px;
  }

  .sort-control select {
    width: 150px;
  }

  .mobile-filters {
    display: none;
  }

  .mobile-filters button {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid var(--line);
    border-radius: 5px;
    background: var(--paper);
    color: var(--ink);
    font-size: 11px;
    font-weight: 800;
  }

  .mobile-filters svg {
    width: 15px;
  }

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

  .product-info {
    padding: 12px;
  }

  .product-title {
    min-height: 38px;
    font-size: 15px;
  }

  .product-unit {
    min-height: 30px;
    font-size: 9px;
  }

  .product-bottom {
    grid-template-columns: 1fr 38px;
  }

  .price {
    font-size: 16px;
  }

  .add-button {
    width: 38px;
    height: 38px;
  }

  .wholesale {
    margin-bottom: 54px;
  }

  .wholesale-list {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .wholesale-item {
    padding: 19px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .14) !important;
  }

  .wholesale-item:last-child {
    border-bottom: 0 !important;
  }

  .promise-section {
    padding-top: 0;
  }

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

  .promise-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .promise-grid article:last-child {
    border-bottom: 0;
  }

  .promise-grid h3 {
    min-height: auto;
    margin-top: 11px;
  }

  .tracking {
    width: 100%;
    padding: 35px 20px;
    margin-bottom: 54px;
    border-left: 0;
    border-right: 0;
  }

  .order-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 23px 0;
  }

  .order-steps li:nth-child(3)::after,
  .order-steps li:nth-child(6)::after {
    display: none;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 36px 25px;
    padding-block: 48px;
  }

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

  .footer-bottom {
    min-height: 82px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
  }

  .cart-drawer {
    grid-template-columns: 1fr;
  }

  .drawer-backdrop {
    display: none;
  }

  .cart-panel {
    grid-column: 1;
    width: 100%;
  }

  .product-dialog,
  .account-dialog {
    width: 100%;
    max-width: none;
    max-height: 100%;
    height: 100%;
    border-radius: 0;
  }

  .detail-gallery {
    min-height: 300px;
    padding: 34px 18px;
  }

  .detail-copy {
    padding: 34px 20px 44px;
  }

  .detail-copy h2 {
    font-size: 30px;
  }

  .detail-buy {
    grid-template-columns: 1fr;
  }

  .checkout-intro {
    min-height: 310px;
    padding: 44px 24px;
  }

  .checkout-intro h2 {
    max-width: 320px;
    font-size: 34px;
  }

  .checkout-intro ul {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .checkout-forms {
    padding: 34px 20px 54px;
  }

  .two-col,
  .form-actions {
    grid-template-columns: 1fr;
  }

  .mobile-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    height: calc(68px + env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding-bottom: env(safe-area-inset-bottom);
    border-top: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 -8px 22px rgba(12, 33, 56, .09);
  }

  .mobile-nav a,
  .mobile-nav button {
    position: relative;
    min-width: 0;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 4px;
    padding: 5px 2px;
    border: 0;
    background: transparent;
    color: var(--muted);
    font-size: 9px;
    font-weight: 750;
    transition: color .18s ease, background .18s ease;
  }

  .mobile-nav a.active,
  .mobile-nav button.active {
    color: var(--teal);
    background: linear-gradient(180deg, rgba(11, 116, 128, .08), transparent 78%);
  }

  .mobile-nav svg {
    width: 19px;
    height: 19px;
  }

  .mobile-nav button:nth-child(3) {
    color: var(--teal);
  }

  .mobile-nav b {
    position: absolute;
    top: 4px;
    right: calc(50% - 19px);
    min-width: 17px;
    height: 17px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--gold);
    color: var(--ink);
    font-size: 8px;
  }

  .toast {
    bottom: calc(85px + env(safe-area-inset-bottom));
  }
}

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

/* Admin-managed homepage campaign */
.campaign-band {
  min-height: 310px;
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: end;
  margin-top: 28px;
  overflow: hidden;
  border-radius: 8px;
  background: #0c2138;
  color: #fff;
}

.campaign-band[hidden] {
  display: none;
}

.campaign-band > img,
.campaign-band-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.campaign-band > img {
  z-index: -2;
  object-fit: cover;
}

.campaign-band-shade {
  z-index: -1;
  background: linear-gradient(90deg, rgba(8, 23, 38, .92) 0%, rgba(8, 23, 38, .68) 46%, rgba(8, 23, 38, .12) 100%);
}

.campaign-band[data-theme="teal"] .campaign-band-shade {
  background: linear-gradient(90deg, rgba(4, 54, 61, .94), rgba(4, 81, 88, .62) 48%, rgba(4, 54, 61, .08));
}

.campaign-band[data-theme="plum"] .campaign-band-shade {
  background: linear-gradient(90deg, rgba(49, 24, 58, .94), rgba(88, 45, 92, .61) 48%, rgba(49, 24, 58, .08));
}

.campaign-band[data-theme="clay"] .campaign-band-shade {
  background: linear-gradient(90deg, rgba(76, 38, 29, .94), rgba(128, 67, 43, .61) 48%, rgba(76, 38, 29, .08));
}

.campaign-band-copy {
  width: min(620px, 72%);
  display: grid;
  justify-items: start;
  gap: 13px;
  padding: clamp(28px, 4vw, 54px);
}

.campaign-band-copy .kicker {
  margin: 0;
  color: #f6d37c;
}

.campaign-band-copy h2 {
  margin: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 500;
  line-height: 1.02;
}

.campaign-band-copy .button {
  margin-top: 4px;
}

@media (max-width: 720px) {
  .campaign-band {
    min-height: 400px;
    margin: 18px 14px 0;
    border-radius: 7px;
  }

  .campaign-band > img {
    object-position: center;
  }

  .campaign-band-shade,
  .campaign-band[data-theme="teal"] .campaign-band-shade,
  .campaign-band[data-theme="plum"] .campaign-band-shade,
  .campaign-band[data-theme="clay"] .campaign-band-shade {
    background: linear-gradient(180deg, rgba(8, 23, 38, .04) 18%, rgba(8, 23, 38, .93) 76%);
  }

  .campaign-band-copy {
    width: 100%;
    gap: 10px;
    padding: 24px 20px;
  }

  .campaign-band-copy h2 {
    max-width: 390px;
    font-size: 34px;
  }
}
