:root {
  --v4-black: #0b0b0b;
  --v4-white: #f8f6ef;
  --v4-paper: #e9e1d2;
  --v4-line: #d5ccba;
  --v4-orange: #d65300;
  --v4-green: #214f38;
  --v4-red: #b82121;
  --v4-blue: #184b78;
  --v4-muted: #686257;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }
body.v4-page {
  margin: 0;
  background: var(--v4-white);
  color: var(--v4-black);
  font-family: Archivo, Arial, sans-serif;
}
body.v5-page {
  --v5-fixed-header-height: 74px;
  padding-top: var(--v5-fixed-header-height);
}
body.v4-lock { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }
img { max-width: 100%; display: block; }

.v4-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  height: 72px;
  display: grid;
  grid-template-columns: 56px auto 1fr auto;
  align-items: center;
  padding: 0 22px;
  background: rgba(11, 11, 11, 0.1);
  color: white;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.v4-header.is-scrolled,
.v4-header.is-open {
  background: rgba(248, 246, 239, .96);
  color: var(--v4-black);
  border-color: var(--v4-line);
}
.v4-icon-btn,
.v4-search-trigger,
.v4-bag-trigger,
.v4-menu-cart,
.v4-close,
.v4-product-card button,
.v4-newsletter button,
.v4-checkout {
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
}
.v4-menu-btn {
  width: 44px;
  height: 44px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 10px;
}
.v4-menu-btn span {
  height: 2px;
  background: currentColor;
  display: block;
}
.v4-logo {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Archivo Black", Archivo, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 18px;
}
.v4-logo img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}
.v4-desktop-nav {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-self: center;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 900;
}
.v4-desktop-nav a { padding: 28px 0; }
.v4-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
}
.v4-search-trigger,
.v4-bag-trigger,
.v4-menu-cart {
  min-height: 38px;
  padding: 0 14px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
}

.v4-hero {
  min-height: 92vh;
  position: relative;
  display: grid;
  place-items: end start;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(214,83,0,.92), rgba(33,79,56,.94) 52%, rgba(11,11,11,.98)),
    var(--v4-black);
}
.v4-hero-products {
  position: absolute;
  inset: 28vh -7vw auto auto;
  width: min(780px, 58vw);
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  align-items: end;
  gap: clamp(8px, 1.4vw, 20px);
  transform: rotate(-4deg);
}
.v4-hero-products img {
  width: 100%;
  filter: drop-shadow(0 26px 24px rgba(0,0,0,.28));
}
.v4-hero-products img:nth-child(2),
.v4-hero-products img:nth-child(4) {
  transform: translateY(7vh);
}
.v4-hero-products img:nth-child(3) {
  transform: translateY(-2vh);
}
.v4-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 28%, rgba(255,255,255,.28), transparent 28%),
    linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.2) 54%, rgba(0,0,0,.12));
}
.v4-hero-copy {
  position: relative;
  z-index: 1;
  width: min(680px, calc(100% - 32px));
  padding: 0 0 10vh 6vw;
  color: white;
  text-align: left;
}
.v4-hero-copy p,
.v4-section-head p,
.v4-campaign p,
.v4-look-copy p,
.v4-newsletter p,
.v4-trending p {
  margin: 0 0 10px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
}
.v4-hero-copy h1 {
  margin: 0 0 22px;
  font-family: "Archivo Black", Archivo, sans-serif;
  text-transform: uppercase;
  font-size: clamp(48px, 9vw, 116px);
  line-height: .85;
  letter-spacing: 0;
}
.v4-hero-copy a,
.v4-campaign a,
.v4-section-head a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid currentColor;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
}

.v4-ticker {
  overflow: hidden;
  background: var(--v4-orange);
  color: white;
  border-block: 1px solid var(--v4-black);
}
.v4-ticker div {
  display: flex;
  width: max-content;
  animation: v4-marquee 24s linear infinite;
}
.v4-ticker span,
.v4-ticker b {
  padding: 12px 18px;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 12px;
  white-space: nowrap;
}
@keyframes v4-marquee {
  to { transform: translateX(-50%); }
}

.v4-rail-section {
  padding: 58px 24px;
}
.v4-section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 18px;
  margin: 0 0 22px;
}
.v4-section-head p { grid-column: 1 / -1; color: var(--v4-muted); }
.v4-section-head h2 {
  margin: 0;
  font-family: "Archivo Black", Archivo, sans-serif;
  font-size: clamp(32px, 7vw, 72px);
  line-height: .9;
  text-transform: uppercase;
}
.v4-product-rail {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding-bottom: 14px;
  scroll-snap-type: x proximity;
  width: 100%;
  max-width: 100%;
}
.v4-product-rail .v4-product-card { flex: 0 0 clamp(220px, 24vw, 340px); }
.v4-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.v4-drop-grid-section {
  border-top: 1px solid var(--v4-line);
}
.v4-drop-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px 16px;
}
.v4-product-card {
  scroll-snap-align: start;
  background: white;
  border: 1px solid var(--v4-line);
  min-width: 0;
  --v4-card-image-padding: clamp(14px, 6%, 28px);
}
.v4-product-card[data-product-type="headwear"] { --v4-card-image-padding: clamp(18px, 9%, 42px); }
.v4-product-card[data-product-type="bag"] { --v4-card-image-padding: clamp(8px, 4%, 20px); }
.v4-product-card[data-product-type="accessory"] { --v4-card-image-padding: clamp(18px, 10%, 44px); }
.v4-product-media {
  aspect-ratio: 4 / 5;
  background: #ded6c5;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--v4-line);
}
.v4-product-media img {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  padding: var(--v4-card-image-padding);
  transition: transform .25s ease;
}
.v4-product-card:hover .v4-product-media img { transform: scale(1.035); }
.v4-product-info {
  padding: 12px;
  display: grid;
  gap: 9px;
}
.v4-product-kicker {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
  color: var(--v4-muted);
}
.v4-product-card h3 {
  min-height: 42px;
  margin: 0;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 900;
}
.v4-swatches,
.v4-size-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  align-items: center;
}
.v4-swatch {
  width: 18px;
  height: 18px;
  min-width: 18px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid var(--v4-black);
  background: var(--swatch, #ddd);
}
.v4-swatches button.v4-swatch {
  position: relative;
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: var(--swatch, #ddd);
  color: var(--v4-black);
  border-color: var(--v4-black);
}
.v4-swatches button.v4-swatch.is-selected::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 1px solid var(--v4-black);
  border-radius: 50%;
}
#tees .v4-product-media img {
  width: 76%;
  height: 76%;
  padding: 0;
}
.v4-size-row button {
  min-width: 34px;
  height: 30px;
  padding: 0 6px;
  border-color: var(--v4-line);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.v4-size-row button.is-selected {
  background: var(--v4-black);
  color: white;
  border-color: var(--v4-black);
}
.v4-quick-add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  background: var(--v4-black) !important;
  color: white !important;
}

