@charset "UTF-8";
:root {
  --ink: #181a19;
  --paper: #fff;
  --accent: #ffdc24;
  --muted: #646865;
  --line: #dedfdd;
  --surface: #f1f2f1;
  --space: clamp(22px, 4.5vw, 72px);
  --radius: 3px;
  color-scheme: light;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
}
.support-status[hidden] {
  display: none;
}
.support-status {
  position: fixed;
  right: 20px;
  bottom: 78px;
  z-index: 40;
  max-width: min(340px, calc(100vw - 40px));
  margin: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  font-size: 14px;
  line-height: 1.5;
}
body:has(dialog[open]) {
  overflow: hidden;
}
button,
input,
select {
  font: inherit;
  color: inherit;
}
button,
a,
input {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  border: 0;
  background: transparent;
}
button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid #977900;
  outline-offset: 4px;
}
img {
  max-width: 100%;
  display: block;
}
svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}
[hidden] {
  display: none !important;
}
.skip {
  position: absolute;
  left: 10px;
  top: -100px;
  z-index: 100;
  padding: 12px;
  background: white;
}
.skip:focus {
  top: 8px;
}
.preview-ribbon {
  min-height: 32px;
  background: var(--accent);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-align: center;
}
.site-header {
  min-height: 88px;
  padding: 14px var(--space);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid #ededeb;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
}
.brand img {
  width: 41px;
  height: 32px;
  object-fit: contain;
}
.brand span {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(19px, 1.8vw, 27px);
  font-style: italic;
  font-weight: 900;
  letter-spacing: -1px;
  white-space: nowrap;
}
.site-header nav {
  display: flex;
  gap: 34px;
  align-items: center;
  font-size: 14px;
}
.site-header nav a {
  padding: 10px 0;
  position: relative;
}
.site-header nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 3px;
  height: 2px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s;
}
.site-header nav a:hover::after {
  transform: scaleX(1);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}
.icon-button {
  padding: 10px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.icon-button:hover {
  background: var(--surface);
}
.bag-button {
  font-size: 14px;
  white-space: nowrap;
  padding: 12px 0 12px 8px;
}
.hero {
  min-height: clamp(520px, 43vw, 670px);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #f2f3f2;
  isolation: isolate;
}
.hero-art {
  position: absolute;
  inset: 0 0 0 26%;
  z-index: -2;
}
.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% 53%;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    90deg,
    #fff 0%,
    #fff 25%,
    rgba(255, 255, 255, 0.95) 32%,
    rgba(255, 255, 255, 0.35) 45%,
    rgba(255, 255, 255, 0) 54%
  );
  pointer-events: none;
}
.hero-copy {
  margin: 48px 0 64px;
  padding-left: var(--space);
  width: 48%;
  max-width: 720px;
}
h1 {
  font-size: clamp(52px, 5.4vw, 84px);
  font-weight: 800;
  line-height: 1.015;
  letter-spacing: -0.055em;
  margin: 0 0 28px;
}
.hero-copy p {
  font-size: clamp(17px, 1.65vw, 22px);
  line-height: 1.45;
  max-width: 400px;
  margin: 0 0 30px;
}
.button {
  display: inline-flex;
  min-height: 52px;
  padding: 15px 22px;
  justify-content: center;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius);
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.button-dark {
  background: var(--ink);
  color: white;
}
.button-dark:hover {
  background: #333734;
}
.button-yellow {
  background: var(--accent);
  color: var(--ink);
}
.button-yellow:hover {
  background: #f2ca00;
}
.image-credit {
  position: absolute;
  bottom: 14px;
  right: var(--space);
  background: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  padding: 5px 8px;
  color: #414541;
}
.section-container {
  margin: 0 var(--space);
}
.collection {
  padding: 38px 0 58px;
  scroll-margin-top: 24px;
}
.collection-heading {
  padding-top: 28px;
  border-top: 1px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}
