:root {
  --black: #111111;
  --white: #ffffff;
  --muted: #5c5c5c;
  --line: #dedede;
  --soft: #f6f6f6;
  --gold: #b79b66;
  --sans: "Helvetica Neue", Arial, sans-serif;
  --serif: "Didot", "Bodoni 72", "Bodoni MT", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  letter-spacing: 0;
}

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

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

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

body.mobile-nav-open {
  overflow: hidden;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  padding: 35px 44px 18px;
  color: var(--white);
  transition: background 220ms ease, color 220ms ease, padding 220ms ease, transform 260ms ease;
}

.site-header.is-solid {
  padding-top: 18px;
  color: var(--black);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.site-header.is-hidden {
  transform: none;
}

.product-site-header {
  position: fixed;
  color: var(--black);
}

.header-main-nav,
.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header-main-nav {
  justify-content: flex-start;
  min-width: 0;
}

.shop-menu {
  position: relative;
  display: flex;
  align-items: center;
}

.shop-menu::after {
  position: absolute;
  top: 100%;
  left: -24px;
  right: -330px;
  height: 24px;
  content: "";
}

.shop-menu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.shop-menu-chevron {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-3px) rotate(45deg);
}

.shop-menu-panel {
  position: absolute;
  z-index: 35;
  top: calc(100% + 18px);
  left: -24px;
  display: flex;
  align-items: flex-start;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: var(--white);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  visibility: hidden;
}

.shop-menu:hover .shop-menu-panel,
.shop-menu:focus-within .shop-menu-panel,
.shop-menu.is-open .shop-menu-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.shop-menu-main,
.shop-menu-subpanels {
  background: var(--white);
}

.shop-menu-main {
  display: grid;
  width: 235px;
  gap: 2px;
  padding: 12px;
  border-right: 1px solid rgba(17, 17, 17, 0.08);
}

.shop-menu-main-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--gold);
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  line-height: 1.2;
  text-transform: uppercase;
  transition: background 150ms ease, color 150ms ease;
}

.shop-menu-main-link span:last-child {
  font-size: 19px;
  line-height: 1;
}

.shop-menu-main-link:hover,
.shop-menu-main-link:focus-visible,
.shop-menu-main-link.is-active {
  background: #f7f4ed;
  color: #9e8045;
}

.shop-menu-subpanels {
  min-width: 245px;
  padding: 14px;
}

.shop-menu-subpanel {
  display: none;
  gap: 2px;
}

.shop-menu-subpanel.is-active {
  display: grid;
}

.shop-menu-subpanel a {
  color: var(--black);
  padding: 10px 14px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.25;
  white-space: nowrap;
  transition: background 150ms ease, color 150ms ease;
}

.shop-menu-subpanel a:hover,
.shop-menu-subpanel a:focus-visible {
  background: #f7f7f7;
  color: var(--gold);
}

.header-main-nav a:not(.brand),
.nav-left a,
.country,
.country-link {
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.header-main-nav a.shop-menu-main-link:not(.brand) {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  line-height: 1.2;
  text-transform: uppercase;
}

.header-main-nav a.shop-menu-main-link:not(.brand):hover,
.header-main-nav a.shop-menu-main-link:not(.brand):focus-visible,
.header-main-nav a.shop-menu-main-link:not(.brand).is-active {
  color: #9e8045;
}

.header-main-nav .shop-menu-subpanel a {
  color: var(--black);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.25;
}

.header-main-nav .shop-menu-subpanel a:hover,
.header-main-nav .shop-menu-subpanel a:focus-visible {
  color: var(--gold);
}

.country::after,
.footer-country::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 9px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid currentColor;
  color: inherit;
}

.language-switcher button {
  display: grid;
  min-width: 30px;
  height: 25px;
  place-items: center;
  border: 0;
  border-right: 1px solid currentColor;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.8px;
  line-height: 1;
}

.language-switcher button:last-child {
  border-right: 0;
}

.language-switcher button.is-active {
  background: var(--black);
  color: var(--white);
}

.site-header:not(.is-solid) .language-switcher button.is-active {
  background: var(--white);
  color: var(--black);
}

.header-main-nav > .language-switcher {
  display: none;
}