.v4-campaign {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  align-items: stretch;
  min-height: 560px;
  background: var(--v4-paper);
  border-block: 1px solid var(--v4-black);
}
.v4-campaign-dark {
  background: var(--v4-black);
  color: white;
}
.v4-campaign img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.v4-campaign div {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 18px;
  padding: clamp(28px, 6vw, 80px);
}
.v4-campaign h2,
.v4-look h2,
.v4-newsletter h2 {
  margin: 0;
  font-family: "Archivo Black", Archivo, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: clamp(34px, 7vw, 88px);
  line-height: .92;
}

.v4-look {
  padding: 60px 24px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 24px;
  align-items: start;
  background: var(--v4-green);
  color: white;
}
.v4-look-copy {
  position: sticky;
  top: 98px;
}
.v4-look-copy span {
  display: block;
  max-width: 420px;
  margin-top: 14px;
  line-height: 1.45;
  color: rgba(255,255,255,.82);
}
.v4-look-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.v4-split-rails {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--v4-line);
}
.v4-split-rails .v4-rail-section + .v4-rail-section {
  border-left: 1px solid var(--v4-line);
}

.v4-newsletter {
  padding: 72px 24px;
  background: var(--v4-blue);
  color: white;
  text-align: center;
}
.v4-newsletter form {
  width: min(620px, 100%);
  margin: 24px auto 10px;
  display: grid;
  grid-template-columns: 1fr auto;
  border: 1px solid currentColor;
}
.v4-newsletter input {
  min-height: 52px;
  border: 0;
  padding: 0 16px;
  background: transparent;
  color: white;
  outline: 0;
}
.v4-newsletter input::placeholder { color: rgba(255,255,255,.72); }
.v4-newsletter button {
  border-width: 0 0 0 1px;
  padding: 0 20px;
  text-transform: uppercase;
  font-weight: 900;
  color: white;
}

