@font-face {
  font-family: "Noto Sans KR";
  src: url("../fonts/noto-sans-kr.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --ink: #111111;
  --paper: #ffffff;
  --mist: #f7f5ef;
  --line: #d8d8d8;
  --muted: #555555;
  --cobalt: #1f45d8;
  --font-sans: "Noto Sans KR", Arial, sans-serif;
  --content-width: 1330px;
  --header-height: 64px;
}

* {
  box-sizing: border-box;
}

html {
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  color: inherit;
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.content-width {
  width: min(calc(100% - 64px), var(--content-width));
  margin-inline: auto;
}

.announcement {
  min-height: 30px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--ink);
}

.announcement p {
  margin: 0;
  font-size: 10px;
  line-height: 1;
}

.header-row {
  position: relative;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 32px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
}

.primary-nav,
.utility-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 11px;
}

.utility-nav {
  justify-content: flex-end;
}

.brand-link {
  display: block;
  width: 184px;
}

.brand-link img {
  width: 100%;
  height: auto;
}

.icon-button {
  display: none;
  width: 40px;
  height: 40px;
  padding: 10px;
  border: 0;
  background: transparent;
}

.icon-button span {
  display: block;
  width: 20px;
  height: 1px;
  margin: 5px 0;
  background: var(--ink);
}

.home-hero {
  position: relative;
  height: calc(100svh - 180px);
  min-height: 560px;
  max-height: 900px;
  overflow: hidden;
  background: #d4d1cc;
}

.home-hero video,
.home-hero picture,
.home-hero picture img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 48%;
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.34));
}

.home-hero-overlay {
  position: absolute;
  z-index: 1;
  left: 32px;
  bottom: 38px;
  color: var(--paper);
}

.home-hero-overlay h1 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 400;
  line-height: 0.95;
}

.home-hero-eyebrow {
  display: block;
  margin-bottom: 14px;
  font-size: 10px;
}

.home-hero-overlay p {
  margin: 18px 0 26px;
  font-size: 14px;
}

.text-link {
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 11px;
}

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

.home-intro {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 24px;
  padding: 120px 0;
}

.section-kicker {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}

.home-intro h2 {
  max-width: 920px;
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(34px, 4vw, 64px);
  font-weight: 400;
  line-height: 1.08;
}

.home-intro > p:last-child {
  grid-column: 2;
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  align-items: end;
}

.editorial-tile img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--mist);
}

.editorial-tile-tall img {
  aspect-ratio: 5 / 6;
}

.editorial-tile > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: end;
  padding-top: 18px;
}

.editorial-tile .section-kicker {
  grid-column: 1 / -1;
}

.editorial-tile h2 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 28px;
  font-weight: 400;
}

.product-section {
  padding: 140px 0;
}

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

.section-heading h2 {
  margin: 8px 0 0;
  font-family: var(--font-sans);
  font-size: 42px;
  font-weight: 400;
}

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

.product-card h2,
.product-card h3,
.product-card p {
  margin: 0;
}

.product-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--mist);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.product-card a:hover .product-image img {
  transform: scale(1.012);
}

.product-image > span {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 6px 8px;
  color: var(--paper);
  background: var(--ink);
  font-size: 9px;
}

.product-image > .product-sold-out {
  right: 10px;
  left: auto;
  color: var(--ink);
  background: var(--paper);
}

.product-info {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  font-size: 12px;
}

.product-info h2,
.product-info h3 {
  font-size: inherit;
  font-weight: 400;
}

.catalog-pending,
.empty-state {
  min-height: 320px;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 10px;
  background: var(--mist);
  text-align: center;
}

.catalog-pending p,
.empty-state p {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 28px;
}

.catalog-pending span,
.empty-state span {
  color: var(--muted);
  font-size: 12px;
}

.empty-state .text-link {
  margin-top: 20px;
}

.brand-banner {
  min-height: 380px;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 28px;
  color: var(--paper);
  background: var(--cobalt);
}

.brand-banner img {
  width: min(560px, 75vw);
  filter: invert(1);
  mix-blend-mode: screen;
}

.brand-banner p {
  margin: 0;
  font-size: 10px;
}

.collection-header {
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 40px;
  padding-bottom: 34px;
}

.collection-header h1 {
  margin: 8px 0 0;
  font-family: var(--font-sans);
  font-size: 58px;
  font-weight: 400;
}

.collection-controls {
  display: flex;
  align-items: flex-end;
  gap: 18px;
}

.collection-controls label {
  display: grid;
  gap: 7px;
}

.collection-controls label > span {
  color: var(--muted);
  font-size: 8px;
}

.collection-controls input,
.collection-controls select,
.collection-controls button {
  min-height: 32px;
  padding: 0 24px 0 0;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  background: transparent;
  font-size: 10px;
  letter-spacing: 0;
}

.collection-controls input {
  width: 220px;
  padding-right: 0;
  outline: 0;
}

.collection-controls input::placeholder {
  color: var(--muted);
}

.collection-controls button {
  padding-right: 0;
}

.collection-body {
  padding-bottom: 140px;
}

.product-grid-collection {
  row-gap: 54px;
}

.content-page-header {
  display: grid;
  gap: 18px;
  padding-top: 96px;
  padding-bottom: 72px;
  border-bottom: 1px solid var(--ink);
}

.content-page-header h1 {
  max-width: 900px;
  margin: 0;
  font-family: var(--font-sans);
  font-size: 58px;
  font-weight: 400;
}