.brand {
  justify-self: center;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 14px;
  line-height: 1;
  text-indent: 14px;
  white-space: nowrap;
}

.nav-right {
  justify-content: flex-end;
  gap: 24px;
}

.icon-button {
  position: relative;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  padding: 0;
}

.cart-count,
.wishlist-count {
  position: absolute;
  right: -9px;
  top: -9px;
  display: grid;
  min-width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  border: 1px solid var(--white);
}

.site-header:not(.is-solid) .cart-count,
.site-header:not(.is-solid) .wishlist-count {
  background: var(--white);
  color: var(--black);
  border-color: rgba(17, 17, 17, 0.2);
}

.cart-count.is-empty,
.wishlist-count.is-empty {
  opacity: 0.72;
}

.icon-button svg,
.wishlist svg,
.socials svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #b7c5d3;
}

.hero-image {
  width: 100%;
  height: 100vh;
  min-height: 720px;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.01);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.33), rgba(0, 0, 0, 0.05) 42%, rgba(0, 0, 0, 0.12)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.25), transparent 34%);
  pointer-events: none;
}

.hero-copy {
  position: absolute;
  left: clamp(34px, 5.4vw, 112px);
  bottom: clamp(76px, 11vh, 142px);
  max-width: 720px;
  color: var(--white);
}

.hero-copy h1 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(68px, 6.1vw, 118px);
  font-weight: 400;
  line-height: 0.84;
  text-transform: uppercase;
}

.hero-copy p {
  margin: 0 0 38px;
  font-size: clamp(16px, 1.15vw, 21px);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.button {
  display: inline-flex;
  min-width: 175px;
  min-height: 53px;
  align-items: center;
  justify-content: center;
  padding: 17px 30px;
  border: 1px solid currentColor;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.7px;
  line-height: 1;
  text-transform: uppercase;
}

.button-light {
  color: var(--black);
  background: var(--white);
  border-color: var(--white);
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.arrivals {
  padding: 54px 0 76px;
  overflow: hidden;
}

.arrivals-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 0 28px 34px;
}

.arrivals-kicker {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.arrivals h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 3vw, 54px);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.arrivals-link {
  position: relative;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.arrivals-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 1px;
  background: currentColor;
}

.product-rail {
  display: grid;
  grid-auto-columns: minmax(340px, 24.5vw);
  grid-auto-flow: column;
  gap: 12px;
  overflow-x: auto;
  padding: 0 28px 10px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.product-rail::-webkit-scrollbar {
  display: none;
}

.product-card {
  min-width: 0;
  scroll-snap-align: start;
}

.product-image {
  position: relative;
  display: block;
  aspect-ratio: 41 / 58;
  overflow: hidden;
  background: #efefef;
}

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

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

.wishlist {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.wishlist.is-active svg {
  fill: currentColor;
}

.wishlist:hover {
  background: var(--white);
}

.product-card-copy {
  display: grid;
  gap: 6px;
  padding: 18px 4px 0;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  line-height: 1;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(26px, 1.8vw, 34px);
  font-weight: 400;
  line-height: 0.96;
  text-transform: uppercase;
}

.product-card span {
  display: block;
  margin: 2px 0 0;
  font-size: 14px;
  font-weight: 500;
}

.product-card small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  overflow: hidden;
  padding: 0;
}

.category-card,
.journey {
  position: relative;
  display: block;
  overflow: hidden;
  color: var(--white);
  background: #ddd;
}

.category-card {
  aspect-ratio: 179 / 200;
}

.category-card img,
.journey img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.25, 1, 0.5, 1);
}

.category-card:hover img {
  transform: scaleY(1.04);
}

.journey:hover img {
  transform: scale(1.045);
}

