:root {
  color-scheme: light;
  --ink: #120b08;
  --espresso: #24110c;
  --cocoa: #4c4038;
  --muted: #5f5751;
  --logo-cream: #f4eee7;
  --cream: #f3eee8;
  --ivory: #fffdf9;
  --line: #d8d0c7;
  --champagne: #b69a73;
  --gold: #8c7357;
  --ruby: #5b3028;
  --shadow: 0 22px 48px rgba(36, 28, 22, .13);
  --topbar-height: 88px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f5f1eb;
  color: var(--ink);
  padding-top: calc(var(--topbar-height) + env(safe-area-inset-top, 0));
}
a { color: inherit; }

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  min-height: 88px;
  padding: 8px clamp(18px, 3vw, 36px);
  border-bottom: 1px solid rgba(36, 28, 22, .12);
  background: rgba(255, 253, 249, .98);
  position: fixed;
  top: env(safe-area-inset-top, 0);
  left: 0;
  right: 0;
  z-index: 100;
  box-shadow: 0 8px 22px rgba(36,17,12,.06);
}
.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
  margin-left: 0;
  padding: 0;
}
.brand img {
  display: block;
  width: clamp(136px, 11vw, 172px);
  height: auto;
  max-height: 74px;
  object-fit: contain;
  image-rendering: auto;
  filter: drop-shadow(0 5px 8px rgba(36,17,12,.08));
}
.topbar-actions { display: flex; gap: 10px; align-items: center; margin-left: auto; }
.site-menu, .account-menu { position: relative; flex: 0 0 auto; }
.account-menu summary, .site-menu summary, .top-icon-button {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(36, 28, 22, .22);
  border-radius: 999px;
  background: #fffdf9;
  color: var(--espresso);
  cursor: pointer;
  list-style: none;
  box-shadow: 0 8px 20px rgba(36,17,12,.08);
}
.top-icon-button { position: relative; min-width: 30px; text-decoration: none; font: inherit; }
.favorite-header-button span { font-size: 17px; line-height: 1; transform: translateY(-1px); }
.cart-icon, .bag-icon {
  width: 18px;
  height: 14px;
  display: inline-block;
  position: relative;
  color: currentColor;
  border: 0;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
  border-radius: 1px 1px 3px 3px;
  transform: translateY(1px);
}
.cart-icon::before, .bag-icon::before {
  content: '';
  position: absolute;
  left: 1px;
  right: -2px;
  top: 2px;
  height: 7px;
  border: 2px solid currentColor;
  border-top: 0;
  transform: skewX(-12deg);
  transform-origin: left bottom;
}
.cart-icon::after, .bag-icon::after {
  content: '';
  position: absolute;
  left: 2px;
  bottom: -6px;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 11px 0 0 currentColor;
}
.cart-icon.small, .bag-icon.small { width: 16px; height: 12px; margin-right: 4px; transform: translateY(0); }
.cart-icon.small::before, .bag-icon.small::before { height: 6px; }
.cart-icon.small::after, .bag-icon.small::after { bottom: -5px; width: 3px; height: 3px; box-shadow: 10px 0 0 currentColor; }
.icon-badge { position: absolute; top: -7px; right: -7px; min-width: 17px; height: 17px; padding: 0 4px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid #fffdf9; background: var(--espresso); color: #fffdf9; font-size: 10px; font-weight: 750; line-height: 1; box-shadow: 0 6px 14px rgba(36,17,12,.18); }
.account-menu summary::-webkit-details-marker, .site-menu summary::-webkit-details-marker { display: none; }
.account-icon {
  position: relative;
  width: 17px;
  height: 17px;
  display: inline-block;
}
.account-icon::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 1px;
  width: 7px;
  height: 7px;
  border: 1.8px solid var(--espresso);
  border-radius: 999px;
  transform: translateX(-50%);
}
.account-icon::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 1px;
  width: 13px;
  height: 7px;
  border: 1.8px solid var(--espresso);
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom: 0;
  transform: translateX(-50%);
}
.account-menu-card, .site-menu-card {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 178px;
  display: grid;
  gap: 4px;
  padding: 10px;
  border: 1px solid rgba(36, 28, 22, .14);
  border-radius: 18px;
  background: #fffdf9;
  box-shadow: var(--shadow);
  z-index: 12;
}
.account-menu-card a, .site-menu-card a {
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--ink);
  text-decoration: none;
  font-size: 13px;
  font-weight: 650;
}
.account-menu-card a:hover, .site-menu-card a:hover { background: #f8f3ed; color: var(--espresso); }
.site-menu-card { min-width: 210px; gap: 4px; }
.site-menu-card a { text-decoration: none; }
.hamburger-icon { width: 15px; height: 12px; display: grid; gap: 3px; }
.hamburger-icon span { display: block; height: 1.5px; border-radius: 999px; background: var(--espresso); }
.site-menu-card a, .top-locale-switcher a {
  color: var(--ink);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
}
.site-menu-card a:hover, .top-locale-switcher a:hover { border-bottom-color: var(--gold); }

main {
  padding: clamp(16px, 3.8vw, 48px);
  max-width: 1180px;
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(280px, .78fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: stretch;
  padding: clamp(24px, 4vw, 52px);
  border: 1px solid rgba(36, 28, 22, .12);
  background: #fffdf9;
  border-radius: 34px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-copy { display: flex; flex-direction: column; justify-content: center; }
.eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--ruby);
  font-size: 12px;
  font-weight: 650;
}
h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -.035em;
}
h1 { font-size: clamp(42px, 7.8vw, 92px); line-height: .94; margin: 8px 0 18px; }
h2 { font-size: clamp(28px, 4vw, 52px); line-height: 1; margin: 0 0 14px; }
p { color: var(--muted); line-height: 1.62; }
.hero p { max-width: 660px; font-size: 18px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 10px; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--espresso);
  background: var(--espresso);
  color: white;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 650;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(36, 17, 12, .14);
}
.button.ghost { background: transparent; color: var(--espresso); box-shadow: none; }

.hero-panel {
  min-height: 320px;
  border-radius: 28px;
  padding: 26px;
  color: var(--espresso);
  background: #f8f3ed;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: inset 0 0 0 1px rgba(36,28,22,.10), 0 20px 36px rgba(36,28,22,.10);
  position: relative;
  overflow: hidden;
}
.hero-panel::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(36,28,22,.10);
  border-radius: 22px;
  pointer-events: none;
}
.hero-panel img {
  width: min(100%, 540px);
  max-height: 250px;
  object-fit: contain;
  margin: auto auto 28px;
  display: block;
  filter: drop-shadow(0 10px 14px rgba(36,17,12,.12));
}
.hero-panel p { color: var(--espresso); margin: 0; font-family: Georgia, serif; font-size: 28px; }
.hero-panel span { color: rgba(36,17,12,.70); }

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 20px 0 30px;
  border: 1px solid rgba(36,28,22,.12);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(36,28,22,.12);
}
.trust-strip div { background: rgba(255,253,249,.98); padding: 18px; }
.trust-strip strong, .trust-strip span { display: block; }
.trust-strip span { margin-top: 4px; color: var(--muted); font-size: 13px; }

.section-head, .collection-hero, .atelier, .cart-shell, .product-detail {
  margin-top: 22px;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid rgba(36,28,22,.12);
  border-radius: 28px;
  background: rgba(255,253,249,.96);
}
.section-head { max-width: 780px; }
.collection-hero p { max-width: 720px; }
.browse-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.browse-bar a {
  border: 1px solid rgba(36,28,22,.14);
  border-radius: 999px;
  padding: 9px 14px;
  text-decoration: none;
  color: var(--espresso);
  background: #fffdf9;
  font-size: 13px;
  font-weight: 650;
}
.category-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 22px 0 10px;
  padding: 14px clamp(12px, 3vw, 26px);
  border: 1px solid rgba(36,28,22,.10);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,253,249,.92), rgba(242,238,232,.78));
  box-shadow: 0 12px 28px rgba(36,28,22,.07);
  white-space: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}