.content-page-header > p:last-child {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.content-page-sections {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
  min-height: 460px;
  padding-top: 64px;
  padding-bottom: 140px;
}

.content-page-sections article {
  align-self: start;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.content-page-sections h2 {
  margin: 0 0 24px;
  font-size: 11px;
  font-weight: 500;
}

.content-page-sections p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(320px, 0.6fr);
  gap: 38px;
  padding-top: 40px;
  padding-bottom: 140px;
}

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

.product-thumbnails {
  position: sticky;
  top: 20px;
  align-self: start;
  display: grid;
  gap: 8px;
}

.product-thumbnails button {
  padding: 0;
  border: 1px solid transparent;
  background: var(--mist);
}

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

.product-video-thumb {
  min-height: 84px;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 9px;
}

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

.product-media-list figure {
  margin: 0;
  background: var(--mist);
}

.product-media-list img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-media-list video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.product-media-empty {
  min-height: 640px;
  grid-column: 1 / -1;
  display: grid;
  place-items: center;
  color: var(--muted);
  background: var(--mist);
  font-size: 11px;
}

.product-purchase {
  position: sticky;
  top: 30px;
  align-self: start;
  padding: 18px 0;
}

.product-purchase h1 {
  margin: 10px 0 8px;
  font-family: var(--font-sans);
  font-size: 38px;
  font-weight: 400;
}

.product-badge,
.product-subtitle,
.product-price {
  margin: 0;
  font-size: 12px;
}

.product-subtitle {
  color: var(--muted);
}

.product-price {
  margin-top: 26px;
}

.variant-picker {
  margin: 34px 0 18px;
  padding: 0;
  border: 0;
}

.variant-picker legend {
  margin-bottom: 12px;
  font-size: 10px;
}

.variant-picker > div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.variant-picker input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.variant-picker span {
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  font-size: 11px;
}

.variant-picker input:checked + span {
  color: var(--paper);
  border-color: var(--ink);
  background: var(--ink);
}

.variant-picker input:disabled + span {
  color: #aaa;
  text-decoration: line-through;
}

.add-to-bag {
  width: 100%;
  min-height: 50px;
  color: var(--paper);
  border: 1px solid var(--ink);
  background: var(--ink);
  font-size: 11px;
}

.add-to-bag:disabled {
  color: var(--muted);
  border-color: var(--line);
  background: var(--mist);
}

.product-copy {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.product-copy strong {
  color: var(--ink);
  font-weight: 400;
}

.cart-header {
  display: flex;
  min-height: 210px;
  align-items: flex-end;
  gap: 22px;
  padding-top: 60px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.cart-header h1 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 46px;
  font-weight: 400;
}

.cart-header > span {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 10px;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 64px;
  min-height: 520px;
  padding-top: 42px;
  padding-bottom: 140px;
}

.cart-items .empty-state {
  min-height: 360px;
}

.cart-item {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  gap: 24px;
  padding: 0 0 28px;
  border-bottom: 1px solid var(--line);
}

.cart-item + .cart-item {
  padding-top: 28px;
}

.cart-item-media {
  min-height: 188px;
  background: var(--mist);
}

.cart-item-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
}

.cart-item h2 {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 400;
}

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

.cart-item > strong {
  font-size: 11px;
  font-weight: 400;
}

.cart-item-actions {
  display: flex;
  align-items: flex-end;
  gap: 18px;
}

.cart-item-actions form {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.cart-item-actions label {
  display: grid;
  gap: 6px;
  font-size: 9px;
}

.cart-item-actions input {
  width: 58px;
  height: 34px;
  padding: 0 8px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--paper);
}

.cart-item-actions button {
  min-height: 34px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  font-size: 9px;
}

.cart-summary {
  position: sticky;
  top: 28px;
  align-self: start;
  padding-top: 4px;
}

.cart-summary dl {
  margin: 26px 0 0;
}

.cart-summary dl > div,
.cart-total {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
}

.cart-summary dt,
.cart-summary dd {
  margin: 0;
  font-weight: 400;
}

.cart-summary dd {
  color: var(--muted);
}

.cart-total {
  padding: 22px 0;
  border-bottom: 0;
}

.cart-total strong {
  font-weight: 400;
}

.cart-checkout-action {
  width: 100%;
  min-height: 50px;
  display: grid;
  place-items: center;
  color: var(--paper);
  border: 1px solid var(--ink);
  background: var(--ink);
  font-size: 10px;
}

.checkout-header {
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  gap: 22px;
  padding-top: 72px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.checkout-header h1 {
  margin: 0 auto 0 0;
  font-family: var(--font-sans);
  font-size: 52px;
  font-weight: 400;
}

.checkout-header > span {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 10px;
}

.checkout-connection-note,
.checkout-form-error {
  margin-top: 28px;
  padding: 18px 20px;
  border-left: 2px solid #a9813f;
  background: #f6f4ef;
  font-size: 11px;
}

.checkout-connection-note p,
.checkout-form-error {
  margin-bottom: 0;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 72px;
  align-items: start;
  padding-top: 36px;
  padding-bottom: 140px;
}

.checkout-fields {
  border-top: 1px solid var(--ink);
}

.checkout-section {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 32px;
  padding: 36px 0 44px;
  border-bottom: 1px solid var(--line);
}

.checkout-section-heading {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  align-items: start;
}

.checkout-section-heading > span {
  color: var(--muted);
  font-size: 9px;
}

.checkout-section-heading h2,
.checkout-summary-heading h2 {
  margin: 8px 0 0;
  font-size: 18px;
  font-weight: 500;
}

.checkout-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 14px;
}

.checkout-field {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.checkout-field-wide {
  grid-column: 1 / -1;
}

.checkout-field > span {
  font-size: 9px;
}

.checkout-field input {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--paper);
  font: inherit;
  font-size: 11px;
}

.checkout-field em {
  color: var(--muted);
  font-size: 9px;
  font-style: normal;
  line-height: 1.5;
}

.checkout-field small,
.checkout-field-error {
  color: #a12a2a;
  font-size: 9px;
}

.checkout-summary {
  position: sticky;
  top: 28px;
  padding: 26px;
  border: 1px solid var(--line);
}

.checkout-summary-items {
  margin-top: 26px;
  border-top: 1px solid var(--line);
}

.checkout-summary-items article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 9px;
}

