:root {
  color-scheme: light;
  --ink: #23211f;
  --muted: #6c625c;
  --paper: #f7f3ee;
  --surface: #fffaf5;
  --line: #ded5ca;
  --surface-alt: #f1e9df;
  --image-matte: #eadfd4;
  --rose: #a84f5f;
  --moss: #64745b;
  --copper: #b06d45;
  --accent: var(--copper);
  --accent-strong: #8f5533;
  --radius-control: 6px;
  --radius-panel: 8px;
  --control-height: 42px;
  --shadow: 0 22px 60px rgba(48, 39, 31, 0.12);
  --text-xs: 12px;
  --text-sm: 13px;
  --text-md: 14px;
  --text-base: 16px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  width: 100%;
  overflow-x: hidden;
  min-height: 100vh;
  min-height: 100dvh;
  padding-bottom: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
  -webkit-tap-highlight-color: transparent;
}

body.modal-open {
  overflow: hidden;
}

body.product-modal-open .page-title {
  visibility: hidden;
}

button,
input,
textarea,
select {
  font: inherit;
  touch-action: manipulation;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(180px, 330px) minmax(220px, 1fr) 40px 40px;
  grid-template-areas: "brand nav profile cart";
  align-items: center;
  gap: 12px;
  padding: 8px clamp(12px, 4vw, 48px);
  background: rgba(247, 243, 238, 0.98);
  border-bottom: 1px solid var(--line);
  transition:
    background-color 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.home-page .site-header {
  position: fixed;
  right: 0;
  left: 0;
  background: rgba(247, 243, 238, 0.9);
}

.home-page main {
  min-height: 100vh;
}

.brand-mark,
.nav-links,
.launch-actions {
  display: flex;
  align-items: center;
}

.brand-mark {
  grid-area: brand;
  justify-self: start;
  width: clamp(210px, 24vw, 330px);
  height: auto;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-decoration: none;
}

.brand-logo {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: left center;
}

.nav-menu-button {
  grid-area: menu;
  display: none;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(176, 109, 69, 0.32);
  border-radius: 0;
  background: rgba(255, 250, 245, 0.58);
  color: var(--ink);
  cursor: pointer;
}

.nav-menu-button span {
  width: 18px;
  height: 2px;
  display: block;
  background: var(--copper);
}

.nav-links {
  grid-area: nav;
  display: flex;
  justify-self: center;
  justify-content: center;
  gap: clamp(10px, 1.8vw, 22px);
  color: var(--muted);
  font-size: var(--text-sm);
}

.cart-button {
  grid-area: cart;
  justify-self: end;
  position: relative;
  overflow: visible;
}

.mobile-search-button {
  grid-area: search;
  display: none;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.mobile-search-button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.profile-menu {
  position: relative;
  grid-area: profile;
  justify-self: end;
}

.profile-button {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.profile-button.is-signed-in {
  background: transparent;
}

.profile-icon {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.profile-button.is-signed-in .profile-icon {
  display: none;
}

.profile-initial {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--copper);
  color: var(--surface);
  font-size: 14px;
  font-weight: 850;
}

.profile-popover {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 50;
  width: min(292px, calc(100vw - 24px));
  display: grid;
  gap: 0;
  padding: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.profile-card {
  display: grid;
  gap: 4px;
  color: var(--muted);
  font-size: var(--text-sm);
}

.profile-popover > .profile-card:not(.profile-card-rich) {
  padding: 14px;
}

.profile-card-rich {
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 12px 13px 11px;
}

.profile-avatar,
.account-avatar {
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--copper);
  color: var(--surface);
  font-weight: 850;
}

.profile-avatar {
  width: 32px;
  height: 32px;
  font-size: 13px;
}

.profile-card strong {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.2;
}

.profile-card span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-card-rich > div {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.profile-card-rich .eyebrow {
  margin: 0;
  color: var(--rose);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.profile-menu-list {
  display: grid;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.profile-menu-row {
  min-height: 46px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 8px 13px;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  text-decoration: none;
  transition: background-color 160ms ease;
}

.profile-menu-row:last-child {
  border-bottom: 0;
}

.profile-menu-row > span {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.profile-menu-row strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-menu-row small {
  overflow: hidden;
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-menu-row em {
  color: var(--muted);
  font-style: normal;
  font-size: 15px;
  line-height: 1;
}

.profile-menu-row:hover,
.profile-menu-row:focus-visible {
  background: rgba(176, 109, 69, 0.06);
}

.profile-logout-link {
  justify-self: start;
  margin: 10px 13px 12px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--rose);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.profile-popover .primary-link,
.profile-popover .secondary-link {
  width: calc(100% - 28px);
  margin: 0 14px 14px;
  justify-content: center;
}

.nav-links a,
.primary-link,
.secondary-link {
  text-decoration: none;
}

.catalog-search svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.cart-button,
.primary-button,
.secondary-button,
.primary-link,
.secondary-link {
  min-height: 38px;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    transform 220ms ease;
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0 4px;
  background: transparent;
  border: 0;
}

.cart-button span {
  display: inline;
  min-width: 0;
  height: auto;
  background: transparent;
  color: var(--ink);
  border-radius: 0;
  font-size: 12px;
  font-weight: 800;
}

.cart-button span:empty {
  display: none;
}

.cart-icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.launch-banner {
  position: relative;
  display: block;
  height: 100vh;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.launch-video {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  overflow: hidden;
  isolation: isolate;
  background: var(--image-matte);
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  touch-action: pan-y;
}

.launch-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: var(--image-matte);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(0);
}

.launch-slide.is-current {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.launch-slide.is-entering-from-right,
.launch-slide.is-entering-from-left,
.launch-slide.is-exiting-to-left,
.launch-slide.is-exiting-to-right {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.launch-slide.is-entering-from-right {
  transform: translateX(100%);
}

.launch-slide.is-entering-from-left {
  transform: translateX(-100%);
}

.launch-slide.is-exiting-to-left,
.launch-slide.is-exiting-to-right {
  z-index: 1;
}

.launch-slide.is-transitioning {
  transition: transform 320ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.launch-slide.is-transitioning.is-entering-from-right,
.launch-slide.is-transitioning.is-entering-from-left {
  transform: translateX(0);
}

.launch-slide.is-transitioning.is-exiting-to-left {
  transform: translateX(-100%);
}

.launch-slide.is-transitioning.is-exiting-to-right {
  transform: translateX(100%);
}

.launch-slide > img,
.launch-slide > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  display: block;
  object-fit: cover;
  object-position: 64% center;
}

.launch-slide--primary > img,
.launch-slide--primary > video {
  object-position: 61% 42%;
}

.launch-slide--collection > img {
  object-position: 50% center;
}

.launch-slide--second-video > img,
.launch-slide--second-video > video {
  object-position: 54% 42%;
}

.launch-slide--final-video > img,
.launch-slide--final-video > video {
  object-position: 50% 40%;
}

.launch-video-poster {
  z-index: 0;
}

.launch-banner-video {
  z-index: 1;
  background: var(--image-matte) center / cover no-repeat;
  opacity: 0;
  transition: opacity 320ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.launch-slide.video-ready .launch-banner-video {
  opacity: 1;
}

.reel-caption {
  position: absolute;
  left: clamp(18px, 5vw, 56px);
  bottom: clamp(18px, 5vw, 56px);
  padding: 10px 14px;
  background: rgba(255, 250, 245, 0.78);
  border: 1px solid rgba(255, 250, 245, 0.8);
  border-radius: 6px;
  color: var(--ink);
  font-weight: 750;
  z-index: 2;
}

.launch-banner-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  width: clamp(44px, 5vw, 78px);
  height: clamp(68px, 9vw, 112px);
  padding: 0;
  place-items: center;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: rgba(255, 250, 245, 0.96);
  filter: drop-shadow(0 2px 5px rgba(31, 25, 22, 0.35));
  cursor: pointer;
  transition: color 180ms ease, filter 180ms ease, transform 180ms ease;
}

.launch-banner-arrow:hover,
.launch-banner-arrow:focus-visible {
  color: #fff;
  filter: drop-shadow(0 3px 8px rgba(31, 25, 22, 0.48));
  transform: translateY(-50%) scale(1.04);
}

.launch-banner-arrow:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.launch-banner-arrow--previous {
  left: clamp(14px, 3vw, 48px);
}

.launch-banner-arrow--next {
  right: clamp(14px, 3vw, 48px);
}

.launch-banner-arrow svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 9ch;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 84px;
  line-height: 0.96;
  font-weight: 500;
}

.page-title {
  max-width: 780px;
  margin: 24px auto 20px;
  padding: 0 20px;
  font-size: 34px;
  line-height: 1.08;
  text-align: center;
}

.info-page h1 {
  max-width: none;
  margin-bottom: 0;
  font-size: clamp(34px, 4vw, 58px);
}

h2 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
  line-height: 1.04;
  font-weight: 500;
}

.cart-copy p,
.contact-copy p {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
}

.cart-page .cart-copy .eyebrow {
  font-size: 11px;
}

.cart-page .cart-copy h2 {
  font-size: 38px;
}

.launch-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.primary-link,
.secondary-button,
.secondary-link,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  font-weight: 750;
}

.primary-link,
.primary-button {
  background: var(--ink);
  color: var(--surface);
}

.secondary-link {
  border-color: var(--line);
  background: transparent;
}

.secondary-button {
  width: 100%;
  border-color: var(--ink);
  background: var(--ink);
  color: var(--surface);
}

.product-details-button {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.section-shell,
.cart-band,
.contact-section {
  padding: clamp(48px, 8vw, 96px) clamp(18px, 4vw, 56px);
}

.page-hero {
  padding: clamp(54px, 9vw, 110px) clamp(18px, 4vw, 56px) clamp(28px, 5vw, 54px);
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 780px;
  font-size: clamp(36px, 4vw, 62px);
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 16px;
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line);
}

.intro-band div {
  min-height: 180px;
  padding: 32px;
  background: var(--paper);
}

.intro-band span {
  display: block;
  margin-bottom: 24px;
  color: var(--copper);
  font-weight: 800;
}

.intro-band strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.intro-band p,
.product-card p,
.info-list p {
  color: var(--muted);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(20px, 3vw, 28px);
}

.catalog-filter-sheet {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  flex-direction: column;
  padding: 0;
  background: rgba(35, 33, 31, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.catalog-filter-sheet.is-open {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

.catalog-filter-panel {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-height: min(720px, 86dvh);
  display: flex;
  flex-direction: column;
  padding: 18px 18px 16px;
  background: var(--surface);
  border-radius: 16px 16px 0 0;
  border: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(48, 39, 31, 0.1);
  transform: translateY(100%);
  transition: transform 160ms ease;
}

.catalog-filter-sheet.is-open .catalog-filter-panel {
  transform: translateY(0);
}

.catalog-filter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.catalog-filter-header h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
}

.catalog-filter-close {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(176, 109, 69, 0.24);
  border-radius: 50%;
  background: rgba(255, 250, 245, 0.7);
  color: var(--ink);
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  transition: background-color 140ms ease, border-color 140ms ease;
  flex-shrink: 0;
}

.catalog-filter-close:active {
  background: rgba(176, 109, 69, 0.12);
}

.catalog-filter-clear {
  border: 0;
  background: transparent;
  color: var(--accent-strong);
  cursor: pointer;
  font-size: var(--text-xs);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  min-width: 44px;
  padding-inline: 6px;
}

.catalog-filter-content {
  flex: 1;
  overflow-y: auto;
  padding-right: 2px;
  max-height: 60vh;
  margin-bottom: 12px;
}

.mobile-filter-layout {
  min-height: 100%;
  display: grid;
  grid-template-columns: minmax(118px, 34%) 1fr;
  align-items: stretch;
  background: var(--surface);
}

.mobile-filter-tabs {
  display: grid;
  align-content: start;
  background: rgba(111, 96, 84, 0.08);
}

.mobile-filter-tab {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 0 14px;
  border: 0;
  border-bottom: 1px solid rgba(111, 96, 84, 0.12);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0;
  text-align: left;
}

.mobile-filter-tab.is-active {
  background: var(--surface);
  color: var(--ink);
  font-weight: 900;
}

.mobile-filter-count {
  color: var(--ink);
  font-size: var(--text-xs);
  font-weight: 800;
}

.mobile-filter-options {
  display: grid;
  align-content: start;
  padding: 14px 18px;
  background: var(--surface);
}

.mobile-filter-option {
  min-height: 50px;
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 10px;
  border: 0;
  border-bottom: 1px solid rgba(111, 96, 84, 0.1);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: var(--text-sm);
  font-weight: 650;
  letter-spacing: 0;
  text-align: left;
}

.mobile-filter-option.is-selected {
  color: var(--ink);
}

.mobile-filter-check {
  color: rgba(111, 96, 84, 0.24);
  font-size: 21px;
  line-height: 1;
}

.mobile-filter-option.is-selected .mobile-filter-check {
  color: var(--accent-strong);
}

.catalog-filter-actions {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  margin-top: 0;
}

.catalog-filter-actions .secondary-button,
.catalog-filter-actions .primary-button {
  width: 100%;
  min-height: 40px;
  font-size: var(--text-sm);
}

.catalog-filters {
  display: none;
  width: 100%;
  max-width: 100%;
  grid-template-columns: 1fr;
  align-items: stretch;
  justify-content: stretch;
  gap: 18px;
}

.catalog-filter-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  font-size: var(--text-sm);
  font-weight: 800;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.catalog-filter-toggle:active {
  background: rgba(176, 109, 69, 0.08);
  border-color: rgba(176, 109, 69, 0.3);
}

.catalog-filter-toggle svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.catalog-view-switcher {
  display: inline-flex;
  align-items: center;
  width: max-content;
  justify-self: end;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: var(--surface);
}

.catalog-filter-view-switcher {
  display: none;
}

.catalog-view-button {
  display: grid;
  width: 40px;
  min-width: 40px;
  height: 36px;
  min-height: 36px;
  padding: 7px;
  place-items: center;
  border: 0;
  border-radius: calc(var(--radius-control) - 2px);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease;
}

.catalog-view-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.catalog-view-button:hover,
.catalog-view-button:focus-visible,
.catalog-view-button.is-active {
  background: rgba(176, 109, 69, 0.12);
  color: var(--copper);
}

.catalog-tools {
  display: grid;
  width: 100%;
  gap: 10px;
  justify-items: end;
  align-items: center;
}

@media (min-width: 1100px) {
  .catalog-filter-toggle {
    display: none;
  }
  
  .catalog-filter-sheet {
    display: none !important;
  }
  
  .catalog-filters {
    display: grid;
    gap: 14px;
  }
  
  .catalog-page {
    display: grid;
    grid-template-columns: 196px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
  }
  
  .section-heading {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 24px;
  }
  
  .catalog-tools {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    justify-items: stretch;
    padding-top: 8px;
    max-height: var(--catalog-filter-max-height, none);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  
  .catalog-grid {
    grid-column: 2;
    grid-row: 2;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }
  
  .catalog-pagination {
    grid-column: 2;
  }
}

.catalog-title-row {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
  flex-wrap: wrap;
}

.catalog-page > .section-heading .catalog-view-switcher {
  flex: 0 0 auto;
  margin-left: auto;
}

@media (min-width: 1100px) {
  .catalog-title-row {
    flex-wrap: nowrap;
    gap: 20px;
  }
}

.catalog-title-row .eyebrow {
  margin-bottom: 0;
}

body.is-wishlist-view .catalog-page > .section-heading {
  display: none;
}

.catalog-search {
  width: min(360px, 100%);
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 2px 8px;
  border-bottom: 1px solid rgba(108, 98, 92, 0.42);
  background: transparent;
  color: var(--muted);
}

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

.catalog-search:focus-within {
  border-color: var(--copper);
}

.page-button:hover:not(:disabled),
.primary-link:hover,
.primary-button:hover,
.secondary-link:hover,
.secondary-button:hover,
.mobile-search-button:hover,
.cart-button:hover {
  transform: translateY(-1px);
}

.catalog-select {
  display: grid;
  width: 100%;
  min-width: 0;
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: 6px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.catalog-select:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.catalog-select select {
  width: 100%;
  min-height: 36px;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--surface);
  color: var(--ink);
  padding: 6px 8px;
  font: inherit;
  font-weight: 600;
  font-size: var(--text-sm);
  cursor: pointer;
  transition: border-color 140ms ease, background-color 140ms ease;
}

.catalog-select select:hover {
  border-color: rgba(176, 109, 69, 0.35);
}

.catalog-select select:focus {
  outline: 1px solid rgba(176, 109, 69, 0.5);
  border-color: rgba(176, 109, 69, 0.5);
}

.filter-section {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.filter-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.filter-section-title {
  width: 100%;
  margin: 0 0 10px;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}

.filter-toggle-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 140ms ease;
}

.filter-section.collapsed .filter-toggle-icon {
  transform: rotate(-90deg);
}

.filter-section.collapsed .filter-section-title {
  margin-bottom: 0;
}

.filter-options {
  display: grid;
  gap: 8px;
}

.filter-section-select {
  padding-bottom: 18px;
}

.filter-select-label {
  display: grid;
  gap: 8px;
}

.filter-select-label span {
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.filter-select {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background:
    linear-gradient(45deg, transparent 50%, var(--copper) 50%) calc(100% - 17px) 17px / 6px 6px no-repeat,
    linear-gradient(135deg, var(--copper) 50%, transparent 50%) calc(100% - 12px) 17px / 6px 6px no-repeat,
    var(--surface);
  color: var(--ink);
  padding: 0 34px 0 12px;
  font-size: var(--text-sm);
  font-weight: 750;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 250, 245, 0.8);
  transition: border-color 140ms ease, background-color 140ms ease;
}

.filter-select:hover {
  border-color: rgba(176, 109, 69, 0.36);
}

.filter-select:focus {
  outline: 1px solid rgba(176, 109, 69, 0.5);
  border-color: rgba(176, 109, 69, 0.5);
}

.filter-section.collapsed .filter-options {
  display: none;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
}

.filter-option input[type="checkbox"],
.filter-option input[type="radio"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: var(--copper);
}

.filter-option label {
  flex: 1;
  font-size: var(--text-sm);
  color: var(--ink);
  cursor: pointer;
  margin: 0;
}

.filter-option input[type="checkbox"]:hover + label,
.filter-option input[type="radio"]:hover + label {
  color: var(--copper);
}

.filter-count {
  font-size: var(--text-xs);
  color: var(--muted);
  margin-left: auto;
}

.catalog-grid {
  display: grid;
  width: 100%;
  min-width: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  background: transparent;
  border: 0;
  overflow: visible;
}

.catalog-page {
  padding-top: clamp(28px, 4vw, 44px);
  padding-bottom: 60px;
  animation: section-rise 560ms ease both;
}

.catalog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.catalog-pagination span {
  color: var(--muted);
  font-size: var(--text-sm);
  font-weight: 750;
  padding: 0 8px;
}

.page-button {
  min-height: 38px;
  min-width: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  font-weight: 750;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.page-button.is-active {
  background: rgba(176, 109, 69, 0.12);
  color: var(--ink);
  border-color: rgba(176, 109, 69, 0.42);
}

.page-button:disabled {
  cursor: not-allowed;
  opacity: 0.44;
}

.product-card {
  display: grid;
  content-visibility: auto;
  contain-intrinsic-size: 420px 620px;
  min-width: 0;
  min-height: 0;
  grid-template-rows: auto 1fr;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0;
  overflow: hidden;
  outline: 1px solid transparent;
  outline-offset: -1px;
  transition: transform 140ms ease, background-color 140ms ease;
}

.product-card:hover {
  transform: translateY(-1px);
  box-shadow: none;
}

.product-art {
  --zoom-x: 50%;
  --zoom-y: 50%;
  position: relative;
  min-width: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--image-matte);
}

.home-static-product .product-art-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.home-static-product .product-art-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wishlist-button {
  width: 26px;
  height: 26px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  line-height: 0;
  appearance: none;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--ink);
  cursor: pointer;
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.product-card-actions {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 3;
  display: grid;
  justify-items: center;
  align-items: center;
  gap: 0;
}

.product-card-actions > * {
  justify-self: center;
  width: 26px;
}

.product-card-actions .product-share-option {
  justify-self: center;
}

.wishlist-button svg {
  width: 16px;
  height: 16px;
  fill: transparent;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linejoin: round;
}

.wishlist-button:hover,
.wishlist-button:focus-visible {
  color: var(--rose);
  transform: scale(1.06);
}

.product-zoom-button:hover,
.product-zoom-button:focus-visible,
.product-zoom-button.is-active {
  color: var(--rose);
  transform: scale(1.06);
}

.wishlist-button.is-active {
  color: var(--rose);
}

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

.product-art img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  transition: transform 220ms ease;
  transform-origin: var(--zoom-x, 50%) var(--zoom-y, 50%);
  will-change: transform;
}

.responsive-catalog-image {
  display: block;
  width: 100%;
  height: 100%;
}

.product-image-button {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.product-image-button:focus-visible {
  z-index: 1;
  outline: 2px solid var(--copper);
  outline-offset: -4px;
}

.product-art.is-touch-zoom img,
.gallery-main-wrap.is-touch-zoom .gallery-main {
  transform: scale(1.75);
}

.badge {
  position: absolute;
  z-index: 4;
  top: 10px;
  left: 10px;
  padding: 5px 9px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: var(--text-xs);
  font-weight: 800;
  opacity: 1;
  pointer-events: none;
  box-shadow: 0 2px 8px rgba(42, 37, 33, 0.12);
}

.product-body {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 13px 12px 14px;
}

.product-top {
  display: flex;
  min-width: 0;
  justify-content: space-between;
  gap: 8px;
}

.product-top > div {
  min-width: 0;
  overflow: hidden;
}

.product-top h3 {
  margin-bottom: 2px;
  font-size: 15px;
  line-height: 1.2;
}

.product-title-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.product-title-link:focus-visible {
  border-radius: 3px;
  outline: 2px solid var(--rose);
  outline-offset: 2px;
}

.price {
  font-size: 14px;
  font-weight: 850;
}

.product-card-price {
  display: grid;
  flex: 0 1 auto;
  min-width: 0;
  justify-items: end;
  gap: 2px;
  text-align: right;
}

.product-card-price small,
.product-modal-price small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
}

.product-card-color {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  min-height: 18px;
  margin: -4px 0 0;
  line-height: 1.3;
}

.product-card-color-swatches {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.product-card-color-swatch {
  display: inline-block;
  flex: 0 0 18px;
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 0;
  padding: 0;
  appearance: none;
  line-height: 0;
  cursor: pointer;
}

.product-card-color-swatch.is-selected {
  box-shadow: 0 0 0 2px rgba(176, 109, 69, 0.28), inset 0 0 0 2px rgba(255, 250, 245, 0.6);
}

.color-swatch {
  display: inline-block;
  flex: 0 0 18px;
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  border: 1px solid rgba(42, 37, 33, 0.18);
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  box-sizing: border-box;
  background: #d6cfc6;
  box-shadow: inset 0 0 0 2px rgba(255, 250, 245, 0.6);
  vertical-align: middle;
}

.color-swatch--red { background: #d94b4b; }
.color-swatch--green { background: #6f8f6a; }
.color-swatch--yellow { background: #e8b936; }
.color-swatch--blue { background: #4b79a7; }
.color-swatch--black { background: #262522; }
.color-swatch--white { background: #fffaf5; }
.color-swatch--ivory { background: #f4ead8; }
.color-swatch--cream { background: #f5eee3; }
.color-swatch--off-white { background: #fbf7f0; }
.color-swatch--gold { background: #d5a928; }
.color-swatch--silver { background: #b8b8b8; }
.color-swatch--maroon { background: #8f3f4d; }
.color-swatch--burgundy { background: #722f37; }
.color-swatch--wine { background: #6d1f2b; }
.color-swatch--crimson { background: #b3263e; }
.color-swatch--grey,
.color-swatch--gray { background: #8d8d8d; }
.color-swatch--pink { background: #d9829b; }
.color-swatch--blush { background: #e7b4a4; }
.color-swatch--rose { background: #c56b7a; }
.color-swatch--coral { background: #ef806d; }
.color-swatch--peach { background: #f2ad8f; }
.color-swatch--orange { background: #d77a3d; }
.color-swatch--rust { background: #ad4f35; }
.color-swatch--terracotta { background: #c5654b; }
.color-swatch--purple { background: #8769a9; }
.color-swatch--violet { background: #7c5aa6; }
.color-swatch--lavender { background: #b9a2d0; }
.color-swatch--lilac { background: #c8a2c8; }
.color-swatch--mauve { background: #a97891; }
.color-swatch--plum { background: #6e3d68; }
.color-swatch--magenta { background: #c33b8f; }
.color-swatch--fuchsia { background: #d6298a; }
.color-swatch--brown { background: #8a5a3b; }
.color-swatch--tan { background: #c49a6c; }
.color-swatch--camel { background: #b8895b; }
.color-swatch--beige { background: #d8c1a5; }
.color-swatch--navy { background: #273f66; }
.color-swatch--navy-blue { background: #273f66; }
.color-swatch--cobalt { background: #2454a6; }
.color-swatch--indigo { background: #3f428f; }
.color-swatch--sky-blue { background: #8ec9e8; }
.color-swatch--teal { background: #4e8881; }
.color-swatch--turquoise { background: #2dd4bf; }
.color-swatch--aqua { background: #61d4d1; }
.color-swatch--cyan { background: #00cfe8; }
.color-swatch--light-green { background: #b7e4c7; }
.color-swatch--light-blue { background: #a8d8f0; }
.color-swatch--sage { background: #7d9978; }
.color-swatch--forest-green { background: #356b4b; }
.color-swatch--emerald { background: #3f8f65; }
.color-swatch--mint { background: #a8d5ba; }
.color-swatch--olive { background: #80854b; }
.color-swatch--lime { background: #9fbd38; }
.color-swatch--mustard { background: #c89f32; }
.color-swatch--charcoal { background: #464646; }
.color-swatch--all {
  border-color: var(--copper);
  background: var(--paper);
  box-shadow: inset 0 0 0 2px var(--line);
}

.product-meta,
.product-state-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.product-meta span,
.availability,
.care-chip {
  min-height: 23px;
  display: inline-flex;
  align-items: center;
  padding: 0 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: var(--text-xs);
  font-weight: 750;
}

.availability {
  border-color: rgba(168, 79, 95, 0.28);
  background: rgba(168, 79, 95, 0.08);
  color: var(--rose);
}

.care-chip {
  border-color: rgba(176, 109, 69, 0.28);
  background: rgba(176, 109, 69, 0.08);
  color: var(--copper);
}

.size-choice-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
}

.size-row {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.size-row label {
  cursor: pointer;
}

.size-row label.is-disabled {
  cursor: not-allowed;
}

.size-row input {
  position: absolute;
  opacity: 0;
}

.size-row span {
  display: grid;
  min-width: 28px;
  height: 26px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
  font-size: var(--text-xs);
}

.size-row input:checked + span {
  background: rgba(176, 109, 69, 0.12);
  color: var(--ink);
  border-color: rgba(176, 109, 69, 0.42);
}

.size-row input:disabled + span {
  background: rgba(222, 213, 202, 0.38);
  color: rgba(108, 98, 92, 0.48);
  border-color: rgba(222, 213, 202, 0.78);
  text-decoration: line-through;
}

.size-row input:disabled {
  opacity: 0;
  appearance: none;
  -webkit-appearance: none;
}

.size-selection-hint {
  margin: 0;
  color: var(--rose);
  font-size: var(--text-xs);
  font-weight: 700;
  line-height: 1.35;
}

.product-card-size-bar {
  grid-template-columns: 1fr;
}

.modal-cart-actions .size-choice-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
}

.modal-cart-actions .size-guide-link {
  justify-self: end;
}

.product-modal-meta,
.product-modal-state {
  margin-bottom: 10px;
}

.size-guide-link {
  justify-self: end;
  width: auto;
  min-height: auto;
  border: 0;
  background: transparent;
  color: var(--rose);
  padding: 0;
  font-weight: 850;
  font-size: var(--text-xs);
  line-height: 1.2;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}

.size-guide-link:hover {
  color: var(--copper);
}

.product-card button {
  min-height: 32px;
  padding: 0 10px;
  font-size: var(--text-sm);
  align-self: end;
}

.product-card .wishlist-button {
  padding: 0;
}

.product-card .size-guide-link,
.modal-cart-actions .size-guide-link {
  min-height: auto;
  padding: 0;
  align-self: center;
}

.product-card p {
  display: -webkit-box;
  margin-bottom: 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  color: var(--muted);
  font-size: var(--text-md);
}

.cart-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(24px, 6vw, 72px);
  align-items: start;
  background: var(--surface-alt);
  border-block: 1px solid var(--line);
}

.cart-page {
  min-height: 54vh;
  border-top: 0;
}

.cart-panel,
.contact-form {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(18px, 3vw, 28px);
  box-shadow: 0 10px 24px rgba(48, 39, 31, 0.06);
}

.consent-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink);
  font-size: var(--text-sm);
  line-height: 1.5;
}

.consent-checkbox input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--copper);
}

.consent-checkbox a {
  color: var(--accent-strong);
  font-weight: 800;
  text-underline-offset: 3px;
}

.consent-checkbox a:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 3px;
}

.deletion-request-section {
  padding-block: clamp(32px, 7vw, 84px);
}

.deletion-request-form {
  margin-top: 28px;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 40;
  width: clamp(320px, 20vw, 420px);
  max-width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 20px;
  background: linear-gradient(180deg, var(--surface) 0%, var(--paper) 100%);
  border-left: 1px solid rgba(176, 109, 69, 0.24);
  box-shadow: -12px 0 22px rgba(48, 39, 31, 0.08);
  transform: translateX(102%);
  transition: transform 180ms ease;
}

.nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 41;
  width: clamp(300px, 22vw, 420px);
  max-width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 20px;
  background: linear-gradient(180deg, var(--surface) 0%, var(--paper) 100%);
  border-right: 1px solid rgba(176, 109, 69, 0.24);
  box-shadow: 12px 0 22px rgba(48, 39, 31, 0.08);
  transform: translateX(-102%);
  transition: transform 180ms ease;
}

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

.nav-drawer-links,
.nav-drawer-account {
  display: grid;
  gap: 10px;
}

.nav-drawer-links a,
.nav-drawer-account a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  color: var(--ink);
  font-size: var(--text-md);
  font-weight: 800;
  text-decoration: none;
}

.nav-drawer-links a {
  border: 0;
  border-radius: 0;
  background: transparent;
}

.nav-drawer-account .primary-link {
  justify-content: center;
  border: 1px solid var(--copper);
  border-radius: 6px;
  background: var(--copper);
  color: var(--surface);
}

.nav-drawer-account .secondary-link {
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 250, 245, 0.54);
}

.nav-drawer-account {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(176, 109, 69, 0.22);
}

.nav-drawer-footer {
  color: var(--muted);
  font-size: var(--text-sm);
}

.cart-edge-tab {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 39;
  width: 42px;
  height: 72px;
  display: none;
  place-items: center;
  border: 1px solid rgba(176, 109, 69, 0.34);
  border-right: 0;
  border-radius: 8px 0 0 8px;
  background: rgba(176, 109, 69, 0.18);
  color: var(--ink);
  cursor: pointer;
  box-shadow: -10px 0 24px rgba(48, 39, 31, 0.14);
  transform: translateY(-50%);
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}

.cart-edge-tab:hover {
  transform: translateY(-50%) translateX(-2px);
}

.cart-edge-tab span {
  font-size: 24px;
  line-height: 1;
}

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

.cart-drawer:not(.is-open),
.product-modal:not(.is-open) {
  visibility: hidden;
}

.cart-drawer .cart-lines {
  min-height: 0;
  overflow-y: auto;
  padding-right: 2px;
}

.cart-drawer .cart-line {
  grid-template-columns: 56px minmax(0, 1fr);
}

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

.cart-drawer .quantity-control {
  grid-column: 2;
  width: max-content;
}

.cart-drawer .cart-summary {
  margin-top: auto;
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(176, 109, 69, 0.22);
}

.drawer-close {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(176, 109, 69, 0.28);
  border-radius: 50%;
  background: rgba(255, 250, 245, 0.74);
  color: var(--ink);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.drawer-link {
  width: 100%;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(35, 33, 31, 0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity 120ms ease;
}

.product-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 16px;
  background: rgba(22, 19, 17, 0.9);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 160ms ease;
}

.image-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.image-lightbox-panel {
  position: relative;
  display: grid;
  width: min(900px, 100%);
  height: min(820px, 88dvh);
  place-items: center;
}

.image-lightbox-image {
  display: block;
  width: auto !important;
  height: auto !important;
  max-width: min(82vw, 720px) !important;
  max-height: 82dvh !important;
  object-fit: contain !important;
}

.image-lightbox-close,
.image-lightbox-nav {
  position: absolute;
  z-index: 1;
  display: grid;
  width: 44px;
  height: 44px;
  min-height: 44px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 250, 245, 0.55);
  border-radius: 50%;
  background: rgba(22, 19, 17, 0.68);
  color: #fffaf5;
  cursor: pointer;
  font: inherit;
  line-height: 1;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.image-lightbox-close:hover,
.image-lightbox-close:focus-visible,
.image-lightbox-nav:hover:not(:disabled),
.image-lightbox-nav:focus-visible:not(:disabled) {
  border-color: #fffaf5;
  background: var(--copper);
  transform: scale(1.04);
}

.image-lightbox-close {
  top: 0;
  right: 0;
  font-size: 30px;
}

.image-lightbox-nav {
  top: 50%;
  font-size: 38px;
  transform: translateY(-50%);
}

.image-lightbox-nav:hover:not(:disabled),
.image-lightbox-nav:focus-visible:not(:disabled) {
  transform: translateY(-50%) scale(1.04);
}

.image-lightbox-prev {
  left: 0;
}

.image-lightbox-next {
  right: 0;
}

@media (max-width: 560px) {
  .image-lightbox-panel {
    width: 100%;
    height: min(720px, 84dvh);
  }

  .image-lightbox-close {
    top: 0;
    right: 0;
  }

  .image-lightbox-prev {
    left: 4px;
  }

  .image-lightbox-next {
    right: 4px;
  }
}

.size-guide-modal,
.policy-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  place-items: center;
  padding: clamp(14px, 4vw, 36px);
  background: rgba(35, 33, 31, 0.42);
}

.size-guide-modal.is-open,
.policy-modal.is-open {
  display: grid;
}

.product-modal-panel {
  position: relative;
  width: min(960px, 100%);
  max-height: min(760px, 92vh);
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(48, 39, 31, 0.08);
}

.size-guide-panel {
  position: relative;
  width: min(820px, 94vw);
  max-height: 90vh;
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: clamp(10px, 1.6vw, 14px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 24px rgba(48, 39, 31, 0.08);
}

.size-guide-panel img {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
  border-radius: 4px;
  background: transparent;
}

.size-guide-panel h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(19px, 3vw, 27px);
  line-height: 1.15;
}

.size-measurement-table {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--ink);
  font-size: 14px;
}

.size-measurement-row {
  display: grid;
  grid-template-columns: minmax(96px, 1.3fr) repeat(5, minmax(54px, 1fr));
  min-width: 410px;
  border-top: 1px solid var(--line);
}

.size-measurement-row:first-child {
  border-top: 0;
}

.size-measurement-row > * {
  padding: 10px 8px;
  text-align: center;
  border-left: 1px solid var(--line);
}

.size-measurement-row > :first-child {
  border-left: 0;
  text-align: left;
}

.size-measurement-header {
  background: var(--surface-alt);
  color: var(--copper);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.policy-modal-panel {
  position: relative;
  width: min(920px, 94vw);
  max-height: 90vh;
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: clamp(18px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 24px rgba(48, 39, 31, 0.08);
}

.policy-modal-content .policy-copy {
  max-width: none;
}

.policy-modal-content .policy-copy .policy-title {
  margin-right: 42px;
  font-size: 13px;
  font-family: inherit;
  font-weight: 800;
  line-height: 1.35;
  color: var(--rose);
}

.modal-close {
  font-size: 21px;
  position: sticky;
  top: 12px;
  float: right;
  margin: 12px 12px -40px auto;
  z-index: 2;
  background: rgba(255, 250, 245, 0.9);
}

.product-modal-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 0.52fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: start;
  padding: clamp(18px, 4vw, 36px);
}

.gallery-main {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: block;
  object-fit: contain;
  border-radius: 8px;
  background: var(--image-matte);
  transform-origin: var(--zoom-x, 50%) var(--zoom-y, 50%);
  transition: transform 220ms ease;
  will-change: transform;
}

.gallery-main-button {
  position: relative;
  overflow: hidden;
}

.gallery-main-transition-image {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  transition: opacity 160ms ease;
}

.gallery-main-button.is-gallery-crossfading .gallery-main-transition-image {
  opacity: 1;
}

.gallery-main-button.is-gallery-loading {
  cursor: progress;
}

.gallery-main-button {
  display: block;
  width: 100%;
  min-width: 0;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  cursor: zoom-in;
}

.gallery-main-button:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 3px;
}

.product-gallery {
  display: grid;
  gap: 16px;
}

.gallery-main-wrap {
  position: relative;
  --zoom-x: 50%;
  --zoom-y: 50%;
  overflow: hidden;
}

.gallery-view-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gallery-view-tab {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.gallery-view-tab.is-active {
  border-color: rgba(176, 109, 69, 0.58);
  background: rgba(176, 109, 69, 0.12);
  color: var(--ink);
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(72px, 1fr));
  gap: 8px;
}

.gallery-thumb {
  position: relative;
  aspect-ratio: 1;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--image-matte);
  cursor: pointer;
}

.product-view-strip {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.product-view-arrow {
  position: absolute;
  top: 50%;
  display: grid;
  width: 42px;
  height: 58px;
  padding: 0;
  place-items: center;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: rgba(255, 250, 245, 0.96);
  cursor: pointer;
  pointer-events: auto;
  filter: drop-shadow(0 2px 5px rgba(28, 23, 20, 0.48));
  transition: color 180ms ease, filter 180ms ease, transform 180ms ease;
}

.product-view-arrow:hover,
.product-view-arrow:focus-visible {
  color: #fff;
  filter: drop-shadow(0 3px 8px rgba(28, 23, 20, 0.62));
  transform: translateY(-50%) scale(1.08);
}

.product-view-arrow:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.product-view-arrow--previous {
  left: 10px;
}

.product-view-arrow--next {
  right: 10px;
}

.product-view-arrow svg {
  width: 22px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}



.gallery-thumb.is-active {
  border-color: rgba(176, 109, 69, 0.58);
  box-shadow: inset 0 0 0 2px rgba(176, 109, 69, 0.42);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.product-detail-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
}

.product-modal-grid h2 {
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.08;
}

.product-modal-price {
  display: grid;
  justify-items: start;
  gap: 3px;
  margin-top: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.product-color-choice {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-color-choice-label {
  color: var(--copper);
}

.product-color-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-color-swatch {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--muted);
  padding: 5px 11px 5px 7px;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  text-transform: none;
  cursor: pointer;
}

.product-color-swatch:hover,
.product-color-swatch.is-active {
  border-color: var(--copper);
  color: var(--ink);
}

.product-color-swatch.is-active {
  box-shadow: 0 0 0 2px rgba(176, 109, 69, 0.18);
}

.product-color-swatch:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 2px;
}

.product-modal-price > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-modal-price strong {
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.1;
}

.product-detail-list div {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.product-detail-list dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-detail-list dd {
  margin: 4px 0 0;
}

.product-reviews {
  display: grid;
  gap: 14px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.product-detail-list + .product-reviews {
  padding-top: 0;
  border-top: 0;
}

.product-review-section-head,
.product-review-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.product-review-section-head h3 {
  margin: 4px 0 0;
  font-size: 24px;
}

.product-review-summary,
.product-review-stars {
  color: var(--copper);
  white-space: nowrap;
}

.product-review-average-stars {
  color: var(--copper);
  letter-spacing: 0;
}

.product-review-list {
  display: grid;
  gap: 10px;
}

.product-review-item {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.product-review-item p {
  margin: 8px 0 6px;
}

.verified-review {
  color: var(--moss);
  font-size: 12px;
  font-weight: 800;
}

.product-review-empty,
.product-review-status,
.product-review-eligibility {
  color: var(--muted);
}

.product-founder-note {
  display: grid;
  gap: 8px;
  padding: 14px;
  border-left: 3px solid var(--copper);
  background: var(--surface);
}

.product-founder-note p {
  margin: 0;
}

.product-founder-note-kicker {
  color: var(--copper);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-review-eligibility {
  margin: 0;
  font-size: 13px;
}

.product-review-form {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.product-review-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-review-rating {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  border: 0;
}

.product-review-rating legend {
  padding: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-review-star-picker {
  display: grid;
  grid-template-columns: repeat(5, 36px);
  gap: 4px;
  align-items: center;
  justify-content: start;
}

.product-review-form .product-review-star-picker label {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  text-transform: none;
}

.product-review-form .product-review-star-picker label.is-active,
.product-review-form .product-review-star-picker label:hover {
  border-color: var(--copper);
  color: var(--copper);
}

.product-review-form .product-review-star-picker label:has(input:focus-visible) {
  outline: 2px solid var(--rose);
  outline-offset: 2px;
}

.product-review-form select,
.product-review-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  padding: 10px;
}

.product-review-form textarea {
  resize: vertical;
}

.modal-cart-actions {
  display: grid;
  gap: 14px;
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.product-zoom-button {
  width: 26px;
  height: 26px;
  display: inline-grid;
  place-items: center;
  align-self: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--ink);
  cursor: zoom-in;
  line-height: 0;
  appearance: none;
}

.product-zoom-button svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
  width: 19px;
  height: 19px;
}

.product-zoom-button .zoom-out-mark,
.product-zoom-button.is-active .zoom-in-mark {
  display: none;
}

.product-zoom-button.is-active .zoom-out-mark {
  display: block;
}

.gallery-zoom-button {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 3;
}

.launch-banner-controls {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: clamp(18px, 5vw, 56px);
  display: flex;
  align-items: center;
  width: min(148px, calc(100% - 36px));
  gap: 6px;
  padding: 6px 8px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 250, 245, 0.32);
  border-radius: 999px;
  background: rgba(31, 25, 22, 0.25);
  backdrop-filter: blur(8px);
}

.launch-banner-dots {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  gap: 6px;
}

.launch-banner-control {
  flex: 1 1 0;
  min-width: 20px;
  height: 3px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 250, 245, 0.48);
  cursor: pointer;
  transition: background-color 180ms ease, opacity 180ms ease;
}

.launch-banner-control:hover,
.launch-banner-control:focus-visible {
  background: rgba(255, 250, 245, 0.82);
}

.launch-banner-control.is-current {
  background: rgba(255, 250, 245, 0.98);
}

.product-art-share {
  z-index: 2;
}

.product-share-option {
  justify-self: start;
  color: var(--ink);
  text-decoration: none;
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.product-share-option:hover,
.product-share-option:focus-visible {
  color: var(--copper);
  transform: scale(1.06);
}

.product-share-icon {
  width: 26px;
  height: 26px;
  display: inline-grid;
  place-items: center;
  align-self: center;
  line-height: 0;
}

.product-share-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-share-status {
  margin: -6px 0 0;
}

.cart-lines {
  display: grid;
  gap: 12px;
  min-height: 72px;
}

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

.cart-thumb {
  width: 64px;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: contain;
  background: var(--image-matte);
}

.cart-product-link {
  color: inherit;
  text-decoration: none;
}

.cart-product-link:hover strong,
.cart-product-link:focus-visible strong {
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 3px;
}

.cart-product-link--image {
  display: block;
  border-radius: 8px;
}

.cart-product-link--image:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

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

.quantity-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}

.quantity-control button {
  width: 34px;
  min-width: 44px;
  height: 34px;
  min-height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.quantity-control span {
  min-width: 28px;
  text-align: center;
}

.cart-summary {
  display: grid;
  width: 100%;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 10px 16px;
  margin: 20px 0;
  padding-top: 18px;
}

.cart-summary strong {
  justify-self: end;
}

.cart-panel-actions {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.empty-cart,
.form-status {
  color: var(--muted);
}

.postal-status {
  min-height: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  color: var(--muted);
  font-size: var(--text-sm);
  font-weight: 750;
}

.postal-status.is-valid {
  color: var(--moss);
}

.postal-status.is-invalid {
  color: var(--rose);
}

.postal-status.is-checking {
  color: var(--muted);
}

.postal-status.is-valid::before,
.postal-status.is-invalid::before,
.postal-status.is-checking::before {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: var(--surface);
  font-size: 12px;
  line-height: 1;
}

.postal-status.is-valid::before {
  content: "✓";
  background: var(--moss);
}

.postal-status.is-invalid::before {
  content: "!";
  background: var(--rose);
}

.postal-status.is-checking::before {
  content: "...";
  background: var(--muted);
  font-size: 9px;
}

.info-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) 1fr;
  gap: clamp(24px, 6vw, 72px);
}

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

.info-item {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.info-item strong {
  display: block;
  margin-bottom: 8px;
}

.contact-info-panel {
  margin-top: 12px;
}

.contact-info-panel h3 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 600;
}

.contact-info-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}

.contact-info-list .info-item {
  padding: 10px 0;
  background: transparent;
  border-width: 1px 0 0;
  border-radius: 0;
}

.contact-info-list .info-item strong {
  margin-bottom: 4px;
  font-size: var(--text-xs);
}

.contact-info-list .info-item p {
  margin-bottom: 0;
  font-size: var(--text-sm);
}

.contact-section .eyebrow {
  font-size: var(--text-xs);
}

.contact-links-section {
  padding: 0 clamp(18px, 4vw, 56px) 76px;
}

.contact-links-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 6vw, 72px);
  width: min(640px, 100%);
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.footer-link-group {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-link-group h3 {
  margin: 0 0 2px;
  color: var(--ink);
  font-size: var(--text-sm);
}

.footer-link-group a {
  width: fit-content;
  color: var(--rose);
  font-size: var(--text-xs);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-link-group a:hover,
.footer-link-group a:focus-visible {
  color: var(--copper);
  outline: 2px solid var(--copper);
  outline-offset: 3px;
}

.footer-icon-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-icon-link.is-disabled {
  opacity: 0.48;
  pointer-events: none;
  cursor: not-allowed;
}

.footer-icon-link .social-icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(176, 109, 69, 0.32);
  border-radius: 999px;
  background: var(--surface);
}

.footer-icon-link .social-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(176, 109, 69, 0.32);
  border-radius: 999px;
  background: rgba(255, 250, 245, 0.58);
  color: var(--copper);
  text-decoration: none;
}

.social-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.social-icon.is-disabled {
  opacity: 0.58;
  pointer-events: none;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: start;
  padding: clamp(28px, 5vw, 54px) clamp(18px, 4vw, 56px);
}

.policy-section {
  padding: clamp(32px, 6vw, 72px) clamp(18px, 4vw, 56px) 96px;
}

.policy-copy {
  max-width: 880px;
  margin: 0 auto;
}

.policy-copy + .policy-copy {
  margin-top: clamp(24px, 4vw, 40px);
  padding-top: clamp(20px, 3vw, 32px);
  border-top: 1px solid var(--line);
}

.policy-copy .policy-title {
  margin: 4px 0 6px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
  color: var(--rose);
  white-space: nowrap;
}

.policy-copy h3 {
  margin: 16px 0 5px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  color: var(--rose);
}

.primary-link,
.secondary-link,
.primary-button,
.secondary-button,
.catalog-filter-toggle {
  min-height: var(--control-height);
  border-radius: var(--radius-control);
}

.product-card .primary-button,
.product-card .secondary-button {
  min-height: 36px;
}

.contact-form input,
.contact-form select,
.credential-login input,
.password-reset input,
.signup-phone-form input,
.signup-phone-form select {
  min-height: var(--control-height);
  border-radius: var(--radius-control);
}

.contact-form textarea {
  min-height: 120px;
  border-radius: var(--radius-control);
}

.cart-panel,
.login-form,
.signup-phone-form,
.login-summary,
.product-modal-panel,
.size-guide-panel,
.policy-modal-panel,
.cookie-consent {
  border-radius: var(--radius-panel);
}

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

@media (max-width: 900px) {
  h1 {
    font-size: 64px;
  }

  h2 {
    font-size: 40px;
  }

  .page-title {
    font-size: 30px;
  }

  .page-hero h1,
  .info-page h1 {
    font-size: 42px;
  }

  .cart-page .cart-copy h2,
  .confirmation-section h2 {
    font-size: 36px;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 32px;
  }

  .page-title {
    font-size: 28px;
  }

  .page-hero h1,
  .info-page h1 {
    font-size: 34px;
  }

  .cart-page .cart-copy h2,
  .confirmation-section h2 {
    font-size: 32px;
  }
}

/* Button motion: keep the storefront quiet at rest, then give hover and press
   states enough feedback to make actions feel responsive. */
.primary-button,
.secondary-button,
.primary-link,
.secondary-link,
.page-button,
.catalog-filter-toggle {
  will-change: transform;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

@media (hover: hover) {
  .primary-button:hover:not(:disabled),
  .secondary-button:hover:not(:disabled),
  .primary-link:hover,
  .secondary-link:hover,
  .page-button:hover:not(:disabled),
  .catalog-filter-toggle:hover:not(:disabled) {
    box-shadow: 0 5px 12px rgba(44, 35, 29, 0.1);
    transform: translateY(-1px);
  }
}

.primary-button:active:not(:disabled),
.secondary-button:active:not(:disabled),
.primary-link:active,
.secondary-link:active,
.page-button:active:not(:disabled),
.catalog-filter-toggle:active:not(:disabled) {
  box-shadow: 0 1px 2px rgba(44, 35, 29, 0.08);
  transform: translateY(1px) scale(0.985);
  transition-duration: 80ms;
}

@media (prefers-reduced-motion: reduce) {
  .primary-button,
  .secondary-button,
  .primary-link,
  .secondary-link,
  .page-button,
  .catalog-filter-toggle {
    will-change: auto;
    transition-duration: 0.01ms !important;
  }
}

/* Focused action animation: adapt the requested lift, press, and expanding
   fade to the existing product, cart, account, and registration actions. */
.product-details-button,
.cart-page .secondary-link,
.cart-payment-link,
.auth-page-link,
.login-form [data-password-login],
.signup-phone-form .otp-send-button,
.signup-phone-form [data-verify-otp],
.profile-popover .primary-link {
  --action-halo: rgba(176, 109, 69, 0.34);
  position: relative;
  isolation: isolate;
  overflow: visible;
  animation: storefront-action-enter 420ms cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.product-details-button::after,
.cart-page .secondary-link::after,
.cart-payment-link::after,
.auth-page-link::after,
.login-form [data-password-login]::after,
.signup-phone-form .otp-send-button::after,
.signup-phone-form [data-verify-otp]::after,
.profile-popover .primary-link::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: var(--action-halo);
  content: "";
  opacity: 0.28;
  pointer-events: none;
  transition: transform 400ms ease, opacity 400ms ease;
}

.login-form [data-password-login],
.signup-phone-form .otp-send-button,
.profile-popover .primary-link {
  --action-halo: rgba(28, 23, 20, 0.44);
}

@media (hover: hover) {
  .product-details-button:hover:not(:disabled),
  .cart-page .secondary-link:hover,
  .cart-payment-link:hover,
  .auth-page-link:hover,
  .login-form [data-password-login]:hover:not(:disabled),
  .signup-phone-form .otp-send-button:hover:not(:disabled),
  .signup-phone-form [data-verify-otp]:hover:not(:disabled),
  .profile-popover .primary-link:hover {
    box-shadow: 0 10px 20px rgba(44, 35, 29, 0.16);
    transform: translateY(-3px);
  }

  .product-details-button:hover::after,
  .cart-page .secondary-link:hover::after,
  .cart-payment-link:hover::after,
  .auth-page-link:hover::after,
  .login-form [data-password-login]:hover::after,
  .signup-phone-form .otp-send-button:hover::after,
  .signup-phone-form [data-verify-otp]:hover::after,
  .profile-popover .primary-link:hover::after {
    opacity: 0;
    transform: scaleX(1.14) scaleY(1.28);
  }
}

.product-details-button:active:not(:disabled),
.cart-page .secondary-link:active,
.cart-payment-link:active,
.auth-page-link:active,
.login-form [data-password-login]:active:not(:disabled),
.signup-phone-form .otp-send-button:active:not(:disabled),
.signup-phone-form [data-verify-otp]:active:not(:disabled),
.profile-popover .primary-link:active {
  box-shadow: 0 5px 10px rgba(44, 35, 29, 0.14);
  transform: translateY(-1px) scale(0.985);
  transition-duration: 80ms;
}

@keyframes storefront-action-enter {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-details-button,
  .cart-page .secondary-link,
  .cart-payment-link,
  .auth-page-link,
  .login-form [data-password-login],
  .signup-phone-form .otp-send-button,
  .signup-phone-form [data-verify-otp],
  .profile-popover .primary-link {
    animation: none;
    transition-duration: 0.01ms !important;
  }

  .product-details-button::after,
  .cart-page .secondary-link::after,
  .cart-payment-link::after,
  .auth-page-link::after,
  .login-form [data-password-login]::after,
  .signup-phone-form .otp-send-button::after,
  .signup-phone-form [data-verify-otp]::after,
  .profile-popover .primary-link::after {
    display: none;
  }
}

/* Contact layout: keep the conversation prompt open on the left while the
   existing message workflow stays contained in one focused form panel. */
.contact-section.contact-layout {
  width: min(1440px, 100%);
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: start;
  margin-inline: auto;
  padding: clamp(48px, 7vw, 88px) clamp(20px, 6vw, 88px) clamp(52px, 8vw, 96px);
}

.contact-intro {
  min-width: 0;
  padding-top: clamp(4px, 2vw, 24px);
}

.contact-kicker {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid rgba(176, 109, 69, 0.28);
  border-radius: var(--radius-control);
  background: rgba(176, 109, 69, 0.06);
  color: var(--copper);
  font-size: var(--text-sm);
  font-weight: 800;
}

.contact-kicker svg,
.contact-detail-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contact-intro h1 {
  max-width: 17ch;
  margin: 30px 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(35px, calc(4.5vw - 3px), 55px);
  line-height: 1.02;
  font-weight: 500;
}

.contact-intro > p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.45;
}

.contact-details {
  display: grid;
  gap: 20px;
  margin-top: clamp(34px, 5vw, 54px);
}

.contact-detail {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  min-width: 0;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(176, 109, 69, 0.2);
  border-radius: var(--radius-control);
  background: var(--surface-alt);
  color: var(--copper);
}

.contact-detail-label {
  display: block;
  margin: 1px 0 3px;
  color: var(--muted);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-detail a,
.contact-detail p {
  display: block;
  max-width: 42ch;
  margin: 0;
  color: var(--ink);
  font-size: var(--text-md);
  line-height: 1.45;
}

.contact-detail a {
  font-weight: 750;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-detail a:hover,
.contact-detail a:focus-visible {
  color: var(--copper);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form-panel {
  min-width: 0;
  padding: clamp(22px, 3vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
  background: rgba(255, 250, 245, 0.72);
  box-shadow: 0 10px 24px rgba(48, 39, 31, 0.06);
}

.contact-form-heading {
  margin-bottom: 24px;
}

.contact-form-heading .eyebrow {
  margin-bottom: 8px;
}

.contact-form-heading h2 {
  margin: 0 0 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, calc(2.4vw - 2px), 30px);
  line-height: 1.08;
}

.contact-form-heading > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: var(--text-sm);
}

.contact-form-panel .contact-form {
  gap: 16px;
}

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

.contact-form-panel .contact-form label {
  gap: 7px;
  color: var(--ink);
}

.contact-form-panel .contact-form input,
.contact-form-panel .contact-form select,
.contact-form-panel .contact-form textarea {
  background: var(--surface);
}

.contact-form-panel .contact-form textarea {
  min-height: 144px;
}

.contact-attachment-field small {
  color: var(--muted);
  font-size: 0.9em;
  font-weight: 600;
}

.contact-form-panel .contact-form > button[type="submit"] {
  width: 100%;
  min-height: 46px;
  margin-top: 4px;
}

.contact-form-panel .form-status {
  margin: -4px 0 0;
}

@media (max-width: 900px) {
  .contact-section.contact-layout {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 44px;
    padding-bottom: 56px;
  }

  .contact-intro {
    padding-top: 0;
  }

  .contact-intro h1 {
    max-width: 17ch;
    font-size: clamp(33px, calc(8vw - 3px), 47px);
  }

  .contact-details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
  }
}

@media (max-width: 560px) {
  .contact-section.contact-layout {
    gap: 30px;
    padding: 32px 14px 44px;
  }

  .contact-intro h1 {
    margin-top: 22px;
    margin-bottom: 14px;
    font-size: 31px;
  }

  .contact-intro > p {
    font-size: 16px;
  }

  .contact-details {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 30px;
  }

  .contact-form-panel {
    padding: 20px 16px 22px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-form-heading {
    margin-bottom: 20px;
  }
}

/* Keep third-party Google markup inside the same control measure as sign-in. */
.payment-section .login-form > .google-login-slot,
.payment-section .login-form > .google-login-slot > *,
.payment-section .login-form > .google-login-slot iframe {
  display: block;
  width: min(440px, 100%) !important;
  min-width: 0;
  max-width: 100% !important;
  box-sizing: border-box;
}

.payment-section .login-form > .google-login-slot { margin-inline: auto; }

@media (max-width: 560px) {
  .payment-section.is-account-only {
    padding-inline: 12px;
  }

  .payment-section.is-account-only .login-form,
  .payment-section.is-account-only .signup-phone-form {
    padding: 20px 16px;
  }

  .payment-section.is-account-only .login-form > h2 {
    margin-top: 12px;
  }
}

.policy-copy p {
  margin: 0 0 7px;
  color: var(--muted);
  line-height: 1.35;
}

.payment-section,
.confirmation-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(24px, 6vw, 72px);
  align-items: start;
  padding: clamp(48px, 8vw, 96px) clamp(18px, 4vw, 56px);
}

.confirmation-section {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

.confirmation-section .cart-panel {
  display: grid;
  gap: 18px;
  width: 100%;
}

.confirmation-section h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}

.confirmation-section .empty-cart {
  margin: 0;
  font-size: var(--text-sm);
  line-height: 1.55;
}

.confirmation-section .cart-summary {
  margin: 0;
  font-size: var(--text-sm);
}

.confirmation-section .secondary-link,
.confirmation-section .primary-link {
  width: fit-content;
}

.payment-section {
  grid-template-columns: minmax(320px, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(24px, 5vw, 64px);
  padding-top: clamp(28px, 5vw, 54px);
}

.payment-section.is-account-only {
  grid-template-columns: minmax(0, 920px);
  justify-content: center;
  justify-items: center;
  min-width: 0;
  overflow-x: clip;
  padding-top: clamp(36px, 7vw, 76px);
}

body.account-page .payment-section.is-account-only {
  min-height: calc(100dvh - 112px);
  align-content: center;
  padding-block: 32px;
}

.payment-section.is-account-only .checkout-stack {
  width: min(100%, 560px);
  max-width: 560px;
  min-width: 0;
}

.payment-section.is-account-only .login-panel,
.payment-section.is-account-only .login-details,
.payment-section.is-account-only .login-form,
.payment-section.is-account-only .signup-phone-form {
  width: 100%;
  min-width: 0;
  --account-control-width: 440px;
}

.payment-section.is-account-only .login-details {
  display: block;
}

.payment-section.is-account-only .login-details > summary {
  display: none;
}

.payment-section.is-account-only .login-form,
.payment-section.is-account-only .signup-phone-form {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 250, 245, 0.86);
  box-shadow: 0 18px 48px rgba(48, 39, 31, 0.08);
}

.auth-brand-stage {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 4px;
  margin: -2px auto 18px;
  text-align: center;
}

.login-form {
  animation: auth-panel-enter 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.auth-brand-stage::after {
  width: 86px;
  height: 1px;
  margin-top: 4px;
  content: "";
  background: var(--copper);
  transform-origin: center;
  animation: auth-line-pulse 4.8s ease-in-out infinite;
}

.auth-brand-stage .eyebrow {
  margin: 8px 0 0;
  color: var(--rose);
}

.auth-welcome {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 4vw, 30px);
  line-height: 1.1;
  animation: auth-welcome-enter 700ms cubic-bezier(0.22, 1, 0.36, 1) 80ms both;
}

@keyframes auth-breathe {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

@keyframes auth-panel-enter {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes auth-welcome-enter {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes auth-mode-enter {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes auth-line-pulse {
  0%, 100% { transform: scaleX(0.72); opacity: 0.58; }
  50% { transform: scaleX(1); opacity: 1; }
}

.payment-section.is-account-only .auth-page-links {
  width: min(var(--account-control-width), 100%);
  margin-inline: auto;
}

.payment-section.is-account-only .login-form > h2,
.payment-section.is-account-only .login-form > .auth-helper,
.payment-section.is-account-only .login-form > .google-login-slot,
.payment-section.is-account-only .login-form > .credential-login,
.payment-section.is-account-only .login-form > .form-status {
  width: min(100%, 360px);
  max-width: 100%;
  min-width: 0;
  margin-inline: auto;
}

.payment-section.is-account-only .login-form > h2 {
  margin-top: 18px;
  text-align: center;
}

.payment-section.is-account-only .login-form > .auth-helper {
  text-align: center;
}

.payment-section.is-account-only .google-login-slot {
  display: grid;
  justify-items: center;
}

@media (prefers-reduced-motion: reduce) {
  .login-form,
  .auth-welcome,
  .auth-brand-stage::after {
    animation: none;
  }
}

.payment-section .payment-empty {
  grid-column: 1 / -1;
}

.payment-section .payment-form {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.login-panel {
  display: grid;
  gap: 14px;
}

.login-panel[hidden] {
  display: none;
}

.login-summary {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(100, 116, 91, 0.28);
  border-radius: 8px;
  background: rgba(100, 116, 91, 0.08);
}

.account-hero {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.account-avatar {
  width: 48px;
  height: 48px;
  font-size: 20px;
}

.account-hero h2 {
  margin-bottom: 3px;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.08;
}

.account-hero p:not(.eyebrow) {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: var(--text-sm);
}

.account-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.account-stat-grid div {
  display: grid;
  gap: 4px;
  padding: 11px 12px;
  background: rgba(255, 250, 245, 0.76);
}

.account-stat-grid strong {
  color: var(--ink);
  font-size: clamp(15px, 2vw, 19px);
  line-height: 1;
}

.account-stat-grid span,
.account-order-main span,
.account-empty-state span {
  color: var(--muted);
  font-size: var(--text-xs);
}

.account-panel-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: end;
  padding-top: 16px;
  border-top: 1px solid rgba(100, 116, 91, 0.24);
}

.account-panel-row h3 {
  margin: 2px 0 8px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.2;
}

.account-muted-note {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: var(--text-sm);
}

.account-address-list {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}

.account-address-item {
  display: grid;
  gap: 2px;
  padding: 10px 0;
  border-top: 1px solid rgba(100, 116, 91, 0.18);
}

.account-address-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.account-address-item strong {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.25;
}

.account-address-item span,
.account-address-item small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.account-address-panel .secondary-link {
  align-self: start;
}

.account-wishlist-strip {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.account-wishlist-item {
  width: 56px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--image-matte);
  color: var(--muted);
  font-weight: 850;
  text-decoration: none;
}

.account-wishlist-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.login-summary .secondary-button {
  width: auto;
  padding: 0 12px;
}

.account-switch-login {
  justify-self: start;
}

.order-history {
  display: grid;
  gap: 18px;
}

.account-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.account-section-head h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
}

.account-section-head > span {
  color: var(--muted);
  font-size: var(--text-sm);
  font-weight: 800;
}

.account-order-list {
  display: grid;
  gap: 14px;
}

.account-order-card {
  position: relative;
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr);
  gap: 0 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 245, 0.72);
}

.account-order-status {
  grid-row: 1 / span 3;
  width: 10px;
  min-height: 100%;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--copper), rgba(100, 116, 91, 0.72));
}

.account-order-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
}

.account-order-header > div {
  display: grid;
  gap: 4px;
}

.account-order-header strong,
.account-order-total {
  color: var(--ink);
}

.account-order-header span {
  color: var(--muted);
  font-size: var(--text-sm);
}

.account-order-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 8px 10px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.account-order-meta span {
  display: grid;
  gap: 3px;
  min-width: 0;
  padding: 10px;
  border-radius: 8px;
  background: rgba(240, 230, 220, 0.46);
  color: var(--ink);
  font-size: var(--text-sm);
  font-weight: 800;
}

.account-order-meta small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.account-order-total {
  justify-self: end;
  white-space: nowrap;
}

.account-order-products {
  display: grid;
  gap: 8px;
  padding-top: 14px;
}

.account-order-items {
  display: grid;
  gap: 10px;
}

.account-order-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.account-order-item-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.account-order-item img,
.account-order-item-fallback {
  width: 72px;
  aspect-ratio: 4 / 5;
  display: block;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--image-matte);
}

.account-order-item img {
  object-fit: contain;
}

.account-order-item-copy strong,
.account-order-item-summary strong {
  color: var(--ink);
}

.account-order-item-copy > span {
  justify-self: start;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(240, 230, 220, 0.7);
  color: var(--muted);
  font-size: var(--text-xs);
  font-weight: 800;
}

.account-order-item-summary {
  display: grid;
  gap: 4px;
  justify-items: end;
  text-align: right;
}

.account-review-button {
  min-height: 34px;
  padding: 6px 10px;
  font-size: var(--text-xs);
}

.account-order-item-summary span,
.account-order-empty {
  color: var(--muted);
  font-size: var(--text-sm);
}

.account-order-empty {
  grid-column: 1 / -1;
  margin: 0;
}

.account-empty-state {
  display: grid;
  gap: 8px;
  padding-top: 8px;
}

.auth-page-links {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(86px, 1fr));
  gap: 0;
  width: min(360px, 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  overflow: hidden;
  background: var(--surface);
}

.auth-page-link {
  min-height: var(--control-height);
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--muted);
  font-size: var(--text-sm);
  font-weight: 800;
  text-decoration: none;
  transition: background-color 220ms ease, color 220ms ease;
}

.auth-page-link + .auth-page-link {
  border-left: 1px solid var(--line);
}

.auth-page-link.is-active {
  background: rgba(176, 109, 69, 0.12);
  color: var(--ink);
}

.auth-page-link:focus-visible {
  position: relative;
  z-index: 1;
  outline: 2px solid var(--rose);
  outline-offset: -2px;
}

.login-form h2 {
  margin-bottom: 2px;
  font-size: 20px;
  line-height: 1.2;
}

.signup-phone-form h2 {
  overflow-wrap: anywhere;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.1;
}

.login-form.is-signup-mode [data-auth-title],
.login-form.is-signup-mode [data-auth-helper],
.login-form.is-signup-mode [data-google-login],
.login-form.is-signup-mode [data-credential-login] {
  display: none;
}

.login-form:not(.is-signup-mode) [data-credential-login],
.signup-phone-form:not([hidden]) {
  animation: auth-mode-enter 360ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.auth-helper {
  margin: -4px 0 2px;
  color: var(--muted);
  font-size: var(--text-md);
}

.google-login-slot {
  min-height: 44px;
}

.google-login-placeholder {
  width: min(360px, 100%);
  min-height: 42px;
  border: 1px solid #dadce0;
  border-radius: 4px;
  background: #fff;
  color: #3c4043;
  cursor: not-allowed;
  font-size: 14px;
  font-weight: 700;
  opacity: 0.78;
}

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

.contact-section .contact-form {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-weight: 700;
  font-size: var(--text-sm);
}

.contact-form .consent-checkbox {
  display: flex !important;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.contact-form .consent-checkbox input[type="checkbox"] {
  flex: 0 0 18px;
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin: 0;
}

.contact-form .consent-checkbox > span {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
  line-height: 1.35;
}

.signup-privacy-consent {
  display: grid !important;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px !important;
  align-items: start;
  color: var(--muted);
  font-size: 13px !important;
  font-weight: 500 !important;
  line-height: 1.5;
}

.signup-privacy-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--copper);
}

.signup-privacy-consent a {
  color: var(--copper);
  font-weight: 800;
}

.payment-form .address-fieldset {
  display: grid;
  gap: 8px;
}

.payment-form .address-fieldset > label {
  margin: 0;
}

.payment-form .address-fieldset .postal-status {
  min-height: 0;
  margin-top: 2px;
}

.required-mark {
  display: inline;
  margin-left: 2px;
  color: var(--rose);
  font-weight: 800;
}

.contact-trap {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--ink);
  padding: 10px 12px;
  font-size: var(--text-sm);
  resize: vertical;
}

.credential-login input,
.password-reset input,
.signup-phone-form input,
.signup-phone-form select,
.credential-login > button:not(.text-button),
.password-reset > button,
.otp-panel > button {
  width: min(var(--account-control-width), 100%);
  max-width: 100%;
  box-sizing: border-box;
}

.credential-login input,
.password-reset input,
.signup-phone-form input,
.signup-phone-form select {
  overflow-x: auto;
  white-space: nowrap;
  text-overflow: clip;
}

.password-field {
  position: relative;
  display: block;
  width: min(var(--account-control-width, 100%), 100%);
  max-width: 100%;
}

.password-field input {
  width: 100%;
  min-width: 0;
  min-height: 44px;
  padding-right: 50px;
}

.password-visibility-toggle {
  position: absolute;
  top: 50%;
  right: 0;
  display: inline-flex;
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transform: translateY(-50%);
  transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.password-visibility-toggle:hover,
.password-visibility-toggle:focus-visible {
  background: rgba(176, 109, 69, 0.1);
  color: var(--ink);
}

.password-visibility-toggle:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: -2px;
}

.password-visibility-toggle:active {
  transform: translateY(-50%) scale(0.96);
}

.password-visibility-toggle svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.admin-toolbar .password-field {
  width: min(320px, 70vw);
}

.admin-toolbar .password-field input {
  box-sizing: border-box;
}

.credential-login > button:not(.text-button),
.password-reset > button,
.otp-panel > button {
  justify-self: start;
  min-width: 0;
  padding-inline: 10px;
  font-size: var(--text-sm);
  white-space: normal;
}

.contact-form select {
  min-height: 42px;
}

.phone-field {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 8px;
  min-width: 0;
}

.phone-field select {
  text-align: center;
}

.phone-field select,
.phone-field input {
  min-width: 0;
}

.otp-panel {
  display: grid;
  grid-template-columns: minmax(110px, 140px) minmax(120px, 1fr) auto;
  gap: 10px;
  align-items: end;
}

.otp-send-button {
  min-width: 110px;
  padding-inline: 18px;
  white-space: nowrap;
}

.otp-panel[hidden] {
  display: none;
}

.otp-panel label {
  gap: 4px;
}

.otp-panel .form-status {
  grid-column: 1 / -1;
  margin: 0;
}

.text-button {
  width: fit-content;
  border: 0;
  background: transparent;
  color: var(--accent);
  padding: 2px 0;
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.text-button:hover,
.text-button:focus-visible {
  color: var(--ink);
  text-decoration: underline;
}

.credential-login > .text-button {
  display: inline-block;
  grid-column: 1 / -1;
  width: fit-content;
  min-height: auto;
  padding: 0;
  margin-top: -4px;
  color: var(--accent);
  font-size: var(--text-sm);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.credential-login > * {
  grid-column: 1;
}

.password-reset {
  display: grid;
  gap: 12px;
  padding-top: 4px;
}

.password-reset[hidden] {
  display: none;
}

.form-status,
.empty-cart,
.payment-note,
.upi-panel,
.site-footer,
.contact-info-list .info-item p,
.policy-copy p,
.product-card p {
  color: var(--muted);
  font-size: var(--text-md);
  overflow-wrap: anywhere;
}

.cart-payment-link {
  margin-top: 12px;
}

.cart-panel-actions .cart-payment-link {
  margin-top: 0;
}

.payment-note,
.upi-panel {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 250, 245, 0.52);
  color: var(--muted);
}

.payment-recovery {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  padding: 16px;
  border: 1px solid rgba(173, 79, 97, 0.34);
  border-radius: 8px;
  background: rgba(173, 79, 97, 0.06);
}

.payment-recovery[hidden] {
  display: none;
}

.payment-recovery strong {
  color: var(--ink);
}

.payment-recovery p {
  margin: 0;
  color: var(--muted);
  font-size: var(--text-sm);
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.payment-recovery .secondary-link {
  width: fit-content;
  margin-top: 4px;
}

.upi-panel {
  display: grid;
  gap: 12px;
}

.upi-panel[hidden],
.payment-note[hidden] {
  display: none;
}

.primary-button {
  width: 100%;
}

.cookie-consent {
  position: fixed;
  right: clamp(12px, 3vw, 36px);
  bottom: 62px;
  left: clamp(12px, 3vw, 36px);
  z-index: 35;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 980px;
  margin-inline: auto;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 245, 0.98);
  box-shadow: 0 8px 26px rgba(44, 35, 29, 0.14);
}

.cookie-consent-copy {
  min-width: 0;
}

.cookie-consent-copy strong {
  color: var(--accent);
  font-size: var(--text-sm);
}

.cookie-consent-copy p {
  max-width: 680px;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: var(--text-xs);
  line-height: 1.4;
}

.cookie-consent-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.cookie-consent-actions button {
  width: auto;
  min-width: 132px;
  min-height: 38px;
  padding: 8px 12px;
  font-size: var(--text-xs);
}

.site-footer {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 48px;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 10px clamp(18px, 4vw, 56px);
  background: rgba(247, 243, 238, 0.94);
  border-top: 1px solid var(--line);
  color: var(--muted);
  overflow: hidden;
}

.site-footer-brand {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.site-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 16px;
  min-width: 0;
}

.site-footer-links a {
  color: var(--accent);
  font-size: var(--text-sm);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@keyframes launch-fade {
  0% {
    opacity: 1;
    transform: scale(1.02);
  }

  48% {
    opacity: 1;
  }

  58%,
  100% {
    opacity: 0;
    transform: scale(1.07);
  }
}

@keyframes section-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .product-art.is-touch-zoom img,
  .gallery-main-wrap.is-touch-zoom .gallery-main {
    transform: none;
  }

  .auth-page-link {
    transition: none;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 44px minmax(0, 1fr) repeat(3, 44px);
    grid-template-areas: "menu brand search profile cart";
    align-items: center;
    gap: 2px;
  }

  .launch-banner,
  .cart-drawer,
  .nav-drawer,
  .product-modal,
  .size-guide-modal,
  .policy-modal {
    min-height: 100dvh;
  }

  .nav-menu-button {
    grid-area: menu;
    display: grid;
    gap: 4px;
    justify-self: start;
  }

  .brand-mark {
    grid-area: brand;
    justify-self: start;
    width: min(190px, 50vw);
    margin-left: 0;
  }

  .brand-logo {
    object-position: center;
  }

  .mobile-search-button {
    display: grid;
    justify-self: end;
  }

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

  .cart-button {
    grid-area: cart;
    position: relative;
    justify-self: end;
    width: 40px;
    padding: 0;
    justify-content: center;
  }

  .cart-button span:not(:empty) {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 16px;
    height: 16px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--copper);
    color: var(--surface);
    font-size: 10px;
  }

  .nav-links {
    display: none;
  }

  .launch-banner,
  .cart-band,
  .payment-section,
  .confirmation-section,
  .info-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .cart-band,
  .payment-section,
  .confirmation-section {
    overflow: hidden;
  }

  .cart-panel,
  .checkout-stack {
    min-width: 0;
  }

  .launch-banner {
    height: 100vh;
  }

  .launch-video {
    height: 100%;
    min-height: 0;
  }

  .intro-band,
  .catalog-grid,
  .info-list {
    grid-template-columns: 1fr;
  }

  .contact-info-list {
    grid-template-columns: 1fr;
  }

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

  .catalog-page > .section-heading {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }

  .catalog-page > .section-heading .catalog-title-row {
    display: contents;
  }

  .catalog-page > .section-heading .catalog-title-row .eyebrow {
    flex: 0 0 auto;
  }

  .catalog-page > .section-heading .catalog-search {
    flex: 1 1 220px;
    min-width: 160px;
  }

  .catalog-page > .section-heading .catalog-view-switcher {
    order: 2;
  }

  .catalog-filters {
    display: none;
  }

  .catalog-tools {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 10px;
    justify-items: start;
    margin-bottom: 16px;
  }

  .catalog-filter-toggle {
    order: 1;
    margin-right: auto;
  }

  .catalog-view-switcher {
    order: 2;
    width: max-content;
    margin-left: auto;
    justify-self: end;
  }

  .catalog-page {
    display: block;
  }

  .catalog-tools .catalog-search {
    width: 100%;
  }

  .catalog-title-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .account-hero {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 10px;
  }

  .account-avatar {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .account-stat-grid,
  .account-panel-row,
  .account-order-meta {
    grid-template-columns: 1fr;
  }

  .account-panel-row {
    align-items: start;
  }

  .account-order-card {
    grid-template-columns: 8px minmax(0, 1fr);
    gap: 0 10px;
    padding: 14px;
  }

  .account-order-status {
    width: 8px;
  }

  .account-order-header {
    flex-direction: column;
    gap: 8px;
  }

  .account-order-item {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
  }

  .account-order-item img,
  .account-order-item-fallback {
    width: 58px;
  }

  .account-order-item-summary {
    grid-column: 2;
    justify-items: start;
    text-align: left;
  }

  .account-order-total {
    justify-self: start;
  }

  .account-section-head {
    align-items: start;
    flex-direction: column;
    gap: 6px;
  }

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

@media (max-width: 560px) {
  .product-card-actions {
    top: 4px;
    right: 4px;
    gap: 8px;
  }

  .product-art .wishlist-button {
    width: 26px;
    height: 26px;
  }

  .product-art .wishlist-button svg {
    width: 15px;
    height: 15px;
  }

  .product-zoom-button {
    display: none;
  }

  body {
    padding-bottom: 0;
  }

  .site-header {
    grid-template-columns: 44px minmax(0, 1fr) repeat(3, 44px);
    gap: 2px;
    padding: 8px;
  }

  .nav-menu-button {
    width: 36px;
    height: 36px;
  }

  .mobile-search-button,
  .profile-button,
  .cart-button {
    width: 32px;
    height: 32px;
    min-height: 32px;
  }

  .mobile-search-button svg,
  .profile-icon,
  .cart-icon {
    width: 17px;
    height: 17px;
  }

  .brand-mark {
    width: min(166px, 100%);
    height: auto;
  }

  .launch-slide > img,
  .launch-slide > video {
    object-position: 52% center;
  }

  .launch-slide--primary > img,
  .launch-slide--primary > video {
    object-position: 54% 40%;
  }

  .launch-slide--second-video > img,
  .launch-slide--second-video > video {
    object-position: 52% 40%;
  }

  .launch-slide--final-video > img,
  .launch-slide--final-video > video {
    object-position: 50% 38%;
  }

  .reel-caption {
    bottom: 58px;
  }

  .cart-button {
    padding: 0;
  }

  .otp-panel {
    grid-template-columns: 1fr;
  }

  .login-panel,
  .login-details,
  .login-form,
  .signup-phone-form {
    width: 100%;
    min-width: 0;
  }

  .login-details summary {
    font-size: var(--text-md);
    line-height: 1.35;
  }

  .signup-phone-form h2 {
    font-size: clamp(24px, 7vw, 30px);
    line-height: 1.1;
  }

  .catalog-select {
    width: 100%;
    min-width: 0;
  }

  .catalog-select span {
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .catalog-select select {
    min-width: 0;
    min-height: 42px;
    padding: 0 8px;
    font-size: 14px;
  }

  .gallery-view-tabs {
    display: flex;
    grid-template-columns: none;
    gap: 6px;
    padding-bottom: 2px;
  }

  .gallery-thumbs {
    display: flex;
    overflow-x: auto;
    gap: 8px;
    grid-template-columns: none;
  }

  .product-view-strip {
    display: block;
  }

  .product-view-arrow {
    width: 38px;
    height: 52px;
  }

  .cart-line {
    grid-template-columns: 56px 1fr;
  }

  .cart-line > strong,
  .quantity-control {
    grid-column: 2;
  }

  .cart-page {
    min-height: 0;
    gap: 16px;
    padding: 20px 12px 28px;
  }

  .cart-page .cart-copy p {
    margin: 0;
    font-size: var(--text-sm);
  }

  .cart-page .cart-panel {
    padding: 14px;
  }

  .cart-page .cart-lines {
    min-height: 0;
    gap: 8px;
  }

  .cart-page .cart-line {
    grid-template-columns: 48px minmax(0, 1fr) auto;
    gap: 8px;
    padding-bottom: 10px;
  }

  .cart-page .cart-thumb {
    width: 48px;
  }

  .cart-page .cart-line > div:not(.quantity-control) {
    align-self: start;
  }

  .cart-page .cart-line > strong {
    grid-column: 3;
    grid-row: 1;
    align-self: center;
  }

  .cart-page .quantity-control {
    grid-column: 2 / 4;
    width: max-content;
    justify-self: start;
  }

  .cart-page .quantity-control button {
    width: 30px;
    height: 30px;
  }

  .cart-page .cart-summary {
    gap: 6px 14px;
    margin: 10px 0 12px;
    padding-top: 8px;
  }

  .cart-page .cart-panel-actions {
    gap: 8px;
  }

  .cart-page .cart-panel-actions a {
    min-height: 42px;
  }

  .cart-thumb {
    width: 56px;
  }

  .cart-drawer {
    top: clamp(72px, 12vh, 104px);
    width: min(92vw, 360px);
    height: auto;
    min-height: 0;
    max-height: calc(100dvh - clamp(88px, 14vh, 120px));
    overflow-y: auto;
    overscroll-behavior: contain;
    border-bottom: 1px solid rgba(176, 109, 69, 0.24);
    border-bottom-left-radius: 12px;
    padding: 16px 16px 76px;
    gap: 12px;
  }

  .cart-drawer .cart-lines {
    flex: 0 1 auto;
    max-height: 34dvh;
  }

  .cart-drawer .cart-summary {
    margin-top: 0;
  }

  .cart-drawer .drawer-cart-link {
    display: none;
  }

  .cart-drawer [data-payment-link] {
    position: absolute;
    right: 16px;
    bottom: max(12px, env(safe-area-inset-bottom));
    left: 16px;
    z-index: 2;
    width: auto;
    min-height: 48px;
    box-shadow: 0 -8px 18px rgba(255, 250, 245, 0.94);
  }

  .cart-edge-tab {
    display: none;
  }

  .size-choice-bar {
    grid-template-columns: 1fr;
  }

  .size-guide-link {
    justify-self: end;
  }

  .policy-copy .policy-title {
    margin: 4px 0 6px;
    white-space: nowrap;
  }

  .policy-copy h3 {
    margin: 16px 0 5px;
  }

  .policy-modal-content .policy-copy .policy-title {
    margin-right: 42px;
    font-size: 13px;
    white-space: nowrap;
  }

  .site-footer {
    gap: 10px;
    padding-block: 8px;
    font-size: var(--text-sm);
  }

  .site-footer-brand span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

.site-footer-brand span:last-child {
    display: none;
  }

  .site-footer-links {
    justify-content: flex-start;
    gap: 6px 12px;
  }

  .contact-links-inner {
    grid-template-columns: 1fr;
    width: 100%;
  }
}

@media (min-width: 901px) and (max-width: 1099px) {
  .catalog-tools {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    justify-items: initial;
  }

  .catalog-filter-toggle {
    margin-right: auto;
  }

  .catalog-view-switcher {
    width: max-content;
    margin-left: auto;
    justify-self: end;
  }
}

/* Preserve the incumbent palette while making browser and interaction states
   feel like part of the storefront rather than browser defaults. */
::selection {
  background: rgba(168, 79, 95, 0.22);
  color: var(--ink);
}

*:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 3px;
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 1px;
  border-color: var(--rose);
}

button:disabled,
input:disabled,
select:disabled,
textarea:disabled {
  cursor: not-allowed;
  opacity: 0.56;
}

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

button:not(:disabled),
a {
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

p,
li {
  text-wrap: pretty;
}

.product-card:focus-within {
  outline-color: rgba(168, 79, 95, 0.42);
}

.product-card-actions button {
  transition: color 160ms ease, transform 160ms ease, background-color 160ms ease;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.credential-login input,
.password-reset input,
.signup-phone-form input,
.signup-phone-form select {
  transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover,
.credential-login input:hover,
.password-reset input:hover,
.signup-phone-form input:hover,
.signup-phone-form select:hover {
  border-color: rgba(176, 109, 69, 0.52);
}

@media (max-width: 560px) {
  .section-shell,
  .cart-band,
  .contact-section {
    padding-top: 36px;
    padding-bottom: 42px;
  }

  .product-body {
    padding: 11px 10px 12px;
  }
}


/* trust-fix mobile overflow */
@media (max-width: 700px) {
  .cookie-consent {
    max-width: min(420px, calc(100vw - 24px));
    padding: 10px 12px;
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    bottom: 54px;
  }

  .cookie-consent-copy p {
    font-size: 11px;
    line-height: 1.3;
  }

  .cookie-consent-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }

  .cookie-consent-actions button {
    min-width: 0;
    padding-inline: 8px;
  }
}

.gallery-view-tabs,
.product-view-strip {
  overscroll-behavior-x: contain;
}

.gallery-view-tab,
.product-view-arrow {
  flex: 0 0 auto;
}

.catalog-filters {
  align-items: stretch;
}

@media (max-width: 900px) {
  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .product-body {
    gap: 6px;
    padding: 10px;
  }

  .product-card button {
    min-height: 44px;
  }

  .quantity-control button {
    min-height: 44px;
  }

  .gallery-view-tabs {
    display: flex;
    grid-template-columns: none;
    flex-wrap: nowrap;
  }

  .gallery-thumbs {
    grid-template-columns: repeat(auto-fit, minmax(64px, 1fr));
  }
}

@media (max-width: 560px) {
  .catalog-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .catalog-page {
    padding-right: 12px;
    padding-left: 12px;
  }

  .cart-summary {
    grid-template-columns: max-content max-content;
    justify-content: start;
  }

  .cart-summary strong {
    justify-self: start;
  }

  .catalog-filter-toggle {
    min-height: 36px;
    padding: 0 12px;
    font-size: var(--text-xs);
  }

  .catalog-filter-panel {
    inset: 0;
    width: 100%;
    height: 100dvh;
    max-height: none;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    padding: 0;
    border-radius: 0;
    border: 0;
  }

  .catalog-filter-header {
    min-height: 64px;
    margin-bottom: 0;
    padding: 0 16px;
  }

  .catalog-filter-header h3 {
    font-size: 17px;
  }

  .catalog-filter-clear {
    font-size: 12px;
  }

  .catalog-filter-content {
    max-height: none;
    min-height: 0;
    margin-bottom: 0;
    padding-right: 0;
    overflow: hidden;
  }

  .mobile-filter-layout {
    height: 100%;
    grid-template-columns: minmax(132px, 34%) 1fr;
  }

  .mobile-filter-tabs,
  .mobile-filter-options {
    min-height: 0;
    overflow-y: auto;
  }

  .mobile-filter-tab {
    min-height: 58px;
    padding: 0 14px;
    font-size: 13px;
  }

  .mobile-filter-options {
    padding: 12px 16px;
  }

  .mobile-filter-option {
    min-height: 52px;
    grid-template-columns: 28px 1fr;
    font-size: 13px;
  }

  .catalog-filter-actions {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0 calc(0px + env(safe-area-inset-right)) calc(0px + env(safe-area-inset-bottom)) calc(0px + env(safe-area-inset-left));
    border-top: 1px solid rgba(111, 96, 84, 0.12);
  }

  .catalog-filter-actions .secondary-button,
  .catalog-filter-actions .primary-button {
    min-height: 58px;
    border: 0;
    border-radius: 0;
    background: var(--surface);
    box-shadow: none;
    font-size: 13px;
    text-transform: uppercase;
  }

  .catalog-filter-actions .secondary-button {
    color: var(--muted);
  }

  .catalog-filter-actions .primary-button {
    color: var(--accent-strong);
    border-left: 1px solid rgba(111, 96, 84, 0.12);
  }

  .gallery-view-tab {
    min-height: 32px;
    padding: 0 10px;
    white-space: nowrap;
  }

  .gallery-thumb {
    flex: 0 0 72px;
    width: 72px;
  }

  .product-meta span,
  .availability,
  .care-chip {
    font-size: 11px;
  }
}

/* Conversion and accessibility pass: retain compact icon artwork while giving
   every interactive target a reliable touch area and a calmer card rhythm. */
.nav-menu-button,
.mobile-search-button,
.profile-button,
.cart-button {
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 6px;
  box-sizing: border-box;
}

.product-card-actions > *,
.product-art .wishlist-button,
.product-art .product-share-icon,
.product-art .product-zoom-button {
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 6px;
  box-sizing: border-box;
  position: relative;
  border: 0;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
}

.product-card-actions > *::before,
.product-art .wishlist-button::before,
.product-art .product-share-icon::before,
.product-art .product-zoom-button::before {
  position: absolute;
  inset: 7px;
  z-index: 0;
  border: 1px solid rgba(95, 84, 76, 0.26);
  border-radius: 50%;
  background: rgba(255, 250, 245, 0.9);
  box-shadow: 0 2px 8px rgba(47, 39, 34, 0.14);
  content: "";
  pointer-events: none;
}

.product-card-actions > * > svg,
.product-art .wishlist-button > svg,
.product-art .product-share-icon > svg,
.product-art .product-zoom-button > svg {
  position: relative;
  z-index: 1;
}

.product-card .primary-button,
.product-card .secondary-button,
.catalog-filter-toggle,
.page-button,
.filter-section-title,
.catalog-filter-clear,
.gallery-view-tab {
  min-height: 44px;
}

.product-modal-panel > .modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  float: none;
  margin: 0;
}

.add-to-cart-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  overflow: visible;
  border-radius: 999px;
  isolation: isolate;
}

.add-to-cart-button-icon {
  position: absolute;
  left: 18px;
  z-index: 1;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  transform: translateX(0);
}

.add-to-cart-button-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.add-to-cart-button-label {
  position: relative;
  z-index: 1;
  padding-inline: 26px 4px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: opacity 160ms ease, transform 160ms ease;
}

.add-to-cart-button-item {
  position: absolute;
  top: -11px;
  left: calc(50% - 4px);
  width: 8px;
  height: 8px;
  z-index: 2;
  border-radius: 1px;
  background: currentColor;
  opacity: 0;
  pointer-events: none;
}

.add-to-cart-button.is-adding .add-to-cart-button-icon {
  animation: add-to-cart-icon-cycle 1300ms cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.add-to-cart-button.is-adding .add-to-cart-button-label {
  animation: add-to-cart-label-cycle 1300ms ease both;
}

.add-to-cart-button.is-adding .add-to-cart-button-item {
  animation: add-to-cart-item-drop 1300ms cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.cart-button span[data-cart-count] {
  position: absolute;
  top: 2px;
  right: -1px;
  display: grid;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  place-items: center;
  border: 2px solid var(--surface);
  border-radius: 999px;
  background: var(--copper);
  color: var(--surface);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  transform: translate(35%, 0);
  z-index: 2;
}

.cart-button span[data-cart-count]:empty {
  display: none;
}

.cart-button span[data-cart-count].is-counting {
  animation: cart-count-pop 420ms cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.cart-button::before {
  content: "+";
  position: absolute;
  top: -2px;
  left: 50%;
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 50%;
  background: var(--copper);
  color: var(--surface);
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px) scale(0.6);
  z-index: 4;
  box-shadow: 0 2px 6px rgba(48, 39, 31, 0.18);
}

.cart-button.is-cart-updated::before {
  animation: cart-button-add-feedback 650ms cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

@keyframes cart-count-pop {
  0% {
    transform: translate(35%, 0) scale(0.76);
  }

  58% {
    transform: translate(35%, 0) scale(1.16);
  }

  100% {
    transform: translate(35%, 0) scale(1);
  }
}

@keyframes cart-button-add-feedback {
  0% {
    opacity: 0;
    transform: translate(-50%, 8px) scale(0.6);
  }

  24% {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
  }

  58% {
    opacity: 1;
    transform: translate(-50%, -5px) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -15px) scale(0.78);
  }
}

@keyframes add-to-cart-icon-cycle {
  0%,
  12% {
    left: 18px;
    transform: translateX(0) scale(1);
  }

  34%,
  60% {
    left: 50%;
    transform: translateX(-50%) scale(1.08);
  }

  82%,
  100% {
    left: 18px;
    transform: translateX(0) scale(1);
  }
}

@keyframes add-to-cart-label-cycle {
  0%,
  12% {
    opacity: 1;
    transform: translateX(0);
  }

  30%,
  62% {
    opacity: 0;
    transform: translateX(14px);
  }

  82%,
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes add-to-cart-item-drop {
  0%,
  18% {
    opacity: 0;
    transform: translateY(-4px) scale(0.7);
  }

  28% {
    opacity: 1;
  }

  55% {
    opacity: 1;
    transform: translateY(30px) scale(1);
  }

  66%,
  100% {
    opacity: 0;
    transform: translateY(38px) scale(0.7);
  }
}

@media (prefers-reduced-motion: reduce) {
  .add-to-cart-button.is-adding .add-to-cart-button-icon,
  .add-to-cart-button.is-adding .add-to-cart-button-label,
  .add-to-cart-button.is-adding .add-to-cart-button-item,
  .cart-button span[data-cart-count].is-counting,
  .cart-button.is-cart-updated::before {
    animation: none;
  }
}

.drawer-close,
.catalog-filter-close,
.gallery-zoom-button,
.quantity-control button,
.cart-edge-tab {
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 6px;
  box-sizing: border-box;
}

.product-card .size-row {
  min-width: 0;
  flex-wrap: nowrap;
  gap: 3px;
  justify-content: flex-start;
  overflow-x: auto;
  overflow: visible;
  scrollbar-width: none;
}

.product-card .size-row span {
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  flex: 0 0 44px;
  box-sizing: border-box;
}

.product-card .product-top h3,
.product-card .product-top .price {
  font-size: var(--text-base);
  font-weight: 800;
  line-height: 1.25;
}

.product-card .product-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  min-height: 42px;
  align-items: flex-start;
}

.product-card .product-top > div {
  min-width: 0;
  max-width: 100%;
}

.product-card .product-top h3 {
  max-width: 100%;
  overflow-wrap: anywhere;
  white-space: normal;
}

.product-card-price {
  max-width: 100%;
  overflow: hidden;
}

.product-card-price small {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-card .product-details-button {
  display: flex;
  width: 100%;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  margin-top: 6px;
  justify-self: stretch;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding-inline: 18px;
  letter-spacing: 0;
  overflow: hidden;
  will-change: letter-spacing;
  border-color: rgba(176, 109, 69, 0.38);
  background: rgba(176, 109, 69, 0.05);
  color: var(--copper);
  text-decoration: none;
  transition: letter-spacing 280ms ease-in-out, background-color 180ms ease,
    border-color 180ms ease, color 180ms ease, box-shadow 180ms ease,
    transform 180ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.product-card button.product-card-color-swatch {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  flex: 0 0 18px;
  padding: 0;
  border-radius: 50%;
  box-sizing: border-box;
}

.product-card .product-details-button:hover,
.product-card .product-details-button:focus-visible {
  border-color: rgba(176, 109, 69, 0.62);
  background: rgba(176, 109, 69, 0.12);
}

/* Catalog density: keep desktop scanning to four columns and keep size
   controls on one line without shrinking their touch targets. */
@media (min-width: 1100px) {
  .catalog-select {
    gap: 4px;
    padding-bottom: 9px;
  }

  .catalog-select select {
    min-height: 34px;
    padding: 5px 7px;
    font-size: var(--text-xs);
  }

  .filter-section {
    padding-bottom: 12px;
  }

  .filter-section-title {
    margin-bottom: 7px;
  }

  .filter-options {
    gap: 6px;
  }

  .filter-option {
    gap: 6px;
  }

  .filter-option label {
    font-size: var(--text-xs);
  }
}

.product-card .product-card-size-bar {
  min-width: 0;
  width: 100%;
  margin-inline: 0;
}

.product-card .size-row::-webkit-scrollbar {
  display: none;
}

/* Home cards are wider, so keep their size choices compact instead of
   distributing the controls across the full card width. */
.home-page .product-card .size-row {
  justify-content: flex-start;
  gap: 3px;
}

/* Keep the hit area accessible while making the visible size controls feel
   lighter and closer together on product cards. */
.product-card .size-row label {
  display: grid;
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  place-items: center;
  flex: 0 0 44px;
}

.product-card .size-row span {
  width: 38.5px;
  min-width: 38.5px;
  height: 38.5px;
  min-height: 38.5px;
  flex: 0 0 38.5px;
  font-size: calc(var(--text-xs) + 1px);
}

/* Release layout contract: one canonical desktop grid keeps every size control
   visible, while narrower screens preserve the existing mobile flow. */
@media (min-width: 900px) and (max-width: 1399px) {
  .catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1400px) {
  .catalog-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .product-card .size-row {
    gap: 2px;
  }
}

.catalog-site-page .share-fab {
  display: none;
}

.home-page .share-fab.is-catalog-nearby {
  display: none;
}

.error-page-shell {
  display: grid;
  min-height: min(68vh, 620px);
  align-content: center;
  justify-items: start;
  width: min(100% - 32px, 920px);
  margin: 0 auto;
  padding: 64px 0;
}

.error-page-shell h1 {
  max-width: 12ch;
  margin: 8px 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 7vw, 78px);
  line-height: 0.98;
}

.error-page-shell > p:not(.eyebrow) {
  max-width: 48ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 20px);
}

.error-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.error-page-actions .primary-link,
.error-page-actions .secondary-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
}

@media (max-width: 560px) {
  .error-page-shell {
    min-height: 64vh;
    padding: 48px 0;
  }

  .error-page-shell h1 {
    font-size: clamp(40px, 13vw, 56px);
  }

  .error-page-actions {
    width: 100%;
  }

  .error-page-actions .primary-link,
  .error-page-actions .secondary-link {
    flex: 1 1 100%;
  }
}

/* Keep the tray inside the mobile safe area without affecting document flow. */
.cookie-consent {
  bottom: env(safe-area-inset-bottom);
}

/* View-details treatment: keep the supplied two-line reveal subtle enough for
   product cards while preserving the existing copper action color. */
.product-card .product-details-button::before,
.product-card .product-details-button::after {
  position: absolute;
  left: 50%;
  width: 0;
  height: 2px;
  border: 0;
  background: var(--rose);
  content: "";
  box-shadow: 0 1px 7px rgba(168, 79, 95, 0.28);
  opacity: 0.94;
  pointer-events: none;
  transform: translateX(-50%);
  transition: width 420ms ease-in-out;
  z-index: 1;
}

.product-card .product-details-button::before {
  top: 0;
}

.product-card .product-details-button::after {
  bottom: 0;
}

.product-card .product-details-button:hover,
.product-card .product-details-button:focus,
.product-card .product-details-button:focus-visible,
.product-card .product-details-button:active {
  letter-spacing: 5px;
}

.product-card .product-details-button:hover::before,
.product-card .product-details-button:hover::after,
.product-card .product-details-button:focus::before,
.product-card .product-details-button:focus::after,
.product-card .product-details-button:focus-visible::before,
.product-card .product-details-button:focus-visible::after,
.product-card .product-details-button:active::before,
.product-card .product-details-button:active::after {
  width: 70%;
}

/* Auth actions: adapt the supplied animated-button edge runners to the
   storefront palette without adding decorative markup to the forms. */
.auth-page-link,
.login-form [data-password-login],
.login-form [data-send-reset-otp],
.login-form [data-reset-password-submit],
.signup-phone-form .otp-send-button,
.signup-phone-form [data-verify-otp],
.profile-popover .primary-link,
.profile-popover .secondary-link {
  --auth-motion-line: var(--copper);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.auth-page-link::before,
.login-form [data-password-login]::before,
.login-form [data-send-reset-otp]::before,
.login-form [data-reset-password-submit]::before,
.signup-phone-form .otp-send-button::before,
.signup-phone-form [data-verify-otp]::before,
.profile-popover .primary-link::before,
.profile-popover .secondary-link::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0%, var(--auth-motion-line) 48%, transparent 100%) top left / 220% 1px no-repeat,
    linear-gradient(270deg, transparent 0%, var(--auth-motion-line) 48%, transparent 100%) bottom right / 220% 1px no-repeat;
  content: "";
  opacity: 0.72;
  pointer-events: none;
  animation: auth-border-horizontal 2400ms linear infinite;
  z-index: 0;
}

.auth-page-link::after,
.login-form [data-password-login]::after,
.login-form [data-send-reset-otp]::after,
.login-form [data-reset-password-submit]::after,
.signup-phone-form .otp-send-button::after,
.signup-phone-form [data-verify-otp]::after,
.profile-popover .primary-link::after,
.profile-popover .secondary-link::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, var(--auth-motion-line) 48%, transparent 100%) top right / 1px 220% no-repeat,
    linear-gradient(0deg, transparent 0%, var(--auth-motion-line) 48%, transparent 100%) bottom left / 1px 220% no-repeat;
  content: "";
  opacity: 0.72;
  pointer-events: none;
  animation: auth-border-vertical 2400ms linear infinite;
  z-index: 0;
}

.login-form [data-password-login],
.login-form [data-send-reset-otp],
.login-form [data-reset-password-submit],
.signup-phone-form .otp-send-button,
.profile-popover .primary-link {
  --auth-motion-line: var(--surface);
}

.auth-page-link:hover,
.auth-page-link:focus-visible,
.login-form [data-password-login]:hover:not(:disabled),
.login-form [data-password-login]:focus-visible,
.login-form [data-send-reset-otp]:hover:not(:disabled),
.login-form [data-send-reset-otp]:focus-visible,
.login-form [data-reset-password-submit]:hover:not(:disabled),
.login-form [data-reset-password-submit]:focus-visible,
.signup-phone-form .otp-send-button:hover:not(:disabled),
.signup-phone-form .otp-send-button:focus-visible,
.signup-phone-form [data-verify-otp]:hover:not(:disabled),
.signup-phone-form [data-verify-otp]:focus-visible,
.profile-popover .primary-link:hover,
.profile-popover .primary-link:focus-visible,
.profile-popover .secondary-link:hover,
.profile-popover .secondary-link:focus-visible {
  box-shadow: 0 8px 18px rgba(44, 35, 29, 0.12);
}

@keyframes auth-border-horizontal {
  0% {
    background-position: -120% 0, 220% 100%;
  }
  50% {
    background-position: 0 0, 100% 100%;
  }
  100% {
    background-position: 120% 0, -20% 100%;
  }
}

@keyframes auth-border-vertical {
  0% {
    background-position: 100% -120%, 0 220%;
  }
  50% {
    background-position: 100% 0, 0 100%;
  }
  100% {
    background-position: 100% 120%, 0 -20%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-card .product-details-button {
    transition-duration: 0.01ms !important;
  }

  .auth-page-link::before,
  .auth-page-link::after,
  .login-form [data-password-login]::before,
  .login-form [data-password-login]::after,
  .login-form [data-send-reset-otp]::before,
  .login-form [data-send-reset-otp]::after,
  .login-form [data-reset-password-submit]::before,
  .login-form [data-reset-password-submit]::after,
  .signup-phone-form .otp-send-button::before,
  .signup-phone-form .otp-send-button::after,
  .signup-phone-form [data-verify-otp]::before,
  .signup-phone-form [data-verify-otp]::after,
  .profile-popover .primary-link::before,
  .profile-popover .primary-link::after,
  .profile-popover .secondary-link::before,
  .profile-popover .secondary-link::after {
    animation: none;
    opacity: 0;
  }
}

@media (hover: hover) and (pointer: fine) {
  html {
    --cursor-arrow: url("/assets/cursor-arrow.png") 2 2;
  }

  html,
  body {
    cursor: var(--cursor-arrow), auto;
  }

  a,
  button,
  [role="button"],
  summary,
  label,
  select,
  input[type="button"],
  input[type="submit"],
  input[type="checkbox"],
  input[type="radio"],
  .primary-button,
  .secondary-button {
    cursor: var(--cursor-arrow), pointer !important;
  }

  input:not([type="button"]):not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]),
  textarea {
    cursor: text !important;
  }

  [disabled],
  .is-disabled,
  [aria-disabled="true"] {
    cursor: not-allowed !important;
  }
}

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

.catalog-grid.catalog-grid--stacked {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 1099px) and (min-width: 901px) {
  .catalog-grid.catalog-grid--grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .catalog-heading-view-switcher {
    display: none;
  }

  .catalog-filter-view-switcher {
    display: none;
  }

  .catalog-view-switcher {
    display: none;
  }

  .catalog-page > .section-heading .catalog-heading-view-switcher {
    display: none;
  }

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

  .catalog-grid.catalog-grid--stacked {
    grid-template-columns: minmax(0, 1fr);
  }

  .catalog-page .product-card h3 {
    overflow: visible;
    font-size: 16px;
    line-height: 1.25;
    text-overflow: clip;
    white-space: normal;
  }
}

@media (min-width: 1400px) {
  .product-card .product-top {
    grid-template-columns: minmax(0, 1fr) minmax(88px, max-content);
    gap: 5px;
  }

  .product-card .product-top h3 {
    font-size: 14px;
    line-height: 1.18;
  }

  .product-card .product-card-price .price {
    font-size: 15px;
  }
}

@media (max-width: 560px) {
  .catalog-page {
    font-size: 14px;
  }

  .catalog-page .section-heading {
    gap: 10px;
  }

  .catalog-page .product-card h3 {
    max-width: 100%;
    overflow: visible;
    font-size: 16px;
    line-height: 1.25;
    text-overflow: clip;
    white-space: normal;
  }

  .catalog-page .product-card-price .price {
    font-size: 17px;
  }

  .catalog-page .product-card-color,
  .catalog-page .product-card-price small {
    font-size: 12px;
  }

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