.v4-collection-page .v4-header {
  background: rgba(248, 246, 239, .98);
  color: var(--v4-black);
  border-color: var(--v4-line);
}
.v4-collection-main {
  padding-top: 72px;
  background: var(--v4-white);
}
.v4-collection-hero {
  padding: 42px 24px 28px;
  border-bottom: 1px solid var(--v4-line);
}
.v4-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  color: var(--v4-muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.v4-breadcrumb a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.v4-collection-title-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 32px;
  align-items: end;
}
.v4-collection-title-row p {
  margin: 0;
  color: var(--v4-muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.v4-collection-title-row h1 {
  margin: 8px 0 0;
  font-family: "Archivo Black", Archivo, sans-serif;
  font-size: clamp(56px, 13vw, 160px);
  line-height: .82;
  text-transform: uppercase;
}
.v4-collection-summary {
  max-width: 36rem;
  line-height: 1.5;
}
.v4-collection-toolbar {
  position: sticky;
  top: 72px;
  z-index: 70;
  min-height: 60px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 12px;
  padding: 0 24px;
  background: rgba(248, 246, 239, .96);
  border-top: 1px solid var(--v4-black);
  border-bottom: 1px solid var(--v4-black);
}
.v4-filter-toggle,
.v4-view-switch button,
.v4-active-filters button,
.v4-facet-actions button {
  min-height: 38px;
  border: 1px solid var(--v4-black);
  background: transparent;
  color: var(--v4-black);
  padding: 0 12px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
}
.v4-filter-toggle {
  justify-self: center;
  width: min(430px, 100%);
  min-height: 58px;
  border: 0;
  font-family: Archivo, Arial, sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  letter-spacing: .02em;
}
.v4-view-switch {
  display: flex;
  gap: 6px;
}
.v4-view-switch button {
  width: 38px;
  padding: 0;
}
.v4-view-switch button.is-selected {
  background: var(--v4-black);
  color: white;
}
.v4-product-count {
  justify-self: end;
  color: var(--v4-muted);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
}
.v4-collection-shell {
  display: block;
  padding: 22px 24px 64px;
}
.v4-facets {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 130;
  display: flex;
  flex-direction: column;
  width: min(520px, calc(100vw - 52px));
  max-height: none;
  overflow-y: auto;
  border-left: 1px solid var(--v4-black);
  background: var(--v4-white);
  padding: 40px 48px calc(28px + env(safe-area-inset-bottom));
  transform: translateX(104%);
  transition: transform .24s ease, visibility .24s ease;
}
.v4-facets.is-hidden {
  visibility: hidden;
  pointer-events: none;
}
.v4-facets.is-filter-panel-open {
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}
.v4-facet-head {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}
.v4-facet-close {
  border: 0;
  background: transparent;
  color: var(--v4-black);
  min-height: 48px;
  min-width: 48px;
  padding: 0;
  font-size: 54px;
  font-weight: 300;
  line-height: .8;
}
.v4-facet-group {
  padding: 0;
  margin: 0;
  border-bottom: 1px solid var(--v4-line);
}
.v4-facet-summary {
  width: 100%;
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  background: transparent;
  color: var(--v4-black);
  padding: 0;
  text-align: left;
  text-transform: uppercase;
  font-family: Archivo, Arial, sans-serif;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 900;
}
.v4-facet-summary b {
  font-family: "Archivo Black", Archivo, sans-serif;
}
.v4-facet-summary sup {
  margin-left: 2px;
  color: var(--v4-muted);
  font-size: .68em;
  font-weight: 400;
}
.v4-facet-summary span:last-child {
  flex: 0 0 auto;
  font-size: 30px;
  font-weight: 400;
}
.v4-facet-panel {
  display: grid;
  gap: 14px;
  padding: 0 0 26px;
}
.v4-facet-panel[hidden] {
  display: none;
}
.v4-facet-group label {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #2b2924;
  font-size: clamp(16px, 1.7vw, 22px);
  font-weight: 800;
}
.v4-facet-group input {
  width: 24px;
  height: 24px;
  accent-color: var(--v4-black);
}
.v4-facet-actions {
  align-self: end;
  position: sticky;
  bottom: calc(-28px - env(safe-area-inset-bottom));
  display: grid;
  gap: 22px;
  margin: auto -48px calc(-28px - env(safe-area-inset-bottom));
  padding: 26px 48px calc(28px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--v4-black);
  background: var(--v4-white);
}
.v4-facet-actions button {
  width: 100%;
  min-height: 58px;
}
.v4-facet-reset {
  order: 0;
  border: 0 !important;
  min-height: 32px !important;
  text-decoration: underline;
  color: var(--v4-muted) !important;
  font-size: 20px !important;
  font-weight: 400 !important;
}
.v4-facet-apply {
  order: 1;
  border-radius: 8px;
  background: var(--v4-black) !important;
  color: white !important;
  font-size: 18px !important;
  letter-spacing: .08em;
}
.v4-collection-results {
  min-width: 0;
}
.v4-active-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  min-height: 0;
  margin-bottom: 16px;
}
.v4-active-filters:empty {
  margin-bottom: 0;
}
.v4-active-filters button {
  min-height: 32px;
  border-color: var(--v4-line);
  background: white;
}
.v4-active-filters span {
  margin-left: 5px;
}
.v4-filter-backdrop {
  display: none;
}
.v4-collection-grid {
  display: grid;
  gap: 26px 20px;
}
.v4-collection-grid.is-view-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.v4-collection-grid.is-view-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.v4-collection-grid .v4-product-card {
  border: 0;
  background: transparent;
}
.v4-collection-grid .v4-product-media {
  border: 0;
  background: #eee8dc;
}
.v4-collection-grid .v4-product-info {
  padding: 11px 0 0;
  gap: 8px;
}
.v4-collection-grid .v4-product-card h3 {
  min-height: 0;
  font-size: 13px;
  text-transform: uppercase;
}
.v4-collection-grid .v4-product-kicker {
  font-size: 11px;
}
.v4-collection-empty {
  padding: 48px 0;
}

.v5-page .v4-collection-main {
  padding-top: 0;
}
.v5-page .v4-breadcrumb {
  position: static;
}

.v4-menu,
.v4-bag,
.v4-search {
  position: fixed;
  z-index: 140;
  background: var(--v4-white);
  color: var(--v4-black);
  transform: translateX(-104%);
  transition: transform .22s ease;
}
.v4-menu.is-open,
.v4-bag.is-open,
.v4-search.is-open {
  transform: translateX(0);
}
.v4-menu {
  inset: 0 auto 0 0;
  width: min(480px, 92vw);
  padding: 18px;
  overflow-y: auto;
  border-right: 1px solid var(--v4-black);
}
.v4-menu-top,
.v4-bag-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.v4-bag .v4-bag-head {
  position: sticky;
  top: 0;
  z-index: 1;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--v4-line);
  background: var(--v4-white);
}
.v4-close {
  width: 44px;
  height: 44px;
  position: relative;
}
.v4-close::before,
.v4-close::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 2px;
  left: 10px;
  top: 20px;
  background: currentColor;
}
.v4-close::before { transform: rotate(45deg); }
.v4-close::after { transform: rotate(-45deg); }
.v4-menu-search {
  width: 100%;
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--v4-black);
  background: white;
  padding: 0 14px;
  text-align: left;
  font-weight: 900;
  font-size: 13px;
}
.v4-menu-search span {
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 50%;
  position: relative;
}
.v4-menu-search span::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 2px;
  right: -6px;
  bottom: -3px;
  background: currentColor;
  transform: rotate(45deg);
}
.v4-menu-links {
  display: grid;
  margin: 26px 0;
}
.v4-menu-links a {
  padding: 13px 0;
  border-bottom: 1px solid var(--v4-line);
  text-transform: uppercase;
  font-family: "Archivo Black", Archivo, sans-serif;
  font-size: clamp(24px, 7vw, 42px);
  line-height: .95;
}
.v4-menu-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.v4-menu-tiles a {
  position: relative;
  background: #ddd;
  min-height: 220px;
  overflow: hidden;
}
.v4-menu-tiles img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.v4-menu-tiles span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  background: var(--v4-black);
  color: white;
  padding: 7px 9px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
}
.v4-scrim {
  position: fixed;
  inset: 0;
  z-index: 135;
  background: rgba(0,0,0,.44);
}