.checkout-summary-media {
  width: 58px;
  aspect-ratio: 4 / 5;
  background: var(--mist);
}

.checkout-summary-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.checkout-summary-items article > div:nth-child(2) {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.checkout-summary-items strong {
  overflow: hidden;
  font-size: 10px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.checkout-summary-items article span {
  color: var(--muted);
}

.checkout-totals {
  margin: 20px 0;
}

.checkout-totals > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 0;
  font-size: 10px;
}

.checkout-totals > div:last-child {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--ink);
  font-size: 12px;
}

.checkout-totals dt,
.checkout-totals dd {
  margin: 0;
}

.checkout-agreement {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  padding: 16px 0;
  font-size: 9px;
  line-height: 1.5;
}

.checkout-agreement input {
  width: 14px;
  height: 14px;
  margin: 0;
  accent-color: var(--ink);
}

.checkout-summary button {
  width: 100%;
  min-height: 50px;
  color: var(--paper);
  border: 1px solid var(--ink);
  background: var(--ink);
  font-size: 10px;
}

.checkout-summary button:disabled {
  color: var(--muted);
  border-color: var(--line);
  background: var(--mist);
}

.checkout-summary > p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 9px;
  text-align: center;
}

.checkout-ready {
  min-height: 70svh;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 18px;
  padding-top: 80px;
  padding-bottom: 120px;
  text-align: center;
}

.checkout-ready h1 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 46px;
  font-weight: 400;
}

.checkout-ready strong {
  font-size: 11px;
  font-weight: 500;
}