.category-line::-webkit-scrollbar { display: none; }
.category-line a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  min-width: 104px;
  padding: 0 18px;
  border: 1px solid rgba(36,28,22,.14);
  border-radius: 999px;
  background: #fffdf9;
  color: var(--espresso);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .12em;
  box-shadow: 0 8px 18px rgba(36,28,22,.07);
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.category-line a.active {
  background: var(--espresso);
  border-color: var(--espresso);
  color: #fffdf9;
}
.category-line a:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(36,28,22,.12);
  background: #f8f3ed;
}
.category-line a.active:hover { background: #3a1d15; }
.product-search {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  padding: 8px;
  border: 1px solid rgba(36,28,22,.12);
  border-radius: 999px;
  background: #fffdf9;
  box-shadow: 0 10px 22px rgba(36,28,22,.06);
}
.product-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 16px;
  background: transparent;
  font: inherit;
  color: var(--espresso);
}
.product-search button {
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  background: var(--espresso);
  color: #fffdf9;
  font-weight: 650;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.result-count { color: var(--muted); margin-top: 12px; }
.pager {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin: 22px 0;
  color: var(--muted);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 16px;
}
.card, .empty {
  background: #fffdf9;
  border: 1px solid rgba(36,28,22,.12);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 14px 28px rgba(36,28,22,.08);
}
.card { position: relative; }

.admin-edit-floating {
  position: absolute;
  z-index: 8;
  right: 12px;
  top: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(36,17,12,.18);
  border-radius: 999px;
  background: rgba(255,253,249,.96);
  color: var(--espresso);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(36,28,22,.12);
}
.admin-edit-floating:hover { background: var(--espresso); color: #fff; transform: translateY(-1px); }
.product-detail { position: relative; }
.product-detail-edit { right: 18px; top: 64px; }
.product-card-edit { right: 12px; top: 12px; }

.product-card-link { cursor: default; transition: transform .18s ease, box-shadow .18s ease; }
.product-card-link:hover { transform: translateY(-2px); box-shadow: 0 18px 34px rgba(36,28,22,.12); }
.product-card-link:focus-visible { outline: 2px solid var(--espresso); outline-offset: 3px; }
.product-media-wrap { position: relative; }
.product-visual-link { display: block; color: inherit; text-decoration: none; }
.card-body {
  display: flex;
  flex-direction: column;
  min-height: 238px;
  padding: 18px;
}
.card h2 { font-size: 28px; letter-spacing: -.02em; }
.card h2 a { text-decoration: none; }
.card h2 a:hover { color: var(--gold); }
.card p { min-height: 78px; }
.card strong, .price-line {
  display: inline-flex;
  color: var(--espresso);
  font-weight: 650;
  letter-spacing: .04em;
}
.card-purchase {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 14px;
  margin-top: auto;
  padding-top: 16px;
}
.card-purchase span { color: var(--muted); font-size: 12px; font-weight: 650; letter-spacing: .04em; text-transform: uppercase; }
.buy-button {
  appearance: none;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 116px;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  background: var(--espresso);
  color: white;
  font: inherit;
  font-weight: 650;
  letter-spacing: .04em;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(36,17,12,.14);
}
.buy-button:hover { background: #3a1d15; }
.favorite-mini-button {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(36,28,22,.16);
  background: rgba(255,253,249,.96);
  color: var(--espresso);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(36,17,12,.12);
}
.favorite-mini-button.active, .favorite-detail-button.active { background: var(--espresso); color: #fffdf9; border-color: var(--espresso); }
.card-action-row, .detail-action-row { display: flex; align-items: center; gap: 10px; margin-top: 14px; }
.card-action-row { position: relative; z-index: 3; }
.card-action-row button { position: relative; z-index: 4; pointer-events: auto; }
.card-action-row > * { flex: 1; }
.detail-action-row > * { flex: 1 1 0; min-width: 0; }
.product-detail-favorite { right: 18px; top: 18px; z-index: 4; }
.product-detail .product-detail-favorite { width: 38px; height: 38px; min-height: 38px; font-size: 18px; }
.compact-purchase-box { padding: 14px; gap: 10px; }
.cart-mini-button {
  min-height: 44px;
  border: 1px solid var(--espresso);
  border-radius: 999px;
  background: transparent;
  color: var(--espresso);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 12px;
  font: inherit;
  font-size: 13px;
  font-weight: 650;
  cursor: pointer;
}
.cart-mini-button.pulse, .button.pulse { animation: cart-pulse .42s ease; }
.card-buy-now { min-width: 0; min-height: 44px; padding: 10px 14px; font-size: 13px; box-shadow: none; }
.out-of-stock-pill { display: inline-flex; justify-content: center; align-items: center; min-height: 44px; padding: 10px 14px; border-radius: 999px; background: #eee6dd; color: var(--muted); font-weight: 650; }
.favorite-detail-button {
  min-height: 46px;
  width: 100%;
  border-radius: 999px;
  border: 1px solid rgba(36,28,22,.2);
  background: #fffdf9;
  color: var(--espresso);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font: inherit;
  font-weight: 650;
  cursor: pointer;
}
.web-favorites-panel {
  position: fixed;
  top: 82px;
  right: clamp(12px, 3vw, 36px);
  z-index: 20;
  width: min(360px, calc(100vw - 24px));
  max-height: min(520px, calc(100vh - 112px));
  overflow: auto;
  padding: 14px;
  border: 1px solid rgba(36,28,22,.14);
  border-radius: 24px;
  background: #fffdf9;
  box-shadow: var(--shadow);
}
.panel-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.panel-head button { width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 999px; background: #f8f3ed; color: var(--espresso); font-size: 22px; line-height: 1; cursor: pointer; }
.panel-list { display: grid; gap: 8px; }
.panel-item { display: grid; grid-template-columns: 54px minmax(0, 1fr); gap: 10px; align-items: center; padding: 8px; border-radius: 16px; text-decoration: none; background: #f8f3ed; }
.panel-item img { width: 54px; height: 54px; object-fit: cover; border-radius: 13px; background: #eee6dd; }
.panel-item span { min-width: 0; display: grid; gap: 2px; }
.panel-item b { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.panel-item small, .empty-panel { color: var(--muted); }
.shipping-address-box { display: grid; gap: 4px; padding: 12px; border-radius: 16px; background: #f8f3ed; }
.shipping-address-box p { margin: 0; color: var(--ink); font-weight: 620; }
.order-command-center .metric-grid { align-items: stretch; }
.order-lanes { gap: 12px; }
.order-lane { border: 1px solid rgba(36,28,22,.12); border-radius: 20px; background: rgba(255,253,249,.72); overflow: hidden; }
.order-lane > summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 14px 16px; }
.order-lane > summary::-webkit-details-marker, .order-row summary::-webkit-details-marker { display: none; }
.order-lane > summary strong { font-size: 1rem; }
.order-lane > summary span { min-width: 30px; height: 30px; border-radius: 999px; display: grid; place-items: center; background: #f8f3ed; color: var(--espresso); font-weight: 700; }
.order-list { display: grid; gap: 10px; padding: 0 12px 12px; }
.order-row { border: 1px solid rgba(36,28,22,.10); border-left: 5px solid #c9b59c; border-radius: 18px; background: #fffdf9; overflow: hidden; }
.order-row.pack { border-left-color: #5f8c62; }
.order-row.ready { border-left-color: #a8753b; }
.order-row.attention, .order-row.exceptions { border-left-color: #b15b55; }
.order-row.in-transit { border-left-color: #557ba8; }
.order-row.done { border-left-color: #9d927f; opacity: .86; }
.order-row summary { cursor: pointer; list-style: none; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 12px; align-items: center; padding: 13px; }
.order-main, .order-side { min-width: 0; display: grid; gap: 3px; }
.order-main b { width: max-content; padding: 4px 8px; border-radius: 999px; background: #f8f3ed; color: var(--espresso); font-size: .78rem; }
.order-main strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.order-main small, .order-side small { color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.order-side { text-align: right; justify-items: end; }
.order-side em { font-style: normal; padding: 4px 8px; border-radius: 999px; background: #f3fbf5; color: #17633a; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.order-zoom-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; padding: 0 13px 13px; }
.order-zoom-grid section { display: grid; gap: 5px; padding: 12px; border-radius: 16px; background: #f8f3ed; }
.order-zoom-grid h3 { margin: 0; font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.order-zoom-grid p { margin: 0; color: var(--ink); font-weight: 600; }
.order-advanced { padding: 0 13px 13px; }
.order-advanced summary { padding: 8px 0; color: var(--muted); }
.order-advanced form { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 8px; align-items: end; }
.fulfillment-actions { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; padding: 0 13px 13px; }
.fulfillment-actions form { margin: 0; }
.shipping-label { display: grid; gap: 8px; padding: 14px; border: 1px dashed rgba(36,28,22,.32); border-radius: 18px; background: #fffdf9; }
.shipping-label .label-brand { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--espresso); }
.shipping-label h2 { margin: 0; font-size: 24px; }
.shipping-label dl { display: grid; gap: 6px; margin: 0; }
.shipping-label dl div { display: grid; grid-template-columns: 82px minmax(0, 1fr); gap: 8px; }
.shipping-label dt { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.shipping-label dd { margin: 0; font-weight: 650; overflow-wrap: anywhere; }
@media print { body > header, body > footer, .admin-nav, .admin-head, .admin-help, .fulfillment-actions, .order-row > details > summary, .order-advanced, .button { display: none !important; } .shipping-label { display: block; border: 0; } body.printing-label * { visibility: hidden; } body.printing-label .print-active-label, body.printing-label .print-active-label * { visibility: visible; } body.printing-label .print-active-label { position: absolute; left: 0; top: 0; width: 100%; } }
@keyframes cart-pulse { 0% { transform: scale(1); } 45% { transform: scale(1.04); } 100% { transform: scale(1); } }
.empty { padding: 26px; color: var(--muted); }
.product-visual {
  min-height: 260px;
  display: grid;
  place-items: center;
  background: #f2eee8;
  margin: 0;
}
.product-visual.has-image { display: block; background: #f2eee8; position: relative; }
.product-visual img {
  display: block;
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center;
}
.product-visual figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,253,249,.82);
  color: var(--espresso);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .16em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(36,28,22,.10);
}
.product-visual span {
  width: 96px;
  aspect-ratio: 1;
  border: 1px solid rgba(36,28,22,.14);
  color: var(--espresso);
  background: rgba(255,253,249,.72);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: Georgia, serif;
  font-size: 38px;
  letter-spacing: .05em;
}

.atelier {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 26px;
  margin-top: 34px;
  background: var(--espresso);
}
.atelier h2, .atelier p:not(.eyebrow) { color: white; }
.atelier .eyebrow { color: var(--champagne); }
.atelier p:not(.eyebrow) { color: rgba(255,255,255,.82); margin: 0; }

.product-detail {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: stretch;
}
.product-detail .product-visual { min-height: 560px; border-radius: 24px; overflow: hidden; }
.product-detail .product-visual img { height: 560px; }
.product-copy { display: flex; flex-direction: column; justify-content: center; }
.product-copy p { font-size: 17px; }
.price-line { font-size: 22px; margin: 8px 0 22px; }
.sale-price-line { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; color: #a23824; }
.sale-price-line strong { font-size: 1.08em; }
.sale-price-line s { color: var(--muted); font-size: .75em; letter-spacing: 1px; }
.hot-sale-pill { display: inline-flex; align-items: center; justify-content: center; padding: 4px 8px; border-radius: 999px; background: #a23824; color: #fffaf2; font-size: .68rem; font-weight: 800; letter-spacing: 1.4px; }
.hot-sale-pill.mini { padding: 3px 7px; font-size: .62rem; }
.sale-countdown { color: #a23824; font-size: .78rem; font-weight: 800; letter-spacing: .8px; }
.purchase-box {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(36,28,22,.12);
  border-radius: 20px;
  background: var(--ivory);
}
.purchase-box label { font-weight: 650; }
.purchase-box select {
  appearance: none;
  border: 1px solid var(--line);
  background: #fff;
  padding: 12px;
  border-radius: 14px;
}
.purchase-box small { color: var(--muted); }
.product-extra {
  display: grid;
  gap: 7px;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(36,28,22,.10);
  border-radius: 18px;
  background: #fffdf9;
}
.product-extra a {
  color: var(--espresso);
  font-weight: 650;
  text-transform: capitalize;
}

.product-video-player { gap: 10px; }
.web-video-shell {
  min-height: 220px;
  border-radius: 18px;
  background: #120b08;
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 18px;
  color: #fffaf3;
  overflow: hidden;
}
.web-video-shell iframe, .web-video-shell video { width: 100%; height: min(56vw, 420px); min-height: 220px; border: 0; border-radius: 14px; background: #120b08; }
.web-video-play { border: 1px solid rgba(255,255,255,.34); background: var(--espresso); color: white; border-radius: 999px; padding: 13px 18px; font: inherit; font-weight: 750; display: inline-flex; align-items: center; gap: 10px; cursor: pointer; box-shadow: 0 14px 28px rgba(0,0,0,.24); }
.web-video-play span { width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.14); padding-left: 2px; }
.web-video-shell small { color: rgba(255,250,243,.78); text-align: center; }

.checkout-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: clamp(22px, 4vw, 42px);
  align-items: start;
}
.checkout-main, .order-summary {
  border: 1px solid rgba(36,28,22,.12);
  border-radius: 28px;
  background: #fffdf9;
  box-shadow: 0 14px 28px rgba(36,28,22,.08);
  padding: clamp(22px, 4vw, 42px);
}
.checkout-steps {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 18px 0 28px;
}
.checkout-steps span {
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(36,28,22,.12);
  color: var(--muted);
  font-weight: 650;
  font-size: 13px;
}
.checkout-steps .active { color: white; background: var(--espresso); border-color: var(--espresso); }
.checkout-form { display: grid; gap: 16px; }
.checkout-guidance {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border: 1px solid rgba(36,28,22,.12);
  border-radius: 18px;
  background: #fffdf9;
  color: var(--espresso);
}
.checkout-guidance span { color: var(--muted); font-size: 13px; line-height: 1.35; }
.shipping-mode-toggle { width: 100%; min-height: 42px; }
.login-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 18px;
  padding: 13px 15px;
  border: 1px solid rgba(36,28,22,.12);
  border-radius: 18px;
  background: #f8f3ed;
}
.login-option a { color: var(--espresso); font-weight: 900; }
.checkout-form label { display: grid; gap: 7px; color: var(--espresso); font-weight: 650; }
.checkout-form input,
.checkout-form select {
  width: 100%;
  border: 1px solid rgba(36,28,22,.16);
  border-radius: 16px;
  padding: 13px 14px;
  background: #fffaf4;
  font: inherit;
}
.shipping-choice-panel {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(36,28,22,.12);
  border-radius: 20px;
  padding: 14px;
  background: rgba(255,250,244,.72);
}
.shipping-choice-panel > span { color: var(--muted); font-weight: 650; font-size: .88rem; }
.country-chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.country-chip {
  border: 1px solid rgba(36,28,22,.14);
  background: #fffaf4;
  color: var(--espresso);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 900;
  cursor: pointer;
}
.country-chip.active { background: var(--espresso); color: white; border-color: var(--espresso); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.payment-card {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  border: 1px solid rgba(36,28,22,.12);
  border-radius: 18px;
  background: #f8f3ed;
  padding: 16px;
}
.payment-card span { display: block; margin-top: 3px; color: var(--muted); font-size: 13px; }
.card-mock { color: var(--espresso); font-weight: 650; letter-spacing: .08em; }
.checkout-submit { width: 100%; min-height: 52px; margin-top: 4px; }
.order-summary h2 { font-size: 32px; }
.summary-item {
  display: grid;
  grid-template-columns: 82px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(36,28,22,.12);
}
.summary-item img { width: 82px; height: 104px; object-fit: cover; border-radius: 14px; }
.summary-item span { display: block; color: var(--muted); font-size: 13px; margin-top: 4px; }
.order-summary dl { display: grid; gap: 10px; margin: 18px 0; }
.order-summary dl div { display: flex; justify-content: space-between; gap: 14px; }
.order-summary dt { color: var(--muted); }
.order-summary dd { margin: 0; font-weight: 650; }
.order-summary .total { border-top: 1px solid rgba(36,28,22,.12); padding-top: 12px; font-size: 18px; }
.order-summary small { color: var(--muted); line-height: 1.5; }
code { background: rgba(43,27,22,.08); padding: 2px 6px; border-radius: 6px; }

.admin-shell {
  border: 1px solid rgba(36,28,22,.12);
  border-radius: 30px;
  background: #fffdf9;
  box-shadow: 0 14px 28px rgba(36,28,22,.08);
  padding: clamp(22px, 4vw, 42px);
}
.admin-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}
.admin-table { display: grid; gap: 10px; }
.admin-row {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) .65fr .55fr .6fr .8fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(36,28,22,.10);
  border-radius: 18px;
  background: #f8f3ed;
}
.admin-row-head { background: var(--espresso); color: white; font-weight: 650; }
.admin-row small { display: block; color: var(--muted); margin-top: 4px; }
.admin-actions { display: flex; gap: 10px; justify-content: flex-end; }
.admin-actions a { font-weight: 650; }
.admin-form { display: grid; gap: 16px; }
.admin-form label { display: grid; gap: 7px; color: var(--espresso); font-weight: 650; }
.admin-form input, .admin-form textarea, .admin-form select {
  border: 1px solid rgba(36,28,22,.16);
  border-radius: 16px;
  background: white;
  padding: 13px 14px;
  font: inherit;
}
.admin-form-actions { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 10px; }
.metric-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; margin-bottom: 16px; }
.metric-card { background: #fffdf9; border: 1px solid rgba(36,28,22,.12); border-radius: 18px; padding: 14px; display: grid; gap: 6px; }
.metric-card span, .status-pill { color: var(--muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; }
.metric-card strong { font-size: 1.25rem; color: var(--espresso); }
.report-table-wrap { overflow-x: auto; }
.report-table { width: 100%; border-collapse: collapse; min-width: 720px; }
.report-table th, .report-table td { text-align: left; padding: 10px 8px; border-bottom: 1px solid rgba(36,28,22,.1); vertical-align: top; }
.report-table th { color: var(--muted); font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; }
.report-table small { display: block; color: var(--muted); margin-top: 2px; }
.status-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.status-pill { border: 1px solid rgba(36,28,22,.12); border-radius: 999px; padding: 6px 10px; background: #f8f0e7; }
.audit-notes { margin: 10px 0 0; padding-left: 20px; color: var(--muted); line-height: 1.6; }
.price-suggestor-card { border: 1px solid rgba(162,56,36,.22); background: linear-gradient(135deg, #fff8f0, #f7eee4); border-radius: 18px; padding: 14px; display: grid; gap: 8px; margin: 8px 0 14px; }
.price-suggestor-card p, .price-suggestor-card small { margin: 0; color: var(--muted); line-height: 1.45; }
.price-suggestor-card div { display: flex; flex-wrap: wrap; gap: 8px; justify-content: space-between; align-items: center; }
.price-suggestor-card span { color: var(--muted); text-transform: uppercase; letter-spacing: .1em; font-size: .74rem; }
.price-suggestor-card b { color: #a23824; font-size: 1.35rem; }
.visual-chart { display: grid; gap: 10px; }
.chart-row { display: grid; grid-template-columns: 88px minmax(120px, 1fr) 92px minmax(80px, .55fr) 92px; gap: 10px; align-items: center; color: var(--muted); font-size: 13px; }
.chart-track { height: 12px; border-radius: 999px; background: rgba(36,28,22,.08); overflow: hidden; }
.chart-track b { display: block; height: 100%; min-width: 4px; border-radius: inherit; background: linear-gradient(90deg, var(--espresso), #996c3d); }
.chart-track.tax b { background: linear-gradient(90deg, #a23824, #d29b76); }
.chart-track.compact { height: 8px; margin-top: 5px; min-width: 120px; }
.chart-row em { font-style: normal; color: var(--espresso); }
.existing-reference {
  display: grid;
  gap: 6px;
  margin: 0 0 14px;
  padding: 14px 16px;
  border: 1px solid rgba(153,108,61,.24);
  border-radius: 20px;
  background: #fff8ee;
  color: var(--muted);
  font-size: 13px;
}
.existing-reference strong { color: var(--espresso); font-size: 14px; }
.existing-reference span { overflow-wrap: anywhere; }
.status-selector { display: flex; flex-wrap: wrap; gap: 8px; }
.status-choice {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  min-width: 118px;
  padding: 0 14px;
  border: 1px solid rgba(36,28,22,.14);
  border-radius: 999px;
  background: #f8f3ed;
  color: var(--espresso);
  font-weight: 900;
}
.status-choice input { width: auto !important; min-width: 0 !important; flex: 0 0 auto; margin: 0 7px 0 0; padding: 0; }
.status-choice.active { background: var(--espresso); color: #fffdf9; }
.button.danger, .danger { border-color: rgba(127,29,29,.36); color: #7f1d1d; }
.admin-wizard fieldset {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(36,28,22,.12);
  border-radius: 22px;
  padding: 18px;
  background: #fffdf9;
}
.admin-wizard legend {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 8px;
  color: var(--espresso);
  font-weight: 900;
}
.admin-wizard legend span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--espresso);
  color: white;
  font-size: 13px;
}
.info-page {
  max-width: 900px;
  border: 1px solid rgba(36,28,22,.12);
  border-radius: 30px;
  background: #fffdf9;
  box-shadow: 0 14px 28px rgba(36,28,22,.08);
  padding: clamp(24px, 5vw, 54px);
}
.contact-form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}
.contact-form label { display: grid; gap: 7px; font-weight: 650; }
.contact-form input, .contact-form textarea {
  border: 1px solid rgba(36,28,22,.16);
  border-radius: 16px;
  padding: 13px 14px;
  font: inherit;
}
.feedback-link { font-weight: 900; }
.job-card {
  display: grid;
  gap: 6px;
  margin-top: 22px;
  padding: 18px;
  border-radius: 20px;
  background: #f8f3ed;
}
.success-note {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: #edf5ea;
  color: #365038;
  font-weight: 650;
}
.admin-help { color: var(--muted); max-width: 760px; line-height: 1.6; }
.locale-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 4px;
}
.locale-switcher a {
  padding: 8px 11px;
  border: 1px solid rgba(36,28,22,.14);
  border-radius: 999px;
  background: rgba(255,253,249,.72);
  color: var(--espresso);
  font-size: 12px;
  font-weight: 650;
  text-decoration: none;
}
.locale-switcher a.active { background: var(--espresso); color: white; }
.top-locale-switcher {
  margin: 0 2px 0 0;
  flex-wrap: nowrap;
  align-items: center;
}
.top-locale-switcher a {
  min-width: 30px;
  padding: 7px 8px;
  text-align: center;
  font-size: 11px;
}
.translation-stack { display: grid; gap: 16px; }
.translation-card fieldset { margin: 0; }
.danger-note { background: #f8e5df; color: #733324; }
.admin-subnav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px;
  border: 1px solid rgba(36,28,22,.10);
  border-radius: 999px;
  background: #fffdf9;
}
.admin-subnav a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--espresso);
  font-weight: 650;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.admin-subnav a.active { background: var(--espresso); color: #fffdf9; }
.admin-stack { display: grid; gap: 14px; }
.metric-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 12px; margin: 14px 0; }
.metric-card strong { font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1; }
.admin-card {
  display: grid;
  gap: 10px;
  padding: 17px;
  border: 1px solid rgba(36,28,22,.12);
  border-radius: 22px;
  background: #fffdf9;
}
.admin-card small { display: block; color: var(--muted); margin-top: 4px; }
.admin-card p { margin: 0; color: var(--muted); }
.media-gallery { display: grid; gap: .75rem; margin: .75rem 0; }
.media-row { display: grid; grid-template-columns: 88px 1fr; gap: .75rem; align-items: start; border: 1px solid rgba(73,48,36,.12); border-radius: 18px; padding: .65rem; background: rgba(255,255,255,.58); }
.media-row img { width: 88px; height: 88px; object-fit: cover; border-radius: 14px; background: var(--stone); }
.media-row input { width: 100%; margin: .3rem 0; }
.media-row small { display: block; max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--muted); }
.web-media-studio .danger { color: #7f1d1d; border-color: rgba(127,29,29,.26); }
.media-studio-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.media-studio-head strong { font-size: 16px; font-weight: 620; }
.media-studio-head span { color: var(--muted); font-size: 12px; font-weight: 520; }
.media-card { display: grid; grid-template-columns: 86px minmax(0, 1fr); gap: 12px; align-items: start; border: 1px solid rgba(73,48,36,.12); border-radius: 16px; padding: 10px; background: rgba(255,255,255,.68); }
.media-card > img { width: 86px; height: 86px; object-fit: cover; border-radius: 13px; background: var(--stone); }
.media-card-body { display: grid; gap: 8px; min-width: 0; }
.media-card-head { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.media-card-head strong { font-size: 14px; font-weight: 600; }
.media-card-head span { color: var(--muted); font-size: 12px; }
.media-alt-label { display: grid; gap: 4px; font-size: 12px; font-weight: 520; }
.media-alt-label input { min-height: 34px; padding: 8px 10px; border-radius: 10px; font-size: 13px; }
.media-url summary { cursor: pointer; color: var(--muted); font-size: 12px; }
.media-url small { display: block; max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--muted); }
.media-action-group { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 6px; align-items: center; }
.media-action-group > span { grid-column: 1 / -1; color: var(--muted); font-size: 11px; font-weight: 560; letter-spacing: .04em; text-transform: uppercase; }
.media-action-group .button { min-height: 32px; padding: 7px 8px; border-radius: 999px; font-size: 11px; font-weight: 560; letter-spacing: .015em; box-shadow: none; }
.media-action-group.secondary { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.media-upload-panel { display: grid; gap: 8px; margin-top: 10px; padding: 12px; border: 1px dashed rgba(73,48,36,.18); border-radius: 16px; background: rgba(248,243,237,.48); }
.media-upload-panel > strong { font-size: 14px; font-weight: 600; }
.media-upload-panel input[type="file"] { font-size: 12px; }
.site-footer {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 10px;
  max-width: 980px;
  margin: 28px auto 16px;
  padding: 18px 18px 10px;
  border-top: 1px solid rgba(36,28,22,.10);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}
.site-footer strong { display: block; color: var(--espresso); font-size: 16px; letter-spacing: .06em; }
.site-footer span { display: block; margin-top: 2px; }
.site-footer nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.site-footer a { color: var(--espresso); font-weight: 650; }
.site-footer small { font-size: 11px; }

@media (max-width: 860px) {
  .hero, .atelier, .product-detail, .checkout-page { grid-template-columns: 1fr; }
  .hero-panel, .product-detail .product-visual { min-height: 320px; }
  .trust-strip, .grid { grid-template-columns: 1fr; }
  .product-visual img { height: 420px; }
  .card p { min-height: auto; }
  .card-purchase { align-items: stretch; }
  .buy-button { width: 100%; }
}
@media (max-width: 640px) {
  .topbar { align-items: center; flex-direction: row; flex-wrap: wrap; min-height: 0; gap: 10px; }
  .brand { order: 1; width: auto; justify-content: flex-start; padding: 0; }
  .account-menu { order: 2; margin-left: auto; }
  .brand img { width: min(48vw, 160px); max-height: 86px; }
  .topbar nav { order: 3; width: 100%; justify-content: flex-start; gap: 10px; overflow-x: auto; scrollbar-width: none; }
  .topbar nav::-webkit-scrollbar { display: none; }
  .product-search { border-radius: 22px; align-items: stretch; }
  .product-search button { padding: 12px 16px; }
  .pager { align-items: stretch; flex-direction: column; }
  .pager .button { width: 100%; }
  .category-line { justify-content: flex-start; border-radius: 24px; padding: 12px; margin: 16px 0 8px; }
  .category-line a { min-width: auto; padding: 0 15px; min-height: 40px; font-size: 11px; }
  .site-menu-card a, .top-locale-switcher a { font-size: 12px; }
  main { padding: 14px; }
  .hero, .section-head, .collection-hero, .atelier, .checkout-main, .order-summary, .product-detail, .admin-shell { border-radius: 22px; padding: 22px 16px; }
  .admin-head, .admin-row { grid-template-columns: 1fr; align-items: stretch; }
  .admin-head { flex-direction: column; align-items: stretch; }
  .admin-actions { justify-content: flex-start; }
  .two-col { grid-template-columns: 1fr; }
  .payment-card { align-items: flex-start; flex-direction: column; }
  .product-visual img { height: 360px; }
  h1 { font-size: 42px; }
}

/* web-storefront-parity:ee-lt-image-optimizer-search:v1 */
.top-locale-switcher { max-width: 172px; overflow-x: auto; scrollbar-width: none; justify-content: flex-start; padding-bottom: 2px; }
.top-locale-switcher::-webkit-scrollbar { display: none; }
.top-locale-switcher a { flex: 0 0 46px; text-align: center; }
.hero-search { max-width: 540px; margin-top: 12px; }
.product-visual img { width: 100%; height: 100%; object-fit: cover; }


/* incident-responsive-web-polish:mobile-header-cards-v1 */
html { overflow-x: hidden; }
.topbar { backdrop-filter: blur(14px); }
.site-menu-card, .account-menu-card { max-width: min(86vw, 280px); }
.hero, .collection-hero, .product-detail, .checkout-page, .admin-shell { overflow: hidden; }
.card, .product-visual, .hero-panel { min-width: 0; }
.button, button, .buy-button, .category-line a, .site-menu summary, .account-menu summary, .top-icon-button { min-height: 44px; }
@media (max-width: 860px) {
  :root { --topbar-height: 74px; }
  .topbar { min-height: 74px; gap: 10px; padding: 8px 14px; }
  .topbar-actions { gap: 8px; min-width: 0; }
  .brand img { width: clamp(126px, 36vw, 168px); max-height: 62px; }
  .top-locale-switcher { max-width: min(42vw, 172px); }
  .top-locale-switcher a { flex-basis: 40px; min-width: 40px; padding: 7px 6px; font-size: 11px; }
  .account-menu summary, .site-menu summary { width: 38px; height: 38px; }
  .account-icon { width: 17px; height: 17px; }
  .hamburger-icon { width: 17px; height: 14px; gap: 4px; }
  .site-menu-card, .account-menu-card { top: calc(100% + 8px); }
  .hero, .atelier, .product-detail, .checkout-page, .checkout-main, .order-summary, .admin-shell { grid-template-columns: 1fr; padding: 20px 16px; border-radius: 22px; }
  .hero-panel, .product-detail .product-visual { min-height: 260px; }
  .grid { grid-template-columns: 1fr; gap: 14px; }
  .card { border-radius: 22px; }
  .product-visual img { height: auto; min-height: 260px; max-height: 420px; object-fit: cover; }
  .card .product-visual { min-height: 260px; }
  .product-search { display: grid; grid-template-columns: 1fr; gap: 10px; padding: 12px; border-radius: 20px; }
  .product-search input, .product-search button { width: 100%; min-width: 0; }
  .category-line { display: flex; flex-wrap: nowrap; justify-content: flex-start; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .category-line::-webkit-scrollbar { display: none; }
  .category-line a { flex: 0 0 auto; white-space: nowrap; }
  .meta-row, .price-line, .card-purchase { flex-wrap: wrap; gap: 10px; }
}
@media (max-width: 480px) {
  :root { --topbar-height: 68px; }
  main { padding: 10px; }
  .topbar { padding: 7px 10px; gap: 6px; }
  .brand img { width: clamp(116px, 34vw, 146px); max-height: 54px; }
  .topbar-actions { gap: 6px; }
  .top-locale-switcher { max-width: 118px; }
  .top-locale-switcher a { flex-basis: 34px; min-width: 34px; font-size: 10px; padding: 6px 4px; }
  .account-menu summary, .site-menu summary { width: 36px; height: 36px; }
  h1 { font-size: clamp(34px, 11vw, 42px); line-height: 1.02; }
  .hero, .section-head, .collection-hero, .atelier, .checkout-main, .order-summary, .product-detail, .admin-shell { padding: 18px 13px; border-radius: 20px; }
  .hero-panel, .product-detail .product-visual, .card .product-visual { min-height: 230px; }
  .product-visual img { min-height: 230px; max-height: 360px; }
  .site-footer { padding: 18px 12px; }
}


/* incident-mobile-typography-proportions:v1 */
@media (max-width: 640px) {
  body { font-size: 15px; }
  p { line-height: 1.5; }
  .eyebrow { font-size: 10px; letter-spacing: .13em; margin-bottom: 7px; }
  h1 { font-size: clamp(30px, 8.6vw, 38px); line-height: 1.04; letter-spacing: -.025em; margin: 6px 0 12px; }
  h2 { font-size: clamp(23px, 6.8vw, 30px); line-height: 1.08; letter-spacing: -.02em; margin-bottom: 10px; }
  .hero p, .collection-hero p, .section-head p, .atelier p, .product-copy p { font-size: 15px; line-height: 1.52; }
  .hero-panel p { font-size: 20px; line-height: 1.18; }
  .card-body { padding: 14px; gap: 8px; }
  .card h2 { font-size: 22px; line-height: 1.12; margin-bottom: 6px; }
  .card p { font-size: 14px; line-height: 1.45; min-height: 0; margin: 4px 0 8px; }
  .card strong, .price-line { font-size: 15px; letter-spacing: .02em; }
  .button, .buy-button { font-size: 12px; letter-spacing: .08em; padding: 11px 15px; }
  .category-line a { font-size: 10px; letter-spacing: .08em; min-height: 38px; }
  .trust-strip strong { font-size: 14px; }
  .trust-strip span, .card-purchase span { font-size: 11px; }
}
@media (max-width: 390px) {
  h1 { font-size: clamp(28px, 8.2vw, 34px); }
  h2 { font-size: clamp(21px, 6.2vw, 27px); }
  .hero p, .collection-hero p, .section-head p, .atelier p, .product-copy p { font-size: 14px; }
  .card h2 { font-size: 20px; }
  .product-visual img, .hero-panel, .product-detail .product-visual, .card .product-visual { min-height: 210px; max-height: 320px; }
}


/* incident-mobile-header-order:left-logo-right-actions:v1 */
@media (max-width: 640px) {
  .brand { order: 1; }
  .topbar-actions { order: 2; margin-left: auto; }
  .site-menu, .account-menu { order: initial; }
}


/* incident-mobile-checkout-heading-scale:v1 */
@media (max-width: 640px) {
  .order-summary h2 { font-size: 24px; line-height: 1.1; }
  .summary-item { gap: 10px; }
  .summary-item img { width: 70px; height: 90px; border-radius: 12px; }
}


/* reviewer-polish:language-category-grid-card-proportions:v1 */
.language-menu { position: relative; flex: 0 0 auto; }
.language-menu summary { min-width: 58px; height: 40px; display: inline-flex; align-items: center; justify-content: center; gap: 4px; border: 1px solid rgba(36,28,22,.18); border-radius: 999px; background: #fffdf9; color: var(--espresso); list-style: none; cursor: pointer; font-size: 12px; font-weight: 750; letter-spacing: .08em; box-shadow: 0 8px 18px rgba(36,17,12,.08); }
.language-menu summary::-webkit-details-marker { display: none; }
.language-menu-card { position: absolute; top: calc(100% + 8px); right: 0; min-width: 154px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px; padding: 10px; border: 1px solid rgba(36,28,22,.14); border-radius: 18px; background: #fffdf9; box-shadow: var(--shadow); z-index: 16; }
.language-menu-card a { min-height: 36px; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; text-decoration: none; color: var(--espresso); font-size: 12px; font-weight: 700; }
.language-menu-card a.active { background: var(--espresso); color: #fffdf9; }
.top-locale-switcher { display: none; }
.account-icon { font-size: 17px; transform: none; }
.category-line { display: grid; grid-template-columns: repeat(auto-fit, minmax(116px, 1fr)); white-space: normal; overflow: visible; border-radius: 28px; justify-content: stretch; }
.category-line a { min-width: 0; min-height: 40px; padding: 0 12px; font-size: 11px; letter-spacing: .08em; }
.grid { grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr)); align-items: start; }
.card-body { min-height: 0; padding: 15px; }
.card h2 { font-size: 24px; line-height: 1.08; margin: 0 0 6px; }
.card p { min-height: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin: 4px 0 10px; }
.card-purchase { padding-top: 10px; }
.product-visual { min-height: 0; aspect-ratio: 4 / 5; }
.product-visual img { height: 100%; object-fit: cover; }
.product-search input { min-height: 44px; }
@media (min-width: 700px) and (max-width: 1099px) { .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .hero { padding-block: 16px; } .hero-panel { min-height: 160px; } .hero-panel img { max-height: 140px; width: min(82%, 250px); } .hero-panel p { font-size: 18px; } .language-menu summary { min-width: 48px; height: 36px; } .category-line { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; padding: 10px; border-radius: 22px; } .category-line a { min-height: 38px; font-size: 10px; } .card h2 { font-size: 20px; } .product-search { border-radius: 20px; } .product-search input, .product-search button { min-height: 44px; } }

/* web-admin-mobile-cleanup:alignment-typography-auth-menus:v1 */
body { font-weight: 400; overflow-x: hidden; }
strong, b { font-weight: 620; }
.button, .buy-button, .admin-actions a, .account-menu-card a, .site-menu-card a, .contact-form label, .admin-form label { font-weight: 560; }
.topbar { isolation: isolate; }
.language-menu[open] { z-index: 40; }
.account-menu[open] { z-index: 38; }
.site-menu[open] { z-index: 36; }
.account-menu-card form { margin: 0; }
.account-menu-card button {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--espresso);
  text-align: left;
  padding: 10px 12px;
  border-radius: 12px;
  font: inherit;
  font-size: 13px;
  font-weight: 560;
  cursor: pointer;
}
.account-menu-card button:hover { background: #f8f3ed; }
.admin-nav-wrap { display: grid; gap: 10px; margin-bottom: 18px; }
.admin-logout { display: flex; justify-content: flex-end; margin: 0; }
.admin-logout .button { min-height: 38px; padding: 9px 14px; }
.admin-shell, .info-page, .admin-card, .admin-row, .admin-form fieldset { overflow-wrap: anywhere; }
.admin-form input, .admin-form textarea, .admin-form select, .contact-form input, .contact-form textarea { min-width: 0; width: 100%; font-size: 15px; }
.admin-form fieldset {
  display: grid;
  gap: 13px;
  min-width: 0;
  border: 1px solid rgba(36,28,22,.10);
  border-radius: 20px;
  padding: 16px;
  margin: 0;
  background: rgba(255,253,249,.76);
}
.admin-form legend {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  max-width: 100%;
  padding: 0 7px;
  color: var(--espresso);
  font-size: 14px;
  font-weight: 580;
}
.admin-form legend span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  height: 26px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(36,17,12,.92);
  color: white;
  font-size: 12px;
  font-weight: 600;
}
.admin-wizard legend { font-weight: 580; }
.admin-wizard legend span { width: 26px; height: 26px; font-weight: 600; }
.translation-card { padding: 13px; }
.translation-card fieldset { border-color: rgba(36,28,22,.10); background: #fffdf9; }
.translation-card legend { font-weight: 580; }
.admin-help, .existing-reference, .admin-card small { overflow-wrap: anywhere; }
.media-row { min-width: 0; }
.media-row > div { min-width: 0; }

@media (max-width: 700px) {
  body { font-size: 14px; }
  main { width: 100%; max-width: 100%; padding: 10px; }
  .topbar { flex-wrap: nowrap; min-height: 62px; padding: 7px 10px; gap: 8px; }
  .brand { flex: 1 1 auto; min-width: 0; }
  .brand img { width: clamp(118px, 36vw, 150px); max-height: 50px; }
  .topbar-actions { flex: 0 0 auto; gap: 6px; }
  .language-menu summary { min-width: 44px; height: 34px; font-size: 11px; box-shadow: none; }
  .account-menu summary, .site-menu summary { width: 34px; height: 34px; box-shadow: none; }
  .language-menu-card, .account-menu-card, .site-menu-card { position: fixed; top: 58px; right: 10px; max-width: calc(100vw - 20px); max-height: calc(100dvh - 76px); overflow: auto; border-radius: 16px; box-shadow: 0 16px 32px rgba(36,17,12,.18); }
  .language-menu-card { grid-template-columns: repeat(2, minmax(0, 1fr)); width: min(220px, calc(100vw - 20px)); }
  .account-menu-card, .site-menu-card { width: min(230px, calc(100vw - 20px)); }
  h1 { font-size: clamp(25px, 7vw, 32px); line-height: 1.08; letter-spacing: -.015em; }
  h2 { font-size: clamp(20px, 5.8vw, 26px); }
  .eyebrow { font-size: 9px; letter-spacing: .11em; }
  .hero, .section-head, .collection-hero, .atelier, .checkout-main, .order-summary, .product-detail, .admin-shell, .info-page { padding: 16px 12px; border-radius: 18px; overflow: visible; }
  .admin-head { gap: 10px; margin-bottom: 14px; }
  .admin-head h1 { margin-bottom: 4px; }
  .admin-subnav { justify-content: flex-start; overflow-x: auto; border-radius: 18px; padding: 6px; scrollbar-width: none; }
  .admin-subnav::-webkit-scrollbar { display: none; }
  .admin-subnav a { flex: 0 0 auto; min-height: 34px; padding: 0 12px; font-size: 10px; letter-spacing: .055em; font-weight: 560; text-decoration: none; }
  .admin-logout { justify-content: stretch; }
  .admin-logout .button { width: 100%; }
  .admin-table { display: grid; gap: 12px; }
  .admin-row-head { display: none; }
  .admin-row { display: grid; grid-template-columns: 1fr; gap: 8px; padding: 12px; border-radius: 16px; background: #fffaf4; }
  .admin-row > span { display: grid; grid-template-columns: 92px minmax(0, 1fr); gap: 10px; align-items: start; min-width: 0; }
  .admin-row > span::before { content: attr(data-label); color: var(--muted); font-size: 11px; font-weight: 520; text-transform: uppercase; letter-spacing: .055em; }
  .admin-row > span:first-child { grid-template-columns: 1fr; }
  .admin-row > span:first-child::before { margin-bottom: -4px; }
  .admin-actions { justify-content: flex-start; flex-wrap: wrap; gap: 8px; }
  .admin-actions a, .admin-actions button, .admin-form-actions .button, .web-media-studio .button { flex: 1 1 auto; min-width: 92px; min-height: 38px; padding: 9px 12px; font-size: 12px; text-align: center; text-decoration: none; }
  .admin-form { gap: 12px; }
  .admin-form label { gap: 5px; font-size: 13px; font-weight: 520; }
  .admin-form input, .admin-form textarea, .admin-form select { border-radius: 12px; padding: 11px 12px; font-size: 14px; }
  .admin-form fieldset { padding: 13px; border-radius: 16px; }
  .admin-help { font-size: 12px; line-height: 1.45; }
  .status-selector { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 7px; }
  .status-choice { min-width: 0; min-height: 38px; padding: 0 8px; font-size: 12px; font-weight: 560; }
  .existing-reference { font-size: 12px; border-radius: 16px; padding: 12px; }
  .media-row { grid-template-columns: 64px minmax(0, 1fr); gap: 10px; }
  .media-row img { width: 64px; height: 64px; }
  .translation-stack { gap: 12px; }
  .translation-card { padding: 10px; }
  .translation-card legend { font-size: 13px; }
  .success-note { display: block; border-radius: 14px; font-size: 12px; }
  .card, .admin-card { border-radius: 18px; }
}

/* web-admin-mobile-cleanup:second-pass-visual-qa:v2 */
@media (max-width: 700px) {
  .admin-row.admin-row-head { display: none !important; }
  .admin-head h1, .page-admin h1 { font-size: clamp(28px, 8.2vw, 34px); line-height: 1.08; }
  .page-admin .eyebrow, .info-page .eyebrow { font-size: 9px; letter-spacing: .10em; font-weight: 540; }
  .button, .buy-button, .product-search button { font-size: 13px; font-weight: 560; letter-spacing: .035em; min-height: 42px; padding: 10px 14px; }
  .admin-head .button, .admin-logout .button, .contact-form .button { width: 100%; }
  .contact-form label, .admin-form label { font-size: 14px; font-weight: 500; color: #24110c; }
  .contact-form input, .admin-form input, .admin-form textarea, .admin-form select { font-weight: 400; }
  .contact-form input::placeholder, .admin-form input::placeholder, .admin-form textarea::placeholder { font-weight: 400; color: #7b716a; }
  .admin-subnav a { font-weight: 540; letter-spacing: .035em; }
  .admin-help, .info-page p, .admin-card p { font-size: 14px; line-height: 1.48; }
  .info-page h1 { font-size: clamp(30px, 8.5vw, 36px); }
  .site-footer strong { font-size: 20px; letter-spacing: .04em; }
  .site-footer a { font-weight: 560; }
  .admin-subnav { max-width: 100%; }
  .web-media-studio { min-width: 0; max-width: 100%; overflow: hidden; }
  .web-media-studio > *, .web-media-studio input[type="file"], .web-media-studio .admin-actions, .web-media-studio pre { max-width: 100%; width: 100%; min-width: 0; }
  .web-media-studio .admin-actions { display: grid; grid-template-columns: 1fr; }
  .media-card { grid-template-columns: 74px minmax(0, 1fr); gap: 9px; padding: 9px; border-radius: 14px; }
  .media-card > img { width: 74px; height: 74px; border-radius: 12px; }
  .media-card-head strong { font-size: 13px; }
  .media-alt-label input { min-height: 32px; padding: 7px 9px; }
  .media-action-group, .media-action-group.secondary { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px; }
  .media-action-group .button { min-height: 31px; padding: 6px 7px; font-size: 11px; }
  .media-upload-panel { padding: 10px; border-radius: 14px; }
  .web-media-studio pre, pre.admin-help { white-space: pre-wrap; word-break: break-word; }
  table.admin-table { display: block; width: 100%; border-collapse: collapse; }
  table.admin-table thead { display: none; }
  table.admin-table tbody, table.admin-table tr, table.admin-table td { display: block; width: 100%; }
  table.admin-table tr { padding: 10px 0; border-top: 1px solid rgba(36,28,22,.10); }
  table.admin-table td { display: grid; grid-template-columns: 108px minmax(0, 1fr); gap: 8px; padding: 4px 0; font-size: 12px; line-height: 1.25; text-align: left; }
  table.admin-table td::before { color: var(--muted); font-weight: 540; text-transform: uppercase; letter-spacing: .035em; }
  table.admin-table td:nth-child(1)::before { content: 'Qty'; }
  table.admin-table td:nth-child(2)::before { content: 'Packaging'; }
  table.admin-table td:nth-child(3)::before { content: 'Parcels'; }
  table.admin-table td:nth-child(4)::before { content: 'Carrier'; }
  table.admin-table td:nth-child(5)::before { content: 'Handling'; }
  table.admin-table td:nth-child(6)::before { content: 'Total'; }
  table.admin-table td:nth-child(7)::before { content: 'Provider'; }
}

/* web-admin-mobile-cleanup:final-polish-macbook-status:v3 */
.admin-head { align-items: flex-start; }
.admin-head h1 { max-width: 980px; overflow-wrap: anywhere; }
.status-choice { white-space: nowrap; word-break: normal; overflow-wrap: normal; font-weight: 560; }
.status-choice input { flex: 0 0 auto; }
@media (min-width: 701px) {
  .page-admin .admin-head h1 { font-size: clamp(46px, 6vw, 72px); line-height: .98; }
  .admin-head .button { align-self: center; min-width: 92px; }
  .admin-logout .button { min-width: 84px; padding-inline: 16px; }
  .admin-form label { font-weight: 540; }
  .admin-form input, .admin-form textarea, .admin-form select { font-weight: 420; }
  .admin-form .admin-help, .existing-reference, .admin-card small { font-weight: 400; }
  table.admin-table { font-size: 14px; line-height: 1.35; }
}
@media (max-width: 700px) {
  .status-selector { display: flex; flex-wrap: wrap; gap: 8px; }
  .status-choice { flex: 0 1 136px; min-width: 132px; padding-inline: 12px; justify-content: center; gap: 7px; font-size: 12px; font-weight: 560; }
  .admin-form .status-choice input, .status-choice input { width: auto !important; min-width: 0 !important; flex: 0 0 auto; margin: 0 7px 0 0; padding: 0; }
}

/* web-storefront-parity:header-cart-favorites-icons:v1 */
.language-menu { position: relative; flex: 0 0 auto; }
.language-menu summary { min-width: 58px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; gap: 6px; border: 1px solid rgba(36,28,22,.18); border-radius: 999px; background: #fffdf9; color: var(--espresso); cursor: pointer; list-style: none; font-size: 12px; font-weight: 750; box-shadow: 0 8px 20px rgba(36,17,12,.08); }
.language-menu summary::-webkit-details-marker { display: none; }
.language-menu-card { position: absolute; top: calc(100% + 10px); right: 0; min-width: 132px; display: grid; gap: 4px; padding: 10px; border: 1px solid rgba(36,28,22,.14); border-radius: 18px; background: #fffdf9; box-shadow: var(--shadow); z-index: 12; }
.language-menu-card a { padding: 9px 10px; border-radius: 12px; color: var(--ink); text-decoration: none; font-size: 12px; font-weight: 700; }
.language-menu-card a.active, .language-menu-card a:hover { background: #f8f3ed; color: var(--espresso); }
.product-detail { grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); }
.product-detail .product-visual { width: 100% !important; max-width: 100% !important; min-width: 0 !important; overflow: hidden; }
.product-detail .product-visual img { display: block; width: 100% !important; max-width: 100% !important; height: 520px !important; object-fit: cover; }
.product-copy { min-width: 0; }
.product-copy h1 { overflow-wrap: anywhere; }
@media (max-width: 860px) {
  .product-detail .product-visual img { height: auto !important; min-height: 260px; max-height: 420px; }
  .top-icon-button, .account-menu summary, .site-menu summary { width: 38px; height: 38px; min-width: 38px; min-height: 38px; }
}
@media (max-width: 640px) {
  .topbar { flex-wrap: nowrap; }
  .brand img { width: min(30vw, 112px); max-height: 48px; }
  .topbar-actions { gap: 5px; }
  .language-menu summary { min-width: 44px; width: 44px; min-height: 34px; height: 34px; font-size: 11px; padding: 0; }
  .language-menu summary span:last-child { display: none; }
  .top-icon-button, .account-menu summary, .site-menu summary { width: 34px; height: 34px; min-width: 34px; min-height: 34px; }
  .icon-badge { top: -6px; right: -5px; }
}

.product-gallery-browser { display: grid; gap: 8px; align-self: start; margin-top: 10px; }
.product-gallery-grid { display: flex; gap: 8px; overflow-x: auto; padding: 0 2px 8px; scrollbar-width: thin; }
.product-gallery-thumb { flex: 0 0 72px; width: 72px; height: 72px; display: block; border: 0; border-radius: 16px; padding: 0; background: transparent; cursor: pointer; overflow: hidden; position: relative; }
.product-gallery-thumb.active { box-shadow: 0 8px 18px rgba(36,28,22,.14); }
.product-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; background: var(--stone); display: block; }
.product-gallery-play { position: absolute; inset: 0; display: grid; place-items: center; color: white; background: rgba(18,11,8,.24); font-size: 18px; text-shadow: 0 2px 8px rgba(0,0,0,.36); }
.gallery-main-video { min-height: 560px; border-radius: 24px; }
@media (min-width: 860px) { .product-detail-gallery { min-width: 0; } }
.card .product-gallery-browser { margin: 10px 12px 0; }
.card .product-gallery-thumb { flex-basis: 52px; width: 52px; height: 52px; border-radius: 12px; }
.card .product-gallery-thumb img { border-radius: 12px; }


/* incident-web-product-card-image-gap:v1 */
.card .product-visual.has-image {
  aspect-ratio: auto;
  min-height: 0;
  background: transparent;
}
.card .product-visual.has-image img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: none;
  object-fit: contain;
}
.card-body {
  gap: 8px;
}
.card-body .eyebrow,
.card-body h2,
.card-body p {
  margin-top: 0;
}
.card-purchase {
  margin-top: 0;
  padding-top: 4px;
}
@media (max-width: 700px) {
  .card-body { padding: 18px 20px 20px; gap: 10px; }
  .card p { margin: 2px 0 4px; }
  .card-purchase { padding-top: 2px; }
  .card-action-row { margin-top: 8px; }
}


/* incident-web-product-detail-mobile-layout:v1 */
.product-copy {
  gap: 12px;
}
.product-copy .eyebrow,
.product-copy h1,
.product-copy p,
.product-copy .price-line {
  margin-top: 0;
}
.product-copy h1 {
  margin-bottom: 4px;
}
.product-copy > p:not(.eyebrow) {
  max-width: 56ch;
  margin-bottom: 0;
}
.product-copy .price-line {
  margin: 2px 0 4px;
}
.purchase-box {
  align-self: start;
  width: min(100%, 460px);
}
.detail-action-row .button {
  flex: 1 1 0;
  min-width: 0;
  min-height: 48px;
}
@media (max-width: 860px) {
  .product-detail {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    padding: 16px 14px !important;
    border-radius: 22px;
  }
  .product-detail .product-visual {
    min-height: 0 !important;
    aspect-ratio: auto !important;
    border-radius: 20px !important;
  }
  .product-detail .product-visual img {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: 62vh !important;
    object-fit: contain !important;
    background: #f2eee8;
  }
  .product-copy {
    justify-content: flex-start !important;
    gap: 10px;
  }
  .product-copy h1 {
    font-size: clamp(34px, 10vw, 48px);
    line-height: 1.02;
    margin: 0;
  }
  .product-copy > p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.45;
    margin: 0;
  }
  .locale-switcher {
    margin: 4px 0 2px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .locale-switcher a {
    min-width: 48px;
    min-height: 42px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .purchase-box {
    width: 100%;
    padding: 14px;
    border-radius: 20px;
    gap: 12px;
  }
  .favorite-detail-button {
    width: 100%;
    min-height: 48px;
  }
  .detail-action-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 0;
  }
  .detail-action-row .button {
    width: 100%;
    min-height: 50px;
    padding: 10px 12px;
    border-radius: 999px;
    line-height: 1.15;
    white-space: normal;
    text-align: center;
  }
  .detail-action-row .cart-icon, .detail-action-row .bag-icon {
    display: none;
  }
  .purchase-box small {
    font-size: 13px;
    line-height: 1.35;
  }
  .product-gallery-browser {
    grid-column: auto !important;
    margin-top: 0 !important;
  }
}
@media (max-width: 420px) {
  .product-detail {
    padding: 14px 12px !important;
    gap: 14px !important;
  }
  .product-copy h1 {
    font-size: clamp(30px, 9.4vw, 40px);
  }
  .detail-action-row {
    grid-template-columns: 1fr 1fr;
  }
}


/* incident-web-cart-icon-looks-like-cart:v1 */
.cart-header-button .cart-icon { width: 19px; height: 14px; }
.cart-header-button .cart-icon::after { bottom: -6px; }

/* incident-web-header-language-circle:v1 */
.language-menu summary {
  width: 38px;
  height: 38px;
  min-width: 38px;
  min-height: 38px;
  padding: 0;
  border-radius: 999px;
  aspect-ratio: 1 / 1;
  gap: 0;
  letter-spacing: 0;
}
.language-menu summary span:first-child {
  font-size: 11px;
  line-height: 1;
  text-transform: uppercase;
}
.language-menu summary span:last-child {
  display: none;
}
@media (max-width: 640px) {
  .language-menu summary,
  .top-icon-button,
  .account-menu summary,
  .site-menu summary {
    width: 34px;
    height: 34px;
    min-width: 34px;
    min-height: 34px;
  }
}