.v4-search {
  inset: 0;
  transform: translateY(-104%);
  overflow-y: auto;
}
.v4-search-shell {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 70px;
}
.v4-search form {
  margin-top: 28px;
}
.v4-search label {
  display: block;
  font-family: "Archivo Black", Archivo, sans-serif;
  font-size: clamp(30px, 7vw, 88px);
  line-height: .95;
  margin-bottom: 18px;
}
.v4-search input {
  width: 100%;
  min-height: 62px;
  border: 1px solid var(--v4-black);
  background: white;
  padding: 0 16px;
  font-size: 24px;
  outline: 0;
}
.v4-trending {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  margin: 22px 0;
}
.v4-trending p {
  width: 100%;
  margin: 0;
}
.v4-trending button {
  min-height: 34px;
  border: 1px solid var(--v4-line);
  background: white;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 12px;
}
.v4-search-results {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.v4-bag {
  inset: 0 0 0 auto;
  transform: translateX(104%);
  width: min(420px, 92vw);
  border-left: 1px solid var(--v4-black);
  padding: 18px;
  display: grid;
  grid-template-rows: auto 1fr auto;
}
.v4-bag-head h2 {
  margin: 0;
  text-transform: uppercase;
  font-family: "Archivo Black", Archivo, sans-serif;
}
.v4-bag-items {
  overflow-y: auto;
  display: grid;
  align-content: start;
  gap: 12px;
}
.v4-bag-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 10px;
  border: 1px solid var(--v4-line);
  background: white;
  padding: 8px;
}
.v4-bag-item img {
  width: 72px;
  height: 86px;
  object-fit: contain;
  background: var(--v4-paper);
}
.v4-bag-item strong {
  display: block;
  font-size: 13px;
  line-height: 1.2;
}
.v4-bag-item span {
  display: block;
  color: var(--v4-muted);
  font-size: 12px;
  margin-top: 4px;
}
.v4-bag-actions {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.v4-bag-actions a,
.v4-bag-actions button {
  align-self: start;
  border: 0;
  background: transparent;
  color: var(--v4-black);
  cursor: pointer;
  font-family: inherit;
  padding: 0;
  text-decoration: underline;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 11px;
}
.v4-bag-foot {
  border-top: 1px solid var(--v4-line);
  padding-top: 14px;
}
.v4-bag-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  font-weight: 900;
}
.v4-shipping-country {
  display: grid;
  gap: 6px;
  margin-bottom: 8px;
  color: var(--v4-muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.v4-shipping-country select {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--v4-black);
  background: white;
  color: var(--v4-black);
  padding: 8px;
  font: 700 13px Archivo, sans-serif;
}
.v4-checkout {
  width: 100%;
  min-height: 48px;
  background: var(--v4-black);
  color: white;
  text-transform: uppercase;
  font-weight: 900;
}
.v4-empty {
  color: var(--v4-muted);
  line-height: 1.45;
}
.v4-toast {
  position: fixed;
  z-index: 160;
  left: 50%;
  bottom: 20px;
  transform: translate(-50%, 120px);
  background: var(--v4-black);
  color: white;
  padding: 12px 16px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  transition: transform .2s ease;
}
.v4-toast.is-visible { transform: translate(-50%, 0); }

.v4-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 26px 24px;
  border-top: 1px solid var(--v4-black);
  background: var(--v4-black);
  color: white;
}
.v4-footer div,
.v4-footer nav {
  display: flex;
  align-items: center;
  gap: 14px;
}
.v4-footer img {
  width: 34px;
  height: 34px;
}
.v4-footer a,
.v4-footer strong {
  text-transform: uppercase;
  font-weight: 900;
  font-size: 12px;
}