.checkout-ready > p:not(.section-kicker) {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.checkout-payment {
  min-height: 70svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  column-gap: 96px;
  align-content: center;
  padding-top: 88px;
  padding-bottom: 120px;
}

.checkout-payment-copy h1 {
  max-width: 580px;
  margin: 16px 0 24px;
  font-family: var(--font-sans);
  font-size: 48px;
  font-weight: 400;
}

.checkout-payment-copy > p:last-child {
  max-width: 480px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.checkout-payment-summary {
  margin: 0;
  border-top: 1px solid var(--ink);
}

.checkout-payment-summary > div {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 10px;
}

.checkout-payment-summary dt,
.checkout-payment-summary dd {
  min-width: 0;
  margin: 0;
}

.checkout-payment-summary dt {
  color: var(--muted);
}

.checkout-payment-summary dd {
  overflow-wrap: anywhere;
}

.checkout-payment-summary strong {
  font-size: 14px;
  font-weight: 500;
}

.checkout-payment-notice {
  grid-column: 2;
  margin-top: 24px;
  padding: 18px 0;
  border-bottom: 1px solid #a9813f;
  font-size: 10px;
}

.checkout-payment-notice p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.checkout-payment-button {
  grid-column: 2;
  width: 100%;
  min-height: 52px;
  margin-top: 26px;
  color: var(--paper);
  border: 1px solid var(--ink);
  background: var(--ink);
  font-size: 10px;
}

.checkout-payment-button:disabled {
  color: var(--muted);
  border-color: var(--line);
  background: var(--mist);
}

.checkout-payment-status {
  grid-column: 2;
  min-height: 18px;
  margin: 12px 0 20px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.6;
  text-align: center;
}

.checkout-payment > .text-link {
  grid-column: 2;
  justify-self: center;
}

.checkout-result-code {
  padding: 7px 10px;
  color: var(--muted);
  border: 1px solid var(--line);
  font-size: 9px;
}

.checkout-result-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.checkout-result-primary {
  min-height: 44px;
  display: grid;
  place-items: center;
  padding: 0 24px;
  color: var(--paper);
  border: 1px solid var(--ink);
  background: var(--ink);
  font-size: 10px;
}

.account-auth-shell {
  width: min(calc(100% - 32px), 460px);
  min-height: 680px;
  margin: 0 auto;
  padding: 86px 0 120px;
}

.account-auth-shell header {
  margin-bottom: 44px;
}

.account-auth-shell h1,
.account-header h1 {
  margin: 8px 0 0;
  font-family: var(--font-sans);
  font-size: 52px;
  font-weight: 400;
}

.account-connection-note,
.account-form-error,
.account-success-note {
  margin: 0 0 28px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 11px;
}

.account-connection-note p {
  margin: 6px 0 0;
  color: var(--muted);
}

.account-form-error {
  color: #a2271e;
}

.account-success-note {
  color: #315b48;
}

.account-form-error p,
.account-success-note p {
  margin: 7px 0 0;
  line-height: 1.6;
}

.account-auth-form {
  display: grid;
  gap: 24px;
}

.account-auth-form > label:not(.account-check) {
  display: grid;
  gap: 8px;
}

.account-auth-form label > span,
.account-auth-form label > em {
  font-size: 9px;
  font-style: normal;
}

.account-auth-form label > em {
  color: var(--muted);
}

.account-auth-form input:not([type="checkbox"]) {
  width: 100%;
  min-height: 46px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  background: transparent;
}

.account-auth-form small {
  color: #a2271e;
  font-size: 10px;
}

.account-check {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
}

.account-check input {
  width: 16px;
  height: 16px;
  margin: 0;
}

.account-check small {
  grid-column: 2;
}

.account-auth-form > button {
  min-height: 50px;
  margin-top: 8px;
  color: var(--paper);
  border: 1px solid var(--ink);
  background: var(--ink);
  font-size: 10px;
}

.account-auth-form > button:disabled {
  color: var(--muted);
  border-color: var(--line);
  background: var(--mist);
}

.account-password-link {
  justify-self: end;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--ink);
  font-size: 9px;
}

.account-auth-switch {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.account-auth-switch a {
  margin-left: 6px;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
}

.account-header {
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 60px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.account-header form button {
  padding: 0 0 4px;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  font-size: 9px;
}

.account-layout,
.account-dashboard {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
  gap: 72px;
  padding-top: 44px;
  padding-bottom: 140px;
}

.account-profile > p {
  margin: 0 0 24px;
  font-size: 9px;
}

.account-profile dl {
  margin: 0;
}

.account-profile dl > div {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.account-profile dt,
.account-profile dd {
  margin: 0;
  font-size: 11px;
}

.account-profile dt {
  margin-bottom: 7px;
  color: var(--muted);
}

.account-verification-form {
  display: grid;
  justify-items: start;
  gap: 8px;
  margin-top: 22px;
}

.account-verification-form button {
  padding: 0 0 4px;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  font-size: 9px;
}

.account-verification-form button:disabled {
  color: var(--muted);
  border-bottom-color: var(--line);
}

.account-verification-form small {
  color: var(--muted);
  font-size: 9px;
}

.account-verification-result {
  min-height: 620px;
}

.account-orders .empty-state {
  min-height: 320px;
}

.account-saved {
  padding-top: 18px;
  padding-bottom: 18px;
  color: #315b48;
  border-bottom: 1px solid var(--line);
  font-size: 10px;
}

.account-main {
  min-width: 0;
  display: grid;
  gap: 76px;
}

.account-section-header {
  min-height: 70px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--ink);
}

.account-section-header p,
.account-detail-heading p {
  margin: 0 0 8px;
  font-size: 9px;
}

.account-section-header h2,
.account-detail-heading h2 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 400;
}

.account-section-header > span {
  color: var(--muted);
  font-size: 10px;
}

.account-action-link {
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  font-size: 9px;
}

.account-order-list,
.account-address-list {
  border-bottom: 1px solid var(--line);
}

.account-order-row {
  min-height: 122px;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) minmax(130px, auto) 18px;
  gap: 20px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.account-order-row:last-child,
.account-address-row:last-child {
  border-bottom: 0;
}

.account-order-thumb,
.account-order-item-media {
  overflow: hidden;
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 5;
  background: var(--mist);
  color: var(--muted);
  font-size: 8px;
}

.account-order-thumb img,
.account-order-item-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.account-order-copy,
.account-order-status {
  min-width: 0;
  display: grid;
  gap: 7px;
}

.account-order-copy time,
.account-order-copy span,
.account-order-status span {
  color: var(--muted);
  font-size: 9px;
}

.account-order-copy strong {
  overflow: hidden;
  font-size: 12px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-order-status {
  justify-items: end;
}

.account-order-status strong {
  font-size: 11px;
  font-weight: 500;
}

.account-row-arrow {
  font-size: 15px;
}

.account-address-empty {
  min-height: 190px;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 8px;
  border-bottom: 1px solid var(--line);
}

.account-address-empty p {
  margin: 0;
  font-size: 12px;
}

.account-address-empty span {
  color: var(--muted);
  font-size: 10px;
}

.account-address-row {
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.account-address-row p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
}

.account-address-row p strong {
  font-size: 12px;
  font-weight: 500;
}

.account-address-row p span {
  padding: 4px 6px;
  color: #315b48;
  border: 1px solid #a9c5b7;
  font-size: 8px;
}

.account-address-row address,
.account-order-detail address {
  color: var(--muted);
  font-size: 10px;
  font-style: normal;
  line-height: 1.8;
}

.account-address-actions {
  display: flex;
  gap: 18px;
}

.account-address-actions a,
.account-address-actions button {
  padding: 0 0 3px;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  font-size: 9px;
}

.account-address-form-shell {
  padding-top: 52px;
  padding-bottom: 140px;
}

.account-address-form {
  width: min(100%, 760px);
  margin: 0 auto;
}

.account-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 28px;
}

.account-field-grid label {
  display: grid;
  gap: 8px;
}

.account-field-grid label > span {
  font-size: 9px;
}

.account-field-grid input {
  width: 100%;
  min-height: 46px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  background: transparent;
}

.account-field-grid small {
  color: #a2271e;
  font-size: 10px;
}

.account-field-wide {
  grid-column: 1 / -1;
}

.account-default-check {
  margin-top: 30px;
}

.account-submit {
  width: 100%;
  min-height: 50px;
  margin-top: 38px;
  color: var(--paper);
  border: 1px solid var(--ink);
  background: var(--ink);
  font-size: 10px;
}

.account-order-detail {
  padding-top: 44px;
  padding-bottom: 140px;
}

.account-order-summary {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.account-order-summary > p {
  margin: 0;
  font-size: 11px;
}

.account-order-summary > div {
  display: flex;
  gap: 24px;
  font-size: 10px;
}

.account-order-summary span {
  color: var(--muted);
}

.account-order-items {
  margin-top: 54px;
}

.account-order-item {
  min-height: 142px;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.account-order-item > div:not(.account-order-item-media) {
  display: grid;
  gap: 8px;
}

.account-order-item > div > strong,
.account-order-item > strong {
  font-size: 11px;
  font-weight: 500;
}

.account-order-item span,
.account-order-item small {
  color: var(--muted);
  font-size: 9px;
}

.account-order-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
  margin-top: 72px;
}

.account-detail-heading {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--ink);
}

.account-order-detail address {
  display: grid;
  gap: 6px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.account-order-detail address strong {
  color: var(--ink);
  font-size: 11px;
  font-weight: 500;
}

.account-tracking,
.account-payment-summary {
  margin: 0;
}

.account-tracking > div,
.account-payment-summary > div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.account-tracking dt,
.account-tracking dd,
.account-payment-summary dt,
.account-payment-summary dd {
  margin: 0;
  font-size: 10px;
}

.account-tracking dt,
.account-payment-summary dt {
  color: var(--muted);
}

.account-payment-summary > div:last-child {
  padding-top: 20px;
  border-bottom-color: var(--ink);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  padding: 72px 32px 28px;
  border-top: 1px solid var(--line);
  background: var(--mist);
}

.footer-newsletter > p:not(.footer-label) {
  max-width: 380px;
  margin: 14px 0 34px;
  font-family: var(--font-sans);
  font-size: 26px;
  line-height: 1.25;
}

.footer-label {
  margin: 0;
  font-size: 9px;
}

.newsletter-form {
  max-width: 500px;
  display: grid;
  grid-template-columns: 1fr auto;
  border-bottom: 1px solid var(--ink);
}

.newsletter-form input,
.newsletter-form button {
  min-height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 10px;
}

.newsletter-form-disabled {
  opacity: 0.48;
}

.newsletter-form-disabled input,
.newsletter-form-disabled button {
  cursor: not-allowed;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-links a {
  font-size: 11px;
}

.footer-meta {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  padding-top: 44px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 9px;
}

.footer-meta p {
  margin: 0;
}

.error-page {
  min-height: 60svh;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 20px;
  padding: 40px;
  text-align: center;
}

.error-page h1 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 42px;
  font-weight: 400;
}

@media (max-width: 900px) {
  :root {
    --header-height: 64px;
  }

  .content-width {
    width: min(calc(100% - 32px), var(--content-width));
  }

  .header-row {
    grid-template-columns: 40px 1fr 40px;
    padding: 0 12px;
  }

  .icon-button {
    display: block;
  }

  .brand-link {
    justify-self: center;
    width: 150px;
  }

  .utility-nav a:not(:last-child) {
    display: none;
  }

  .utility-nav {
    justify-content: center;
  }

  .utility-nav a:last-child {
    font-size: 0;
  }

  .utility-nav a:last-child::before {
    content: "BAG";
    font-size: 10px;
  }

  .utility-nav a:last-child span {
    font-size: 10px;
  }

  .primary-nav {
    position: fixed;
    z-index: 10;
    inset: 94px 0 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    padding: 40px 18px;
    background: var(--paper);
    font-family: var(--font-sans);
    font-size: 32px;
  }

  body.menu-open .primary-nav {
    display: flex;
  }

  .home-hero {
    height: calc(100svh - 150px);
    min-height: 480px;
    max-height: 760px;
  }

  .home-hero-overlay {
    left: 16px;
    bottom: 24px;
  }

  .home-hero-overlay h1 {
    font-size: 50px;
  }

  .home-intro {
    grid-template-columns: 1fr;
    padding: 80px 0;
  }

  .home-intro > p:last-child {
    grid-column: 1;
  }

  .editorial-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .editorial-tile > div {
    grid-template-columns: 1fr;
  }

  .product-section {
    padding: 92px 0;
  }

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

  .section-heading h2 {
    font-size: 34px;
  }

  .brand-banner {
    min-height: 280px;
  }

  .collection-header h1 {
    font-size: 42px;
  }

  .collection-header {
    min-height: 260px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-end;
    gap: 28px;
  }

  .collection-controls {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 12px;
  }

  .collection-controls-search {
    grid-template-columns: 1fr 1fr;
  }

  .collection-controls-search label:first-child {
    grid-column: 1 / -1;
  }

  .collection-controls input,
  .collection-controls select {
    width: 100%;
  }

  .content-page-header {
    padding-top: 64px;
    padding-bottom: 48px;
  }

  .content-page-header h1 {
    font-size: 42px;
  }

  .content-page-sections {
    grid-template-columns: 1fr;
    gap: 42px;
    min-height: 360px;
    padding-top: 42px;
    padding-bottom: 92px;
  }

  .product-detail {
    grid-template-columns: 1fr;
    width: 100%;
    padding-top: 0;
  }

  .product-gallery {
    display: block;
  }

  .product-thumbnails {
    display: none;
  }

  .product-media-list {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .product-media-list figure {
    min-width: 92vw;
    scroll-snap-align: start;
  }

  .product-purchase {
    position: static;
    padding: 12px 16px;
  }

  .cart-header {
    min-height: 170px;
    padding: 48px 16px 26px;
  }

  .cart-layout {
    grid-template-columns: 1fr;
    gap: 48px;
    width: 100%;
    padding: 28px 16px 92px;
  }

  .cart-item {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 16px;
  }

  .cart-item-media {
    min-height: 132px;
  }

  .cart-item > strong {
    grid-column: 2;
  }

  .cart-item-actions {
    margin-top: 24px;
    flex-wrap: wrap;
  }

  .cart-summary {
    position: static;
  }

  .checkout-header {
    min-height: 170px;
    padding: 48px 16px 26px;
  }

  .checkout-layout {
    grid-template-columns: 1fr;
    gap: 48px;
    width: 100%;
    padding: 28px 16px 92px;
  }

  .checkout-section {
    grid-template-columns: 1fr;
    gap: 26px;
  }

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

  .checkout-field-wide {
    grid-column: auto;
  }

  .checkout-summary {
    position: static;
    padding: 20px;
  }

  .checkout-connection-note,
  .checkout-form-error {
    width: calc(100% - 32px);
  }

  .checkout-ready h1 {
    font-size: 38px;
  }

  .checkout-payment {
    grid-template-columns: 1fr;
    align-content: start;
    gap: 0;
    padding-top: 72px;
    padding-bottom: 96px;
  }

  .checkout-payment-copy h1 {
    font-size: 38px;
  }

  .checkout-payment-summary {
    margin-top: 52px;
  }

  .checkout-payment-notice,
  .checkout-payment-button,
  .checkout-payment-status,
  .checkout-payment > .text-link {
    grid-column: 1;
  }

  .account-auth-shell {
    min-height: 600px;
    padding-top: 64px;
    padding-bottom: 88px;
  }

  .account-auth-shell h1 {
    font-size: 38px;
    line-height: 1.05;
  }

  .account-header {
    min-height: 180px;
    padding: 48px 16px 26px;
  }

  .account-layout,
  .account-dashboard {
    grid-template-columns: 1fr;
    gap: 56px;
    width: 100%;
    padding: 32px 16px 92px;
  }

  .account-main {
    gap: 56px;
  }

  .account-order-row {
    grid-template-columns: 66px minmax(0, 1fr) 16px;
    gap: 14px;
  }

  .account-order-status {
    grid-column: 2;
    grid-row: 2;
    justify-items: start;
  }

  .account-row-arrow {
    grid-column: 3;
    grid-row: 1 / 3;
  }

  .account-address-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .account-field-grid,
  .account-order-detail-grid {
    grid-template-columns: 1fr;
  }

  .account-field-wide {
    grid-column: auto;
  }

  .account-order-detail-grid {
    gap: 52px;
  }

  .account-order-item {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .account-order-item > strong {
    grid-column: 2;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 56px;
    padding: 56px 16px 24px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    row-gap: 40px;
  }

  .footer-meta {
    flex-direction: column;
    gap: 8px;
  }
}

/* Figma storefront alignment: nodes 29:2, 29:3, and 29:4. */
h1,
h2,
h3,
.primary-nav {
  font-family: var(--font-sans);
  letter-spacing: 0;
}

.content-width {
  width: min(calc(100% - 110px), var(--content-width));
}

.announcement {
  min-height: 24px;
  background: #030303;
}

.announcement p {
  font-size: 10px;
  font-weight: 700;
  line-height: 14px;
}

.header-row {
  min-height: 64px;
  grid-template-columns: 272px minmax(0, 1fr) auto;
  grid-template-areas: "brand navigation utility";
  gap: 28px;
  padding: 0 55px;
  background: var(--paper);
}

.brand-link {
  grid-area: brand;
  width: 272px;
}

.primary-nav {
  grid-area: navigation;
  justify-content: center;
  gap: clamp(24px, 3vw, 56px);
  font-size: 12px;
}

.utility-nav {
  grid-area: utility;
  gap: 22px;
  font-size: 12px;
}

.utility-nav a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.utility-nav img {
  width: 16px;
  height: 16px;
}

.utility-nav b {
  font-weight: 400;
}

.icon-button img {
  width: 20px;
  height: 20px;
}

.home-hero {
  height: 580px;
  min-height: 0;
  max-height: none;
  display: grid;
  grid-template-columns: minmax(360px, 29.4%) repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding-right: 55px;
  overflow: hidden;
  background: var(--paper);
}

.home-hero::after {
  display: none;
}

.home-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-left: 55px;
}

.home-hero-copy h1 {
  margin: 0;
  font-size: 46px;
  font-weight: 500;
  line-height: 1.25;
}

.home-hero-copy p {
  margin: 30px 0 18px;
  font-size: 17px;
  line-height: 1.5;
}

.home-hero-actions {
  display: flex;
  gap: 12px;
}

.button-primary {
  min-width: 112px;
  min-height: 45px;
  display: inline-grid;
  place-items: center;
  padding: 0 18px;
  color: var(--paper);
  background: var(--ink);
  font-size: 12px;
  font-weight: 500;
}

.home-hero > img,
.home-hero-media,
.home-hero-media picture,
.home-hero-media img,
.home-hero-media video {
  width: 100%;
  height: 580px;
  display: block;
  object-fit: cover;
}

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

.home-category-card {
  position: relative;
  height: 320px;
  overflow: hidden;
  background: var(--mist);
}

.home-category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-category-card span,
.home-category-card b {
  position: absolute;
  z-index: 1;
  left: 22px;
}

.home-category-card span {
  bottom: 28px;
  font-size: 17px;
  font-weight: 500;
}

.home-category-card b {
  bottom: 2px;
  font-size: 24px;
  font-weight: 400;
}

.home-category-card-light span,
.home-category-card-light b {
  color: var(--paper);
}

.product-section {
  padding: 50px 0;
}

.section-heading {
  margin-bottom: 16px;
}

.section-heading h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
}

.text-link {
  padding-bottom: 0;
  border-bottom: 0;
  font-size: 12px;
}

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

.product-card {
  position: relative;
  min-width: 0;
}

.product-image {
  aspect-ratio: 4 / 5;
}

.product-image > span {
  top: 12px;
  left: 12px;
  border-radius: 0;
}

.product-info {
  display: grid;
  gap: 2px;
  padding-top: 12px;
  font-size: 13px;
}

.product-info h2,
.product-info h3 {
  font-weight: 400;
}

.product-wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
}

.product-wishlist img {
  width: 20px;
  height: 20px;
}

.product-wishlist.is-saved img {
  filter: brightness(0);
}

.product-wishlist.is-saved {
  background: rgba(255, 255, 255, 0.76);
}

.catalog-pending,
.empty-state {
  min-height: 320px;
  background: #f6f6f4;
}

.catalog-pending p,
.empty-state p {
  font-size: 24px;
  font-weight: 400;
}

.brand-story {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(360px, 1fr);
  background: var(--paper);
}

.brand-story > img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.brand-story > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 60px 70px;
}

.brand-story h2 {
  margin: 0;
  font-size: 42px;
  font-weight: 500;
  line-height: 1.12;
}

.brand-story p {
  max-width: 360px;
  margin: 42px 0 32px;
  font-size: 16px;
  line-height: 1.6;
}

.home-editorial-section {
  padding: 70px 0;
}

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

.fit-grid a,
.material-grid article {
  min-width: 0;
}

.fit-grid img,
.material-grid img {
  width: 100%;
  aspect-ratio: 1.05 / 1;
  object-fit: cover;
  background: var(--mist);
}

.fit-grid strong,
.material-grid strong {
  display: block;
  margin-top: 14px;
  font-size: 18px;
  font-weight: 500;
}

.fit-grid span,
.material-grid span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
}