.category-overlay {
  position: absolute;
  z-index: 1;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.category-copy {
  position: absolute;
  z-index: 2;
  left: clamp(24px, 2.4vw, 48px);
  bottom: clamp(30px, 3vw, 54px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.category-copy strong,
.journey-copy h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 2.4vw, 47px);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.category-copy em,
.journey-copy a {
  position: relative;
  display: inline-block;
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.3;
}

.category-copy em::after,
.journey-copy a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 1px;
  background: currentColor;
}

.journey {
  aspect-ratio: 9 / 5;
  margin-top: 8px;
}

.journey-copy {
  position: absolute;
  z-index: 2;
  left: clamp(24px, 2.4vw, 48px);
  bottom: clamp(34px, 3.2vw, 58px);
  max-width: 460px;
}

.journey-copy h2 {
  margin: 0 0 12px;
}

.journey-copy p {
  margin: 0 0 22px;
  max-width: 456px;
  font-size: 15px;
  line-height: 1.55;
}

.site-footer {
  background: #f8f8f8;
  border-top: 1px solid var(--line);
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 60px;
  padding: 88px 48px 82px;
}

.footer-main h2 {
  margin: 0 0 27px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
}

.footer-main a,
.footer-country,
.subscribe p,
.subscribe label span {
  display: block;
  color: #2a2a2a;
  font-size: 17px;
  line-height: 1.45;
}

.footer-main a {
  margin-bottom: 15px;
}

.footer-country {
  border: 0;
  background: transparent;
  padding: 0;
  letter-spacing: 2px;
}

.subscribe p {
  max-width: 500px;
  margin: 0 0 35px;
}

.subscribe label span {
  color: var(--muted);
  margin-bottom: 12px;
}

.subscribe input {
  width: 100%;
  height: 40px;
  border: 0;
  border-bottom: 1px solid #bdbdbd;
  background: transparent;
  border-radius: 0;
  outline: 0;
}

.subscribe button {
  width: 100%;
  min-height: 54px;
  margin-top: 20px;
  border: 0;
  background: var(--black);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 48px;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  margin: 0;
  color: #626262;
  font-size: 16px;
}

.socials {
  display: flex;
  align-items: center;
  gap: 35px;
}

.socials a {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--black);
}

.socials svg {
  width: 26px;
  height: 26px;
  stroke-width: 2.2;
}

.product-shell {
  background: var(--white);
  padding-top: 88px;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 50%);
  gap: 0;
  align-items: start;
  padding: 16px 0 72px 16px;
}

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

.gallery-tile {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 0;
  background: #eeeeee;
  cursor: zoom-in;
  padding: 0;
}

.gallery-tile-wide {
  grid-column: span 2;
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-tile:hover img {
  transform: scale(1.025);
}

.product-info-panel {
  position: sticky;
  top: 112px;
  align-self: start;
  padding: 52px clamp(48px, 6.4vw, 124px) 64px;
}

.product-kicker {
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
}

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

.product-heading-row h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(32px, 2.6vw, 48px);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.product-heading-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}

.product-wishlist {
  position: static;
  border: 1px solid var(--black);
  background: var(--white);
  color: var(--black);
  backdrop-filter: none;
}

.product-info-button {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--black);
  border-radius: 50%;
  background: transparent;
  font-family: Georgia, serif;
  font-size: 16px;
  line-height: 1;
}

.product-price {
  margin-bottom: 24px;
  font-size: 17px;
  font-weight: 500;
}

.product-description {
  margin: 0 0 30px;
  color: #333333;
  font-size: 15px;
  line-height: 1.65;
}

.product-option {
  margin-bottom: 28px;
}

.option-label,
.option-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 700;
}

.option-label span {
  color: var(--muted);
  font-weight: 500;
}

.option-heading button {
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
  text-decoration: underline;
}

.colour-swatch {
  display: block;
  width: 34px;
  height: 34px;
  border: 1px solid #bdb8b2;
  background: #eae6e3;
  border-radius: 50%;
}

.size-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.size-button {
  min-height: 44px;
  border: 1px solid #cfcfcf;
  background: var(--white);
  cursor: pointer;
  font-size: 14px;
  transition: border 160ms ease, background 160ms ease, color 160ms ease;
}

.size-button:hover,
.size-button.is-selected {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.purchase-actions {
  display: grid;
  gap: 10px;
  margin: 28px 0 16px;
}

.add-to-bag,
.consultation-button {
  min-height: 54px;
  border: 1px solid var(--black);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.add-to-bag {
  background: var(--black);
  color: var(--white);
}

.consultation-button {
  background: var(--white);
  color: var(--black);
}

.made-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 18px 0 28px;
  color: #333333;
}

.made-note span {
  width: 13px;
  height: 13px;
  margin-top: 3px;
  border: 1px solid var(--black);
  border-radius: 50%;
}

.made-note p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}

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

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