.v5-product-page .category-bag-link {
  font-family: "Archivo Black", Archivo, sans-serif;
}
.v5-pdp-main {
  min-height: calc(100vh - 74px);
  background: #f2f1ef;
  border-bottom: 1px solid var(--v4-black);
  padding-bottom: calc(122px + env(safe-area-inset-bottom));
}
.v5-pdp-loading,
.v5-pdp-missing {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 90px 0;
}
.v5-pdp-missing p,
.v5-pdp-topline,
.v5-pdp-colour,
.v5-pdp-size-row span,
.v5-pdp-quantity-row > span,
.v5-pdp-tab-buttons,
.v5-look-item small {
  text-transform: uppercase;
  color: #3f3f3f;
  font-size: 12px;
  font-weight: 800;
}
.v5-pdp-missing h1 {
  margin: 0 0 20px;
  font-family: "Archivo Black", Archivo, sans-serif;
  text-transform: uppercase;
  font-size: clamp(42px, 8vw, 92px);
  line-height: .9;
}
.v5-pdp-missing a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border: 1px solid var(--v4-black);
  padding: 0 16px;
  text-transform: uppercase;
  font-weight: 900;
}
.v5-pdp-layout {
  width: min(1220px, calc(100% - 72px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 96px minmax(0, 620px) minmax(340px, 430px);
  gap: clamp(26px, 3vw, 44px);
  align-items: start;
  justify-content: center;
  padding: 36px 0 70px;
}
.v5-pdp-mobile-head {
  display: none;
}
.v5-pdp-sticky-buy {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 35;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(360px, 480px) minmax(220px, 1fr);
  align-items: center;
  gap: clamp(24px, 4vw, 72px);
  min-height: 118px;
  padding: 18px max(34px, env(safe-area-inset-left)) calc(18px + env(safe-area-inset-bottom)) max(34px, env(safe-area-inset-right));
  border-top: 1px solid var(--v4-black);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(10px);
}
.v5-pdp-sticky-buy div {
  display: grid;
  gap: 4px;
  min-width: 0;
  grid-column: 1;
  justify-self: end;
  width: min(360px, 100%);
  font-family: Archivo, sans-serif;
  color: var(--v4-black);
}
.v5-pdp-sticky-buy strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: "Archivo Black", Archivo, sans-serif;
  text-transform: uppercase;
  font-size: clamp(16px, 1.05vw, 22px);
  line-height: 1;
}
.v5-pdp-sticky-buy span,
.v5-pdp-sticky-buy em {
  font-style: normal;
  font-size: clamp(14px, .95vw, 19px);
  line-height: 1.1;
}
.v5-pdp-sticky-buy .v5-pdp-add {
  grid-column: 2;
  width: 100%;
  min-height: 54px;
  border-radius: 10px;
  font-family: Archivo, sans-serif;
  font-size: 18px;
  font-weight: 700;
}
.v5-pdp-thumbs {
  position: sticky;
  top: calc(var(--category-header-height, var(--v5-fixed-header-height)) + 38px);
  display: grid;
  gap: 20px;
}
.v5-pdp-thumbs button {
  aspect-ratio: 1;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  padding: 6px;
}
.v5-pdp-thumbs button.is-selected {
  border-color: var(--v4-black);
}
.v5-pdp-thumbs img,
.v5-look-item img,
.v5-recommendation-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.v5-page .v4-product-media img,
.v5-pdp-thumbs img,
.v5-pdp-gallery img,
.v5-look-item img,
.v5-recommendation-card img {
  mix-blend-mode: multiply;
  object-position: center center;
}
.v5-page img[data-product-image].is-missing {
  object-fit: contain;
  opacity: .7;
  padding: 18px;
}
.v5-pdp-gallery {
  position: sticky;
  top: calc(var(--category-header-height, var(--v5-fixed-header-height)) + 22px);
  min-height: calc(100vh - var(--category-header-height, var(--v5-fixed-header-height)) - 68px);
  overflow: hidden;
  touch-action: pan-y;
}
.v5-pdp-gallery-stack {
  display: grid;
  position: absolute;
  inset: 0;
  gap: 0;
  transition: transform 520ms ease;
}
.v5-pdp-gallery-panel {
  position: relative;
  display: grid;
  height: calc(100vh - var(--category-header-height, var(--v5-fixed-header-height)) - 68px);
  min-height: calc(100vh - var(--category-header-height, var(--v5-fixed-header-height)) - 68px);
  place-items: center;
  margin: 0;
}
.v5-pdp-gallery-panel img,
.v5-pdp-mobile-image {
  width: min(620px, 100%);
  max-height: calc(100vh - var(--category-header-height, var(--v5-fixed-header-height)) - 98px);
  object-fit: contain;
  transition: transform .2s ease;
}
.v5-pdp-mobile-image {
  display: none;
}
.v5-pdp-gallery-panel img.is-zoomed,
.v5-pdp-mobile-image.is-zoomed,
.v5-pdp-gallery > img[data-pdp-main-image].is-zoomed {
  transform: scale(1.65);
  cursor: zoom-in;
}
.v5-pdp-gallery-panel img.is-zoomed-more,
.v5-pdp-mobile-image.is-zoomed-more,
.v5-pdp-gallery > img[data-pdp-main-image].is-zoomed-more {
  transform: scale(2.5);
  cursor: zoom-out;
}
.v5-pdp-zoom {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--v4-black);
  font-size: 34px;
  line-height: 1;
}
.v5-pdp-mobile-zoom {
  display: none;
}
.v5-pdp-info {
  position: sticky;
  top: calc(var(--category-header-height, var(--v5-fixed-header-height)) + 24px);
  display: grid;
  gap: 26px;
  max-height: calc(100vh - var(--category-header-height, var(--v5-fixed-header-height)) - 44px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-top: 10px;
  padding-right: 4px;
  scrollbar-width: none;
}
.v5-pdp-info::-webkit-scrollbar {
  display: none;
}
.v5-pdp-topline,
.v5-pdp-title-row,
.v5-pdp-size-row,
.v5-pdp-quantity-row,
.v5-pdp-tab-buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.v5-pdp-topline nav {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.v5-pdp-topline a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.v5-pdp-save {
  border: 0;
  background: transparent;
  font-size: 28px;
  line-height: 1;
}
.v5-pdp-title-row h1 {
  margin: 0;
  font-family: "Archivo Black", Archivo, sans-serif;
  text-transform: uppercase;
  font-size: clamp(28px, 2.35vw, 46px);
  line-height: .94;
}
.v5-pdp-title-row strong {
  font-family: "Archivo Black", Archivo, sans-serif;
  font-size: clamp(24px, 2vw, 32px);
  white-space: nowrap;
}
.v5-pdp-colour {
  margin: 0;
}
.v5-pdp-variants {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  padding-bottom: 18px;
  border-bottom: 1px solid #c8c8c8;
}
.v5-pdp-variant-thumb {
  position: relative;
  flex: 0 0 92px;
  width: 92px;
  height: 92px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 8px;
  background: transparent;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.v5-pdp-variant-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.v5-pdp-variant-thumb.is-selected {
  border-color: var(--v4-black);
}
.v5-pdp-variant-thumb:focus-visible {
  border-color: var(--v4-black);
  outline: 2px solid var(--v4-black);
  outline-offset: 3px;
}
.v5-pdp-size-row {
  padding-bottom: 18px;
  border-bottom: 1px solid #c8c8c8;
}
.v5-pdp-quantity-row {
  padding-bottom: 18px;
  border-bottom: 1px solid #c8c8c8;
}
.v5-pdp-quantity-controls {
  display: grid;
  grid-template-columns: 38px 44px 38px;
  align-items: center;
  min-height: 38px;
  border: 1px solid var(--v4-black);
}
.v5-pdp-quantity-controls button,
.v5-pdp-quantity-controls output {
  display: grid;
  place-items: center;
  min-height: 36px;
  border: 0;
  background: transparent;
  color: var(--v4-black);
  font-family: "Archivo Black", Archivo, sans-serif;
  font-size: 15px;
}
.v5-pdp-quantity-controls output {
  border-right: 1px solid var(--v4-black);
  border-left: 1px solid var(--v4-black);
}
.v5-pdp-quantity-controls button:disabled {
  color: #aaa;
  cursor: not-allowed;
}
.v5-pdp-size-row div {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.v5-pdp-size-row button {
  min-width: 36px;
  min-height: 36px;
  border: 1px solid transparent;
  border-radius: 50%;
  background: transparent;
  color: #6f6f6f;
  font-weight: 900;
}
.v5-pdp-size-row button.is-selected {
  border-color: var(--v4-black);
  color: var(--v4-black);
}
.v5-pdp-add {
  min-height: 58px;
  border: 1px solid var(--v4-black);
  border-radius: 8px;
  background: var(--v4-black);
  color: white;
  text-transform: uppercase;
  font-family: "Archivo Black", Archivo, sans-serif;
}
.v5-pdp-add:disabled {
  border-color: #777;
  background: #777;
  color: white;
}
.v5-pdp-info > .v5-pdp-add {
  display: none;
}
.v5-pdp-tabs {
  border-top: 1px solid #c8c8c8;
}
.v5-pdp-tab-buttons {
  justify-content: flex-start;
  gap: 34px;
  min-height: 54px;
  border-bottom: 1px solid #c8c8c8;
}
.v5-pdp-tab-buttons button {
  border: 0;
  background: transparent;
  padding: 0;
  text-transform: uppercase;
  font-weight: 900;
  color: #4f4f4f;
}
.v5-pdp-tab-buttons button.is-selected {
  color: var(--v4-black);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.v5-pdp-tab-panel {
  padding: 18px 0 4px;
  color: #333;
  line-height: 1.35;
}
.v5-pdp-tab-panel p {
  margin: 0 0 4px;
}
.v5-complete-look {
  grid-column: 1 / -1;
  display: grid;
  gap: 24px;
  margin-top: 18px;
  padding: 32px 0 34px;
  border-top: 1px solid var(--v4-black);
  background: #f2f1ef;
}
.v5-complete-look h2 {
  margin: 0;
  font-family: "Archivo Black", Archivo, sans-serif;
  text-transform: uppercase;
  font-size: clamp(30px, 3.1vw, 44px);
  line-height: .92;
  letter-spacing: 0;
}
.v5-complete-look-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: 18px;
}
.v5-complete-look-card {
  display: grid;
  grid-template-columns: minmax(120px, 180px) minmax(0, 1fr);
  gap: clamp(18px, 2.8vw, 34px);
  align-items: center;
  max-width: 620px;
}
.v5-complete-look-media {
  display: block;
  background: #ecebea;
}
.v5-complete-look-media img {
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  object-fit: contain;
  padding: 16px;
  mix-blend-mode: multiply;
}
.v5-complete-look-info {
  display: grid;
  gap: clamp(28px, 4vw, 56px);
  align-self: stretch;
  align-content: space-between;
}
.v5-complete-look-info > a {
  color: var(--v4-black);
}
.v5-complete-look-info strong,
.v5-complete-look-info b {
  display: block;
  text-transform: uppercase;
  color: var(--v4-black);
}
.v5-complete-look-info strong {
  max-width: 360px;
  font-family: Archivo, Arial, sans-serif;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.05;
  font-weight: 800;
}
.v5-complete-look-info > div {
  display: flex;
  align-items: center;
  gap: 34px;
}
.v5-complete-look-info b {
  font-family: "Archivo Black", Archivo, sans-serif;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1;
}
.v5-complete-look-info button {
  min-width: min(210px, 44vw);
  min-height: 58px;
  border: 1px solid var(--v4-black);
  border-radius: 14px;
  background: var(--v4-black);
  color: white;
  font-family: Archivo, Arial, sans-serif;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
}
.v5-dont-forget {
  grid-column: 1 / -1;
  margin-top: 0;
  padding-top: 32px;
  border-top: 1px solid var(--v4-black);
  overflow: hidden;
}
.v5-dont-forget h2 {
  margin: 0 0 28px;
  font-family: "Archivo Black", Archivo, sans-serif;
  text-transform: uppercase;
  font-size: clamp(30px, 3.1vw, 44px);
  line-height: .92;
  letter-spacing: 0;
}
.v5-dont-forget-rail {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  padding: 0 0 14px;
  -webkit-overflow-scrolling: touch;
}
.v5-dont-forget-rail::-webkit-scrollbar {
  display: none;
}
.v5-recommendation-card {
  flex: 0 0 clamp(210px, 22vw, 300px);
  min-width: 0;
  display: grid;
  grid-template-rows: auto auto auto;
  gap: 12px;
  scroll-snap-align: start;
}
.v5-recommendation-card img {
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  background: #ecebea;
  padding: clamp(14px, 2.4vw, 28px);
}
.v5-recommendation-card strong,
.v5-recommendation-card b {
  display: block;
  color: var(--v4-black);
  font-family: Archivo, Arial, sans-serif;
  font-size: clamp(16px, 1.45vw, 22px);
  line-height: 1.08;
}
.v5-recommendation-card strong {
  font-weight: 800;
}
.v5-recommendation-card b {
  font-weight: 600;
}

@media (min-width: 981px) and (max-width: 1180px) {
  .v5-pdp-layout {
    width: min(1080px, calc(100% - 48px));
    grid-template-columns: 82px minmax(0, 1fr) minmax(320px, 380px);
    gap: 24px;
  }
  .v5-pdp-title-row h1 {
    font-size: clamp(26px, 2.6vw, 36px);
  }
  .v5-pdp-variants {
    gap: 14px;
  }
}

@media (max-width: 980px) {
  body.v5-page {
    --v5-fixed-header-height: 64px;
  }
  .v4-header {
    grid-template-columns: 52px 1fr auto;
    height: 64px;
    padding: 0 12px;
  }
  .v4-collection-main {
    padding-top: 64px;
  }
  .v4-collection-hero {
    padding: 28px 16px 22px;
  }
  .v4-collection-title-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .v4-collection-title-row h1 {
    font-size: clamp(56px, 24vw, 118px);
  }
  .v5-page .v4-collection-title-row h1 {
    max-width: 100%;
    overflow-wrap: normal;
    font-size: clamp(42px, 14vw, 74px);
    line-height: .86;
  }
  .v5-page .v4-collection-summary {
    max-width: 100%;
    overflow-wrap: break-word;
  }
  .v4-collection-toolbar {
    top: 64px;
    grid-template-columns: 1fr auto;
    gap: 8px;
    padding: 0 16px;
  }
  .v4-filter-toggle {
    justify-self: stretch;
    width: 100%;
    min-height: 58px;
    font-size: 20px;
  }
  .v4-product-count {
    grid-column: 1 / -1;
    justify-self: end;
  }
  .v4-collection-shell {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px 16px 44px;
  }
  .v4-collection-shell:has(.v4-facets.is-hidden) {
    grid-template-columns: 1fr;
  }
  .v4-facets {
    width: calc(100vw - 36px);
    padding: 28px 28px calc(24px + env(safe-area-inset-bottom));
  }
  .v4-facets.is-hidden {
    visibility: hidden;
  }
  .v4-facet-head {
    margin-bottom: 10px;
  }
  .v4-filter-backdrop {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: block;
    border: 0;
    background: rgba(8,8,8,.34);
  }
  .v4-filter-backdrop[hidden] {
    display: none;
  }
  body.v4-filter-lock {
    overflow: hidden;
  }
  .v4-collection-grid.is-view-4,
  .v4-collection-grid.is-view-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 10px;
  }
  .v4-logo span { display: none; }
  .v4-desktop-nav { display: none; }
  .v4-search-trigger { display: none; }
  .v4-hero {
    min-height: 760px;
    height: 82svh;
    max-height: 820px;
    align-items: end;
  }
  .v4-hero-products {
    inset: 18svh -32vw auto auto;
    width: 94vw;
    opacity: .9;
  }
  .v4-hero-copy {
    width: min(390px, calc(100% - 40px));
    padding: 0 0 9svh 24px;
  }
  .v4-hero-copy h1 {
    font-size: clamp(44px, 16vw, 64px);
    line-height: .88;
    margin-bottom: 18px;
  }
  .v4-product-rail .v4-product-card { flex-basis: min(72vw, 320px); }
  .v4-campaign,
  .v4-look,
  .v4-split-rails {
    grid-template-columns: 1fr;
  }
  .v4-campaign { min-height: 0; }
  .v4-campaign img {
    display: block;
    width: 100%;
    max-width: 100vw;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
  }
  .v4-look-copy { position: static; }
  .v4-look-grid,
  .v4-product-grid,
  .v4-search-results {
    grid-template-columns: 1fr 1fr;
  }
  .v4-drop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .v4-split-rails .v4-rail-section + .v4-rail-section {
    border-left: 0;
    border-top: 1px solid var(--v4-line);
  }
  .v5-pdp-main {
    min-height: 0;
    padding-bottom: 0;
  }
  .v5-pdp-layout {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 0 calc(156px + env(safe-area-inset-bottom));
  }
  .v5-complete-look {
    order: 4;
    gap: 22px;
    margin-top: 0;
    padding: 28px 16px 34px;
    border-top: 1px solid var(--v4-black);
  }
  .v5-complete-look h2 {
    font-size: clamp(28px, 8vw, 38px);
  }
  .v5-complete-look-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .v5-complete-look-card {
    grid-template-columns: clamp(130px, 36vw, 172px) minmax(0, 1fr);
    gap: 16px;
    max-width: none;
  }
  .v5-complete-look-info {
    gap: 24px;
    min-width: 0;
  }
  .v5-complete-look-info strong {
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: 16px;
    line-height: 1.08;
  }
  .v5-complete-look-info > div {
    align-items: end;
    justify-content: space-between;
    gap: 10px;
  }
  .v5-complete-look-info b {
    font-size: 26px;
  }
  .v5-complete-look-info button {
    min-width: 96px;
    min-height: 46px;
    border-radius: 12px;
    font-size: 13px;
  }
  .v5-dont-forget {
    order: 5;
    margin-top: 8px;
    padding: 28px 0 0 16px;
    border-top: 1px solid var(--v4-black);
  }
  .v5-dont-forget h2 {
    margin-bottom: 20px;
    padding-right: 16px;
    font-size: clamp(28px, 8vw, 38px);
  }
  .v5-dont-forget-rail {
    gap: 10px;
    padding: 0 16px 20px 0;
  }
  .v5-recommendation-card {
    flex-basis: min(44vw, 210px);
    gap: 10px;
  }
  .v5-recommendation-card img {
    padding: 14px;
  }
  .v5-recommendation-card strong,
  .v5-recommendation-card b {
    font-size: 18px;
  }
  .v5-pdp-mobile-head {
    order: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: start;
    padding: 16px 16px 12px;
    border-bottom: 1px solid #d5d0c2;
  }
  .v5-pdp-mobile-head h1 {
    margin: 0;
    font-family: "Archivo Black", Archivo, sans-serif;
    text-transform: uppercase;
    font-size: clamp(22px, 7.5vw, 32px);
    line-height: .98;
    overflow: hidden;
    overflow-wrap: anywhere;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .v5-pdp-mobile-head strong {
    font-family: "Archivo Black", Archivo, sans-serif;
    font-size: 20px;
    line-height: 1;
    white-space: nowrap;
  }
  .v5-pdp-thumbs {
    position: static;
    order: 2;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 0 16px 22px;
    background: #f1f1f0;
  }
  .v5-pdp-thumbs button {
    flex: 1 1 42px;
    min-width: 42px;
    height: 4px;
    aspect-ratio: auto;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .95);
    padding: 0;
  }
  .v5-pdp-thumbs button.is-selected {
    background: #9a9a9a;
  }
  .v5-pdp-thumbs button img {
    display: none;
  }
  .v5-pdp-gallery {
    position: relative;
    order: 1;
    top: auto;
    min-height: clamp(360px, 54svh, 520px);
    padding: 14px 16px 24px;
    background: #f1f1f0;
    display: grid;
    place-items: center;
    overflow: hidden;
  }
  .v5-pdp-gallery-stack {
    display: none;
  }
  .v5-pdp-mobile-image {
    display: block;
    max-height: clamp(320px, 50svh, 480px);
  }
  .v5-pdp-mobile-image.is-zoomed,
  .v5-pdp-gallery > img[data-pdp-main-image].is-zoomed {
    transform: scale(1.3);
  }
  .v5-pdp-mobile-image.is-zoomed-more,
  .v5-pdp-gallery > img[data-pdp-main-image].is-zoomed-more {
    transform: scale(1.8);
  }
  .v5-pdp-zoom {
    top: auto;
    right: 20px;
    bottom: 10px;
    width: 38px;
    height: 38px;
    font-size: 30px;
  }
  .v5-pdp-mobile-zoom {
    display: block;
  }
  .v5-pdp-info {
    position: static;
    order: 3;
    gap: 20px;
    max-height: none;
    overflow: visible;
    overscroll-behavior: auto;
    padding: 18px 16px 0;
  }
  .v5-pdp-title-row {
    display: none;
    align-items: flex-start;
  }
  .v5-pdp-title-row h1 {
    font-size: clamp(28px, 10vw, 48px);
  }
  .v5-pdp-variants {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 82px));
    justify-content: space-between;
    gap: 22px 18px;
    max-width: 100%;
    overflow: visible;
    padding-bottom: 16px;
  }
  .v5-pdp-variant-thumb {
    width: 82px;
    height: 82px;
    padding: 7px;
  }
  .v5-pdp-variants--rail-backup {
    display: flex;
    flex-wrap: nowrap;
    gap: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
  }
  .v5-pdp-variants--rail-backup .v5-pdp-variant-thumb {
    flex: 0 0 82px;
    scroll-snap-align: start;
  }
  .v5-pdp-size-row {
    align-items: flex-start;
    gap: 18px;
  }
  .v5-pdp-quantity-row {
    min-height: 44px;
  }
  .v5-pdp-quantity-controls {
    grid-template-columns: 42px 48px 42px;
    min-height: 42px;
  }
  .v5-pdp-quantity-controls button,
  .v5-pdp-quantity-controls output {
    min-height: 40px;
  }
  .v5-pdp-size-row div {
    gap: 8px;
    flex: 1 1 auto;
    justify-content: flex-end;
  }
  .v5-pdp-size-row button {
    min-width: 42px;
    min-height: 42px;
  }
  .v5-pdp-sticky-buy {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 35;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    box-sizing: border-box;
    width: auto;
    max-width: 100dvw;
    overflow: hidden;
    padding: 10px max(16px, env(safe-area-inset-left)) calc(10px + env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-right));
    border-top: 1px solid var(--v4-black);
    background: rgba(242, 241, 239, .96);
    backdrop-filter: blur(10px);
  }
  .v5-pdp-sticky-buy div {
    grid-column: 1;
    justify-self: stretch;
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    font-family: "Archivo Black", Archivo, sans-serif;
    text-transform: uppercase;
    line-height: 1;
  }
  .v5-pdp-sticky-buy strong {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 15px;
  }
  .v5-pdp-sticky-buy span {
    flex: 0 0 auto;
    font-size: 16px;
  }
  .v5-pdp-sticky-buy em {
    display: none;
  }
  .v5-pdp-sticky-buy .v5-pdp-add {
    grid-column: 1;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    min-height: 50px;
    border-radius: 8px;
    white-space: nowrap;
  }
}