.collection-shell {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 48px;
  padding-top: 48px;
  padding-bottom: 140px;
}

.collection-sidebar {
  align-self: start;
}

.collection-breadcrumb,
.collection-count {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.collection-sidebar h1 {
  margin: 28px 0 4px;
  font-size: 46px;
  font-weight: 500;
}

.collection-filter {
  margin-top: 54px;
}

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

.collection-filter details:last-of-type {
  border-bottom: 1px solid var(--line);
}

.collection-filter summary {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 13px;
  list-style: none;
}

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

.collection-filter summary::after {
  content: "+";
  font-size: 14px;
}

.collection-filter details[open] summary::after {
  content: "–";
}

.collection-filter details label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 0 14px;
  color: var(--muted);
  font-size: 12px;
}

.collection-filter select,
.collection-filter input[type="number"],
.collection-search input {
  width: 100%;
  min-height: 40px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--paper);
  font-size: 12px;
}

.price-filter {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 6px;
  align-items: center;
  padding-bottom: 16px;
}

.collection-search {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
  font-size: 12px;
}

.filter-submit {
  width: 100%;
  min-height: 44px;
  margin-top: 22px;
  color: var(--paper);
  border: 0;
  background: var(--ink);
  font-size: 12px;
}

.collection-main {
  min-width: 0;
}