h2 {
  font-size: clamp(34px, 3.5vw, 52px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.05em;
  margin: 0 0 8px;
}
.collection-heading p {
  font-size: 18px;
  margin: 0;
}
.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.filters button {
  padding: 12px 15px;
  border-radius: var(--radius);
  font-size: 14px;
  min-height: 44px;
}
.filters button[aria-pressed="true"] {
  background: var(--ink);
  color: white;
}
.filters button:hover:not([aria-pressed="true"]) {
  background: var(--surface);
}
.result-count {
  font-size: 14px;
  white-space: nowrap;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}
.product-card {
  min-width: 0;
}
.product-image {
  display: block;
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--surface);
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.product-image:hover img {
  transform: scale(1.035);
}
.product-image::after {
  content: "View details";
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: #fff;
  border-radius: 2px;
  padding: 9px 12px;
  font-size: 13px;
  opacity: 0;
  transform: translateY(4px);
  transition: 0.2s;
}
.product-image:hover::after,
.product-image:focus-visible::after {
  opacity: 1;
  transform: none;
}
.product-info {
  padding-top: 18px;
  position: relative;
  padding-right: 52px;
}
.product-meta {
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 7px;
}
.product-title {
  font-weight: 700;
  font-size: clamp(17px, 1.5vw, 21px);
  margin: 0 0 9px;
  padding: 0;
  text-align: left;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.product-title:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.product-price {
  font-size: 17px;
  margin: 0;
}
.quick-add {
  position: absolute;
  right: 0;
  top: 39px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  display: grid;
  place-items: center;
  transition:
    transform 0.2s,
    background 0.2s;
}
.quick-add:hover {
  background: #393d38;
  transform: rotate(90deg);
}
.catalog-note {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
  margin: 28px 0 0;
}
.search-panel {
  background: var(--surface);
  padding: 22px;
  margin: 0 0 28px;
}
.search-panel label {
  font-size: 14px;
  display: block;
  margin-bottom: 9px;
  font-weight: 600;
}
.search-field {
  display: flex;
  gap: 12px;
  align-items: center;
}
.search-field input {
  border: 0;
  border-bottom: 1px solid #999f99;
  padding: 10px 0;
  background: transparent;
  font-size: 18px;
  min-width: 0;
  width: 100%;
  outline-offset: 2px;
  border-radius: 0;
}
.text-button {
  padding: 8px;
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.empty {
  grid-column: 1/-1;
  padding: 65px 16px;
  text-align: center;
  background: var(--surface);
}
.empty h3 {
  font-size: 25px;
  margin: 0 0 12px;
}
.empty p {
  line-height: 1.5;
  color: var(--muted);
  margin-bottom: 24px;
}
.scene-banner {
  background: var(--accent);
  padding: 52px var(--space);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.scene-banner h2 {
  font-size: clamp(32px, 3.4vw, 50px);
}
.scene-banner p {
  font-size: 18px;
  margin: 10px 0 0;
  line-height: 1.5;
}
.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 5px;
  white-space: nowrap;
}
.scene-sign {
  display: flex;
  align-items: center;
  gap: 12px;
}
.scene-sign img {
  width: 84px;
}
.scene-sign span {
  font-size: 16px;
  font-weight: 800;
  font-style: italic;
  line-height: 1.2;
  text-transform: uppercase;
}
.site-footer {
  background: var(--ink);
  color: #fff;
  padding: 42px var(--space);
  display: flex;
  align-items: center;
  gap: 72px;
}
.site-footer .brand img {
  filter: invert(1);
}
.site-footer p {
  color: #c9ccc9;
  font-size: 14px;
  margin: 15px 0 0;
}
.footer-links {
  margin-left: auto;
  display: grid;
  gap: 14px;
}
.footer-links button {
  padding: 4px 0;
  text-align: left;
  font-size: 14px;
  color: #e1e3df;
}
.footer-links button:hover {
  text-decoration: underline;
}
.footer-sign {
  font-size: 12px;
  letter-spacing: 3px;
  line-height: 1.9;
}
.drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(620px, 100%);
  height: 100dvh;
  max-height: 100dvh;
  max-width: 100%;
  margin: 0;
  padding: 0;
  background: var(--paper);
  border: 0;
  color: var(--ink);
  box-shadow: -15px 0 60px #0002;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.drawer::backdrop {
  background: #171a1870;
  backdrop-filter: blur(3px);
}
.drawer[open] {
  animation: slide-in 0.25s ease-out;
}
.drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  min-height: 64px;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 3;
  border-bottom: 1px solid var(--line);
}
.drawer-top > span {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.4px;
  color: var(--muted);
}
.drawer-body {
  padding: 24px 32px 36px;
}
.detail-photo {
  aspect-ratio: 1.5;
  width: 100%;
  height: auto;
  object-fit: contain;
  background: var(--surface);
}
.detail-category {
  margin-top: 26px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.drawer h2 {
  font-size: 36px;
  line-height: 1.1;
  margin: 10px 0 12px;
  letter-spacing: -0.04em;
}
.detail-price {
  font-weight: 700;
  font-size: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.detail-price span {
  font-weight: 400;
  font-size: 12px;
  color: var(--muted);
}
.detail-lead {
  font-size: 18px;
  line-height: 1.5;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  margin-top: 22px;
}
.detail-description,
.info-copy {
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
}
.variant-options {
  border: 0;
  padding: 0;
  margin: 25px 0;
}
.variant-options legend {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}
.variant-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.variant-choice {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 17px;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 48px;
}
.variant-choice:has(input:checked) {
  border: 2px solid var(--ink);
  padding: 13px 16px;
  background: #fafaf8;
}
.variant-choice input {
  accent-color: var(--ink);
  margin: 0;
  width: 16px;
  height: 16px;
}
.specs {
  margin: 24px 0 14px;
}
.specs div {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 20px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
  line-height: 1.4;
}
.specs dd {
  margin: 0;
  color: var(--muted);
}
.detail-note {
  font-size: 12px;
  line-height: 1.65;
  color: var(--muted);
}
.fit-note {
  border-top: 1px solid var(--line);
  margin-top: 22px;
  padding-top: 16px;
}
.fit-note summary {
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 5px 0;
}
.fit-note p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}
.drawer-bottom {
  padding: 20px 32px max(20px, env(safe-area-inset-bottom));
  position: sticky;
  bottom: 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 2;
}
.drawer-bottom > .button {
  flex: 1;
}
.quantity {
  display: flex;
  height: 52px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  flex: 0 0 auto;
}
.quantity button {
  width: 40px;
  height: 48px;
  display: grid;
  place-items: center;
}
.quantity svg {
  width: 17px;
}
.quantity output {
  min-width: 30px;
  text-align: center;
  font-size: 16px;
}
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: white;
  z-index: 20;
  padding: 15px 22px;
  box-shadow: 0 8px 30px #0002;
  font-size: 14px;
  border-radius: 3px;
  max-width: calc(100% - 32px);
}
.bag-line {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.bag-line img {
  width: 90px;
  height: 100px;
  object-fit: cover;
}
.bag-line h3 {
  font-size: 17px;
  line-height: 1.3;
  margin: 0 0 7px;
}
.bag-line p {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 12px;
}
.bag-line .quantity {
  width: fit-content;
  height: 34px;
}
.bag-line .quantity button {
  width: 32px;
  height: 32px;
}
.bag-line .quantity output {
  font-size: 14px;
  min-width: 25px;
}
.bag-line-end {
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}
.bag-line-end strong {
  font-size: 16px;
  white-space: nowrap;
}
.bag-line-end button {
  font-size: 12px;
  padding: 10px 0 2px;
  text-decoration: underline;
  color: var(--muted);
}
.bag-totals {
  padding: 24px 0;
  display: grid;
  gap: 14px;
}
.bag-totals div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 15px;
  line-height: 1.5;
}
.bag-totals .total {
  font-size: 22px;
  font-weight: 700;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.bag-totals .muted {
  color: var(--muted);
  font-size: 14px;
}
.notice-box {
  padding: 18px;
  background: #fff8d4;
  font-size: 14px;
  line-height: 1.6;
}
.checkout-actions {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}
.review-list {
  list-style: none;
  padding: 0;
  margin: 26px 0;
}
.review-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding: 15px 0;
  font-size: 15px;
  line-height: 1.5;
}
.review-list small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px;
}
.noscript {
  padding: 24px;
  text-align: center;
}
@keyframes slide-in {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}
@media (min-width: 1600px) {
  .hero-art {
    left: 30%;
  }
  .hero-copy {
    padding-left: max(var(--space), calc((100vw - 1500px) / 2));
  }
}
@media (max-width: 1100px) {
  .site-header {
    gap: 18px;
  }
  .site-header nav {
    gap: 22px;
  }
  .header-actions {
    gap: 14px;
  }
  .collection-heading {
    flex-wrap: wrap;
  }
  .filters {
    margin-left: auto;
  }
  .result-count {
    width: 100%;
    text-align: right;
    margin-top: -8px;
  }
  .scene-sign {
    display: none;
  }
  .site-footer {
    gap: 35px;
  }
}
@media (max-width: 720px) {
  .preview-ribbon {
    font-size: 10px;
    letter-spacing: 0.7px;
    gap: 5px;
    min-height: 30px;
  }
  .site-header {
    padding: 10px 20px;
    min-height: 76px;
    flex-wrap: wrap;
    gap: 10px;
  }
  .brand span {
    font-size: 20px;
  }
  .brand img {
    width: 29px;
    height: 25px;
  }
  .header-actions {
    gap: 8px;
    margin-left: auto;
  }
  .site-header nav {
    order: 3;
    flex-basis: 100%;
    justify-content: space-between;
    gap: 8px;
    border-top: 1px solid var(--line);
    padding-top: 3px;
  }
  .site-header nav a {
    font-size: 14px;
    padding: 12px 4px;
  }
  .bag-button {
    font-size: 14px;
  }
  .hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    background: #fff;
    align-items: stretch;
  }
  .hero::before {
    display: none;
  }
  .hero-copy {
    order: 0;
    width: 100%;
    margin: 0;
    padding: 32px 22px 30px;
  }
  h1 {
    font-size: clamp(43px, 11.6vw, 72px);
    letter-spacing: -0.055em;
    margin-bottom: 22px;
  }
  .hero-copy p {
    font-size: 17px;
    margin-bottom: 22px;
  }
  .desktop-break {
    display: none;
  }
  .hero-art {
    position: relative;
    order: 1;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 1.4;
    z-index: 0;
  }
  .hero-art img {
    object-position: 58% center;
  }
  .image-credit {
    z-index: 1;
    right: 10px;
    bottom: 10px;
    font-size: 11px;
  }
  .collection {
    padding: 28px 0 34px;
  }
  .collection-heading {
    gap: 20px;
    padding-top: 23px;
    margin-bottom: 22px;
  }
  h2 {
    font-size: 36px;
  }
  .collection-heading p {
    font-size: 16px;
  }
  .filters {
    order: 3;
    margin: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3px;
  }
  .filters button {
    font-size: 12px;
    padding: 10px 4px;
  }
  .result-count {
    width: auto;
    margin: 0 0 4px auto;
    align-self: flex-end;
    font-size: 12px;
  }
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 15px;
    row-gap: 28px;
  }
  .product-info {
    padding-top: 12px;
    padding-right: 0;
    padding-bottom: 2px;
  }
  .product-title {
    font-size: 16px;
    padding-right: 0;
    margin-bottom: 9px;
    min-height: 40px;
  }
  .product-price {
    font-size: 15px;
  }
  .product-meta {
    font-size: 11px;
    margin-bottom: 6px;
  }
  .quick-add {
    width: 34px;
    height: 34px;
    right: 0;
    top: auto;
    bottom: -5px;
  }
  .quick-add svg {
    width: 18px;
    height: 18px;
  }
  .catalog-note {
    font-size: 12px;
  }
  .scene-banner {
    padding: 35px 22px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .scene-banner h2 {
    font-size: 37px;
  }
  .scene-banner p {
    font-size: 16px;
  }
  .site-footer {
    padding: 32px 22px;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 25px;
  }
  .site-footer > div:first-child {
    width: 100%;
  }
  .footer-links {
    margin: 0 auto 0 0;
  }
  .footer-sign {
    font-size: 10px;
  }
  .drawer-body {
    padding: 20px 22px 28px;
  }
  .drawer h2 {
    font-size: 31px;
  }
  .drawer-bottom {
    padding: 16px 22px max(16px, env(safe-area-inset-bottom));
    gap: 12px;
  }
  .drawer-bottom .button {
    font-size: 15px;
    padding-inline: 15px;
  }
  .quantity button {
    width: 36px;
  }
  .quantity output {
    min-width: 24px;
  }
  .bag-line {
    grid-template-columns: 68px 1fr auto;
    gap: 12px;
  }
  .bag-line img {
    width: 68px;
    height: 85px;
  }
  .bag-line h3 {
    font-size: 15px;
  }
  .bag-line-end strong {
    font-size: 14px;
  }
  .search-panel {
    padding: 18px;
  }
  .search-field input {
    font-size: 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}

@media (max-width: 720px) {
  .quick-add {
    width: 44px;
    height: 44px;
    bottom: -9px;
  }
  .product-price {
    padding-right: 44px;
  }
  .preview-ribbon {
    font-size: 11px;
    letter-spacing: 0.25px;
  }
  .bag-line .quantity button {
    height: 44px;
    width: 36px;
  }
  .bag-line .quantity {
    height: 46px;
  }
  .footer-links button {
    min-height: 44px;
  }
}

/* Language controls use native names so visitors can recover from any selection. */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.preview-ribbon {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 5px var(--space);
  text-transform: none;
}
.language-control {
  display: flex;
  align-items: center;
  gap: 5px;
  min-width: 0;
}
.language-control svg {
  width: 18px;
  height: 18px;
}
.language-control select {
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: normal;
  max-width: 180px;
  min-height: 36px;
  padding: 7px 20px 7px 5px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.language-control select:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 1px;
}
.locale-controls {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 4px 12px;
}
.currency-control {
  border-left: 1px solid var(--line);
  padding-left: 8px;
}
.reference-price {
  display: block;
  margin-top: 4px;
  color: var(--muted, #666);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: normal;
}
.reference-price[hidden] {
  display: none;
}
.currency-note {
  margin: 12px 0 20px;
  color: var(--muted, #666);
  font-size: 12px;
  line-height: 1.6;
  overflow-wrap: anywhere;
}
@media (max-width: 720px) {
  .preview-ribbon {
    grid-template-columns: 1fr;
  }
  .locale-controls {
    justify-content: flex-start;
  }
  .locale-controls .language-control select {
    max-width: 158px;
  }
}
#hero-title,
.scene-sign span,
.footer-sign {
  white-space: pre-line;
}
.product-image::after {
  content: attr(data-detail-label);
}
.hero-copy,
.collection-heading > div:first-child,
.scene-banner > div,
.bag-line > div,
.drawer-bottom .button {
  min-width: 0;
}
#hero-title {
  overflow-wrap: anywhere;
}
html:not([lang="en"]) #hero-title {
  font-size: clamp(42px, 4.55vw, 72px);
  line-height: 1.1;
}
html[lang^="zh"] #hero-title,
html[lang="ja"] #hero-title,
html[lang="ko"] #hero-title {
  letter-spacing: -0.025em;
}
html:not([lang="en"]) h2 {
  font-size: clamp(30px, 3vw, 44px);
}
.bag-line h3,
.product-title,
.specs dd,
.bag-totals span {
  overflow-wrap: anywhere;
}
.drawer-bottom .button {
  line-height: 1.3;
}
@media (max-width: 1100px) {
  .site-header {
    flex-wrap: wrap;
  }
  .site-header nav {
    flex-wrap: wrap;
  }
  .collection-heading > div:first-child {
    flex: 1 1 250px;
  }
}
@media (max-width: 720px) {
  .preview-ribbon {
    padding: 6px 16px;
    gap: 8px;
    letter-spacing: 0;
    line-height: 1.5;
    text-align: left;
  }
  .language-control select {
    max-width: 138px;
  }
  .language-control svg {
    display: none;
  }
  .site-header nav a {
    overflow-wrap: anywhere;
  }
  html:not([lang="en"]) #hero-title {
    font-size: clamp(33px, 9vw, 55px);
  }
  .collection-heading > div:first-child {
    flex: 1 1 210px;
  }
  .filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .filters button {
    font-size: 13px;
  }
  .result-count {
    margin-left: 0;
  }
  .drawer-bottom {
    gap: 10px;
  }
  .drawer-bottom .button {
    padding: 12px 10px;
    font-size: 14px;
  }
  .scene-banner .text-link {
    white-space: normal;
  }
}