.product-accordions summary {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 21px;
  list-style: none;
  text-transform: uppercase;
}

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

.product-accordions summary::after {
  content: "+";
  font-family: var(--sans);
  font-size: 24px;
  line-height: 1;
}

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

.product-accordions div {
  padding: 0 0 24px;
}

.product-accordions p {
  margin: 0 0 11px;
  color: #333333;
  font-size: 14px;
  line-height: 1.65;
}

.gallery-modal {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.94);
  padding: 32px;
}

.gallery-modal[hidden] {
  display: none;
}

.gallery-modal img {
  max-width: min(90vw, 980px);
  max-height: 90vh;
  object-fit: contain;
}

.gallery-close {
  position: fixed;
  top: 24px;
  right: 28px;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.cart-overlay {
  position: fixed;
  z-index: 60;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.cart-drawer {
  position: fixed;
  z-index: 61;
  top: 0;
  right: 0;
  display: grid;
  width: min(560px, 100vw);
  height: 100dvh;
  grid-template-rows: auto 1fr auto;
  background: var(--white);
  box-shadow: -18px 0 36px rgba(0, 0, 0, 0.12);
  transform: translateX(100%);
  transition: transform 300ms cubic-bezier(0.25, 1, 0.5, 1);
}

.cart-open {
  overflow: hidden;
}

.cart-open .cart-overlay {
  opacity: 1;
  pointer-events: auto;
}

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

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 48px 28px;
}

.cart-drawer-header h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.cart-close {
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 27px;
  line-height: 1;
}

.cart-content {
  overflow-y: auto;
  padding: 0 48px 28px;
}

.cart-item {
  display: grid;
  gap: 24px;
}

.cart-item + .cart-item {
  margin-top: 34px;
}

.cart-image-wrap {
  position: relative;
  width: min(238px, 62%);
  aspect-ratio: 188 / 293;
  overflow: hidden;
  background: #f2f2f2;
}

.cart-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-remove {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.cart-item-info h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.cart-item-info p {
  margin: 0 0 24px;
  color: #303030;
  font-size: 16px;
}

.cart-item-info p span {
  display: inline-block;
  margin: 0 8px;
  color: #777777;
}

.cart-item-info strong {
  font-size: 17px;
  font-weight: 700;
}

.cart-empty {
  display: grid;
  min-height: 420px;
  align-content: center;
  gap: 22px;
  text-align: center;
}

.cart-empty p {
  margin: 0;
  font-family: var(--serif);
  font-size: 28px;
  text-transform: uppercase;
}

.cart-continue {
  min-height: 48px;
  border: 1px solid var(--black);
  background: var(--white);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.cart-summary {
  padding: 30px 48px 36px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.cart-subtotal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 16px;
}

.cart-subtotal strong {
  font-weight: 700;
}

.cart-checkout {
  width: 100%;
  min-height: 55px;
  border: 0;
  background: var(--black);
  color: var(--white);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.cart-checkout:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

.site-header-static {
  position: fixed;
}

.country-link {
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.content-page {
  background: var(--white);
}

.page-main {
  min-height: 100vh;
  padding-top: 88px;
}

.page-hero {
  padding: 48px 48px 28px;
}

.page-hero-compact {
  background: #f7f5f2;
  border-bottom: 1px solid var(--line);
}

.page-hero-copy {
  max-width: 760px;
}

.page-kicker {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.page-hero-copy h1,
.story-copy h1,
.contact-copy h1,
.account-panel h1 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: clamp(42px, 4vw, 72px);
  font-weight: 400;
  line-height: 0.94;
  text-transform: uppercase;
}

.page-hero-copy p,
.story-copy p,
.contact-copy p,
.account-panel p {
  max-width: 720px;
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
}

.filter-bar,
.listing-section,
.editorial-grid,
.story-layout,
.feature-columns,
.journal-grid,
.contact-layout,
.account-layout {
  padding-inline: 48px;
}

.filter-bar {
  padding-top: 24px;
}

.shop-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 240px);
  gap: 12px;
  margin-bottom: 18px;
}

.shop-search,
.shop-sort {
  display: grid;
  gap: 7px;
}

.shop-search span,
.shop-sort span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.shop-search input,
.shop-sort select {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cfcfcf;
  background: var(--white);
  border-radius: 0;
  color: var(--black);
  padding: 0 14px;
}

.filter-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-chip {
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid #cfcfcf;
  background: var(--white);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.filter-chip.is-active {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

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

.section-heading h2,
.feature-columns h2,
.journal-card-copy h2,
.account-grid h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(28px, 2vw, 42px);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

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

.listing-section {
  padding-top: 42px;
  padding-bottom: 72px;
}

.listing-grid,
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 14px;
}

.product-card-grid .product-image {
  aspect-ratio: 41 / 52;
}

.listing-empty {
  grid-column: 1 / -1;
  display: grid;
  min-height: 260px;
  place-items: center;
  border: 1px solid var(--line);
  background: #fbfaf8;
  padding: 36px;
  text-align: center;
}

.listing-empty h2 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: clamp(28px, 2.2vw, 42px);
  font-weight: 400;
  text-transform: uppercase;
}

.listing-empty p {
  max-width: 520px;
  margin: 0 auto 22px;
  color: var(--muted);
  line-height: 1.6;
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding-top: 42px;
  padding-bottom: 72px;
}

.editorial-card {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  color: var(--white);
}

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

.editorial-card-copy {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 10px;
}

.editorial-card-copy strong {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 0.98;
  text-transform: uppercase;
}

.editorial-card-copy em {
  font-style: normal;
  font-size: 14px;
  line-height: 1.5;
}

.story-layout,
.contact-layout,
.account-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 32px;
  padding-top: 48px;
  padding-bottom: 72px;
}

.story-copy,
.contact-copy,
.account-panel {
  display: grid;
  align-content: start;
  gap: 18px;
}

.story-image {
  overflow: hidden;
  background: #ececec;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-bottom: 72px;
}

.feature-columns article,
.account-grid article {
  padding: 28px;
  border: 1px solid var(--line);
  background: #faf8f5;
}

.feature-columns p,
.account-grid p,
.journal-card-copy span {
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 1.6;
}

.journal-card {
  background: #fbf9f6;
}

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

.journal-card-copy {
  padding: 22px 18px 24px;
}

.journal-card-copy p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.contact-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 15px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid #d4d4d4;
  border-radius: 0;
  padding: 0 16px;
  font: inherit;
  outline: 0;
}

.contact-form textarea {
  min-height: 170px;
  padding-top: 16px;
  resize: vertical;
}

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

.checkout-page {
  background: #faf9f7;
}

.checkout-shell {
  display: grid;
  min-height: 100vh;
  grid-template-columns: minmax(0, 1fr) 42%;
}

.checkout-main {
  background: var(--white);
}

.checkout-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 42px 22px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.checkout-brand {
  font-family: var(--serif);
  font-size: 28px;
  letter-spacing: 10px;
  line-height: 1;
  text-indent: 10px;
}

.checkout-return {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.checkout-utilities {
  display: flex;
  align-items: center;
  gap: 18px;
}

.checkout-country {
  color: var(--black);
}

.checkout-stack {
  max-width: 760px;
  padding: 24px 42px 56px;
}

.checkout-section {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.checkout-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.checkout-section-header h2,
.checkout-summary-block h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.checkout-section-header a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

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

.express-button,
.checkout-submit,
.checkout-discount button {
  min-height: 54px;
  border: 1px solid var(--black);
  background: var(--white);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.express-button-dark,
.checkout-submit {
  background: var(--black);
  color: var(--white);
}

.checkout-divider {
  position: relative;
  margin-top: 22px;
  text-align: center;
}

.checkout-divider::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: var(--line);
}

.checkout-divider span {
  position: relative;
  padding: 0 12px;
  background: var(--white);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
}

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

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

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

.checkout-field span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.checkout-field input,
.checkout-field select,
.checkout-discount input {
  width: 100%;
  min-height: 54px;
  border: 1px solid #d4d4d4;
  border-radius: 0;
  background: var(--white);
  padding: 0 16px;
  outline: 0;
}

.checkout-check {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  font-size: 14px;
}

.checkout-check input {
  width: 18px;
  height: 18px;
  margin: 0;
}

.checkout-message {
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: #f7f5f2;
  color: #363636;
  font-size: 14px;
  line-height: 1.6;
}

.checkout-payment-placeholder .checkout-submit {
  width: 100%;
  margin-top: 18px;
}

.checkout-submit:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.checkout-summary {
  background: #f3f0eb;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}

.checkout-summary-inner {
  position: sticky;
  top: 0;
  padding: 42px 40px 48px;
}

.checkout-summary-block + .checkout-summary-block {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.checkout-summary-items {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.checkout-summary-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: start;
}

.checkout-summary-image-wrap {
  position: relative;
  width: 82px;
  aspect-ratio: 1;
  overflow: hidden;
  background: #ece8e3;
}

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

.checkout-summary-qty {
  position: absolute;
  top: 8px;
  right: 8px;
  display: grid;
  min-width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.78);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
}

.checkout-summary-copy h3 {
  margin: 0 0 5px;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.checkout-summary-copy p,
.checkout-empty {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.checkout-summary-item strong,
.checkout-totals strong {
  font-size: 14px;
  font-weight: 700;
}

.checkout-discount {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.checkout-discount button {
  min-width: 96px;
}

.checkout-totals {
  display: grid;
  gap: 16px;
}

.checkout-totals div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
}

.checkout-total-row {
  padding-top: 6px;
}

.checkout-total-row span,
.checkout-total-row strong {
  font-size: 18px;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 44px minmax(0, 1fr) auto;
    gap: 12px;
    padding-inline: 24px;
  }

  .nav-left,
  .header-main-nav a:not(.brand),
  .shop-menu,
  .country {
    display: none;
  }

  .brand {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
  }

  .nav-right {
    grid-column: 3;
    grid-row: 1;
    gap: 16px;
  }

  .mobile-menu {
    grid-column: 1;
    grid-row: 1;
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: transparent;
    padding: 0;
    color: inherit;
    cursor: pointer;
  }

  .mobile-menu span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .mobile-menu span + span {
    margin-top: -13px;
  }

  .site-header.mobile-nav-open {
    color: var(--black);
    background: rgba(255, 255, 255, 0.98);
  }

  .site-header.mobile-nav-open .mobile-menu span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.mobile-nav-open .mobile-menu span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-header.mobile-nav-open .header-main-nav {
    position: fixed;
    z-index: 30;
    top: 69px;
    left: 0;
    right: 0;
    display: grid;
    align-items: stretch;
    justify-items: stretch;
    grid-template-columns: minmax(0, 1fr);
    max-height: calc(100dvh - 69px);
    overflow-y: auto;
    gap: 0;
    padding: 10px 18px 24px;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
    background: var(--white);
    color: var(--black);
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.1);
  }

  .site-header.mobile-nav-open .header-main-nav > * {
    width: 100%;
    justify-self: stretch;
  }

  .site-header.mobile-nav-open .header-main-nav > a:not(.brand),
  .site-header.mobile-nav-open .shop-menu {
    display: grid;
  }

  .site-header.mobile-nav-open .header-main-nav > a:not(.brand),
  .site-header.mobile-nav-open .shop-menu-trigger {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
    color: var(--black);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
  }

  .site-header.mobile-nav-open .shop-menu {
    position: static;
    width: 100%;
    inline-size: 100%;
    justify-self: stretch;
  }

  .site-header.mobile-nav-open .shop-menu::after {
    display: none;
  }

  .site-header.mobile-nav-open .shop-menu-panel {
    position: static;
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-height: 0;
    margin-top: 10px;
    overflow: hidden;
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: none;
    opacity: 0;
    pointer-events: none;
    transform: none;
    visibility: hidden;
    transition: max-height 180ms ease, opacity 160ms ease, visibility 160ms ease;
  }

  .site-header.mobile-nav-open .shop-menu.is-open .shop-menu-panel,
  .site-header.mobile-nav-open .shop-menu:focus-within .shop-menu-panel {
    max-height: 520px;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .site-header.mobile-nav-open .shop-menu-main {
    width: 100%;
    border-right: 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  }

  .site-header.mobile-nav-open .shop-menu-subpanels {
    min-width: 0;
  }

  .site-header.mobile-nav-open .shop-menu-main-link:not(.brand),
  .site-header.mobile-nav-open .shop-menu-subpanel a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    padding: 12px 14px;
  }

  .site-header.mobile-nav-open .shop-menu-subpanel a {
    justify-content: flex-start;
  }

  .product-layout {
    grid-template-columns: 1fr;
    padding-left: 0;
  }

  .listing-grid,
  .journal-grid,
  .editorial-grid,
  .feature-columns,
  .story-layout,
  .contact-layout,
  .account-layout {
    grid-template-columns: 1fr;
  }

  .product-gallery-grid {
    display: grid;
    grid-auto-columns: minmax(280px, 72vw);
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 8px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding: 0 24px 10px;
    scroll-padding-inline: 24px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

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

  .gallery-tile,
  .gallery-tile-wide {
    grid-column: auto;
    scroll-snap-align: start;
    aspect-ratio: 188 / 293;
  }

  .product-info-panel {
    position: static;
    padding: 34px 24px 52px;
  }

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

  .checkout-summary {
    border-left: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }

  .checkout-summary-inner {
    position: static;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 64px;
    grid-template-columns: 44px minmax(0, 1fr) 68px;
    padding: 12px 14px;
  }

  .brand {
    position: fixed;
    top: 32px;
    left: 50vw;
    font-size: 23px;
    letter-spacing: 8px;
    text-indent: 8px;
    transform: translate(-50%, -50%);
  }

  .nav-right {
    justify-self: end;
    gap: 12px;
  }

  .nav-right .country,
  .nav-right .country-link,
  .nav-right .language-switcher,
  .nav-right .icon-button[aria-label="Search"] {
    display: none;
  }

  .language-switcher button {
    min-width: 27px;
    height: 24px;
    font-size: 9px;
  }

  .nav-right .icon-button[aria-label="Wishlist"],
  .nav-right .icon-button[aria-label="Bag"] {
    display: grid;
  }

  .site-header.mobile-nav-open .header-main-nav > .language-switcher {
    display: inline-flex;
    width: auto;
    justify-self: start;
    margin: 18px 0 4px;
    color: var(--black);
  }

  .site-header.mobile-nav-open .header-main-nav > .language-switcher button {
    min-width: 42px;
    height: 34px;
    font-size: 11px;
    letter-spacing: 1px;
  }

  .site-header.mobile-nav-open .header-main-nav > .language-switcher button.is-active {
    background: var(--black);
    color: var(--white);
  }

  .icon-button {
    width: 28px;
    height: 28px;
  }

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

  .cart-count,
  .wishlist-count {
    right: -6px;
    top: -6px;
    min-width: 16px;
    height: 16px;
    font-size: 9px;
  }

  .site-header.mobile-nav-open .header-main-nav {
    top: 64px;
    max-height: calc(100dvh - 64px);
  }

  .checkout-header {
    align-items: flex-start;
  }

  .checkout-utilities {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
  }

  .checkout-country {
    display: none;
  }

  .hero-image {
    height: 100svh;
    min-height: 620px;
    object-position: 58% top;
  }

  .hero-copy {
    left: 18px;
    right: 18px;
    bottom: 34px;
  }

  .hero-copy h1 {
    margin-bottom: 12px;
    font-size: clamp(46px, 15vw, 64px);
    line-height: 0.9;
  }

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

  .hero-actions {
    gap: 12px;
  }

  .button {
    min-width: 0;
    width: 100%;
    min-height: 48px;
    padding: 14px 18px;
    font-size: 12px;
    letter-spacing: 1.3px;
  }

  .arrivals {
    padding: 38px 0 52px;
  }

  .filter-bar,
  .listing-section,
  .editorial-grid,
  .story-layout,
  .feature-columns,
  .journal-grid,
  .contact-layout,
  .account-layout,
  .page-hero {
    padding-inline: 18px;
  }

  .arrivals-header {
    align-items: start;
    flex-direction: column;
    gap: 12px;
    padding: 0 18px 24px;
  }

  .arrivals h2,
  .page-hero-copy h1,
  .story-copy h1,
  .contact-copy h1,
  .account-panel h1 {
    font-size: clamp(34px, 11vw, 48px);
    line-height: 0.98;
  }

  .product-rail {
    grid-auto-columns: minmax(238px, 76vw);
    padding-inline: 18px;
  }

  .page-main {
    padding-top: 64px;
  }

  .page-hero {
    padding-top: 34px;
    padding-bottom: 24px;
  }

  .page-hero-copy p,
  .story-copy p,
  .contact-copy p,
  .account-panel p {
    font-size: 15px;
    line-height: 1.55;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .shop-toolbar {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .listing-grid,
  .journal-grid,
  .account-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .listing-section {
    padding-top: 32px;
    padding-bottom: 52px;
  }

  .filter-chip-row {
    flex-wrap: nowrap;
    margin-inline: -18px;
    overflow-x: auto;
    padding: 0 18px 4px;
    scrollbar-width: none;
  }

  .filter-chip-row::-webkit-scrollbar {
    display: none;
  }

  .filter-chip {
    flex: 0 0 auto;
    min-height: 38px;
    padding-inline: 14px;
    font-size: 11px;
    letter-spacing: 1px;
  }

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

  .category-card {
    aspect-ratio: 94 / 111;
  }

  .category-copy {
    right: 24px;
    align-items: flex-start;
    text-align: left;
  }

  .category-copy strong,
  .journey-copy h2 {
    font-size: clamp(29px, 10vw, 42px);
  }

  .journey {
    aspect-ratio: 188 / 245;
  }

  .journey img {
    object-position: 55% center;
  }

  .footer-main {
    gap: 34px;
    padding: 42px 18px;
  }

  .footer-main h2 {
    margin-bottom: 14px;
  }

  .footer-main a,
  .footer-country,
  .subscribe p,
  .subscribe label span {
    font-size: 15px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    min-height: 84px;
    padding: 20px 18px;
  }

  .socials {
    gap: 18px;
  }

  .product-site-header {
    position: fixed;
  }

  .product-shell {
    padding-top: 64px;
  }

  .product-layout {
    padding-bottom: 42px;
  }

  .product-gallery-grid {
    grid-auto-columns: minmax(250px, 82vw);
    gap: 10px;
    padding-inline: 18px;
    scroll-padding-inline: 18px;
  }

  .product-info-panel {
    padding: 28px 18px 42px;
  }

  .product-heading-row {
    align-items: flex-start;
  }

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

  .product-heading-row h1 {
    font-size: 30px;
  }

  .product-description,
  .made-note p,
  .product-accordions p {
    font-size: 14px;
  }

  .product-accordions summary {
    min-height: 54px;
    font-size: 19px;
  }

  .cart-drawer {
    width: 100vw;
  }

  .cart-drawer-header,
  .cart-content,
  .cart-summary {
    padding-left: 18px;
    padding-right: 18px;
  }

  .cart-drawer-header {
    padding-top: 24px;
    padding-bottom: 20px;
  }

  .cart-image-wrap {
    width: min(190px, 58vw);
  }

  .cart-item {
    gap: 16px;
  }

  .cart-item-info h3 {
    font-size: 23px;
  }

  .checkout-header,
  .checkout-stack,
  .checkout-summary-inner {
    padding-left: 18px;
    padding-right: 18px;
  }

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

  .checkout-section-header h2,
  .checkout-summary-block h2 {
    font-size: 26px;
  }

  .checkout-summary-item {
    grid-template-columns: 74px 1fr;
  }

  .checkout-summary-item strong {
    grid-column: 2;
  }
}

@media (max-width: 430px) {
  .site-header {
    grid-template-columns: 40px minmax(0, 1fr) 64px;
    padding-inline: 12px;
  }

  .brand {
    font-size: 20px;
    letter-spacing: 6px;
    text-indent: 6px;
  }

  .nav-right {
    gap: 8px;
  }

  .mobile-menu {
    width: 36px;
    height: 36px;
  }

  .hero-copy h1 {
    font-size: clamp(42px, 14vw, 56px);
  }

  .product-card h3 {
    font-size: 25px;
  }

  .checkout-section-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}