.collection-toolbar {
  min-height: 42px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 30px;
}

.collection-toolbar select {
  min-width: 110px;
  padding: 0 24px 6px 0;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  background: transparent;
  font-size: 12px;
}

.collection-view {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
}

.collection-view img {
  width: 15px;
  height: 15px;
}

.product-grid-collection {
  row-gap: 48px;
}

.collection-main .empty-state {
  margin-top: 12px;
}

.product-detail {
  grid-template-columns: minmax(0, 856px) minmax(330px, 1fr);
  gap: 24px;
  padding-top: 32px;
  padding-bottom: 96px;
}

.product-gallery {
  grid-template-columns: 82px minmax(0, 750px);
  gap: 24px;
}

.product-thumbnails {
  top: 16px;
  gap: 10px;
}

.product-thumbnails button {
  border: 1px solid transparent;
}

.product-thumbnails button:focus-visible {
  border-color: var(--ink);
}

.product-thumbnails img,
.product-video-thumb {
  min-height: 0;
  aspect-ratio: 82 / 112;
}

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

.product-media-list figure {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.product-media-list figure:nth-child(-n+2) {
  grid-column: 1 / -1;
  aspect-ratio: 750 / 690;
}

.product-purchase {
  top: 24px;
  padding: 26px 0;
}

.product-breadcrumb {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 12px;
}

.product-purchase h1 {
  margin: 0;
  font-size: 30px;
  font-weight: 500;
}

.product-subtitle {
  margin-top: 7px;
}

.product-price {
  margin-top: 12px;
  font-size: 17px;
}

.variant-picker {
  margin: 72px 0 28px;
}

.variant-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.variant-heading legend {
  margin: 0;
  font-size: 13px;
}

.variant-heading a {
  font-size: 12px;
}

.variant-picker > div:last-child {
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
}

.variant-picker span {
  min-height: 38px;
  background: var(--paper);
}

.variant-picker input:checked + span {
  color: var(--ink);
  border-width: 2px;
  background: var(--paper);
}

.add-to-bag {
  min-height: 48px;
  font-size: 12px;
}

.product-detail-wishlist {
  width: 100%;
  min-height: 46px;
  border: 0;
  background: transparent;
  text-decoration: underline;
  text-underline-offset: 4px;
  font-size: 12px;
}

.product-detail-wishlist.is-saved {
  font-weight: 700;
}

.member-shipping {
  margin: 22px 0 38px;
  padding-left: 20px;
  font-size: 12px;
}

.member-shipping::before {
  content: "";
  width: 12px;
  height: 8px;
  display: inline-block;
  margin: 0 8px 0 -20px;
  border: 1px solid var(--ink);
  transform: skew(-15deg);
}

.product-accordions {
  border-top: 1px solid var(--line);
}

.product-accordions details {
  border-bottom: 1px solid var(--line);
}

.product-accordions summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  list-style: none;
}

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