@media (max-width: 560px) {
  .v4-actions { gap: 6px; }
  .v4-bag-trigger { padding: 0 10px; }
  .v4-collection-toolbar {
    grid-template-columns: auto auto;
  }
  .v4-product-count {
    grid-column: 1 / -1;
    justify-self: start;
  }
  .v4-view-switch {
    justify-self: end;
  }
  .v4-collection-grid .v4-product-card h3 {
    font-size: 12px;
  }
  .v4-collection-grid .v4-product-info {
    gap: 7px;
  }
  .v4-collection-grid .v4-size-row button {
    min-width: 30px;
    height: 28px;
    font-size: 10px;
  }
  .v4-collection-grid .v4-quick-add {
    min-height: 36px;
    font-size: 11px;
  }
  .v4-hero {
    min-height: 620px;
    height: 72svh;
    max-height: 680px;
  }
  .v4-hero-products {
    inset: 13svh -38vw auto auto;
    width: 92vw;
    grid-template-columns: repeat(5, minmax(74px, 1fr));
    gap: 8px;
  }
  .v4-hero-products img:nth-child(2),
  .v4-hero-products img:nth-child(4) {
    transform: translateY(4svh);
  }
  .v4-hero-products img:nth-child(3) {
    transform: translateY(-1svh);
  }
  .v4-hero-copy {
    padding: 0 0 5svh 24px;
  }
  .v4-hero-copy p {
    font-size: 11px;
    margin-bottom: 8px;
  }
  .v4-hero-copy h1 {
    font-size: clamp(42px, 15.5vw, 58px);
  }
  .v4-hero-copy a {
    min-height: 46px;
    padding: 0 18px;
  }
  .v4-section-head {
    grid-template-columns: 1fr;
  }
  .v4-section-head a {
    justify-self: start;
  }
  .v4-look-grid,
  .v4-product-grid,
  .v4-search-results {
    grid-template-columns: 1fr;
  }
  .v4-drop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 10px;
  }
  .v4-newsletter form {
    grid-template-columns: 1fr;
  }
  .v4-newsletter button {
    min-height: 48px;
    border-width: 1px 0 0;
  }
  .v4-footer {
    align-items: flex-start;
    flex-direction: column;
  }
  .v4-footer nav {
    flex-wrap: wrap;
  }
}