.bag-button {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.bag-icon {
  display: none;
}
@media (max-width: 720px) {
  .bag-icon {
    display: block;
  }
  .bag-button [data-i18n="Bag"] {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }
  .header-actions {
    gap: 4px;
  }
}
@media (max-width: 400px) {
  .site-header {
    padding-inline: 18px;
    gap: 8px;
  }
  .site-header .brand span {
    font-size: 18px;
  }
  .header-actions {
    gap: 0;
  }
}
.commerce-form {
  display: grid;
  gap: 18px;
  margin: 24px 0;
}
.commerce-form label {
  display: grid;
  gap: 9px;
  font-size: 13px;
  font-weight: 600;
}
.commerce-form input,
.commerce-form select,
.commerce-form textarea {
  font: inherit;
  width: 100%;
  padding: 13px;
  border: 1px solid #cecfca;
  border-radius: 3px;
  background: white;
  color: #191a17;
}
.commerce-form textarea {
  min-height: 115px;
  resize: vertical;
}
.commerce-form button {
  width: 100%;
}
.commerce-error {
  background: #fff0eb;
  color: #9a3020;
  padding: 14px;
  font-size: 13px;
  line-height: 1.6;
}
.commerce-record {
  border-top: 1px solid #deded7;
  margin: 24px 0;
  padding: 18px 0;
  overflow-wrap: anywhere;
}
.commerce-record h3 {
  font-size: 16px;
}
.commerce-record p,
.commerce-record li {
  font-size: 13px;
  line-height: 1.8;
  white-space: pre-wrap;
}
.commerce-record small {
  font-size: 11px;
  color: #64665e;
}
.commerce-record blockquote {
  margin: 16px 0;
  padding: 16px;
  background: #f4f4eb;
  border-left: 3px solid #ffdc24;
}
.commerce-record blockquote p {
  margin-bottom: 0;
}

.site-header nav {
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: thin;
  white-space: nowrap;
}
.site-header nav a {
  flex-shrink: 0;
}
.filters {
  flex-wrap: wrap;
}

.social-page {
  max-width: 1320px;
  padding: 70px 32px 60px;
  margin: 0 auto;
  min-height: 60vh;
}
.social-page[hidden] {
  display: none;
}
.social-heading {
  max-width: 800px;
  margin: 0 0 48px;
}
.social-heading h1 {
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.05em;
  line-height: 1.06;
  margin: 20px 0;
}
.social-heading > p:not(.eyebrow) {
  font-size: 18px;
  color: #65665d;
  margin: 0 0 24px;
}
.social-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.social-card {
  display: block;
  border: 1px solid #e4e3d9;
  border-radius: 24px;
  overflow: hidden;
  background: #fffdf6;
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease;
}
.social-card:hover {
  transform: translateY(-4px);
}
.social-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  background: #efeee6;
}
.social-card > div {
  padding: 24px;
}
.social-card h2 {
  font-size: 23px;
  line-height: 1.2;
  margin: 10px 0 24px;
  overflow-wrap: anywhere;
}
.social-card span {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #68685f;
}
.social-card p {
  font-size: 14px;
  font-weight: 700;
}
.social-empty {
  padding: 48px 28px;
  border: 1px dashed #c9c8bd;
  border-radius: 24px;
  background: #faf9f2;
}
.social-empty h2 {
  margin: 0 0 24px;
}
.social-privacy {
  font-size: 12px;
  color: #737369;
  max-width: 800px;
  line-height: 1.65;
  margin-top: 44px;
}
@media (max-width: 800px) {
  .social-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .social-page {
    padding: 44px 24px;
  }
}
@media (max-width: 500px) {
  .social-grid {
    grid-template-columns: 1fr;
  }
  .social-page {
    padding: 36px 20px;
  }
  .social-heading {
    margin-bottom: 28px;
  }
  .social-card > div {
    padding: 20px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .social-card {
    transition: none;
  }
}

/* Shared customer product gallery, also used by the authoring preview. */
.product-thumbnails {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  overflow-x: auto;
  padding: 3px;
}
.product-thumbnails button {
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: white;
  flex: 0 0 64px;
}
.product-thumbnails button[aria-pressed="true"] {
  border: 2px solid var(--ink);
  padding: 2px;
}
.product-thumbnails img {
  display: block;
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.photo-empty {
  display: grid;
  place-items: center;
  min-height: 200px;
  color: var(--muted);
}
.detail-description,
.fit-note p {
  white-space: pre-line;
}