.product-accordions summary::after {
  content: "+";
  font-weight: 400;
}

.product-accordions details[open] summary::after {
  content: "–";
}

.product-accordions p,
.product-accordions a {
  margin: -4px 0 20px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.related-products {
  padding-bottom: 80px;
}

.site-footer {
  display: block;
  padding: 0;
  border-top: 1px solid #e1ded4;
  background: var(--mist);
}

.footer-grid {
  min-height: 250px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 70px;
  padding: 40px max(55px, calc((100% - var(--content-width)) / 2));
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-grid a,
.footer-grid span,
.footer-newsletter > p:not(.footer-label) {
  margin: 0;
  color: #333333;
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 1.35;
}

.footer-label {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 500;
}

.newsletter-form {
  width: 210px;
  display: grid;
  grid-template-columns: 1fr 42px;
  margin-top: 20px;
  border: 0;
}

.newsletter-form input,
.newsletter-form button {
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid #cccccc;
  background: var(--paper);
}

.newsletter-form button {
  padding: 0;
  color: var(--paper);
  border-color: var(--ink);
  background: var(--ink);
}

.footer-meta {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(55px, calc((100% - var(--content-width)) / 2));
  border-top: 1px solid #e5e1d8;
  color: var(--muted);
  font-size: 11px;
}

.footer-meta > div {
  display: flex;
  gap: 26px;
}

@media (max-width: 1180px) {
  .header-row {
    grid-template-columns: 220px minmax(0, 1fr) auto;
    padding-inline: 32px;
  }

  .brand-link {
    width: 220px;
  }

  .primary-nav {
    gap: 22px;
  }

  .utility-nav a span {
    display: none;
  }

  .utility-nav {
    gap: 16px;
  }
}

@media (max-width: 900px) {
  .content-width {
    width: min(calc(100% - 32px), var(--content-width));
  }

  .header-row {
    grid-template-columns: 40px 1fr 54px;
    grid-template-areas: "menu brand utility";
    padding: 0 12px;
  }

  .menu-button {
    grid-area: menu;
  }

  .brand-link {
    grid-area: brand;
    width: 164px;
  }

  .primary-nav {
    inset: 88px 0 0;
    gap: 24px;
    padding: 32px 18px;
    font-family: var(--font-sans);
    font-size: 28px;
  }

  .utility-nav a {
    display: none;
  }

  .utility-nav a:last-child {
    display: inline-flex;
  }

  .utility-nav a:last-child img {
    display: none;
  }

  .utility-nav a:last-child span {
    display: inline;
    font-size: 0;
  }

  .utility-nav a:last-child span::before {
    content: "BAG ";
    font-size: 10px;
  }

  .utility-nav a:last-child b {
    font-size: 10px;
  }

  .home-hero {
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    padding: 0;
  }

  .home-hero-copy {
    grid-column: 1 / -1;
    min-height: 300px;
    padding: 54px 20px;
  }

  .home-hero-copy h1 {
    font-size: 38px;
  }

  .home-hero-copy p {
    margin: 22px 0;
    font-size: 15px;
  }

  .home-hero > img,
  .home-hero-media,
  .home-hero-media img,
  .home-hero-media video {
    height: 58vw;
    min-height: 260px;
  }

  .home-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
    width: 100%;
    margin-top: 4px;
  }

  .home-category-card {
    height: 62vw;
  }

  .product-section {
    padding: 54px 0;
  }

  .section-heading h2 {
    font-size: 20px;
  }

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

  .product-info {
    font-size: 12px;
  }

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

  .brand-story > img {
    height: 70vw;
  }

  .brand-story > div {
    padding: 56px 20px;
  }

  .brand-story h2 {
    font-size: 34px;
  }

  .brand-story p {
    margin: 28px 0;
    font-size: 14px;
  }

  .home-editorial-section {
    padding: 54px 0;
  }

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

  .fit-grid strong,
  .material-grid strong {
    font-size: 15px;
  }

  .collection-shell {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 32px;
    padding-bottom: 80px;
  }

  .collection-sidebar h1 {
    margin-top: 20px;
    font-size: 38px;
  }

  .collection-filter {
    margin-top: 30px;
  }

  .collection-toolbar {
    justify-content: space-between;
  }

  .collection-view {
    display: none;
  }

  .product-detail {
    width: 100%;
    display: block;
    padding-top: 0;
    padding-bottom: 64px;
  }

  .product-gallery {
    display: block;
  }

  .product-thumbnails {
    display: none;
  }

  .product-media-list {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .product-media-list figure,
  .product-media-list figure:nth-child(-n+2) {
    min-width: 92vw;
    aspect-ratio: 4 / 5;
    scroll-snap-align: start;
  }

  .product-purchase {
    position: static;
    padding: 32px 16px;
  }

  .variant-picker {
    margin-top: 46px;
  }

  .variant-picker > div:last-child {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .related-products {
    padding-bottom: 60px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 44px 24px;
    padding: 42px 16px;
  }

  .footer-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 18px 16px;
  }

  .footer-meta > div {
    flex-wrap: wrap;
    gap: 10px 18px;
  }
}
