:root {
  --finreim-navy: #0D1B2A;
  --finreim-red: #D71920;
  --finreim-gray: #6B6B6B;
  --finreim-white: #F5F5F5;
  --bg: #f6f4ef;
  --panel: #ffffff;
  --text: #0D1B2A;
  --muted: #4f5a52;
  --line: #ddd8cf;
  --ink: #0D1B2A;
  --accent: #0D1B2A;
  --accent-dark: #07111d;
  --warn: #a55a00;
  --danger: #D71920;
  --shadow: 0 18px 50px rgba(22, 26, 23, .12);
}

* { box-sizing: border-box; }
html, body { max-width: 100%; overflow-x: hidden; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  background: #fff;
  color: var(--text);
  border: 2px solid var(--accent);
  border-radius: 6px;
  padding: 10px 12px;
}
.skip-link:focus { transform: translateY(0); }
:focus-visible {
  outline: 3px solid #D71920;
  outline-offset: 3px;
}

.admin-bar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px clamp(16px, 3vw, 34px);
  background: #111513;
  color: #fff;
}
.admin-bar a, .admin-bar button {
  color: #fff;
  background: transparent;
  border: 0;
  padding: 6px 8px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(16px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(246, 244, 239, .9);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 20;
}
.admin-bar:not([hidden]) + .site-header { top: 42px; }
.brand { display: inline-flex; align-items: center; min-width: 0; }
.site-logo { display: block; width: auto; height: 46px; max-width: min(260px, 52vw); object-fit: contain; }
.top-nav { display: flex; gap: 18px; color: var(--muted); font-size: 14px; }
.top-nav a { min-height: 44px; display: inline-flex; align-items: center; }
.top-nav a:hover { color: var(--text); }
.cart-link { gap: 6px; }
.cart-count {
  min-width: 22px;
  min-height: 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  font-size: 12px;
  font-weight: 800;
}

.app-shell { min-height: calc(100vh - 150px); }
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(34px, 6vw, 78px) clamp(16px, 4vw, 56px) 26px;
}
.hero h1 { margin: 0; font-size: clamp(38px, 7vw, 82px); line-height: 1.02; letter-spacing: 0; }
.hero p { color: var(--muted); font-size: 18px; line-height: 1.55; max-width: 680px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.button, .ghost-button, .danger-button {
  min-height: 42px;
  border-radius: 6px;
  border: 1px solid transparent;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.button { background: var(--accent); color: #fff; }
.button:hover { background: var(--accent-dark); }
.button:disabled { background: #aeb7b2; cursor: not-allowed; }
.ghost-button { background: transparent; border-color: var(--line); color: var(--text); }
.danger-button { background: #fff5f2; border-color: #e0b0a2; color: var(--danger); }
.strap-visual {
  position: relative;
  min-height: 330px;
  border-radius: 8px;
  overflow: hidden;
  background: radial-gradient(circle at 35% 22%, rgba(215,25,32,.18), transparent 34%), linear-gradient(135deg, #0D1B2A, #22354a);
  box-shadow: var(--shadow);
}
.strap-visual::before, .strap-visual::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) rotate(-9deg);
  width: 86px;
  background: var(--strap-color, #111);
  border-radius: 22px;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.12), 0 16px 34px rgba(0,0,0,.22);
}
.strap-visual::before { top: 28px; height: 136px; }
.strap-visual::after { top: 168px; height: 150px; }
.strap-hole {
  position: absolute;
  left: 50%;
  top: 80px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  transform: translateX(-50%) rotate(-9deg);
  box-shadow: 0 28px rgba(255,255,255,.35), 0 56px rgba(255,255,255,.35), 0 84px rgba(255,255,255,.35);
}

.section {
  padding: 24px clamp(16px, 4vw, 56px) 56px;
}
.breadcrumbs {
  padding: 18px clamp(16px, 4vw, 56px) 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}
.breadcrumbs a { text-decoration: underline; text-underline-offset: 3px; }
.about-section {
  padding-top: 42px;
  padding-bottom: 64px;
}
.about-page {
  padding-top: clamp(42px, 8vw, 92px);
}
.about-copy {
  max-width: 820px;
}
.about-copy .eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.about-copy h1, .about-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1;
  letter-spacing: 0;
}
.about-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  margin: 0 0 14px;
}
.about-copy .ghost-button {
  margin-top: 8px;
}
.trust-section { padding-top: 8px; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.trust-grid article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
}
.trust-grid h2 { margin: 0 0 8px; font-size: 18px; }
.trust-grid p { margin: 0; color: var(--muted); line-height: 1.55; }
.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.toolbar h2 { margin: 0; font-size: 24px; }
.catalog-tools { display: flex; align-items: end; gap: 10px; flex-wrap: wrap; }
.search-field { display: grid; gap: 6px; min-width: min(280px, 70vw); color: var(--muted); font-size: 13px; font-weight: 700; }
.search-field input {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 11px;
  color: var(--text);
}
.filter-toggle { display: none; }
.catalog-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 22px;
}
.filters {
  align-self: start;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
}
.field { display: grid; gap: 7px; margin-bottom: 14px; }
.field label, .field-title { font-size: 13px; font-weight: 700; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 6px;
  padding: 10px 11px;
  color: var(--text);
}
.chips, .swatches { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  border-radius: 999px;
  padding: 8px 11px;
  min-width: 44px;
}
.chip.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.swatch {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 5px 9px 5px 5px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.swatch i { width: 18px; height: 18px; border-radius: 50%; border: 1px solid rgba(0,0,0,.14); background: var(--swatch); }
.swatch.active { border-color: var(--ink); box-shadow: 0 0 0 2px var(--ink); }
.chip.not-fit {
  opacity: .48;
  cursor: not-allowed;
  text-decoration: line-through;
}
.chip.not-fit span {
  display: block;
  font-size: 11px;
  line-height: 1.2;
  text-decoration: none;
}
.strap-configurator {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.35fr);
  gap: 16px;
  align-items: start;
  margin: 0 clamp(16px, 4vw, 56px) 24px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.strap-configurator h2 { margin: 0 0 8px; font-size: 22px; }
.strap-configurator p { margin: 0; color: var(--muted); line-height: 1.55; }
.config-popular {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  margin-top: 12px;
}
.config-popular > span, .config-suggestion-group > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.config-form {
  display: grid;
  grid-template-columns: minmax(140px, .55fr) minmax(180px, 1fr) auto auto;
  gap: 10px;
  align-items: end;
}
.config-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.config-form input, .config-form select {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 11px;
  color: var(--text);
  background: #fff;
}
.config-suggestions {
  grid-column: 2;
  display: grid;
  gap: 10px;
}
.config-suggestion-group {
  display: grid;
  gap: 7px;
}
.config-suggestion-group > div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.model-chip {
  display: inline-grid;
  gap: 2px;
  min-height: 44px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  text-align: left;
}
.model-chip:hover, .model-chip:focus-visible {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(26, 115, 81, .12);
}
.model-chip span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.config-result {
  grid-column: 2;
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid #cfe0d0;
  border-radius: 8px;
  background: #f4fbf3;
  line-height: 1.45;
}
.config-result span, .config-warning { color: var(--muted); }
.config-result .button {
  width: fit-content;
  margin-top: 4px;
}
.config-result-warning {
  border-color: #e8d3a4;
  background: #fff8e8;
}
.config-warning {
  grid-column: 2;
  margin: 0;
  padding: 10px 12px;
  border: 1px solid #e8d3a4;
  border-radius: 8px;
  background: #fff8e8;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.product-card {
  display: grid;
  gap: 12px;
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 8px 22px rgba(13, 27, 42, .06);
  cursor: pointer;
  transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}
.product-card:hover {
  border-color: rgba(215, 25, 32, .35);
  box-shadow: 0 12px 28px rgba(13, 27, 42, .1);
  transform: translateY(-1px);
}
.product-card:focus-visible {
  outline: 3px solid rgba(215, 25, 32, .28);
  outline-offset: 3px;
}
.product-card h3, .product-card p { margin: 0; }
.product-card h3 { font-size: 17px; line-height: 1.22; }
.product-card h3 a { color: inherit; text-decoration: none; }
.product-card .price { font-size: 21px; white-space: nowrap; }
.product-card-media-link { display: block; color: inherit; text-decoration: none; }
.product-card .card-body { display: grid; gap: 9px; min-width: 0; }
.card-title-row { display: grid; grid-template-columns: minmax(0, 1fr); gap: 5px; }
.card-compat {
  color: #46535f;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}
.card-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}
.card-facts span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}
.stock-pill.in-stock {
  color: #176332;
  border-color: #b8d7c0;
  background: #eef8f0;
}
.stock-pill.out-of-stock {
  color: #7f1d1d;
  border-color: #efc6c6;
  background: #fff1f1;
}
.stock-pill.low-stock {
  color: #7a4a00;
  border-color: #edd39a;
  background: #fff8e8;
}
.width-row { gap: 5px; }
.product-meta { display: flex; flex-wrap: wrap; gap: 8px; color: var(--muted); font-size: 13px; }
.product-media, .product-media-large {
  display: grid;
  place-items: center;
  min-height: 190px;
  border-radius: 8px;
  overflow: hidden;
  background: #ece8df;
}
.product-card .product-media {
  border: 1px solid rgba(13, 27, 42, .08);
  background: #f3f0e8;
}
.product-media img, .product-media picture {
  display: block;
  width: 100%;
  height: 100%;
}
.product-media img {
  object-fit: cover;
}
.product-media-large { min-height: 420px; }
.product-gallery { display: grid; gap: 12px; align-self: start; }
.gallery-main {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(420px, 58vw, 680px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 0;
  overflow: hidden;
}
.gallery-main picture, .gallery-main img, .gallery-thumb picture, .gallery-thumb img {
  display: block;
  width: 100%;
  height: 100%;
}
.gallery-main img, .gallery-thumb img { object-fit: cover; }
.gallery-badge {
  position: absolute;
  right: 12px;
  bottom: 12px;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(13, 27, 42, .82);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  gap: 8px;
}
.gallery-thumb {
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  padding: 0;
  overflow: hidden;
}
.gallery-thumb.active {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(26, 115, 81, .18);
}
.product-page {
  display: grid;
  grid-template-columns: minmax(360px, 1.08fr) minmax(320px, .92fr);
  gap: clamp(18px, 3vw, 36px);
  padding: 26px clamp(16px, 4vw, 56px) 56px;
}
.product-info { display: grid; gap: 12px; align-content: start; }
.product-info h1 { margin: 0; font-size: clamp(30px, 4.4vw, 52px); line-height: 1.04; }
.product-info p { margin: 0; line-height: 1.6; }
.price { font-size: 26px; font-weight: 800; }
.product-buybox {
  display: grid;
  gap: 10px;
  padding-bottom: 4px;
}
.product-lead { color: #46535f; font-size: 16px; }
.buy-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.buy-meta .price { font-size: clamp(30px, 4vw, 42px); }
.product-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.cro-trustbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px clamp(16px, 4vw, 56px);
  border-block: 1px solid var(--line);
  background: #fff;
}
.cro-trustbar.compact {
  padding: 0;
  border: 0;
  background: transparent;
}
.cro-trustbar span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid #d9e4dd;
  border-radius: 999px;
  background: #f6fbf7;
  color: #264b35;
  font-size: 12px;
  font-weight: 800;
}
.product-trust-strip span, .selected-variant span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #46535f;
  font-size: 12px;
  font-weight: 800;
}
.product-panel {
  display: grid;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.product-panel h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
}
.choice-block { display: grid; gap: 8px; }
.selected-variant { display: flex; flex-wrap: wrap; gap: 6px; }
.trust-points { display: grid; gap: 8px; }
.trust-points div {
  display: grid;
  gap: 2px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.trust-points div:last-child { border-bottom: 0; }
.trust-points span { color: var(--muted); line-height: 1.45; }
.info-list.compact { margin-top: 0; }
.product-faq details {
  border-top: 1px solid var(--line);
  padding: 10px 0;
}
.product-faq details:last-child { border-bottom: 1px solid var(--line); }
.product-faq summary {
  cursor: pointer;
  font-weight: 800;
}
.product-faq p { color: var(--muted); padding-top: 8px; }
.compatibility-panel .config-card { margin-top: 2px; }
.payment-explainer {
  color: var(--muted);
  font-size: 14px;
}
.related-products, .cart-related-grid {
  display: grid;
  gap: 8px;
}
.related-product, .cart-related-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: inherit;
  text-decoration: none;
}
.related-product .product-media, .related-product .strap-visual,
.cart-related-item .product-media, .cart-related-item .strap-visual {
  min-height: 72px;
  height: 72px;
}
.related-product span, .cart-related-item span { display: grid; gap: 4px; min-width: 0; }
.related-product small, .cart-related-item small { color: var(--muted); }
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.qty-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.qty-row input { width: 82px; min-height: 42px; border: 1px solid var(--line); border-radius: 6px; padding: 8px 10px; }
.notice, .success, .error {
  border-radius: 8px;
  padding: 12px;
  line-height: 1.45;
}
.notice { background: #f1f5f4; border: 1px solid var(--line); }
.success { background: #eef8ef; border: 1px solid #bddfc1; }
.error { background: #fff1ef; border: 1px solid #e6b8b1; color: #8f1f14; }
.muted { color: var(--muted); }
.nylon-placeholder {
  display: grid;
  place-items: center;
  min-height: 190px;
  border: 1px dashed #b9b1a4;
  border-radius: 8px;
  background:
    repeating-linear-gradient(135deg, rgba(16, 24, 32, .06) 0 8px, rgba(255, 255, 255, .34) 8px 16px),
    #eee9df;
  color: #45505a;
  text-align: center;
  font-weight: 850;
}
.nylon-placeholder span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, .82);
}
.mini-dot { display: inline-block; width: 14px; height: 14px; border-radius: 50%; border: 1px solid rgba(0,0,0,.18); background: var(--dot); vertical-align: middle; }
.form-grid, .detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.checkout-layout, .cart-layout, .admin-layout {
  display: grid;
  gap: 18px;
  padding: 26px clamp(16px, 4vw, 56px) 56px;
}
.cart-row, .checkout-items > div {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) auto auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.empty-cart, .cart-cro-panel, .checkout-cro-note {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.empty-cart h2, .cart-cro-panel h2 { margin: 0; font-size: 22px; }
.empty-cart p, .cart-cro-panel p, .checkout-cro-note p { margin: 0; color: var(--muted); line-height: 1.45; }
.cart-summary {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.cart-summary strong { font-size: 24px; }
.cart-faq details {
  border-top: 1px solid var(--line);
  padding: 9px 0;
}
.cart-faq summary { cursor: pointer; font-weight: 800; }
.cart-qty { display: inline-flex; align-items: center; gap: 8px; }
.cart-qty button { min-width: 36px; min-height: 36px; border: 1px solid var(--line); border-radius: 6px; background: #fff; }
.panel, .admin-panel, .import-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
}
.admin-head, .import-panel-head, .import-links, .import-form, .admin-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.admin-tools input, .admin-tools select { min-height: 42px; border: 1px solid var(--line); border-radius: 6px; padding: 8px 10px; }
.order-table-desktop { width: 100%; border-collapse: collapse; }
.order-table-desktop th, .order-table-desktop td { border-bottom: 1px solid var(--line); padding: 10px; text-align: left; vertical-align: top; }
.order-list-mobile { display: none; }
.order-actions { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.import-product { display: grid; grid-template-columns: minmax(160px, 1fr) minmax(0, 2fr); gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.import-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(13, 27, 42, .54);
}
.modal-backdrop[hidden] { display: none; }
.modal {
  width: min(720px, 100%);
  max-height: min(86vh, 860px);
  overflow: auto;
  background: #fff;
  border-radius: 8px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.gallery-modal {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  gap: 10px;
  padding: 14px;
}
.gallery-modal-tools {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  margin-bottom: 10px;
}
.gallery-modal picture { display: grid; place-items: center; min-height: 320px; }
.gallery-modal img { width: 100%; max-height: 72vh; object-fit: contain; }
.gallery-modal.zoomed {
  overflow: auto;
  align-items: start;
}
.gallery-modal.zoomed picture { min-height: 70vh; }
.gallery-modal.zoomed img {
  width: auto;
  max-width: none;
  max-height: none;
  min-width: min(900px, 170vw);
}
.gallery-nav {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  font-size: 32px;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.stat-grid div {
  display: grid;
  gap: 3px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
}
.stat-grid strong { font-size: 24px; }
.stat-grid span { color: var(--muted); font-size: 13px; }
.image-library-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 12px;
}
.image-library-card {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  background: #fff;
}
.image-library-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
  background: #f3f4f2;
}
.image-library-card label { display: grid; gap: 4px; font-size: 13px; }
.image-library-card select {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 8px;
}
.image-report { display: grid; gap: 12px; }
.image-report-product {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #fff;
}
.image-report-row {
  display: grid;
  grid-template-columns: 28px 72px minmax(100px, 1fr) minmax(90px, auto);
  gap: 8px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 8px 0;
}
.image-report-row.ok span:first-child { color: var(--accent); }
.image-report-row.missing span:first-child { color: var(--danger); }
.visually-hidden {
  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;
}
.admin-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 12px;
  margin-top: 16px;
}
.admin-product-card {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.admin-product-image,
.product-image-editor-preview {
  display: grid;
  place-items: center;
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #f3f4f2;
  color: var(--muted);
}
.admin-product-image { width: 100%; padding: 0; cursor: pointer; }
.admin-product-image:focus-visible { outline: 3px solid color-mix(in srgb, var(--accent) 35%, transparent); outline-offset: 2px; }
.admin-product-image img,
.product-image-editor-preview img { width: 100%; height: 100%; object-fit: contain; }
.admin-product-image span,
.product-image-editor-preview span { padding: 8px; text-align: center; font-size: 13px; font-weight: 750; }
.admin-product-card-body { display: grid; gap: 10px; min-width: 0; }
.admin-product-card-body h3,
.admin-product-card-body p { margin: 0; }
.admin-product-card-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.admin-product-card-actions button { min-height: 40px; }
.legacy-product-grid { display: none; }
.product-catalog {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}
.product-catalog-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.product-catalog-toolbar h2,
.product-catalog-toolbar p { margin: 0; }
.product-catalog-toolbar h2 { font-size: 24px; }
.product-catalog-toolbar p { margin-top: 4px; }
.product-catalog-controls { display: flex; align-items: end; gap: 12px; flex-wrap: wrap; }
.product-status-filters {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f3f4f2;
}
.product-status-filters button {
  min-height: 38px;
  padding: 7px 11px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font-weight: 750;
}
.product-status-filters button strong {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  min-height: 22px;
  margin-left: 4px;
  padding: 0 5px;
  border-radius: 999px;
  background: rgba(13, 27, 42, .08);
  font-size: 12px;
}
.product-status-filters button.is-selected { background: var(--ink); color: #fff; box-shadow: 0 2px 8px rgba(13, 27, 42, .18); }
.product-status-filters button[data-product-status-filter="active"].is-selected { background: #146b46; }
.product-status-filters button[data-product-status-filter="inactive"].is-selected { background: #a9272c; }
.product-status-filters button.is-selected strong { background: rgba(255,255,255,.18); }
.product-sort-control { display: grid; gap: 4px; color: var(--muted); font-size: 12px; font-weight: 750; }
.product-sort-control select { min-height: 46px; border: 1px solid var(--line); border-radius: 7px; padding: 8px 34px 8px 10px; background: #fff; color: var(--text); }
.product-catalog .admin-product-grid { margin-top: 16px; }
.admin-product-card { position: relative; overflow: hidden; }
.admin-product-card::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 5px; background: #23835b; }
.admin-product-card.is-inactive { background: #f8f7f5; border-color: #d7cdc7; }
.admin-product-card.is-inactive::before { background: #b43a3f; }
.admin-product-card.is-inactive .admin-product-image img { filter: grayscale(.75); opacity: .68; }
.admin-product-card-heading { display: grid; gap: 5px; }
.product-status-badge {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 6px;
  padding: 5px 8px;
  border-radius: 999px;
  background: #e4f3eb;
  color: #105d3c;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.product-status-badge i { width: 8px; height: 8px; border-radius: 50%; background: #23835b; box-shadow: 0 0 0 3px rgba(35, 131, 91, .14); }
.product-status-badge.is-inactive { background: #f8e5e3; color: #8f2026; }
.product-status-badge.is-inactive i { background: #b43a3f; box-shadow: 0 0 0 3px rgba(180, 58, 63, .13); }
.admin-product-meta { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; color: var(--muted); font-size: 13px; }
.admin-product-meta span { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.admin-product-meta strong { color: var(--text); white-space: nowrap; }
.admin-product-empty { grid-column: 1 / -1; display: grid; gap: 5px; place-items: center; padding: 46px 18px; border: 1px dashed var(--line); border-radius: 8px; color: var(--muted); text-align: center; }
.admin-product-empty strong { color: var(--text); font-size: 18px; }
.product-form-actions { display: flex; align-items: end; justify-content: space-between; gap: 18px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.product-delete-action { display: grid; justify-items: start; gap: 3px; }
.product-delete-action button { padding: 5px 0; font-weight: 800; }
.product-delete-action small { max-width: 360px; color: var(--muted); }
.product-active-toggle { display: flex; align-items: flex-start; gap: 10px; min-height: 64px; padding: 12px; border: 1px solid #b9d9ca; border-radius: 8px; background: #edf7f2; }
.product-active-toggle input { width: 21px; height: 21px; margin: 1px 0 0; accent-color: #146b46; }
.product-active-toggle span { display: grid; gap: 3px; }
.product-active-toggle strong { color: #105d3c; }
.product-active-toggle small { color: var(--muted); }
.product-active-toggle .when-inactive { display: none; }
.product-active-toggle:has(input:not(:checked)) { border-color: #e0c1bd; background: #fbefed; }
.product-active-toggle:has(input:not(:checked)) .when-active { display: none; }
.product-active-toggle:has(input:not(:checked)) .when-inactive { display: block; color: #8f2026; }
.product-image-editor {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 16px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8faf9;
}
.product-image-editor-info,
.product-image-editor-info > div:first-child { display: grid; gap: 6px; min-width: 0; }
.product-image-editor-info > div:first-child strong { font-size: 18px; }
.product-image-editor-info small { color: var(--muted); overflow-wrap: anywhere; }
.danger-text { color: var(--danger); }
.variant-image-editor {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.variant-image-editor-head > div { display: grid; gap: 3px; }
.variant-image-editor-head strong { font-size: 18px; }
.variant-image-editor-head small,
.variant-image-meta small { color: var(--muted); }
.variant-image-size { border-top: 1px solid var(--line); }
.variant-image-size summary {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 2px;
  cursor: pointer;
  list-style: none;
}
.variant-image-size summary::-webkit-details-marker { display: none; }
.variant-image-size summary::after { content: '+'; font-weight: 900; }
.variant-image-size[open] summary::after { content: '−'; }
.variant-image-size summary span { margin-left: auto; color: var(--muted); font-size: 13px; }
.variant-image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(265px, 1fr));
  gap: 8px;
  padding-bottom: 12px;
}
.variant-image-row {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #f8faf9;
}
.variant-image-preview {
  display: grid;
  place-items: center;
  width: 62px;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #eef0ee;
}
.variant-image-preview img { width: 100%; height: 100%; object-fit: contain; }
.variant-image-preview span { padding: 5px; color: var(--muted); text-align: center; font-size: 11px; }
.variant-image-meta { display: grid; gap: 2px; min-width: 0; }
.variant-image-meta small { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.variant-image-manual { color: var(--accent) !important; font-weight: 750; }
.variant-image-row .ghost-button { min-height: 40px; padding-inline: 10px; }
.site-footer {
  display: grid;
  gap: 18px;
  padding: 28px clamp(16px, 4vw, 56px);
  border-top: 1px solid var(--line);
  background: #fff;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 12px; color: var(--muted); }
.footer-links a { text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 760px) {
  .product-catalog { padding: 12px; }
  .product-catalog-toolbar, .product-catalog-controls { align-items: stretch; flex-direction: column; }
  .product-status-filters { display: grid; grid-template-columns: repeat(3, 1fr); }
  .product-status-filters button { padding-inline: 7px; }
  .product-sort-control select { width: 100%; }
  .product-form-actions { align-items: stretch; flex-direction: column-reverse; }
  .product-form-actions .button { width: 100%; }
  .admin-product-grid { grid-template-columns: 1fr; }
  .admin-product-card { grid-template-columns: 88px minmax(0, 1fr); padding: 10px; }
  .product-image-editor { grid-template-columns: 96px minmax(0, 1fr); gap: 10px; padding: 10px; }
  .product-image-editor .actions { grid-column: 1 / -1; }
  .variant-image-editor { padding: 10px; }
  .variant-image-grid { grid-template-columns: 1fr; }
  .variant-image-row { grid-template-columns: 56px minmax(0, 1fr); }
  .variant-image-preview { width: 56px; }
  .variant-image-row .ghost-button { grid-column: 2; width: 100%; }
  .site-header {
    position: sticky;
    top: 0;
    gap: 10px;
    padding: 10px 12px;
  }
  .site-logo { height: 34px; max-width: 148px; }
  .top-nav { gap: 8px; flex-wrap: nowrap; justify-content: flex-end; font-size: 13px; min-width: 0; }
  .top-nav a { min-height: 44px; padding: 0 2px; white-space: nowrap; }
  .top-nav a:not(.cart-link) { display: none; }
  .cart-count { min-width: 24px; min-height: 24px; }
  .admin-bar:not([hidden]) + .site-header { top: 0; }
  .hero {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px 12px 10px;
  }
  .hero h1 { font-size: clamp(30px, 10vw, 42px); line-height: 1.06; }
  .hero p { font-size: 15px; line-height: 1.45; margin: 8px 0 0; }
  .hero-actions { display: grid; grid-template-columns: 1fr; gap: 8px; margin-top: 14px; }
  .hero-actions .button, .hero-actions .ghost-button { width: 100%; min-height: 48px; }
  .strap-visual { min-height: 190px; }
  .strap-visual::before { top: 20px; height: 82px; }
  .strap-visual::after { top: 106px; height: 94px; }
  .section { padding: 16px 12px 34px; }
  .cro-trustbar { padding: 8px 12px; gap: 6px; overflow-x: auto; flex-wrap: nowrap; }
  .cro-trustbar span { flex: 0 0 auto; min-height: 28px; font-size: 11px; padding: 5px 8px; }
  .cro-trustbar.compact { overflow-x: visible; flex-wrap: wrap; padding: 0; }
  .toolbar { align-items: stretch; flex-direction: column; gap: 10px; margin-bottom: 12px; }
  .toolbar h2 { font-size: 22px; }
  .catalog-layout { grid-template-columns: minmax(0, 1fr); gap: 12px; }
  .filters { display: none; padding: 12px; }
  .filters.open { display: block; }
  .filter-toggle { display: inline-flex; width: 100%; }
  .product-grid { grid-template-columns: minmax(0, 1fr); gap: 12px; }
  .product-card { grid-template-columns: 124px minmax(0, 1fr); gap: 10px; padding: 9px; align-items: start; box-shadow: 0 6px 16px rgba(13, 27, 42, .07); }
  .product-card:hover { transform: none; }
  .product-card .product-media, .product-card .strap-visual { min-height: 118px; height: 118px; }
  .product-card .card-body { gap: 6px; min-width: 0; }
  .product-card h3 { font-size: 15px; }
  .product-card p { font-size: 14px; line-height: 1.35; }
  .product-card .price { font-size: 18px; line-height: 1; }
  .card-title-row { gap: 3px; }
  .card-compat { font-size: 12px; }
  .card-facts { gap: 5px; font-size: 11px; }
  .card-facts span { min-height: 24px; padding: 4px 7px; }
  .width-row .mini-chip { padding: 4px 7px; font-size: 11px; }
  .product-card .button, .product-card .ghost-button { width: 100%; min-height: 42px; padding: 8px 10px; }
  .product-page { grid-template-columns: minmax(0, 1fr); gap: 12px; padding: 8px 12px 22px; }
  .form-grid, .detail-grid { grid-template-columns: 1fr; }
  .admin-head { align-items: start; flex-direction: column; }
  .import-panel-head, .import-links, .import-form, .import-product { display: grid; grid-template-columns: 1fr; }
  .import-actions .button, .import-actions .ghost-button { width: 100%; }
  .admin-tools { width: 100%; display: grid; grid-template-columns: 1fr; }
  .admin-tools input, .admin-tools select, .admin-tools button { width: 100%; }
  .order-table-desktop { display: none; }
  .order-list-mobile { display: block; }
  .order-actions { display: grid; grid-template-columns: 1fr; }
  .order-actions .button, .order-actions .ghost-button, .order-actions select { width: 100%; }
  .button, .ghost-button, .danger-button, .chip, .swatch { min-height: 46px; }
  .button, .ghost-button, .danger-button { padding: 11px 14px; }
  .swatch i, .mini-dot { width: 22px; height: 22px; }
  .swatches { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .swatch { justify-content: flex-start; width: 100%; }
  .chips { gap: 7px; }
  .catalog-tools, .search-field { width: 100%; min-width: 0; }
  .search-field input { min-height: 48px; font-size: 16px; }
  .field { margin-bottom: 10px; }
  .field input, .field select, .field textarea, .config-form input, .config-form select { min-height: 48px; font-size: 16px; }
  .strap-configurator, .config-form { grid-template-columns: minmax(0, 1fr); }
  .strap-configurator { margin: 8px 12px 14px; padding: 12px; gap: 12px; }
  .strap-configurator h2 { font-size: 19px; margin-bottom: 4px; }
  .strap-configurator p { font-size: 14px; line-height: 1.4; }
  .config-result, .config-warning, .config-suggestions { grid-column: 1; }
  .config-popular {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
  }
  .config-popular > span { flex: 0 0 auto; align-self: center; }
  .config-suggestion-group > div {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .model-chip {
    width: 100%;
    min-height: 48px;
    padding: 8px 10px;
  }
  .config-result .button { width: 100%; }
  .config-form .button, .config-form .ghost-button { width: 100%; }
  .breadcrumbs { font-size: 12px; padding: 10px 12px 0; gap: 5px; }
  .trust-grid { grid-template-columns: 1fr; }
  .cart-layout, .checkout-layout { padding: 14px 12px 34px; gap: 12px; }
  .empty-cart, .cart-cro-panel, .checkout-cro-note { padding: 12px; }
  .cart-related-grid { grid-template-columns: minmax(0, 1fr); }
  .contact-actions { display: grid; grid-template-columns: 1fr; }
  .cart-row { grid-template-columns: 74px minmax(0, 1fr); gap: 10px; align-items: start; }
  .cart-row .product-media, .cart-row .strap-visual { min-height: 74px; height: 74px; }
  .cart-row .cart-qty, .cart-row > strong, .cart-row > button { grid-column: 2; }
  .cart-row .cart-qty { justify-content: space-between; width: 100%; }
  .cart-row .cart-qty input { width: 72px; min-height: 44px; }
  .cart-row .ghost-button { width: 100%; }
  .panel { padding: 12px; }
  .product-info { gap: 8px; }
  .product-info h1 { font-size: clamp(26px, 7.5vw, 34px); line-height: 1.08; }
  .product-info p, .info-list { font-size: 15px; line-height: 1.45; }
  .product-buybox { gap: 8px; }
  .product-lead { font-size: 14px; }
  .buy-meta .price { font-size: 30px; }
  .product-trust-strip span, .selected-variant span { min-height: 28px; padding: 5px 8px; font-size: 11px; }
  .product-panel { gap: 10px; padding: 12px 0; }
  .product-panel h2 { font-size: 17px; }
  .variant-panel .swatches { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .purchase-panel .actions {
    position: sticky;
    bottom: 0;
    z-index: 12;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 0 -12px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(246, 244, 239, .96);
    border-top: 1px solid var(--line);
  }
  .purchase-panel .actions .button, .purchase-panel .actions .ghost-button { width: 100%; min-height: 50px; }
  .qty-row input { min-height: 46px; font-size: 16px; }
  .product-media-large { min-height: 240px; }
  .product-gallery { gap: 8px; }
  .gallery-main { min-height: min(92vw, 390px); max-height: 56vh; }
  .gallery-badge { right: 8px; bottom: 8px; min-height: 28px; font-size: 11px; }
  .gallery-thumbs { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 6px; overflow-x: auto; }
  .gallery-modal { grid-template-columns: 42px 1fr 42px; padding: 8px; }
  .gallery-modal-tools { display: grid; grid-template-columns: 1fr 1fr; }
  .checkout-submit {
    position: sticky;
    bottom: 0;
    z-index: 12;
    width: calc(100% + 24px);
    min-height: 52px;
    margin: 4px -12px -12px;
    border-radius: 0;
  }
  .stat-grid { grid-template-columns: 1fr; }
  .image-report-row { grid-template-columns: 24px 60px 1fr; }
  .image-report-row small { grid-column: 3; }
  .checkout-items > div { align-items: start; grid-template-columns: minmax(0, 1fr) auto; gap: 8px; }
  .checkout-total { grid-template-columns: minmax(0, 1fr) auto; }
  .modal-backdrop { padding: 0; place-items: stretch; }
  .modal { width: 100%; max-height: 100dvh; border-radius: 0; padding: 14px; }
  .modal-body { display: grid; gap: 10px; }
  .modal-body .button { width: 100%; min-height: 50px; }
  .admin-bar { flex-wrap: wrap; }
}

@media (max-width: 380px) {
  .site-logo { max-width: 126px; }
  .top-nav { font-size: 12px; }
  .product-card { grid-template-columns: 106px minmax(0, 1fr); }
  .product-card .product-media, .product-card .strap-visual { min-height: 104px; height: 104px; }
  .product-card h3 { font-size: 14px; }
  .card-compat { font-size: 11px; }
  .card-facts span { padding-inline: 6px; }
  .swatches { grid-template-columns: 1fr; }
  .gallery-main { min-height: 220px; }
}

/* Customer storefront refresh, kept as overrides to avoid touching admin/import layouts. */
:root {
  --bg: #f7f6f2;
  --panel: #ffffff;
  --text: #101820;
  --muted: #56616b;
  --line: #e5e0d8;
  --accent: #101820;
  --accent-dark: #000000;
  --shadow: 0 20px 60px rgba(16, 24, 32, .10);
}

body {
  background:
    linear-gradient(180deg, #fbfaf7 0, #f7f6f2 420px),
    var(--bg);
}

.site-header {
  padding: 14px clamp(16px, 4vw, 56px);
  background: rgba(255, 255, 255, .88);
  border-bottom-color: rgba(16, 24, 32, .08);
}

.site-logo { height: 42px; }

.top-nav {
  align-items: center;
  gap: 6px;
  color: #2f3942;
  font-weight: 750;
}

.top-nav a {
  min-height: 42px;
  border-radius: 999px;
  padding: 0 12px;
}

.top-nav a:hover,
.top-nav a:focus-visible {
  background: #f0eee8;
  color: var(--text);
}

.cart-link {
  background: var(--text);
  color: #fff;
}

.cart-link:hover,
.cart-link:focus-visible {
  background: var(--accent-dark);
  color: #fff;
}

.cart-count {
  background: #fff;
  color: var(--text);
}

.hero {
  min-height: min(760px, calc(100svh - 78px));
  grid-template-columns: minmax(0, .92fr) minmax(320px, 1.08fr);
  padding-top: clamp(42px, 7vw, 92px);
  padding-bottom: clamp(22px, 4vw, 46px);
}

.eyebrow {
  margin: 0 0 10px;
  color: #7a332e;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(44px, 7.2vw, 92px);
  line-height: .98;
}

.hero p {
  max-width: 620px;
  color: #4d5963;
}

.hero-actions .button,
.hero-actions .ghost-button {
  min-height: 52px;
  padding-inline: 20px;
  font-weight: 850;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(255, 255, 255, .72);
  color: #3f4b54;
  font-size: 13px;
  font-weight: 800;
}

.hero-product {
  display: grid;
  gap: 12px;
  align-self: stretch;
  color: inherit;
}

.hero-product .product-media,
.hero-product .strap-visual {
  min-height: clamp(360px, 56vw, 640px);
  border: 1px solid rgba(16, 24, 32, .08);
  border-radius: 8px;
  background: #ece8df;
  box-shadow: var(--shadow);
}

.hero-product > span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
}

.hero-product strong {
  color: var(--text);
  font-size: 16px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1.05;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.category-card {
  display: grid;
  gap: 12px;
  padding: 10px;
  border: 1px solid rgba(16, 24, 32, .08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(16, 24, 32, .07);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.category-card:hover {
  transform: translateY(-2px);
  border-color: rgba(16, 24, 32, .18);
  box-shadow: 0 18px 42px rgba(16, 24, 32, .11);
}

.category-card .product-media,
.category-card .strap-visual {
  min-height: clamp(190px, 28vw, 360px);
}

.category-card > span {
  display: grid;
  gap: 4px;
  padding: 2px 4px 6px;
}

.category-card strong {
  font-size: 22px;
  line-height: 1.15;
}

.category-card small {
  color: var(--muted);
  line-height: 1.45;
}

.highlight-section { padding-top: 8px; }

.featured-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.color-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.product-card {
  padding: 12px;
  border-color: rgba(16, 24, 32, .08);
  box-shadow: 0 12px 34px rgba(16, 24, 32, .07);
}

.product-card .product-media,
.product-card .strap-visual,
.product-card .nylon-placeholder {
  min-height: 260px;
  background: #efebe4;
}

.product-card h3 {
  font-size: 18px;
}

.product-card .price {
  font-size: 24px;
}

.card-cta {
  width: 100%;
  min-height: 46px;
  font-weight: 850;
}

.toolbar {
  align-items: end;
}

.toolbar h2 {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.05;
}

.filters,
.strap-configurator,
.empty-cart,
.cart-cro-panel,
.checkout-cro-note,
.panel,
.admin-panel,
.import-panel {
  border-color: rgba(16, 24, 32, .08);
  box-shadow: 0 10px 28px rgba(16, 24, 32, .05);
}

.checkout-page {
  max-width: 1040px;
  margin-inline: auto;
  width: 100%;
}

.checkout-form {
  display: grid;
  gap: 14px;
}

.strap-configurator {
  padding: clamp(16px, 3vw, 26px);
}

.strap-configurator h2 {
  font-size: clamp(24px, 3vw, 36px);
}

.model-chip,
.chip,
.swatch {
  min-height: 46px;
}

.product-page {
  grid-template-columns: minmax(420px, 1.12fr) minmax(340px, .88fr);
}

.gallery-main {
  min-height: clamp(520px, 62vw, 760px);
  box-shadow: var(--shadow);
}

.product-info h1 {
  font-size: clamp(34px, 4.8vw, 58px);
}

.purchase-panel .button {
  min-height: 54px;
  width: 100%;
  font-size: 17px;
  font-weight: 850;
}

.site-footer {
  grid-template-columns: minmax(220px, .8fr) minmax(0, 1.2fr);
  align-items: start;
  padding-block: 34px;
}

.site-footer p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.footer-links {
  justify-content: flex-end;
  gap: 10px 16px;
}

.footer-links a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
}

@media (max-width: 900px) {
  .hero,
  .product-page,
  .category-grid,
  .featured-grid,
  .site-footer {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    min-height: 0;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 9px 10px;
    align-items: center;
  }

  .site-logo {
    height: 32px;
    max-width: 128px;
  }

  .top-nav {
    display: flex;
    overflow-x: auto;
    justify-content: flex-start;
    gap: 4px;
    min-width: 0;
    scrollbar-width: none;
  }

  .top-nav::-webkit-scrollbar { display: none; }

  .top-nav a,
  .top-nav a:not(.cart-link) {
    display: inline-flex;
    flex: 0 0 auto;
    min-height: 40px;
    padding: 0 9px;
    font-size: 12px;
  }

  .top-nav a[href="/kategori/garmin-quickfit"],
  .top-nav a[href="/kontakt"] {
    display: none;
  }

  .hero {
    padding: 18px 12px 12px;
    gap: 12px;
  }

  .hero h1 {
    font-size: clamp(36px, 10.5vw, 48px);
    line-height: 1;
  }

  .hero p {
    font-size: 15px;
  }

  .hero-proof {
    gap: 6px;
    margin-top: 12px;
  }

  .hero-proof span {
    min-height: 30px;
    padding: 6px 8px;
    font-size: 11px;
  }

  .hero-product {
    gap: 8px;
  }

  .hero-product .product-media,
  .hero-product .strap-visual {
    min-height: min(88vw, 360px);
  }

  .section-head {
    align-items: start;
    flex-direction: column;
    margin-bottom: 10px;
  }

  .category-card {
    grid-template-columns: 118px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
  }

  .category-card .product-media,
  .category-card .strap-visual {
    min-height: 112px;
    height: 112px;
  }

  .category-card strong {
    font-size: 18px;
  }

  .featured-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .product-card {
    grid-template-columns: 132px minmax(0, 1fr);
    padding: 10px;
  }

  .product-card .product-media,
  .product-card .strap-visual,
  .product-card .nylon-placeholder {
    min-height: 132px;
    height: 132px;
  }

  .product-card h3 {
    font-size: 16px;
  }

  .product-card .price {
    font-size: 20px;
  }

  .product-page {
    padding-top: 8px;
  }

  .gallery-main {
    min-height: min(96vw, 420px);
    max-height: 58vh;
  }

  .purchase-panel .actions {
    grid-template-columns: minmax(0, 1fr);
  }

  .site-footer {
    gap: 14px;
  }
}

@media (max-width: 380px) {
  .top-nav a,
  .top-nav a:not(.cart-link) {
    padding: 0 8px;
    font-size: 11px;
  }

  .product-card {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .product-card .product-media,
  .product-card .strap-visual,
  .product-card .nylon-placeholder {
    min-height: 112px;
    height: 112px;
  }
}

/* Storefront rebuild v2: customer UI only. Backend/admin markup remains intact. */
:root {
  --store-bg: #f8f7f3;
  --store-surface: #ffffff;
  --store-text: #111820;
  --store-muted: #5e6872;
  --store-soft: #ece7dd;
  --store-line: rgba(17, 24, 32, .11);
  --store-accent: #111820;
  --store-green: #24583a;
  --store-radius: 8px;
  --store-shadow: 0 24px 70px rgba(17, 24, 32, .11);
}

html { scroll-behavior: smooth; }

body {
  background: var(--store-bg);
  color: var(--store-text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.site-header {
  min-height: 72px;
  padding: 12px clamp(16px, 4vw, 64px);
  background: rgba(248, 247, 243, .9);
  border-bottom: 1px solid rgba(17, 24, 32, .08);
  backdrop-filter: blur(18px);
}

.site-logo {
  height: 38px;
  max-width: min(190px, 38vw);
}

.top-nav {
  gap: 4px;
  color: var(--store-text);
  font-size: 14px;
  font-weight: 760;
}

.top-nav a,
.top-nav a:not(.cart-link) {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border-radius: 999px;
  padding: 0 14px;
  white-space: nowrap;
}

.top-nav a:hover,
.top-nav a:focus-visible {
  background: rgba(17, 24, 32, .07);
}

.cart-link {
  background: var(--store-accent);
  color: #fff;
  padding-right: 10px;
}

.cart-count {
  background: #fff;
  color: var(--store-text);
  font-size: 12px;
}

.app-shell {
  min-height: calc(100svh - 180px);
}

.store-hero,
.store-section,
.store-page-intro,
.cart-page,
.checkout-page,
.product-page {
  width: min(1440px, 100%);
  margin-inline: auto;
}

.store-hero {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr);
  gap: clamp(24px, 5vw, 80px);
  align-items: center;
  padding: clamp(36px, 7vw, 96px) clamp(16px, 5vw, 72px) clamp(24px, 5vw, 72px);
}

.store-hero-copy {
  display: grid;
  gap: 20px;
}

.eyebrow {
  margin: 0;
  color: #8a3d32;
  font-size: 12px;
  font-weight: 860;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.store-hero h1,
.store-page-intro h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(48px, 7.2vw, 96px);
  line-height: .96;
  letter-spacing: 0;
}

.store-hero p,
.store-page-intro p {
  max-width: 620px;
  margin: 0;
  color: var(--store-muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
}

.button,
.ghost-button,
.danger-button {
  min-height: 52px;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 820;
}

.button {
  background: var(--store-accent);
  color: #fff;
}

.ghost-button {
  background: rgba(255, 255, 255, .72);
  border-color: var(--store-line);
}

.store-hero-media {
  display: grid;
  gap: 14px;
  color: inherit;
}

.store-hero-media .product-media,
.store-hero-media .strap-visual,
.store-hero-media .nylon-placeholder {
  min-height: clamp(390px, 58vw, 690px);
  border: 1px solid rgba(17, 24, 32, .08);
  border-radius: var(--store-radius);
  background: #eee9df;
  box-shadow: var(--store-shadow);
}

.store-hero-media > span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--store-muted);
}

.store-hero-media strong {
  color: var(--store-text);
}

.cro-trustbar {
  justify-content: center;
  gap: 8px;
  padding: 12px clamp(16px, 5vw, 72px);
  border-block: 1px solid rgba(17, 24, 32, .08);
  background: #fff;
}

.cro-trustbar span {
  min-height: 34px;
  border: 0;
  background: #f2f7f2;
  color: var(--store-green);
  padding: 7px 12px;
}

.strap-configurator {
  width: min(1180px, calc(100% - 32px));
  margin: 28px auto 18px;
  grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr);
  gap: 20px;
  border: 0;
  border-radius: var(--store-radius);
  padding: clamp(18px, 3vw, 32px);
  background: #fff;
  box-shadow: 0 16px 50px rgba(17, 24, 32, .08);
}

.strap-configurator h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.02;
}

.config-form input,
.config-form select,
.field input,
.field select,
.field textarea,
.store-search input {
  min-height: 54px;
  border: 1px solid var(--store-line);
  border-radius: var(--store-radius);
  background: #fff;
  padding: 13px 14px;
  font-size: 16px;
}

.model-chip,
.chip,
.swatch {
  min-height: 48px;
  border-color: var(--store-line);
}

.store-section {
  padding: clamp(30px, 5vw, 76px) clamp(16px, 5vw, 72px);
}

.store-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.store-section-head h2,
.toolbar h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

.store-section-head .muted {
  max-width: 480px;
  font-size: 16px;
  line-height: 1.5;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.category-card {
  display: grid;
  gap: 14px;
  border: 0;
  border-radius: var(--store-radius);
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.category-card .product-media,
.category-card .strap-visual,
.category-card .nylon-placeholder {
  min-height: clamp(260px, 30vw, 430px);
  border-radius: var(--store-radius);
  box-shadow: 0 14px 40px rgba(17, 24, 32, .08);
}

.category-card > span {
  padding: 0 2px;
}

.category-card strong {
  font-size: clamp(23px, 2.6vw, 34px);
}

.product-list-section {
  padding-top: clamp(32px, 5vw, 72px);
}

.store-search {
  display: grid;
  min-width: min(360px, 100%);
  gap: 7px;
  color: var(--store-muted);
  font-size: 13px;
  font-weight: 780;
}

.store-filter-strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 16px;
}

.store-filter-strip .chip {
  flex: 0 0 auto;
  border-radius: 999px;
  padding-inline: 16px;
}

.product-grid.storefront-grid,
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 28px);
}

.product-card {
  display: grid;
  gap: 14px;
  border: 0;
  border-radius: var(--store-radius);
  padding: 0;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: none;
}

.product-card .product-media,
.product-card .strap-visual,
.product-card .nylon-placeholder {
  min-height: clamp(300px, 34vw, 510px);
  border: 1px solid rgba(17, 24, 32, .07);
  border-radius: var(--store-radius);
  background: #eee9df;
  box-shadow: 0 16px 46px rgba(17, 24, 32, .08);
}

.product-card .card-body {
  gap: 10px;
  padding: 0 2px;
}

.product-card h3 {
  font-size: clamp(18px, 2vw, 24px);
}

.product-card .price {
  font-size: 19px;
}

.card-compat {
  color: var(--store-muted);
  font-weight: 650;
}

.card-facts span,
.mini-chip,
.selected-variant span {
  border: 0;
  background: #fff;
}

.card-cta {
  width: fit-content;
  min-height: 44px;
  padding-inline: 18px;
  background: var(--store-accent);
  color: #fff;
  border-color: var(--store-accent);
}

.color-cloud {
  margin-top: 18px;
}

.order-flow {
  padding-top: 12px;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.flow-grid article {
  display: grid;
  gap: 8px;
  border-top: 1px solid var(--store-line);
  padding-top: 14px;
}

.flow-grid span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 999px;
  background: var(--store-accent);
  color: #fff;
  font-weight: 850;
}

.flow-grid p {
  margin: 0;
  color: var(--store-muted);
}

.store-page-intro {
  padding: clamp(34px, 6vw, 86px) clamp(16px, 5vw, 72px) clamp(14px, 3vw, 28px);
}

.breadcrumbs {
  width: min(1440px, 100%);
  margin-inline: auto;
  padding-inline: clamp(16px, 5vw, 72px);
  color: var(--store-muted);
}

.product-page {
  grid-template-columns: minmax(460px, 1.15fr) minmax(360px, .85fr);
  gap: clamp(26px, 4vw, 64px);
  padding: clamp(16px, 3vw, 34px) clamp(16px, 5vw, 72px) clamp(50px, 7vw, 96px);
}

.product-gallery {
  position: sticky;
  top: 92px;
}

.gallery-main,
.product-gallery > .nylon-placeholder,
.product-gallery > .strap-visual {
  min-height: clamp(560px, 66vw, 820px);
  border: 0;
  border-radius: var(--store-radius);
  background: #eee9df;
  box-shadow: var(--store-shadow);
}

.gallery-thumbs {
  grid-template-columns: repeat(auto-fill, minmax(86px, 1fr));
}

.product-info {
  gap: 18px;
}

.product-info h1 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: .98;
}

.product-lead {
  color: var(--store-muted);
  font-size: 17px;
}

.buy-meta .price {
  font-size: clamp(34px, 5vw, 50px);
}

.product-panel {
  gap: 14px;
  border-top: 1px solid var(--store-line);
  padding: 18px 0;
}

.product-panel h2 {
  font-size: 20px;
}

.swatches {
  display: flex;
  gap: 10px;
}

.swatch {
  min-height: 50px;
  padding: 7px 12px 7px 7px;
  background: #fff;
}

.swatch i {
  width: 24px;
  height: 24px;
}

.purchase-panel .actions {
  display: block;
}

.purchase-panel .button {
  width: 100%;
  min-height: 58px;
  font-size: 18px;
}

.payment-explainer {
  font-size: 15px;
}

.trust-points div {
  border-bottom-color: var(--store-line);
}

.product-faq details {
  border-top-color: var(--store-line);
}

.compatibility-panel .strap-configurator {
  display: none;
}

.cart-page {
  padding: clamp(28px, 5vw, 72px) clamp(16px, 5vw, 72px) clamp(60px, 7vw, 100px);
}

.cart-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 22px;
}

.cart-head h1,
.checkout-hero h1 {
  margin: 0;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1;
}

.cart-list {
  display: grid;
  gap: 12px;
}

.cart-row {
  grid-template-columns: 118px minmax(0, 1fr) 120px auto auto;
  gap: 16px;
  border: 0;
  border-radius: var(--store-radius);
  padding: 12px;
  background: #fff;
}

.cart-row .product-media,
.cart-row .strap-visual,
.cart-row .nylon-placeholder {
  min-height: 118px;
  height: 118px;
}

.cart-summary {
  margin-top: 18px;
  border-top: 1px solid var(--store-line);
  font-size: 20px;
}

.delivery-note {
  border-radius: var(--store-radius);
  padding: 14px 0;
}

.cart-sticky-action .button {
  width: 100%;
  min-height: 58px;
  font-size: 18px;
}

.checkout-page {
  padding: clamp(28px, 5vw, 72px) clamp(16px, 5vw, 72px) clamp(70px, 8vw, 110px);
}

.checkout-hero {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 24px;
}

.checkout-hero p {
  max-width: 680px;
  margin: 10px 0 0;
  color: var(--store-muted);
  font-size: 18px;
  line-height: 1.5;
}

.checkout-form,
.modal-body {
  display: grid;
  gap: 14px;
}

.checkout-step {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  border-radius: var(--store-radius);
  padding: 18px;
  background: #fff;
}

.checkout-step > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  background: var(--store-accent);
  color: #fff;
  font-weight: 850;
}

.checkout-step h2 {
  margin: 2px 0 12px;
  font-size: 22px;
}

.checkout-note-step p {
  margin: 0 0 8px;
  color: var(--store-muted);
  line-height: 1.5;
}

.checkout-items > div {
  grid-template-columns: minmax(0, 1fr) auto;
}

.form-grid {
  gap: 12px;
}

.field label,
.field-title,
.store-search span {
  color: var(--store-muted);
  font-size: 13px;
  font-weight: 820;
}

.checkout-submit {
  width: 100%;
  min-height: 60px;
  font-size: 18px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 18px;
  padding: 34px clamp(16px, 5vw, 72px);
  background: #fff;
}

.footer-links {
  justify-content: flex-end;
}

@media (max-width: 980px) {
  .store-hero,
  .product-page,
  .category-grid,
  .product-grid.storefront-grid,
  .featured-grid,
  .flow-grid,
  .site-footer {
    grid-template-columns: minmax(0, 1fr);
  }

  .store-section-head,
  .cart-head,
  .checkout-hero {
    align-items: start;
    flex-direction: column;
  }

  .product-gallery {
    position: static;
  }
}

@media (max-width: 760px) {
  .site-header {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 8px;
    min-height: 62px;
    padding: 8px 10px;
  }

  .site-logo {
    height: 30px;
    max-width: 116px;
  }

  .top-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 3px;
    overflow: visible;
  }

  .top-nav a,
  .top-nav a:not(.cart-link),
  .top-nav a[href="/kontakt"] {
    display: inline-flex;
    min-height: 38px;
    justify-content: center;
    padding: 0 4px;
    font-size: 11px;
    text-align: center;
  }

  .cart-link {
    padding-inline: 4px;
  }

  .cart-count {
    min-width: 20px;
    min-height: 20px;
    font-size: 11px;
  }

  .store-hero {
    padding: 22px 12px 28px;
    gap: 18px;
  }

  .store-hero h1,
  .store-page-intro h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .store-hero p,
  .store-page-intro p {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .store-hero-media .product-media,
  .store-hero-media .strap-visual,
  .store-hero-media .nylon-placeholder {
    min-height: min(96vw, 390px);
  }

  .cro-trustbar {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding: 10px 12px;
  }

  .cro-trustbar span {
    flex: 0 0 auto;
  }

  .strap-configurator {
    width: calc(100% - 24px);
    margin-block: 14px;
    grid-template-columns: minmax(0, 1fr);
    padding: 16px;
  }

  .config-form {
    grid-template-columns: minmax(0, 1fr);
  }

  .store-section,
  .store-page-intro,
  .cart-page,
  .checkout-page,
  .product-page {
    padding-left: 12px;
    padding-right: 12px;
  }

  .store-section-head h2,
  .toolbar h2 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .category-card {
    gap: 10px;
  }

  .category-card .product-media,
  .category-card .strap-visual,
  .category-card .nylon-placeholder {
    min-height: min(88vw, 330px);
    height: auto;
  }

  .product-card {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    padding: 0;
  }

  .product-card .product-media,
  .product-card .strap-visual,
  .product-card .nylon-placeholder {
    min-height: min(94vw, 390px);
    height: auto;
  }

  .card-cta {
    width: 100%;
  }

  .product-page {
    gap: 16px;
    padding-top: 10px;
  }

  .gallery-main,
  .product-gallery > .nylon-placeholder,
  .product-gallery > .strap-visual {
    min-height: min(100vw, 430px);
    max-height: none;
  }

  .gallery-thumbs {
    display: flex;
    overflow-x: auto;
  }

  .gallery-thumb {
    flex: 0 0 76px;
  }

  .product-info h1 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .variant-panel .swatches {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .purchase-panel .actions {
    position: sticky;
    bottom: 0;
    z-index: 14;
    margin: 0 -12px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(248, 247, 243, .96);
    border-top: 1px solid var(--store-line);
  }

  .cart-row {
    grid-template-columns: 94px minmax(0, 1fr);
    gap: 12px;
  }

  .cart-row .product-media,
  .cart-row .strap-visual,
  .cart-row .nylon-placeholder {
    min-height: 94px;
    height: 94px;
  }

  .cart-row .cart-qty,
  .cart-row > strong,
  .cart-row > button {
    grid-column: 2;
  }

  .cart-sticky-action {
    position: sticky;
    bottom: 0;
    z-index: 14;
    margin: 0 -12px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(248, 247, 243, .96);
    border-top: 1px solid var(--store-line);
  }

  .checkout-step {
    grid-template-columns: minmax(0, 1fr);
    padding: 14px;
  }

  .form-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .checkout-submit {
    position: sticky;
    bottom: 0;
    z-index: 14;
    width: calc(100% + 28px);
    margin: 2px -14px -14px;
    border-radius: 0;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 390px) {
  .top-nav a,
  .top-nav a:not(.cart-link),
  .top-nav a[href="/kontakt"] {
    font-size: 10px;
    letter-spacing: 0;
  }
}

/* Design System 1.0: announcement bar, header and hero only. */
.announcement-bar {
  position: sticky;
  top: 0;
  z-index: 29;
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 4vw, 34px);
  padding: 7px clamp(16px, 5vw, 72px);
  background: #111820;
  color: rgba(255, 255, 255, .9);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: .02em;
}

.announcement-bar span {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.announcement-bar span + span::before {
  content: "";
  width: 4px;
  height: 4px;
  margin-right: clamp(12px, 3vw, 34px);
  border-radius: 999px;
  background: rgba(255, 255, 255, .46);
}

.admin-bar:not([hidden]) ~ .announcement-bar {
  top: 42px;
}

.site-header {
  top: 34px;
  z-index: 28;
  display: block;
  min-height: 0;
  padding: 0;
  border-bottom: 1px solid rgba(17, 24, 32, .08);
  background: rgba(248, 247, 243, .84);
  backdrop-filter: blur(22px);
}

.admin-bar:not([hidden]) ~ .site-header {
  top: 76px;
}

.site-header-inner {
  display: flex;
  width: min(1440px, 100%);
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-inline: auto;
  padding: 12px clamp(16px, 5vw, 72px);
}

.site-header .brand {
  flex: 0 0 auto;
  min-height: 48px;
}

.site-header .site-logo {
  height: 40px;
  max-width: min(204px, 42vw);
}

.site-header .top-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  overflow: visible;
  color: #111820;
  font-size: 14px;
  font-weight: 760;
}

.site-header .top-nav a,
.site-header .top-nav a:not(.cart-link),
.site-header .top-nav a[href="/kontakt"] {
  min-height: 44px;
  border-radius: 999px;
  padding: 0 15px;
  color: inherit;
  text-decoration: none;
  transition: background-color .18s ease, color .18s ease, transform .18s ease;
}

.site-header .top-nav a:hover,
.site-header .top-nav a:focus-visible {
  background: rgba(17, 24, 32, .07);
  color: #111820;
}

.site-header .top-nav a:active {
  transform: translateY(1px);
}

.site-header .cart-link {
  gap: 8px;
  margin-left: 6px;
  background: #111820;
  color: #fff;
}

.site-header .cart-link:hover,
.site-header .cart-link:focus-visible {
  background: #24313c;
  color: #fff;
}

.site-header .cart-count {
  min-width: 22px;
  min-height: 22px;
  background: #fff;
  color: #111820;
  font-size: 12px;
}

.store-hero {
  width: 100%;
  max-width: none;
  min-height: calc(100svh - 108px);
  grid-template-columns: minmax(320px, .82fr) minmax(420px, 1.18fr);
  gap: clamp(28px, 6vw, 96px);
  align-items: center;
  padding: clamp(42px, 7vw, 112px) clamp(16px, 6vw, 88px) clamp(34px, 6vw, 88px);
  background: #f8f7f3;
}

.store-hero-copy {
  max-width: 610px;
  gap: 22px;
}

.store-hero .eyebrow {
  color: #6d4535;
  font-size: 12px;
  letter-spacing: .1em;
}

.store-hero h1 {
  max-width: 780px;
  font-size: clamp(52px, 7.8vw, 112px);
  line-height: .94;
  letter-spacing: 0;
}

.store-hero p {
  max-width: 520px;
  color: #4d5964;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.45;
}

.store-hero .hero-actions {
  gap: 12px;
}

.store-hero .button,
.store-hero .ghost-button {
  min-height: 54px;
  border-radius: 999px;
  padding: 15px 24px;
  font-size: 15px;
}

.store-hero .ghost-button {
  background: transparent;
  border-color: rgba(17, 24, 32, .18);
}

.store-hero-media {
  align-self: stretch;
  gap: 16px;
}

.store-hero-media .product-media,
.store-hero-media .strap-visual,
.store-hero-media .nylon-placeholder {
  min-height: clamp(480px, 64vw, 760px);
  border: 0;
  border-radius: 12px;
  background: #ebe7de;
  box-shadow: 0 34px 90px rgba(17, 24, 32, .14);
  overflow: hidden;
}

.store-hero-media .product-media picture,
.store-hero-media .product-media img {
  width: 100%;
  height: 100%;
}

.store-hero-media .product-media img {
  object-fit: cover;
}

.store-hero-media > span {
  align-items: center;
  padding-inline: 2px;
  color: #5a6570;
  font-size: 14px;
}

.store-hero-media strong {
  color: #111820;
  font-size: 15px;
}

@media (max-width: 920px) {
  .site-header-inner {
    gap: 14px;
    min-height: 68px;
  }

  .site-header .top-nav {
    flex: 1 1 auto;
    justify-content: flex-end;
  }

  .site-header .top-nav a,
  .site-header .top-nav a:not(.cart-link),
  .site-header .top-nav a[href="/kontakt"] {
    padding-inline: 11px;
  }

  .store-hero {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr);
    padding-top: 24px;
  }

  .store-hero-media {
    order: -1;
  }
}

@media (max-width: 760px) {
  .announcement-bar {
    min-height: 32px;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 7px 12px;
    font-size: 11px;
    scrollbar-width: none;
  }

  .announcement-bar::-webkit-scrollbar {
    display: none;
  }

  .site-header {
    top: 32px;
  }

  .admin-bar:not([hidden]) ~ .site-header {
    top: 74px;
  }

  .site-header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    min-height: 64px;
    gap: 8px;
    padding: 9px 12px 10px;
  }

  .site-header .brand {
    min-height: 44px;
    justify-content: center;
  }

  .site-header .site-logo {
    height: 30px;
    max-width: 126px;
  }

  .site-header .top-nav {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px;
    justify-content: stretch;
  }

  .site-header .top-nav a,
  .site-header .top-nav a:not(.cart-link),
  .site-header .top-nav a[href="/kontakt"] {
    min-height: 38px;
    justify-content: center;
    padding: 0 5px;
    font-size: 11px;
    text-align: center;
  }

  .site-header .top-nav a[href="/kontakt"] {
    display: inline-flex;
  }

  .site-header .cart-link {
    margin-left: 2px;
  }

  .site-header .cart-count {
    min-width: 20px;
    min-height: 20px;
    font-size: 11px;
  }

  .store-hero {
    gap: 20px;
    padding: 18px 12px 34px;
  }

  .store-hero-copy {
    gap: 16px;
  }

  .store-hero h1 {
    font-size: clamp(40px, 12.4vw, 58px);
    line-height: .96;
  }

  .store-hero p {
    font-size: 16px;
    line-height: 1.45;
  }

  .store-hero .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .store-hero .button,
  .store-hero .ghost-button {
    width: 100%;
    min-height: 52px;
  }

  .store-hero-media .product-media,
  .store-hero-media .strap-visual,
  .store-hero-media .nylon-placeholder {
    min-height: min(104vw, 430px);
    border-radius: 10px;
  }
}

@media (max-width: 430px) {
  .site-header .top-nav a,
  .site-header .top-nav a:not(.cart-link),
  .site-header .top-nav a[href="/kontakt"] {
    padding-inline: 6px;
    font-size: 10px;
  }
}

/* Product list rebuild: large, quiet product cards. Product page is untouched. */
.product-grid.storefront-grid,
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 330px), 1fr));
  gap: clamp(22px, 3.2vw, 42px);
  align-items: start;
}

.product-list-card {
  display: grid;
  min-width: 0;
  gap: 18px;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
}

.product-list-card:hover {
  box-shadow: none;
  transform: none;
}

.product-list-card:focus-visible {
  outline: 3px solid rgba(17, 24, 32, .22);
  outline-offset: 6px;
}

.product-list-card .product-card-media-link {
  display: block;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.product-list-card .product-media,
.product-list-card .strap-visual,
.product-list-card .nylon-placeholder {
  width: 100%;
  min-height: clamp(360px, 39vw, 560px);
  border: 0;
  border-radius: 12px;
  background: #ebe7de;
  box-shadow: 0 20px 58px rgba(17, 24, 32, .09);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.product-list-card:hover .product-media,
.product-list-card:hover .strap-visual,
.product-list-card:hover .nylon-placeholder {
  transform: translateY(-3px);
  box-shadow: 0 28px 76px rgba(17, 24, 32, .13);
}

.product-list-card .product-media picture,
.product-list-card .product-media img {
  width: 100%;
  height: 100%;
}

.product-list-card .product-media img {
  object-fit: cover;
}

.product-list-card-body {
  display: grid;
  min-width: 0;
  gap: 12px;
  padding-inline: 2px;
}

.product-list-card-head {
  display: grid;
  gap: 6px;
}

.product-list-card h3 {
  margin: 0;
  color: #111820;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.08;
  letter-spacing: 0;
}

.product-list-card h3 a {
  color: inherit;
  text-decoration: none;
}

.product-list-card-price {
  margin: 0;
  color: #111820;
  font-size: 18px;
  font-weight: 860;
  line-height: 1.15;
}

.product-list-card-compat {
  max-width: 34rem;
  margin: 0;
  color: #5a6570;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.45;
}

.product-list-card-meta,
.product-list-card-widths {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.product-list-card-meta span,
.product-list-card-widths span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border: 1px solid rgba(17, 24, 32, .1);
  border-radius: 999px;
  padding: 6px 11px;
  background: rgba(255, 255, 255, .78);
  color: #313c46;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.product-list-card-cta {
  width: fit-content;
  min-height: 46px;
  margin-top: 4px;
  border-color: #111820;
  background: #111820;
  color: #fff;
  padding-inline: 20px;
}

.product-list-card-cta:hover,
.product-list-card-cta:focus-visible {
  background: #24313c;
  color: #fff;
}

@media (max-width: 760px) {
  .product-grid.storefront-grid,
  .featured-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }

  .product-list-card {
    gap: 16px;
  }

  .product-list-card .product-media,
  .product-list-card .strap-visual,
  .product-list-card .nylon-placeholder {
    min-height: min(105vw, 440px);
    border-radius: 10px;
  }

  .product-list-card-body {
    gap: 11px;
  }

  .product-list-card h3 {
    font-size: clamp(24px, 7.2vw, 34px);
  }

  .product-list-card-price {
    font-size: 19px;
  }

  .product-list-card-compat {
    font-size: 15px;
  }

  .product-list-card-cta {
    width: 100%;
    min-height: 52px;
  }
}

/* Product page rebuild: image-led premium commerce page. */
.product-page-premium {
  display: grid;
  width: min(1560px, 100%);
  grid-template-columns: minmax(0, 1.18fr) minmax(380px, .82fr);
  gap: clamp(34px, 5vw, 86px);
  align-items: start;
  padding: clamp(24px, 4vw, 58px) clamp(16px, 5vw, 88px) clamp(80px, 8vw, 130px);
}

.product-page-premium .product-visual-stage {
  min-width: 0;
}

.product-page-premium .product-gallery {
  position: sticky;
  top: 126px;
  display: grid;
  gap: 16px;
}

.product-page-premium .gallery-main,
.product-page-premium .product-gallery > .nylon-placeholder,
.product-page-premium .product-gallery > .strap-visual {
  min-height: clamp(620px, 64vw, 880px);
  border: 0;
  border-radius: 14px;
  background: #ebe7de;
  box-shadow: 0 32px 90px rgba(17, 24, 32, .13);
  overflow: hidden;
}

.product-page-premium .gallery-main picture,
.product-page-premium .gallery-main img {
  width: 100%;
  height: 100%;
}

.product-page-premium .gallery-main img {
  object-fit: cover;
}

.product-page-premium .gallery-badge {
  right: 16px;
  bottom: 16px;
  border: 0;
  background: rgba(17, 24, 32, .82);
  color: #fff;
  backdrop-filter: blur(12px);
}

.product-page-premium .gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(84px, 1fr));
  gap: 10px;
}

.product-page-premium .gallery-thumb {
  min-height: 88px;
  border-radius: 10px;
  background: #f1eee7;
}

.product-page-premium .gallery-thumb.active {
  border-color: #111820;
  box-shadow: 0 0 0 2px #111820;
}

.product-commerce {
  position: sticky;
  top: 126px;
  display: grid;
  min-width: 0;
  gap: 24px;
}

.product-title-block {
  display: grid;
  gap: 14px;
}

.product-page-premium .product-title-block h1 {
  margin: 0;
  max-width: 720px;
  color: #111820;
  font-size: clamp(44px, 5.3vw, 78px);
  line-height: .96;
  letter-spacing: 0;
}

.product-page-premium .product-lead {
  max-width: 580px;
  margin: 0;
  color: #4d5964;
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.5;
}

.product-price-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding-block: 4px 6px;
}

.price-label {
  display: block;
  margin-bottom: 5px;
  color: #6d747c;
  font-size: 12px;
  font-weight: 820;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-page-premium .product-price-row .price {
  color: #111820;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1;
}

.premium-variant-section,
.premium-buy-box,
.product-page-premium .delivery-panel,
.product-page-premium .product-panel {
  display: grid;
  gap: 18px;
  border-top: 1px solid rgba(17, 24, 32, .12);
  padding: 24px 0 0;
  background: transparent;
  box-shadow: none;
}

.premium-choice-block {
  display: grid;
  gap: 12px;
}

.choice-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  color: #111820;
}

.choice-heading strong {
  font-size: 16px;
}

.choice-heading span {
  color: #65717b;
  font-size: 14px;
  font-weight: 720;
}

.premium-size-choices,
.premium-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-page-premium .chip {
  min-height: 52px;
  border-radius: 999px;
  padding: 0 18px;
  background: #fff;
  font-size: 15px;
}

.product-page-premium .chip.active {
  background: #111820;
  color: #fff;
}

.product-page-premium .swatch {
  min-height: 54px;
  border-radius: 999px;
  padding: 8px 14px 8px 8px;
  background: #fff;
  font-size: 14px;
}

.product-page-premium .swatch i {
  width: 28px;
  height: 28px;
}

.product-page-premium .swatch.active {
  border-color: #111820;
  box-shadow: 0 0 0 2px #111820;
}

.premium-buy-box {
  gap: 14px;
}

.premium-qty {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #111820;
  font-weight: 820;
}

.premium-qty input {
  width: 92px;
  min-height: 48px;
  text-align: center;
}

.premium-buy-button {
  width: 100%;
  min-height: 64px;
  border-radius: 999px;
  background: #111820;
  color: #fff;
  font-size: 18px;
}

.premium-buy-button:hover,
.premium-buy-button:focus-visible {
  background: #24313c;
}

.product-page-premium .payment-explainer {
  margin: 0;
  color: #4d5964;
  font-size: 15px;
  line-height: 1.45;
}

.premium-trust-strip {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(17, 24, 32, .12);
  border-bottom: 1px solid rgba(17, 24, 32, .12);
}

.premium-trust-strip div {
  display: grid;
  gap: 4px;
  padding: 15px 0;
}

.premium-trust-strip div + div {
  border-top: 1px solid rgba(17, 24, 32, .08);
}

.premium-trust-strip strong {
  color: #111820;
  font-size: 15px;
}

.premium-trust-strip span {
  color: #5a6570;
  font-size: 14px;
  line-height: 1.4;
}

.product-page-premium .delivery-panel h2,
.product-page-premium .product-panel h2 {
  margin: 0;
  color: #111820;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.08;
}

.product-page-premium .delivery-panel p,
.product-page-premium .product-panel p {
  max-width: 760px;
  margin: 0;
  color: #4d5964;
  font-size: 16px;
  line-height: 1.55;
}

.product-story-sections {
  display: grid;
  grid-column: 1 / -1;
  gap: clamp(34px, 5vw, 74px);
  padding-top: clamp(18px, 4vw, 54px);
}

.product-story-sections .product-panel {
  width: min(980px, 100%);
  margin-inline: auto;
  padding-top: clamp(26px, 4vw, 46px);
}

.product-page-premium .trust-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-page-premium .trust-points div {
  border: 0;
  padding: 0;
}

.product-page-premium .trust-points strong {
  display: block;
  margin-bottom: 6px;
  color: #111820;
  font-size: 17px;
}

.product-page-premium .trust-points span {
  color: #5a6570;
  line-height: 1.45;
}

.product-page-premium .product-faq details {
  border-top: 1px solid rgba(17, 24, 32, .12);
  padding: 18px 0;
}

.product-page-premium .product-faq details:last-child {
  border-bottom: 1px solid rgba(17, 24, 32, .12);
}

.product-page-premium .product-faq summary {
  color: #111820;
  font-size: 18px;
}

.product-page-premium .related-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.product-page-premium .related-product {
  display: grid;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.product-page-premium .related-product .product-media,
.product-page-premium .related-product .strap-visual,
.product-page-premium .related-product .nylon-placeholder {
  min-height: clamp(220px, 24vw, 340px);
  border: 0;
  border-radius: 10px;
  background: #ebe7de;
  box-shadow: 0 14px 40px rgba(17, 24, 32, .08);
}

.product-page-premium .related-product span {
  display: grid;
  gap: 3px;
}

.product-page-premium .related-product strong {
  color: #111820;
  font-size: 18px;
}

.product-page-premium .related-product small {
  color: #5a6570;
}

.sticky-buy-bar {
  display: none;
}

@media (max-width: 980px) {
  .product-page-premium {
    grid-template-columns: minmax(0, 1fr);
    gap: 26px;
    padding-top: 14px;
  }

  .product-page-premium .product-gallery,
  .product-commerce {
    position: static;
  }

  .product-page-premium .product-visual-stage {
    order: -1;
  }
}

@media (max-width: 760px) {
  .product-page-premium {
    width: 100%;
    gap: 22px;
    padding: 10px 12px 108px;
  }

  .product-page-premium .gallery-main,
  .product-page-premium .product-gallery > .nylon-placeholder,
  .product-page-premium .product-gallery > .strap-visual {
    min-height: min(112vw, 470px);
    border-radius: 10px;
  }

  .product-page-premium .gallery-thumbs {
    display: flex;
    overflow-x: auto;
    padding-bottom: 3px;
    scrollbar-width: none;
  }

  .product-page-premium .gallery-thumbs::-webkit-scrollbar {
    display: none;
  }

  .product-page-premium .gallery-thumb {
    flex: 0 0 78px;
    min-height: 78px;
  }

  .product-page-premium .product-title-block h1 {
    font-size: clamp(36px, 11vw, 54px);
  }

  .product-price-row {
    align-items: center;
  }

  .product-page-premium .product-price-row .price {
    font-size: clamp(36px, 10vw, 48px);
  }

  .premium-variant-section,
  .premium-buy-box,
  .product-page-premium .delivery-panel,
  .product-page-premium .product-panel {
    padding-top: 20px;
  }

  .choice-heading {
    align-items: start;
    flex-direction: column;
    gap: 4px;
  }

  .product-page-premium .chip,
  .product-page-premium .swatch {
    min-height: 50px;
  }

  .premium-buy-button {
    min-height: 58px;
  }

  .product-page-premium .trust-points,
  .product-page-premium .related-products {
    grid-template-columns: minmax(0, 1fr);
  }

  .product-story-sections {
    gap: 34px;
    padding-top: 8px;
  }

  .sticky-buy-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 24;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(17, 24, 32, .12);
    background: rgba(248, 247, 243, .96);
    backdrop-filter: blur(18px);
  }

  .sticky-buy-bar div {
    display: grid;
    min-width: 0;
    gap: 2px;
  }

  .sticky-buy-bar strong {
    color: #111820;
    font-size: 18px;
    line-height: 1;
  }

  .sticky-buy-bar span {
    overflow: hidden;
    color: #5a6570;
    font-size: 12px;
    font-weight: 720;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .sticky-buy-bar .button {
    min-height: 48px;
    border-radius: 999px;
    padding-inline: 18px;
  }
}

/* Checkout rebuild: mobile-first stepped request flow. Backend payload is unchanged. */
.checkout-page-premium {
  width: min(1480px, 100%);
  padding: clamp(24px, 5vw, 72px) clamp(16px, 5vw, 88px) clamp(90px, 8vw, 130px);
}

.checkout-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(22px, 4vw, 44px);
}

.checkout-top h1 {
  max-width: 820px;
  margin: 0;
  color: #111820;
  font-size: clamp(46px, 7vw, 92px);
  line-height: .94;
  letter-spacing: 0;
}

.checkout-top p {
  max-width: 690px;
  margin: 12px 0 0;
  color: #4d5964;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.45;
}

.checkout-premium-form {
  display: grid;
  gap: clamp(18px, 3vw, 30px);
}

.checkout-progress {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.checkout-progress span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17, 24, 32, .11);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: #313c46;
  font-size: 13px;
  font-weight: 860;
}

.checkout-premium-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
  gap: clamp(22px, 4vw, 56px);
  align-items: start;
}

.checkout-flow {
  display: grid;
  gap: clamp(16px, 3vw, 28px);
}

.premium-checkout-step {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: clamp(14px, 2vw, 24px);
  border: 0;
  border-top: 1px solid rgba(17, 24, 32, .12);
  border-radius: 0;
  padding: clamp(22px, 4vw, 38px) 0 0;
  background: transparent;
}

.premium-checkout-step > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 999px;
  background: #111820;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
}

.premium-checkout-step h2 {
  margin: 0;
  color: #111820;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: 0;
}

.premium-checkout-step p {
  max-width: 720px;
  margin: 8px 0 18px;
  color: #5a6570;
  font-size: 16px;
  line-height: 1.5;
}

.checkout-field-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.checkout-page-premium .field {
  gap: 8px;
}

.checkout-page-premium .field label {
  color: #313c46;
  font-size: 14px;
  font-weight: 840;
}

.checkout-page-premium input,
.checkout-page-premium select,
.checkout-page-premium textarea {
  min-height: 58px;
  border-radius: 10px;
  border-color: rgba(17, 24, 32, .16);
  background: #fff;
  font-size: 16px;
}

.checkout-page-premium textarea {
  min-height: 104px;
  resize: vertical;
}

.checkout-info-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0 18px;
}

.checkout-info-strip div,
.checkout-safe-box,
.checkout-summary-note {
  display: grid;
  gap: 6px;
  border: 1px solid rgba(17, 24, 32, .1);
  border-radius: 10px;
  padding: 14px;
  background: rgba(255, 255, 255, .72);
}

.checkout-info-strip strong,
.checkout-safe-box strong,
.checkout-summary-note strong {
  color: #111820;
  font-size: 15px;
}

.checkout-info-strip span,
.checkout-safe-box span,
.checkout-summary-note span {
  color: #5a6570;
  font-size: 14px;
  line-height: 1.4;
}

.checkout-safe-box {
  margin: 14px 0 18px;
}

.checkout-page-premium .terms-field label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #313c46;
  line-height: 1.45;
}

.checkout-page-premium .terms-field input {
  width: 22px;
  min-width: 22px;
  min-height: 22px;
  margin-top: 1px;
}

.checkout-page-premium .checkout-submit {
  width: 100%;
  min-height: 64px;
  margin-top: 16px;
  border-radius: 999px;
  background: #111820;
  color: #fff;
  font-size: 18px;
}

.checkout-page-premium .checkout-submit:hover,
.checkout-page-premium .checkout-submit:focus-visible {
  background: #24313c;
}

.checkout-summary-card {
  position: sticky;
  top: 126px;
  display: grid;
  gap: 18px;
  border: 1px solid rgba(17, 24, 32, .1);
  border-radius: 12px;
  padding: 20px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 22px 70px rgba(17, 24, 32, .1);
  backdrop-filter: blur(16px);
}

.checkout-summary-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.checkout-summary-head h2 {
  margin: 0;
  color: #111820;
  font-size: 22px;
}

.checkout-summary-head a {
  color: #111820;
  font-size: 14px;
  font-weight: 820;
}

.checkout-summary-list {
  display: grid;
  gap: 12px;
}

.checkout-summary-row,
.checkout-page-premium .checkout-total {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
}

.checkout-summary-row {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(17, 24, 32, .08);
}

.checkout-summary-row span {
  display: grid;
  gap: 3px;
  min-width: 0;
  color: #111820;
  font-weight: 760;
}

.checkout-summary-row small {
  color: #66717b;
  font-size: 13px;
  font-weight: 650;
}

.checkout-summary-row strong {
  color: #111820;
  white-space: nowrap;
}

.checkout-page-premium .checkout-total {
  border-top: 1px solid rgba(17, 24, 32, .16);
  padding-top: 14px;
  color: #111820;
  font-size: 18px;
}

.modal-body .checkout-progress {
  display: none;
}

.modal-body .checkout-premium-grid {
  grid-template-columns: minmax(0, 1fr);
}

.modal-body .checkout-summary-card {
  position: static;
  box-shadow: none;
}

@media (max-width: 980px) {
  .checkout-top {
    align-items: start;
    flex-direction: column;
  }

  .checkout-premium-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .checkout-summary-card {
    position: static;
    order: -1;
  }

  .checkout-info-strip {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 760px) {
  .checkout-page-premium {
    padding: 18px 12px 112px;
  }

  .checkout-top {
    gap: 14px;
    margin-bottom: 20px;
  }

  .checkout-top h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .checkout-top p {
    font-size: 16px;
  }

  .checkout-progress {
    position: sticky;
    top: 96px;
    z-index: 18;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 8px 0;
    background: rgba(248, 247, 243, .94);
    backdrop-filter: blur(14px);
  }

  .checkout-progress span {
    min-height: 36px;
    font-size: 12px;
  }

  .checkout-premium-grid,
  .checkout-flow {
    gap: 18px;
  }

  .premium-checkout-step {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    padding-top: 20px;
  }

  .premium-checkout-step > span {
    width: 40px;
    height: 40px;
  }

  .premium-checkout-step h2 {
    font-size: clamp(28px, 9vw, 38px);
  }

  .checkout-field-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .checkout-page-premium input,
  .checkout-page-premium select,
  .checkout-page-premium textarea {
    min-height: 56px;
  }

  .checkout-summary-card {
    padding: 16px;
  }

  .checkout-page-premium .checkout-submit {
    position: fixed;
    right: 12px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    left: 12px;
    z-index: 25;
    width: auto;
    min-height: 58px;
    margin: 0;
    box-shadow: 0 16px 40px rgba(17, 24, 32, .22);
  }

  .modal-body .checkout-submit {
    position: static;
    width: 100%;
    box-shadow: none;
  }
}

/* Final premium pass: public store surfaces only. */
.store-section {
  padding-top: clamp(52px, 8vw, 120px);
  padding-bottom: clamp(40px, 7vw, 96px);
}

.store-section-head {
  margin-bottom: clamp(24px, 4vw, 48px);
}

.store-section-head h2 {
  max-width: 860px;
  color: #111820;
  font-size: clamp(42px, 7vw, 86px);
  line-height: .96;
}

.store-section-head .muted,
.store-section-head p:not(.eyebrow) {
  color: #4d5964;
}

.cro-trustbar {
  display: flex;
  gap: 10px;
  justify-content: center;
  border-block: 1px solid rgba(17, 24, 32, .08);
  background: rgba(255, 255, 255, .74);
  backdrop-filter: blur(12px);
}

.cro-trustbar span {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #24583a;
  font-weight: 850;
}

.strap-configurator {
  width: min(1260px, calc(100% - 32px));
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 5vw, 70px);
  margin: clamp(28px, 5vw, 64px) auto;
  border: 0;
  border-radius: 14px;
  padding: clamp(24px, 5vw, 56px);
  background: #111820;
  color: #fff;
  box-shadow: 0 32px 90px rgba(17, 24, 32, .16);
}

.strap-configurator h2 {
  max-width: 520px;
  color: #fff;
  font-size: clamp(36px, 5vw, 68px);
  line-height: .98;
}

.strap-configurator p {
  max-width: 560px;
  color: rgba(255, 255, 255, .72);
  font-size: 17px;
}

.strap-configurator .config-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-self: start;
}

.strap-configurator label {
  color: rgba(255, 255, 255, .82);
  font-weight: 820;
}

.strap-configurator input,
.strap-configurator select {
  min-height: 56px;
  border: 0;
  border-radius: 10px;
  background: #fff;
  color: #111820;
  font-size: 16px;
}

.strap-configurator .button,
.strap-configurator .ghost-button {
  min-height: 56px;
  border-radius: 999px;
}

.strap-configurator .ghost-button {
  border-color: rgba(255, 255, 255, .28);
  background: transparent;
  color: #fff;
}

.config-popular,
.config-suggestion-group {
  color: rgba(255, 255, 255, .66);
}

.model-chip {
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

.model-chip span {
  color: rgba(255, 255, 255, .62);
}

.config-result {
  grid-column: 1 / -1;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 12px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

.config-result span {
  color: rgba(255, 255, 255, .7);
}

.config-feedback,
.compat-field {
  min-width: 0;
}

.compat-field {
  display: grid;
  gap: 8px;
}

.compat-combobox {
  position: relative;
  min-width: 0;
}

.compat-combobox input {
  width: 100%;
  padding-right: 54px;
}

.compat-toggle {
  position: absolute;
  right: 6px;
  top: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  background: #f2f4f6;
  color: #111820;
  font-size: 20px;
  cursor: pointer;
}

.compat-dropdown {
  position: absolute;
  z-index: 70;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  max-height: min(68vh, 520px);
  overflow-y: auto;
  overflow-x: hidden;
  border: 1px solid rgba(17, 24, 32, .12);
  border-radius: 12px;
  background: #fff;
  color: #111820;
  box-shadow: 0 22px 70px rgba(0, 0, 0, .26);
  overscroll-behavior: contain;
}

.compat-dropdown-sticky {
  position: sticky;
  top: 0;
  z-index: 1;
  padding: 12px 14px;
  border-bottom: 1px solid #e4e8ec;
  background: #fff;
  color: #687480;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.compat-brand-group {
  padding: 8px;
}

.compat-brand-heading {
  padding: 8px 8px 5px;
  color: #687480;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.compat-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 10px;
  align-items: center;
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #111820;
  text-align: left;
  cursor: pointer;
}

.compat-option:hover,
.compat-option.is-active {
  background: #eef3f7;
}

.compat-option.is-selected {
  background: #dce9f3;
  box-shadow: inset 0 0 0 1px #7aa7c7;
}

.compat-option span {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.compat-option strong,
.compat-option small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.compat-option small {
  color: #687480;
  font-size: 12px;
}

.compat-option em {
  color: #111820;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

.compat-dropdown-empty {
  padding: 16px;
  color: #687480;
}

.config-help-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.category-grid,
.flow-grid,
.trust-grid {
  gap: clamp(18px, 3vw, 34px);
}

.category-card {
  gap: 16px;
  color: #111820;
}

.category-card .product-media,
.category-card .strap-visual,
.category-card .nylon-placeholder {
  border: 0;
  border-radius: 12px;
  background: #ebe7de;
  box-shadow: 0 20px 58px rgba(17, 24, 32, .09);
}

.category-card strong {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
}

.category-card small {
  color: #5a6570;
  font-size: 15px;
}

.flow-grid article,
.trust-grid article {
  border: 0;
  border-top: 1px solid rgba(17, 24, 32, .12);
  border-radius: 0;
  padding: 22px 0 0;
  background: transparent;
  box-shadow: none;
}

.flow-grid article span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  background: #111820;
  color: #fff;
  font-weight: 900;
}

.flow-grid strong,
.trust-grid h2 {
  color: #111820;
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.08;
}

.flow-grid p,
.trust-grid p {
  color: #5a6570;
  font-size: 16px;
  line-height: 1.5;
}

.premium-cart-page {
  width: min(1460px, 100%);
  padding: clamp(24px, 5vw, 76px) clamp(16px, 5vw, 88px) clamp(90px, 8vw, 130px);
}

.premium-cart-head {
  align-items: end;
  margin-bottom: clamp(24px, 4vw, 48px);
}

.premium-cart-head h1 {
  max-width: 760px;
  color: #111820;
  font-size: clamp(48px, 7vw, 96px);
  line-height: .94;
}

.premium-cart-head p {
  color: #4d5964;
  font-size: 18px;
}

.premium-cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(22px, 4vw, 56px);
  align-items: start;
}

.premium-cart-list {
  gap: 18px;
}

.premium-cart-row {
  grid-template-columns: 144px minmax(0, 1fr) 120px auto auto;
  gap: 18px;
  border: 0;
  border-top: 1px solid rgba(17, 24, 32, .1);
  border-radius: 0;
  padding: 18px 0;
  background: transparent;
}

.premium-cart-row .product-media,
.premium-cart-row .strap-visual,
.premium-cart-row .nylon-placeholder {
  min-height: 144px;
  height: 144px;
  border-radius: 10px;
}

.premium-cart-product h3 {
  margin: 0 0 6px;
  color: #111820;
  font-size: 22px;
}

.premium-cart-product p,
.premium-cart-product span {
  margin: 0;
  color: #5a6570;
}

.premium-cart-summary {
  position: sticky;
  top: 126px;
  display: grid;
  gap: 14px;
  border: 1px solid rgba(17, 24, 32, .1);
  border-radius: 12px;
  padding: 22px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 22px 70px rgba(17, 24, 32, .1);
}

.premium-cart-summary > span {
  color: #5a6570;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.premium-cart-summary > strong {
  color: #111820;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1;
}

.premium-cart-summary p {
  color: #5a6570;
  line-height: 1.45;
}

.premium-cart-summary .button {
  min-height: 58px;
  border-radius: 999px;
}

.content-page {
  width: min(1180px, 100%);
  margin-inline: auto;
  padding: clamp(36px, 7vw, 104px) clamp(16px, 5vw, 72px) clamp(80px, 8vw, 128px);
}

.content-hero {
  display: grid;
  max-width: 920px;
  gap: 16px;
  margin-bottom: clamp(28px, 5vw, 64px);
}

.content-hero h1 {
  margin: 0;
  color: #111820;
  font-size: clamp(48px, 8vw, 108px);
  line-height: .94;
  letter-spacing: 0;
}

.content-hero p {
  max-width: 720px;
  margin: 0;
  color: #4d5964;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.48;
}

.content-body {
  display: grid;
  width: min(860px, 100%);
  gap: 18px;
  border-top: 1px solid rgba(17, 24, 32, .12);
  padding-top: clamp(24px, 4vw, 46px);
}

.content-body p {
  margin: 0;
  color: #313c46;
  font-size: 18px;
  line-height: 1.68;
}

.premium-faq-page .content-body {
  gap: 0;
}

.premium-faq-page details {
  border-bottom: 1px solid rgba(17, 24, 32, .12);
  padding: 20px 0;
}

.premium-faq-page summary {
  color: #111820;
  font-size: 20px;
  font-weight: 850;
  cursor: pointer;
}

.premium-faq-page details p {
  padding-top: 12px;
  color: #4d5964;
}

.content-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: clamp(28px, 4vw, 52px);
}

.content-action-row .button,
.content-action-row .ghost-button {
  min-height: 54px;
  border-radius: 999px;
}

.premium-result-card,
.premium-status-form {
  display: grid;
  width: min(760px, 100%);
  gap: 16px;
  border: 1px solid rgba(17, 24, 32, .1);
  border-radius: 12px;
  padding: clamp(18px, 4vw, 32px);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 22px 70px rgba(17, 24, 32, .1);
}

.premium-result-card p {
  display: grid;
  gap: 6px;
  margin: 0;
  color: #4d5964;
}

.premium-result-card p > span {
  color: #6d747c;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.premium-result-card p > strong {
  color: #111820;
  font-size: clamp(30px, 5vw, 52px);
}

.premium-status-form {
  grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
  align-items: end;
}

.premium-status-form input {
  min-height: 56px;
  border-radius: 10px;
}

.premium-status-form .button {
  min-height: 56px;
  border-radius: 999px;
}

#orderStatusResult {
  margin-top: 22px;
}

.site-footer {
  width: 100%;
  border-top: 1px solid rgba(17, 24, 32, .1);
  padding: clamp(36px, 6vw, 72px) clamp(16px, 5vw, 88px);
  background: #111820;
  color: rgba(255, 255, 255, .76);
}

.site-footer p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, .76);
  font-size: 16px;
  line-height: 1.55;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.footer-links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  padding: 0 13px;
  color: #fff;
  text-decoration: none;
}

.empty-cart {
  border: 0;
  border-top: 1px solid rgba(17, 24, 32, .12);
  border-radius: 0;
  background: transparent;
  padding: clamp(28px, 5vw, 56px) 0;
}

.empty-cart h2 {
  color: #111820;
  font-size: clamp(36px, 6vw, 72px);
  line-height: .98;
}

.empty-cart p {
  color: #4d5964;
  font-size: 18px;
}

@media (max-width: 980px) {
  .strap-configurator,
  .premium-cart-layout,
  .premium-status-form {
    grid-template-columns: minmax(0, 1fr);
  }

  .premium-cart-summary {
    position: static;
    order: -1;
  }

  .premium-status-form {
    align-items: stretch;
  }
}

@media (max-width: 760px) {
  .store-section {
    padding-top: 44px;
    padding-bottom: 42px;
  }

  .store-section-head h2 {
    font-size: clamp(34px, 11vw, 54px);
  }

  .strap-configurator {
    width: calc(100% - 24px);
    gap: 20px;
    padding: 22px;
    border-radius: 12px;
  }

  .strap-configurator h2 {
    font-size: clamp(34px, 10vw, 52px);
  }

  .strap-configurator .config-form {
    grid-template-columns: minmax(0, 1fr);
  }

  .compat-dropdown {
    max-height: min(68vh, 480px);
    border-radius: 12px;
  }

  .compat-option {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 50px;
    padding: 11px 12px;
  }

  .compat-option > small {
    grid-column: 1 / -1;
  }

  .config-help-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .config-help-actions .ghost-button {
    width: 100%;
  }

  .category-grid,
  .flow-grid,
  .trust-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .premium-cart-page,
  .content-page {
    padding: 28px 12px 92px;
  }

  .premium-cart-head {
    align-items: start;
    flex-direction: column;
    gap: 14px;
  }

  .premium-cart-head h1,
  .content-hero h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .premium-cart-row {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 12px;
  }

  .premium-cart-row .product-media,
  .premium-cart-row .strap-visual,
  .premium-cart-row .nylon-placeholder {
    min-height: 112px;
    height: 112px;
  }

  .premium-cart-qty,
  .premium-cart-subtotal,
  .premium-cart-row > button {
    grid-column: 2;
  }

  .premium-cart-row > button {
    width: 100%;
  }

  .content-body p {
    font-size: 16px;
  }

  .content-action-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .premium-status-form {
    padding: 16px;
  }

  .site-footer {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-links {
    justify-content: flex-start;
  }
}

/* Final mobile launch overrides. Keep after previous premium passes. */
.mobile-menu-toggle {
  display: none;
}

.mobile-menu[hidden],
.mobile-menu {
  display: none;
}

.product-media img,
.product-list-card .product-media img,
.product-gallery img,
.gallery-modal img {
  object-fit: contain;
}

.product-placeholder {
  display: grid;
  place-items: center;
  min-height: 190px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f4f1eb, #e7e1d7);
  color: #394450;
  text-align: center;
}

.product-placeholder span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border: 1px solid rgba(17, 24, 32, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  font-size: 13px;
  font-weight: 700;
}

.product-placeholder.product-media-large {
  min-height: clamp(420px, 56vw, 720px);
}

.product-placeholder-small {
  min-height: 112px;
  height: 112px;
}

.product-list-card .stock-pill {
  border-color: rgba(17, 24, 32, .1);
  background: #f7f5f0;
  color: #24313c;
}

.product-list-card .stock-pill.low-stock {
  background: #fff7df;
  color: #7a4b00;
}

.product-list-card .stock-pill.out-of-stock {
  background: #fff0ed;
  color: #8c2719;
}

@media (min-width: 761px) {
  .mobile-menu {
    display: none !important;
  }
}

@media (max-width: 760px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-header {
    padding: 0;
  }

  .site-header-inner {
    display: grid;
    grid-template-columns: minmax(0, auto) auto;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 58px;
    padding: 8px 12px;
  }

  .site-logo {
    height: 34px;
    max-width: min(190px, 58vw);
  }

  .top-nav {
    display: none !important;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    min-width: 48px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 12px;
    border: 1px solid rgba(17, 24, 32, .12);
    border-radius: 999px;
    background: #fff;
    color: #111820;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
  }

  .mobile-menu-toggle-lines,
  .mobile-menu-toggle-lines::before,
  .mobile-menu-toggle-lines::after {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    content: "";
  }

  .mobile-menu-toggle-lines {
    position: relative;
  }

  .mobile-menu-toggle-lines::before,
  .mobile-menu-toggle-lines::after {
    position: absolute;
    left: 0;
  }

  .mobile-menu-toggle-lines::before {
    top: -6px;
  }

  .mobile-menu-toggle-lines::after {
    top: 6px;
  }

  .mobile-menu-toggle[aria-expanded="true"] .mobile-menu-toggle-lines {
    background: transparent;
  }

  .mobile-menu-toggle[aria-expanded="true"] .mobile-menu-toggle-lines::before {
    top: 0;
    transform: rotate(45deg);
  }

  .mobile-menu-toggle[aria-expanded="true"] .mobile-menu-toggle-lines::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .mobile-menu:not([hidden]) {
    display: grid;
    width: calc(100% - 24px);
    margin: 0 12px 10px;
    padding: 8px;
    border: 1px solid rgba(17, 24, 32, .08);
    border-radius: 14px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 18px 44px rgba(17, 24, 32, .12);
  }

  .mobile-menu a {
    display: flex;
    min-height: 48px;
    align-items: center;
    padding: 0 12px;
    border-radius: 10px;
    color: #111820;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
  }

  .mobile-menu a:focus-visible,
  .mobile-menu a:hover {
    background: #f3f0e8;
  }

  .product-grid.storefront-grid,
  .featured-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .product-list-card {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    align-items: stretch;
    gap: 10px;
    min-width: 0;
    padding: 9px;
    border-radius: 14px;
  }

  .product-list-card .product-media,
  .product-list-card .product-placeholder,
  .product-list-card .nylon-placeholder,
  .product-list-card .strap-visual {
    width: 96px;
    min-height: 96px;
    height: 96px;
    border-radius: 10px;
  }

  .product-list-card .product-media picture,
  .product-list-card .product-media img {
    width: 100%;
    height: 100%;
  }

  .product-list-card-body {
    align-content: start;
    gap: 5px;
    min-width: 0;
  }

  .product-list-card-head {
    gap: 3px;
  }

  .product-list-card h3 {
    display: -webkit-box;
    overflow: hidden;
    font-size: 16px;
    line-height: 1.16;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .product-list-card-price {
    font-size: 16px;
    line-height: 1.15;
  }

  .product-list-card-compat {
    display: -webkit-box;
    overflow: hidden;
    margin-top: 1px;
    font-size: 11.5px;
    line-height: 1.25;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .product-list-card-meta,
  .product-list-card-widths {
    gap: 5px;
  }

  .product-list-card-meta span,
  .product-list-card-widths span {
    min-height: 22px;
    padding: 2px 7px;
    border-radius: 999px;
    font-size: 11px;
  }

  .product-list-card-cta {
    justify-self: start;
    width: auto !important;
    min-height: 30px !important;
    margin-top: 1px;
    padding: 0 10px !important;
    border-radius: 999px;
    font-size: 11.5px;
    line-height: 1;
  }
}

@media (max-width: 360px) {
  .mobile-menu-toggle-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .site-logo {
    max-width: 168px;
  }

  .product-list-card {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 9px;
  }

  .product-list-card .product-media,
  .product-list-card .product-placeholder,
  .product-list-card .nylon-placeholder,
  .product-list-card .strap-visual {
    width: 84px;
    min-height: 84px;
    height: 84px;
  }

  .product-list-card h3,
  .product-list-card-price {
    font-size: 15px;
  }
}

/* Forsidekonfigurator: produktbildet er hovedflaten, valgene fÃ¸lger en tydelig rekkefÃ¸lge. */
.home-configurator-page { padding-top: clamp(24px, 4vw, 56px); }
.home-configurator-page .product-commerce { gap: 22px; }
.home-config-step { display: grid; gap: 14px; }
.home-step-heading { display: grid; grid-template-columns: 34px minmax(0, 1fr); gap: 11px; align-items: start; }
.home-step-heading > span { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; background: #a52b19; color: #fff; font-size: 13px; font-weight: 900; }
.home-step-heading div { display: grid; gap: 2px; }
.home-step-heading strong { color: #111820; font-size: 17px; }
.home-step-heading small { color: #65717b; font-size: 13px; line-height: 1.35; }
.home-type-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.home-type-card {
  position: relative;
  display: grid;
  grid-template-rows: 48px auto;
  gap: 9px;
  min-width: 0;
  min-height: 94px;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 32, .16);
  border-radius: 14px;
  padding: 8px 9px 11px;
  background: #fff;
  color: #111820;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(17, 24, 32, .06);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.home-type-card:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(17, 24, 32, .12); }
.home-type-card:focus-visible { outline: 3px solid rgba(165, 43, 25, .34); outline-offset: 3px; }
.home-type-card strong { position: relative; z-index: 2; padding-left: 2px; font-size: 15px; line-height: 1; }
.home-type-card.active { border: 2px solid #111820; padding: 7px 8px 10px; background: #fff; color: #111820; box-shadow: 0 11px 26px rgba(17, 24, 32, .16); }
.home-type-card.active::after {
  content: '✓';
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 4;
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  background: #111820;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}
.home-type-swatch { position: relative; display: block; min-width: 0; overflow: hidden; border-radius: 9px; }
.home-type-swatch i, .home-type-swatch::before, .home-type-swatch::after { content: ''; position: absolute; display: block; }

/* Silikon: tre små, myke reimer med hull og tydelig gummifølelse. */
.home-type-silikon .home-type-swatch {
  background:
    radial-gradient(circle at 88% 20%, rgba(122, 203, 22, .32) 0 5px, transparent 6px),
    radial-gradient(circle at 10% 78%, rgba(117, 65, 216, .26) 0 6px, transparent 7px),
    linear-gradient(145deg, #eef4f2, #dce5e2);
  box-shadow: inset 0 0 0 1px rgba(39, 66, 61, .09);
}
.home-type-silikon .home-type-swatch i,
.home-type-silikon .home-type-swatch::before,
.home-type-silikon .home-type-swatch::after {
  top: 5px;
  bottom: 5px;
  width: 17%;
  border-radius: 6px 6px 8px 8px;
  background:
    radial-gradient(circle at 50% 34%, rgba(17, 24, 32, .52) 0 1.8px, transparent 2.2px),
    radial-gradient(circle at 50% 51%, rgba(17, 24, 32, .52) 0 1.8px, transparent 2.2px),
    radial-gradient(circle at 50% 68%, rgba(17, 24, 32, .52) 0 1.8px, transparent 2.2px),
    linear-gradient(100deg, rgba(255,255,255,.38), transparent 32% 70%, rgba(0,0,0,.12)),
    var(--silicone-color);
  box-shadow: inset 0 2px 2px rgba(255, 255, 255, .45), inset 0 -3px 4px rgba(0, 0, 0, .18), 0 2px 4px rgba(21, 36, 33, .2);
}
.home-type-silikon .home-type-swatch::before { left: 18%; --silicone-color: #ef7a22; transform: rotate(-5deg); }
.home-type-silikon .home-type-swatch i { left: 41.5%; z-index: 2; --silicone-color: #39cdbd; }
.home-type-silikon .home-type-swatch::after { right: 18%; --silicone-color: #2f6fe4; transform: rotate(5deg); }

/* Titanium: tre tydelige, børstede lenkeledd i stedet for repeterende striper. */
.home-type-titanium .home-type-swatch {
  background:
    linear-gradient(105deg, rgba(255,255,255,.8), transparent 34% 66%, rgba(255,255,255,.48)),
    linear-gradient(180deg, #e9ecee, #aeb5b9);
  box-shadow: inset 0 0 0 1px rgba(57, 66, 71, .18), inset 0 -5px 10px rgba(55, 63, 68, .15);
}
.home-type-titanium .home-type-swatch i,
.home-type-titanium .home-type-swatch::before,
.home-type-titanium .home-type-swatch::after {
  top: 9px;
  bottom: 9px;
  width: 23%;
  border: 1px solid #626b70;
  border-radius: 5px;
  background: linear-gradient(165deg, #fbfcfc 0%, #bcc2c5 24%, #737c81 52%, #dce0e2 76%, #8b9397 100%);
  box-shadow: inset 0 2px 2px rgba(255, 255, 255, .82), inset 0 -3px 4px rgba(36, 43, 47, .34), 0 2px 3px rgba(33, 39, 43, .2);
}
.home-type-titanium .home-type-swatch::before { left: 12%; }
.home-type-titanium .home-type-swatch i {
  left: 38.5%;
  z-index: 2;
  width: 23%;
  top: 6px;
  bottom: 6px;
  border-color: #3e474c;
  background: linear-gradient(165deg, #ffffff 0%, #c9ced0 22%, #5d676c 52%, #e5e8e9 77%, #747d82 100%);
}
.home-type-titanium .home-type-swatch::after { right: 12%; }

/* Skinn: varm cognacfarge, diskret narv og synlig søm. */
.home-type-skinn .home-type-swatch {
  background:
    radial-gradient(circle at 18% 28%, rgba(255,255,255,.12) 0 1px, transparent 2px),
    radial-gradient(circle at 72% 68%, rgba(61,26,12,.22) 0 1px, transparent 2px),
    linear-gradient(135deg, #7d3f20, #ad6940 48%, #653018);
  background-size: 13px 11px, 17px 15px, auto;
  box-shadow: inset 0 0 12px rgba(50, 18, 5, .28);
}
.home-type-skinn .home-type-swatch i {
  inset: 6px 12%;
  border: 1px solid rgba(57, 24, 10, .6);
  border-radius: 7px;
  box-shadow: inset 0 0 0 2px rgba(255, 205, 142, .12);
}
.home-type-skinn .home-type-swatch::before,
.home-type-skinn .home-type-swatch::after {
  left: 17%;
  right: 17%;
  border-top: 2px dashed #e7bd83;
  opacity: .9;
}
.home-type-skinn .home-type-swatch::before { top: 11px; }
.home-type-skinn .home-type-swatch::after { bottom: 11px; }
.home-model-step { border-top: 1px solid rgba(17, 24, 32, .12); padding-top: 22px; }
.home-model-choice .strap-configurator { display: block; width: 100%; margin: 0; border: 0; padding: 0; background: transparent; color: #111820; box-shadow: none; }
.home-model-choice .strap-configurator > div:first-child, .home-model-choice .config-feedback { display: none; }
.home-model-choice .strap-configurator .config-form { grid-template-columns: minmax(0, 1fr) auto; gap: 9px; }
.home-model-choice .strap-configurator label { color: #111820; }
.home-model-choice .strap-configurator input { min-height: 52px; border: 1px solid rgba(17, 24, 32, .14); background: #fff; }
.home-model-choice .strap-configurator .ghost-button { min-height: 52px; border-color: rgba(17, 24, 32, .18); background: #fff; color: #111820; }
.home-model-result { margin: 10px 0 0; border-left: 3px solid #2f7d4a; padding: 9px 12px; background: #eef7f0; color: #24583a; font-size: 14px; line-height: 1.4; }
.product-page-premium .chip.recommended-fit span { display: block; margin-left: 7px; color: inherit; font-size: 10px; font-weight: 800; }
.home-configurator-page .gallery-main { cursor: default; }
@media (max-width: 760px) {
  .home-configurator-page { padding-top: 12px; }
  .home-type-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 7px; overflow: visible; padding-bottom: 4px; }
  .home-type-card { grid-template-rows: 42px auto; min-height: 84px; padding: 6px 7px 9px; border-radius: 12px; }
  .home-type-card.active { padding: 5px 6px 8px; }
  .home-type-card strong { font-size: 13px; }
  .home-model-choice .strap-configurator .config-form { grid-template-columns: minmax(0, 1fr); }
}
/* Product images are intentionally not expandable. */
.gallery-main {
  cursor: default !important;
  pointer-events: none !important;
}

.gallery-main .gallery-badge {
  display: none !important;
}

/* Simplified checkout */
.checkout-simple {
  --checkout-ink: #111a23;
  --checkout-line: #d9d5ce;
  --checkout-paper: #fffdfa;
  --checkout-accent: #b52b18;
  --vipps-orange: #ff5b24;
}

.checkout-simple .checkout-top {
  max-width: 760px;
  margin-bottom: 28px;
}

.checkout-simple .checkout-top h1 {
  max-width: 720px;
}

.checkout-simple .checkout-premium-grid {
  align-items: start;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(24px, 4vw, 56px);
}

.checkout-simple .checkout-flow {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.checkout-simple .premium-checkout-step {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--checkout-line);
  border-radius: 18px;
  background: var(--checkout-paper);
  box-shadow: none;
}

.checkout-simple .premium-checkout-step h2 {
  margin: 0 0 8px;
  color: var(--checkout-ink);
}

.checkout-simple .checkout-field-grid {
  margin-top: 20px;
}

.checkout-simple [hidden] {
  display: none !important;
}

.delivery-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.delivery-choice {
  min-height: 158px;
  padding: 20px;
  border: 2px solid var(--checkout-line);
  border-radius: 16px;
  background: #fff;
  color: var(--checkout-ink);
  text-align: left;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.delivery-choice:hover {
  transform: translateY(-2px);
  border-color: #a8a29a;
}

.delivery-choice.active {
  border-color: var(--checkout-ink);
  background: #f1f3f4;
  box-shadow: inset 0 0 0 1px var(--checkout-ink);
}

.delivery-choice:focus-visible {
  outline: 3px solid rgba(181, 43, 24, 0.28);
  outline-offset: 3px;
}

.delivery-choice-kicker,
.vipps-kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--checkout-accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.delivery-choice strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.delivery-choice small {
  display: block;
  color: #53606c;
  font-size: 0.9rem;
  line-height: 1.45;
}

.delivery-choice-message {
  margin: 14px 0 0;
  color: #44515d;
  font-size: 0.92rem;
}

.checkout-simple .checkout-info-strip {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
  padding: 14px 16px;
  border: 1px solid #ffd1c2;
  border-radius: 12px;
  background: #fff4ef;
}

.checkout-simple .checkout-info-strip strong {
  white-space: nowrap;
  color: #8f2415;
}

.vipps-checkout-card {
  margin: 18px 0 22px;
  padding: 22px;
  border-radius: 16px;
  background: var(--vipps-orange);
  color: #17120f;
}

.vipps-checkout-card .vipps-kicker {
  color: #5d1d09;
}

.vipps-checkout-card > strong {
  display: block;
  font-size: clamp(1.55rem, 4vw, 2.15rem);
  letter-spacing: -0.03em;
}

.vipps-checkout-card p {
  max-width: 520px;
  margin: 8px 0 18px;
  line-height: 1.5;
}

.vipps-copy-button {
  padding: 11px 16px;
  border: 1px solid rgba(23, 18, 15, 0.35);
  border-radius: 999px;
  background: #fff;
  color: #17120f;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.checkout-simple .checkout-submit {
  min-height: 56px;
  font-size: 1rem;
}

.checkout-simple .checkout-summary-card {
  position: sticky;
  top: 24px;
}

.checkout-simple .checkout-summary-note {
  display: grid;
  gap: 4px;
}

@media (max-width: 820px) {
  .checkout-simple .checkout-premium-grid {
    grid-template-columns: 1fr;
  }

  .checkout-simple .checkout-summary-card {
    position: static;
    order: -1;
  }
}

@media (max-width: 560px) {
  .delivery-choice-grid {
    grid-template-columns: 1fr;
  }

  .delivery-choice {
    min-height: 0;
  }

  .checkout-simple .checkout-info-strip {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .delivery-choice {
    transition: none;
  }
}
/* Minimal header: logo and cart only. */
.top-nav {
  display: flex !important;
  margin-left: auto;
  gap: 0 !important;
}

.top-nav > a:not(.cart-link),
.menu-toggle {
  display: none !important;
}

.top-nav .cart-link {
  display: inline-flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-width: 154px;
  min-height: 46px;
  padding: 0 10px 0 20px !important;
  border: 2px solid #111820;
  border-radius: 999px;
  background: #111820 !important;
  color: #ffffff !important;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.top-nav .cart-link:hover {
  background: #ffffff !important;
  color: #111820 !important;
}

.top-nav .cart-count {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 0 7px;
  border-radius: 999px;
  background: #ffffff !important;
  color: #111820 !important;
  font-size: 0.8rem;
  font-weight: 900;
}

.top-nav .cart-link:hover .cart-count {
  background: #111820 !important;
  color: #ffffff !important;
}

.top-nav .cart-link:focus-visible {
  outline: 3px solid rgba(181, 43, 24, 0.35);
  outline-offset: 3px;
}

@media (max-width: 640px) {
  .top-nav .cart-link {
    min-width: 132px;
    min-height: 42px;
    padding-left: 16px !important;
  }
}
/* Checkout desktop repair */
.checkout-simple .checkout-flow,
.checkout-simple .premium-checkout-step,
.checkout-simple .premium-checkout-step > * {
  min-width: 0;
}

.checkout-simple .premium-checkout-step {
  display: block !important;
  grid-template-columns: 1fr !important;
  width: 100%;
}

.checkout-simple .premium-checkout-step > * {
  grid-column: 1 / -1 !important;
  width: 100%;
}

.checkout-simple .checkout-submit {
  position: static !important;
  inset: auto !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100% !important;
  min-height: 58px;
  margin: 22px 0 0 !important;
  border: 2px solid #111820 !important;
  border-radius: 999px;
  background: #111820 !important;
  color: #ffffff !important;
  box-shadow: none !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.checkout-simple .checkout-submit:hover {
  background: #ffffff !important;
  color: #111820 !important;
}

@media (min-width: 821px) {
  .checkout-simple .checkout-premium-grid {
    display: grid !important;
    grid-template-columns: minmax(560px, 760px) minmax(300px, 380px) !important;
    justify-content: center;
    align-items: start;
    gap: clamp(28px, 4vw, 58px) !important;
    width: 100%;
  }

  .checkout-simple .checkout-flow {
    width: 100%;
  }

  .checkout-simple .checkout-field-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px !important;
    width: 100%;
  }

  .checkout-simple .checkout-field-grid .field.full,
  .checkout-simple .checkout-field-grid .terms-field {
    grid-column: 1 / -1 !important;
  }

  .checkout-simple .delivery-choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    width: 100%;
  }

  .checkout-simple .delivery-choice {
    width: 100%;
  }

  .checkout-simple .checkout-summary-card {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 820px) {
  .checkout-simple .checkout-field-grid {
    grid-template-columns: 1fr !important;
  }

  .checkout-simple .checkout-submit {
    margin-bottom: 10px !important;
  }
}
/* Structured checkout address */
.structured-address-grid {
  display: grid;
  grid-template-columns: minmax(120px, 0.38fr) minmax(180px, 0.62fr);
  gap: 14px;
  margin-top: 8px;
}

.structured-address-field {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.structured-address-field.street-field {
  grid-column: 1 / -1;
}

.structured-address-field > span,
.checkout-simple .field-label {
  color: #111820;
  font-size: 0.84rem;
  font-weight: 800;
}

.structured-address-field input {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid #cbc7c0;
  border-radius: 10px;
  background: #ffffff;
  color: #111820;
  font: inherit;
}

.structured-address-field input:focus {
  border-color: #111820;
  outline: 3px solid rgba(181, 43, 24, 0.16);
  outline-offset: 1px;
}

.address-api-value[hidden] {
  display: none !important;
}

@media (max-width: 480px) {
  .structured-address-grid {
    grid-template-columns: 112px minmax(0, 1fr);
  }
}
/* Remove the outdated duplicated product trust panel. */
.product-story-sections > .product-panel.trust-panel {
  display: none !important;
}
/* Related products: show complete product images at a useful size. */
.related-product {
  grid-template-columns: minmax(160px, 42%) minmax(0, 1fr) !important;
  min-height: 220px !important;
  align-items: center !important;
  gap: 16px !important;
  padding: 10px !important;
}

.related-product .product-media {
  width: 100% !important;
  height: auto !important;
  min-height: 200px !important;
  aspect-ratio: 1 / 1 !important;
  display: grid !important;
  place-items: center !important;
  overflow: hidden !important;
  padding: 10px !important;
  border-radius: 10px !important;
  background: #ece9e2 !important;
}

.related-product .product-media picture {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
}

.related-product .product-media img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: contain !important;
  object-position: center !important;
}

.related-product > span {
  min-width: 0 !important;
  padding: 8px 6px !important;
}

.related-product > span strong,
.related-product > span small {
  display: block !important;
}

@media (max-width: 700px) {
  .related-products {
    grid-template-columns: 1fr !important;
  }

  .related-product {
    grid-template-columns: 132px minmax(0, 1fr) !important;
    min-height: 152px !important;
    gap: 12px !important;
  }

  .related-product .product-media {
    min-height: 132px !important;
  }
}
/* Admin inventory alerts */
.stock-alert-panel {
  margin: 18px 0 24px;
  border: 1px solid #d9d3c8;
  border-left: 5px solid #b02a1b;
  background: #fffdf8;
}

.stock-alert-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
}

.stock-alert-heading h2,
.stock-alert-heading p {
  margin: 0;
}

.stock-alert-heading p {
  margin-top: 4px;
}

.stock-alert-count {
  display: grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  padding: 0 10px;
  border-radius: 999px;
  color: #fff;
  background: #b02a1b;
  font-size: 1.1rem;
}

.stock-alert-list {
  display: grid;
  gap: 8px;
}

.stock-alert-row {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(110px, auto) minmax(130px, auto);
  align-items: center;
  gap: 16px;
  padding: 12px 14px;
  border: 1px solid #ddd7cd;
  border-radius: 10px;
  background: #fff;
}

.stock-alert-row > span:first-child {
  display: grid;
  gap: 2px;
}

.stock-alert-row small {
  color: #5d6670;
}

.stock-alert-row.is-empty {
  border-color: #e1a096;
  background: #fff7f5;
}

.stock-alert-state {
  font-weight: 700;
}

.stock-alert-suggestion {
  color: #8d2116;
  text-align: right;
}

.stock-alert-ok {
  margin: 0;
  padding: 12px 14px;
  border-radius: 10px;
  color: #176b3a;
  background: #eef9f1;
}

@media (max-width: 700px) {
  .stock-alert-row {
    grid-template-columns: 1fr auto;
    gap: 6px 12px;
  }

  .stock-alert-suggestion {
    grid-column: 1 / -1;
    text-align: left;
  }
}
/* Product recommendation cards use real group photos or a compact variant collage. */
.related-product .product-group-media,
.cart-related-item .product-group-media {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 5px !important;
  padding: 7px !important;
}

.related-product .product-group-media > img,
.cart-related-item .product-group-media > img {
  min-width: 0 !important;
  object-fit: contain !important;
}
/* Persistent restock-order status in admin low-stock alerts. */
.stock-alert-row {
  grid-template-columns: minmax(180px, 1fr) auto auto minmax(138px, auto);
}
.stock-alert-order-button {
  display: grid;
  gap: 2px;
  justify-items: center;
  white-space: nowrap;
}
.stock-alert-order-button.is-ordered,
.stock-alert-order-button:disabled {
  border-color: #2f7d4a;
  background: #eef7f0;
  color: #24583a;
  opacity: 1;
}
.stock-alert-order-button small { font-size: 11px; }
@media (max-width: 760px) {
  .stock-alert-row { grid-template-columns: minmax(0, 1fr) auto; }
  .stock-alert-order-button { grid-column: 1 / -1; width: 100%; }
}
/* Expected restock date shown below the selected variant status. */
.product-stock-message {
  display: grid;
  justify-items: end;
  gap: 6px;
  text-align: right;
}
.product-stock-message small {
  max-width: 260px;
  color: #6d747c;
  font-size: 12px;
  line-height: 1.35;
}
@media (max-width: 560px) {
  .product-stock-message small { max-width: 190px; }
}
/* Restock workflow: order first, receive when goods arrive. */
.stock-alert-groups {
  display: grid;
  gap: 18px;
}
.stock-alert-group {
  padding: 14px;
  border: 1px solid #ddd7cd;
  border-radius: 14px;
  background: #fff;
}
.stock-alert-group-order {
  border-top: 4px solid #b02a1b;
}
.stock-alert-group-ordered {
  border-top: 4px solid #2f7d4a;
  background: #f8fcf8;
}
.stock-alert-group-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.stock-alert-group-heading h3 {
  margin: 0;
  font-size: 1.05rem;
}
.stock-alert-group-heading span {
  display: grid;
  place-items: center;
  min-width: 30px;
  height: 30px;
  padding: 0 9px;
  border-radius: 999px;
  background: #ece8e0;
  font-weight: 800;
}
.stock-alert-row.is-ordered {
  border-color: #b9d8c2;
  background: #fff;
}
.stock-alert-row.is-ordered .stock-alert-state {
  display: grid;
  gap: 2px;
  color: #24583a;
}
.stock-alert-receive-button {
  border-color: #2f7d4a;
  background: #2f7d4a;
  color: #fff;
  font-weight: 800;
  white-space: nowrap;
}
.stock-alert-receive-button:hover {
  background: #245f39;
  color: #fff;
}
.stock-alert-empty {
  margin: 0;
  padding: 12px 14px;
  border-radius: 10px;
  color: #5d6670;
  background: #f2f1ee;
}
@media (max-width: 760px) {
  .stock-alert-group {
    padding: 10px;
  }
  .stock-alert-row.is-ordered .stock-alert-state {
    justify-items: end;
    text-align: right;
  }
  .stock-alert-receive-button {
    grid-column: 1 / -1;
    width: 100%;
  }
}
/* Inventory overview with purchasing value. */
.inventory-overview-panel {
  margin: 0 0 24px;
  border: 1px solid #d9d3c8;
  background: #fff;
}
.inventory-overview-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 16px;
}
.inventory-overview-heading h2,
.inventory-overview-heading p {
  margin: 0;
}
.inventory-overview-heading p {
  margin-top: 4px;
}
.inventory-overview-search {
  display: grid;
  gap: 5px;
  min-width: min(320px, 100%);
  font-size: 12px;
  font-weight: 800;
}
.inventory-overview-search input {
  width: 100%;
  min-height: 42px;
  padding: 9px 12px;
  border: 1px solid #cbc6bd;
  border-radius: 9px;
  background: #fff;
  color: #101820;
}
.inventory-overview-totals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}
.inventory-overview-totals article {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid #d9d3c8;
  border-radius: 12px;
  background: #f6f3ed;
}
.inventory-overview-totals small {
  color: #5d6670;
  font-weight: 700;
}
.inventory-overview-totals strong {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}
.inventory-overview-table-wrap {
  max-height: 620px;
  overflow: auto;
  border: 1px solid #d9d3c8;
  border-radius: 12px;
}
.inventory-overview-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 13px;
}
.inventory-overview-table th,
.inventory-overview-table td {
  padding: 10px 12px;
  border-bottom: 1px solid #e7e2d9;
  text-align: left;
  white-space: nowrap;
}
.inventory-overview-table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  color: #fff;
  background: #101820;
  font-size: 11px;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.inventory-overview-table .number {
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.inventory-overview-table tr.is-low td {
  background: #fffaf0;
}
.inventory-overview-table tr.is-empty td {
  background: #fff2ef;
}
.inventory-overview-table td.has-ordered {
  color: #245f39;
  background: #eef7f0 !important;
  font-weight: 800;
}
.inventory-overview-no-results {
  margin: 0;
  padding: 18px;
  text-align: center;
  color: #5d6670;
}
@media (max-width: 760px) {
  .inventory-overview-heading {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }
  .inventory-overview-totals {
    grid-template-columns: 1fr;
  }
  .inventory-overview-table-wrap {
    max-height: 520px;
  }
}
/* Spreadsheet-style admin order overview. */
.order-overview-panel {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid #d9d3c8;
  background: #fff;
}
.order-overview-totals {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}
.order-overview-totals article {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid #d9d3c8;
  border-radius: 10px;
  background: #f6f3ed;
}
.order-overview-totals small {
  color: #5d6670;
  font-size: 12px;
  font-weight: 750;
}
.order-overview-totals strong {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-variant-numeric: tabular-nums;
}
.order-overview-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(180px, 240px) auto;
  align-items: end;
  gap: 10px;
  margin-bottom: 12px;
}
.order-overview-toolbar label {
  display: grid;
  gap: 5px;
  font-size: 12px;
  font-weight: 800;
}
.order-overview-toolbar input,
.order-overview-toolbar select {
  width: 100%;
  min-height: 42px;
  padding: 9px 11px;
  border: 1px solid #cbc6bd;
  border-radius: 7px;
  background: #fff;
}
.order-overview-toolbar > strong {
  align-self: center;
  padding-top: 18px;
  color: #5d6670;
  white-space: nowrap;
}
.order-table-desktop {
  max-height: 680px;
  overflow: auto;
  border: 1px solid #d9d3c8;
  border-radius: 10px;
}
.order-overview-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 12px;
}
.order-overview-table th,
.order-overview-table td {
  padding: 9px 10px;
  border-right: 1px solid #ebe6dd;
  border-bottom: 1px solid #e1dcd3;
  vertical-align: middle;
  text-align: left;
}
.order-overview-table th:last-child,
.order-overview-table td:last-child {
  border-right: 0;
}
.order-overview-table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  color: #fff;
  background: #101820;
  font-size: 10px;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.order-overview-table .number {
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.order-overview-row:nth-of-type(4n + 1) td {
  background: #faf8f4;
}
.order-overview-row:hover td,
.order-overview-row.is-open td {
  background: #eef4f6;
}
.order-number-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #0b5573;
  font: inherit;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  white-space: nowrap;
}
.order-date-cell {
  min-width: 105px;
  color: #4f5962;
  white-space: nowrap;
}
.order-customer-cell,
.order-items-cell,
.order-items-cell > span {
  display: grid;
  gap: 2px;
}
.order-customer-cell {
  min-width: 150px;
}
.order-customer-cell small,
.order-items-cell small {
  color: #5d6670;
  font-size: 11px;
}
.order-items-cell {
  min-width: 230px;
  max-width: 360px;
  gap: 6px;
}
.order-items-cell > span + span {
  padding-top: 5px;
  border-top: 1px dotted #d1cbc1;
}
.order-open-button {
  min-height: 32px;
  padding: 6px 10px;
  white-space: nowrap;
}
.order-detail {
  display: none;
}
.order-detail.open {
  display: table-row;
}
.order-detail > td {
  padding: 16px !important;
  background: #f3f6f7 !important;
  border-bottom: 3px solid #80909a !important;
}
.order-overview-empty {
  padding: 24px !important;
  color: #5d6670;
  text-align: center !important;
}
.order-card {
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid #d9d3c8;
  border-radius: 10px;
  background: #fff;
}
.order-card-main {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px;
  border: 0;
  border-bottom: 1px solid #e1dcd3;
  background: #f6f3ed;
  text-align: left;
}
.order-card-main > span:first-child {
  display: grid;
  gap: 2px;
}
.order-card-main small {
  color: #5d6670;
}
.order-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 13px;
}
.order-card-grid > div {
  display: grid;
  gap: 2px;
}
.order-card-grid span {
  color: #5d6670;
  font-size: 11px;
}
.order-card-detail {
  display: none;
  padding: 13px;
  border-top: 1px solid #e1dcd3;
  background: #f3f6f7;
}
.order-card-detail.open {
  display: block;
}
@media (max-width: 900px) {
  .order-overview-totals {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .order-overview-toolbar {
    grid-template-columns: 1fr 1fr;
  }
  .order-overview-toolbar > strong {
    grid-column: 1 / -1;
    padding-top: 0;
  }
}
@media (max-width: 700px) {
  .order-overview-panel {
    padding: 10px;
  }
  .order-overview-totals,
  .order-overview-toolbar {
    grid-template-columns: 1fr;
  }
  .order-overview-toolbar > strong {
    grid-column: auto;
  }
  .order-card-grid {
    grid-template-columns: 1fr 1fr;
  }
}
/* Spreadsheet-style restock alerts. */
.stock-alert-table-panel {
  border-left-width: 1px;
  background: #fff;
}
.stock-alert-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}
.stock-alert-summary article {
  display: grid;
  gap: 4px;
  padding: 13px 15px;
  border: 1px solid #d9d3c8;
  border-radius: 10px;
  background: #f6f3ed;
}
.stock-alert-summary article:first-child {
  border-top: 4px solid #b02a1b;
}
.stock-alert-summary article:last-child {
  border-top: 4px solid #2f7d4a;
}
.stock-alert-summary small {
  color: #5d6670;
  font-size: 12px;
  font-weight: 750;
}
.stock-alert-summary strong {
  font-size: 1.6rem;
  font-variant-numeric: tabular-nums;
}
.stock-alert-table-wrap {
  max-height: 480px;
  overflow: auto;
  border: 1px solid #d9d3c8;
  border-radius: 10px;
}
.stock-alert-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 12px;
}
.stock-alert-table th,
.stock-alert-table td {
  padding: 9px 11px;
  border-right: 1px solid #ebe6dd;
  border-bottom: 1px solid #e1dcd3;
  text-align: left;
  vertical-align: middle;
  white-space: nowrap;
}
.stock-alert-table th:last-child,
.stock-alert-table td:last-child {
  border-right: 0;
}
.stock-alert-table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  color: #fff;
  background: #101820;
  font-size: 10px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.stock-alert-table .number {
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.stock-alert-table tbody tr:nth-child(even) td {
  background: #faf8f4;
}
.stock-alert-table tbody tr.is-low td {
  background: #fffaf0;
}
.stock-alert-table tbody tr.is-empty td {
  background: #fff2ef;
}
.stock-alert-table tbody tr.is-ordered td {
  background: #f3faf5;
}
.stock-alert-table tbody tr:hover td {
  background: #edf4f6;
}
.stock-alert-order-quantity {
  color: #8d2116;
}
.stock-alert-on-way {
  color: #245f39;
}
.stock-alert-table .stock-alert-order-button,
.stock-alert-table .stock-alert-receive-button {
  display: inline-flex;
  width: auto;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
}
@media (max-width: 700px) {
  .stock-alert-summary {
    grid-template-columns: 1fr 1fr;
  }
  .stock-alert-group {
    padding: 9px;
  }
  .stock-alert-table-wrap {
    max-height: 420px;
  }
}
/* Compact color picker on phones. */
@media (max-width: 700px) {
  .product-page-premium .swatches {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }
  .product-page-premium .swatch {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 44px !important;
    justify-content: flex-start !important;
    gap: 7px !important;
    padding: 8px 9px !important;
    font-size: 13px !important;
    line-height: 1.15 !important;
    white-space: normal !important;
  }
  .product-page-premium .swatch i {
    width: 18px !important;
    height: 18px !important;
    flex: 0 0 18px !important;
  }
}
@media (min-width: 480px) and (max-width: 700px) {
  .product-page-premium .swatches {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}
/* Clear, self-contained checkout delivery chooser. */
.checkout-simple .delivery-choice-panel {
  display: block !important;
  width: 100% !important;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid #ddd7cd;
  border-radius: 14px;
  background: #f8f6f1;
}
.checkout-simple .delivery-choice-intro {
  width: 100%;
  margin: 0 0 10px;
  color: #44515d;
  font-size: 0.92rem;
}
.checkout-simple .delivery-choice-panel .delivery-choice-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px !important;
  width: 100% !important;
  margin: 0 !important;
}
.checkout-simple .delivery-choice-panel .delivery-choice {
  position: relative;
  display: grid;
  align-content: start;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 146px;
  padding: 17px;
  border: 2px solid #d5d0c7;
  border-radius: 14px;
  background: #fff;
}
.checkout-simple .delivery-choice-panel .delivery-choice.active {
  border-color: #101820;
  background: #f1f5f3;
  box-shadow: inset 0 0 0 1px #101820;
}
.checkout-simple .delivery-choice-panel .delivery-choice.active::after {
  content: "Valgt";
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 7px;
  border-radius: 999px;
  background: #101820;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.checkout-simple .delivery-choice-panel .delivery-choice-kicker {
  margin-bottom: 10px;
}
.checkout-simple .delivery-choice-panel .delivery-choice strong {
  max-width: 82%;
  margin-bottom: 7px;
  font-size: 1rem;
  line-height: 1.25;
}
.checkout-simple .delivery-choice-panel .delivery-choice small {
  font-size: 0.84rem;
  line-height: 1.4;
}
.checkout-simple .delivery-choice-panel .delivery-choice-message {
  width: 100%;
  margin: 12px 0 0;
  padding: 10px 12px;
  border-radius: 9px;
  background: #ece9e2;
  color: #34414c;
  font-size: 0.88rem;
}
.checkout-simple .delivery-choice-panel + .checkout-info-strip {
  width: 100%;
  margin-top: 12px;
}
@media (max-width: 560px) {
  .checkout-simple .delivery-choice-panel {
    padding: 12px;
  }
  .checkout-simple .delivery-choice-panel .delivery-choice-grid {
    grid-template-columns: 1fr !important;
  }
  .checkout-simple .delivery-choice-panel .delivery-choice {
    min-height: 0;
    padding: 15px;
  }
}
/* Force compact color choices for every mobile product template. */
@media (max-width: 700px) {
  .product-page .swatches,
  .product-page .premium-swatches,
  .product-page .variant-panel .swatches {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
    width: 100% !important;
  }
  .product-page .swatches > .swatch {
    display: flex !important;
    width: 100% !important;
    min-width: 0 !important;
    min-height: 44px !important;
    justify-content: flex-start !important;
    gap: 7px !important;
    padding: 8px 9px !important;
    font-size: 13px !important;
    line-height: 1.15 !important;
    white-space: normal !important;
  }
  .product-page .swatches > .swatch i {
    width: 18px !important;
    height: 18px !important;
    flex: 0 0 18px !important;
  }
}
@media (min-width: 480px) and (max-width: 700px) {
  .product-page .swatches,
  .product-page .premium-swatches,
  .product-page .variant-panel .swatches {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

/* Clear product-added confirmation above the mobile buy bar. */
.cart-add-confirmation {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 120;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  width: min(460px, calc(100vw - 40px));
  padding: 14px;
  border: 1px solid #b9d8c2;
  border-radius: 14px;
  background: #f4fbf6;
  box-shadow: 0 18px 48px rgba(16, 24, 32, .22);
  color: #173d27;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 180ms ease, transform 180ms ease;
}
.cart-add-confirmation.show {
  opacity: 1;
  transform: translateY(0);
}
.cart-add-confirmation-copy {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.cart-add-confirmation-copy > div {
  display: grid;
  gap: 3px;
  min-width: 0;
}
.cart-add-confirmation-copy strong {
  font-size: 15px;
}
.cart-add-confirmation-copy small {
  overflow: hidden;
  color: #456252;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cart-add-confirmation-check {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #2f7d4a;
}
.cart-add-confirmation-check::after {
  content: "";
  width: 12px;
  height: 7px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: translateY(-2px) rotate(-45deg);
}
.cart-add-confirmation-link {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: #101820;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}
.premium-buy-button.is-added,
.sticky-buy-bar .button.is-added {
  border-color: #2f7d4a !important;
  background: #2f7d4a !important;
  color: #fff !important;
  opacity: 1 !important;
}
@media (max-width: 700px) {
  .cart-add-confirmation {
    right: 10px;
    bottom: calc(86px + env(safe-area-inset-bottom));
    grid-template-columns: 1fr;
    gap: 10px;
    width: calc(100vw - 20px);
    padding: 12px;
  }
  .cart-add-confirmation-link {
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .cart-add-confirmation {
    transition: none;
  }
}
/* Keep checkout delivery and payment in one full-width flow. */
.checkout-simple .checkout-delivery-step {
  display: block !important;
  grid-template-columns: 1fr !important;
  width: 100% !important;
}
.checkout-simple .checkout-delivery-step > * {
  grid-column: 1 / -1 !important;
  width: 100% !important;
  min-width: 0 !important;
}
.checkout-simple .checkout-delivery-step .delivery-choice-panel {
  display: block !important;
  grid-column: 1 / -1 !important;
  justify-self: stretch !important;
  width: 100% !important;
  margin: 18px 0 0 !important;
  box-sizing: border-box;
}
.checkout-simple .checkout-delivery-step .delivery-choice-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  width: 100% !important;
}
.checkout-simple .checkout-delivery-step .checkout-info-strip {
  display: flex !important;
  width: 100% !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
  margin: 12px 0 0 !important;
  box-sizing: border-box;
}
.checkout-simple .checkout-delivery-step .checkout-info-strip strong {
  white-space: nowrap;
}
@media (max-width: 560px) {
  .checkout-simple .checkout-delivery-step .delivery-choice-grid {
    grid-template-columns: 1fr !important;
  }
  .checkout-simple .checkout-delivery-step .checkout-info-strip {
    align-items: flex-start !important;
    flex-direction: column !important;
    gap: 4px !important;
  }
}
/* FINAL HEADER LOGO SIZE: keep the FinReim identity readable on every screen. */
.site-header .site-header-inner .brand {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 76px !important;
}

.site-header .site-header-inner .site-logo {
  display: block !important;
  width: auto !important;
  height: 68px !important;
  max-width: min(340px, 58vw) !important;
  object-fit: contain !important;
}

@media (max-width: 760px) {
  .site-header .site-header-inner .brand {
    min-height: 58px !important;
  }

  .site-header .site-header-inner .site-logo {
    height: 50px !important;
    max-width: min(230px, 58vw) !important;
  }
}

@media (max-width: 380px) {
  .site-header .site-header-inner .site-logo {
    height: 44px !important;
    max-width: min(190px, 56vw) !important;
  }
}
/* FINAL LARGE HEADER LOGO: intentionally prominent and readable. */
.site-header .site-header-inner .brand {
  flex: 0 0 auto !important;
  min-width: 0 !important;
  min-height: 128px !important;
}

.site-header .site-header-inner .site-logo {
  width: 360px !important;
  height: auto !important;
  max-width: 46vw !important;
  max-height: none !important;
}

@media (max-width: 760px) {
  .site-header .site-header-inner .brand {
    min-height: 96px !important;
  }

  .site-header .site-header-inner .site-logo {
    width: 300px !important;
    height: auto !important;
    max-width: 78vw !important;
  }
}

@media (max-width: 380px) {
  .site-header .site-header-inner .brand {
    min-height: 84px !important;
  }

  .site-header .site-header-inner .site-logo {
    width: 280px !important;
    max-width: 78vw !important;
  }
}
/* CAMPAIGN: 3 eligible straps for 450 NOK */
.campaign-banner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin: 4px 0 18px;
  padding: 14px 16px;
  border: 1px solid #dfb84b;
  border-radius: 14px;
  background:
    radial-gradient(circle at 92% 10%, rgba(255,255,255,.72) 0 12%, transparent 13%),
    linear-gradient(120deg, #fff2b8 0%, #f8df78 52%, #e9c85f 100%);
  color: #332500;
  box-shadow: 0 8px 24px rgba(110, 80, 0, .12);
}
.campaign-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #0d1b2a;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.campaign-banner strong { display: block; font-size: clamp(18px, 2vw, 22px); line-height: 1.08; }
.campaign-banner p { margin: 5px 0 0; font-size: 13px; line-height: 1.4; }
.campaign-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
  gap: 5px;
  width: 100%;
  margin: 0 0 14px;
  padding: 12px;
  border: 1px solid #dfb84b;
  border-radius: 12px;
  background: #fff8d9;
  color: #4a3700;
  font-size: 13px;
  line-height: 1.35;
}
.campaign-summary > strong { font-size: 16px; color: #332500; }
.campaign-summary > small { display: block; color: #665524; }
.campaign-summary > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 4px;
  border-top: 1px solid rgba(108, 82, 8, .16);
}
.campaign-summary.is-active { border-color: #17804b; background: #edf9f1; color: #145b38; }
.campaign-summary.is-active > strong,
.campaign-summary.is-active b { color: #0b6a3a; }
.checkout-summary-list .campaign-summary { margin-top: 10px; }
@media (max-width: 560px) {
  .campaign-banner { grid-template-columns: 1fr; gap: 8px; padding: 13px 14px; }
  .campaign-kicker { justify-self: start; }
}
/* PRINT STATUS FEEDBACK */
.print-status-wrap { display: inline-flex; flex-direction: column; align-items: flex-start; gap: 3px; min-width: 86px; }
.print-status-wrap > small { color: #66706a; font-size: 10px; line-height: 1.2; }
.print-status-pill { display: inline-flex; align-items: center; min-height: 24px; padding: 4px 9px; border-radius: 999px; font-size: 11px; font-weight: 850; white-space: nowrap; }
.print-status-pill::before { content: ''; width: 7px; height: 7px; margin-right: 6px; border-radius: 50%; background: currentColor; }
.print-status-pill.print-printed { color: #08733f; background: #e7f7ee; }
.print-status-pill.print-queued, .print-status-pill.print-pending { color: #8a5a00; background: #fff3cf; }
.print-status-pill.print-failed { color: #b42318; background: #feeceb; }
.print-status-pill.print-skipped, .print-status-pill.print-unknown { color: #5c6560; background: #edf0ee; }
.print-status-error { max-width: 190px; color: #b42318 !important; white-space: normal; }
/* COMPATIBILITY TICKER */
.announcement-bar.compatibility-strip {
  display: flex;
  justify-content: flex-start;
  gap: 0;
  overflow: hidden;
  padding: 0;
}

.compatibility-strip span + span::before {
  content: none;
}

.compatibility-strip-label {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  align-self: stretch;
  display: inline-flex;
  align-items: center;
  padding: 0 18px 0 clamp(16px, 5vw, 72px);
  background: #b52b1d;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.compatibility-strip-label::after {
  content: '';
  position: absolute;
  top: 0;
  right: -13px;
  width: 26px;
  height: 100%;
  background: #b52b1d;
  transform: skewX(-18deg);
  z-index: -1;
}

.compatibility-ticker-window {
  min-width: 0;
  flex: 1 1 auto;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 24px, #000 calc(100% - 24px), transparent);
}

.compatibility-ticker-track {
  display: flex;
  width: max-content;
  animation: compatibilityTicker var(--ticker-duration, 80s) linear infinite;
  will-change: transform;
}

.compatibility-ticker-group {
  display: flex;
  flex: none;
  align-items: center;
  min-height: 34px;
  padding-left: 34px;
}

.compatibility-ticker-group span {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, .9);
  font-size: 11px;
  font-weight: 760;
  white-space: nowrap;
}

.compatibility-ticker-group span::after {
  content: '•';
  margin: 0 18px;
  color: #e65c4f;
}

@keyframes compatibilityTicker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 760px) {
  .announcement-bar.compatibility-strip {
    min-height: 32px;
    overflow: hidden;
    padding: 0;
  }

  .compatibility-strip-label {
    padding-left: 12px;
    padding-right: 13px;
    font-size: 9px;
  }

  .compatibility-ticker-group {
    min-height: 32px;
    padding-left: 26px;
  }

  .compatibility-ticker-group span {
    font-size: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .compatibility-ticker-track {
    animation: none;
  }

  .compatibility-ticker-window {
    overflow-x: auto;
    mask-image: none;
    scrollbar-width: none;
  }

  .compatibility-ticker-group[aria-hidden="true"] {
    display: none;
  }
}
/* RELATED PRODUCTS COLUMN PLACEMENT */
.product-visual-related {
  margin-top: clamp(34px, 5vw, 64px);
}

.product-visual-related .related-panel {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.product-visual-related .related-panel > h2 {
  margin-bottom: 6px;
}

.product-visual-related .related-products {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.product-visual-related .related-product {
  min-width: 0;
}

.product-story-related {
  display: none;
}

@media (max-width: 980px) {
  .product-visual-related {
    display: none;
  }

  .product-story-related {
    display: block;
  }
}
/* COMPACT ORDER OVERVIEW V2 */
.order-overview-panel {
  padding: 10px;
}

.order-overview-totals {
  gap: 8px;
  margin-bottom: 8px;
}

.order-overview-totals article {
  min-height: 0;
  padding: 8px 10px;
}

.order-overview-totals article strong {
  font-size: 18px;
  line-height: 1.05;
}

.order-overview-toolbar {
  gap: 8px;
  margin-bottom: 8px;
}

.order-overview-toolbar input,
.order-overview-toolbar select {
  min-height: 34px;
  padding: 6px 8px;
}

.order-overview-toolbar > strong {
  padding-top: 15px;
}

.order-overview-table {
  min-width: 1080px;
  table-layout: fixed;
  font-size: 11px;
}

.order-overview-table th,
.order-overview-table td {
  padding: 7px 8px;
  vertical-align: top;
}

.order-overview-table thead th {
  font-size: 9px;
}

.order-overview-table th:nth-child(1) { width: 13%; }
.order-overview-table th:nth-child(2) { width: 23%; }
.order-overview-table th:nth-child(3) { width: 25%; }
.order-overview-table th:nth-child(4) { width: 8%; }
.order-overview-table th:nth-child(5) { width: 8%; }
.order-overview-table th:nth-child(6) { width: 10%; }
.order-overview-table th:nth-child(7) { width: 6%; }
.order-overview-table th:nth-child(8) { width: 7%; }

.order-id-cell,
.order-customer-cell,
.order-items-cell,
.order-items-cell > span {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.order-id-cell small,
.order-customer-cell small,
.order-items-cell small {
  color: #5d6670;
  font-size: 10px;
  line-height: 1.25;
}

.order-address-line {
  display: block;
  white-space: pre-line;
  overflow-wrap: anywhere;
  font-weight: 600;
}

.order-items-cell {
  min-width: 0;
  max-width: none;
  gap: 4px;
}

.order-items-cell > span + span {
  padding-top: 3px;
}

.order-delivery-cell,
.order-overview-table .number {
  white-space: nowrap;
}

.order-open-button {
  min-height: 28px;
  padding: 4px 7px;
  font-size: 10px;
}

.order-action-cell {
  text-align: center !important;
}

.order-overview-table .status-pill,
.order-overview-table .print-status-pill {
  min-height: 20px;
  padding: 3px 6px;
  font-size: 9px;
}

.order-overview-table .print-status-wrap > small {
  font-size: 9px;
}

.order-card-wide {
  grid-column: 1 / -1;
}

.order-card-grid small {
  color: #5d6670;
  font-size: 11px;
}

.order-card-items > span:not(:first-child) {
  display: grid;
  gap: 1px;
  padding-top: 4px;
  border-top: 1px dotted #d1cbc1;
}
/* ORDER TABLE CELL STRUCTURE FIX */
.order-overview-table td.order-id-cell,
.order-overview-table td.order-customer-cell,
.order-overview-table td.order-items-cell {
  display: table-cell !important;
}

.order-id-cell .order-number-button,
.order-id-cell > small,
.order-customer-cell > strong,
.order-customer-cell > small {
  display: block;
}

.order-id-cell > small {
  margin-top: 4px;
}

.order-items-cell > span {
  display: grid;
  gap: 2px;
}
/* CHECKOUT CAMPAIGN SPECIFICITY FIX */
.checkout-items > .campaign-summary {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  align-items: stretch !important;
  gap: 5px !important;
  width: 100% !important;
}

.checkout-items > .campaign-summary > strong,
.checkout-items > .campaign-summary > span,
.checkout-items > .campaign-summary > small,
.checkout-items > .campaign-summary > div {
  grid-column: 1 / -1 !important;
  min-width: 0;
}
/* STRUCTURED LEGAL PAGE */
.legal-updated { margin: 0 0 26px; color: #5d6670; font-size: 14px; font-weight: 800; }
.legal-section { padding: 24px 0; border-top: 1px solid rgba(17, 24, 32, .12); }
.legal-section:first-of-type { padding-top: 0; border-top: 0; }
.legal-section h2 { margin: 0 0 12px; color: #111820; font-size: clamp(20px, 2.5vw, 28px); line-height: 1.15; }
.legal-section p { margin: 0 0 12px; line-height: 1.65; }
.legal-section ul { display: grid; gap: 7px; margin: 8px 0 16px; padding-left: 22px; }
.legal-section li { padding-left: 3px; line-height: 1.5; }
.legal-section a { color: #0b5573; font-weight: 750; text-underline-offset: 3px; }
/* Launch audit: prevent checkout fields from using their min-content width on narrow screens. */
@media (max-width: 820px) {
  .checkout-field-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .checkout-field-grid > *,
  .checkout-field-grid input,
  .checkout-field-grid select,
  .checkout-field-grid textarea,
  .checkout-field-grid label {
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
  }

  .checkout-field-grid label {
    overflow-wrap: anywhere;
  }
}

/* General discount codes and campaign administration */
.discount-code-box {
  display: grid;
  gap: 12px;
  margin: 16px 0;
  padding: 16px;
  border: 1px solid #d7d4cc;
  border-radius: 14px;
  background: #fff;
}

.discount-code-box.is-applied {
  border-color: #2d7651;
  background: #f0f8f3;
}

.discount-code-head,
.discount-code-entry,
.discount-code-product,
.discount-code-saving {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.discount-code-entry input {
  min-width: 0;
  flex: 1;
  text-transform: uppercase;
}

.discount-code-pill {
  padding: 5px 9px;
  border-radius: 999px;
  color: #fff;
  background: #111a22;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .06em;
}

.discount-code-result {
  display: grid;
  gap: 8px;
}

.discount-code-result > span,
.discount-code-product,
.discount-code-message {
  color: #52606b;
  font-size: .88rem;
}

.discount-code-product {
  padding: 9px 0;
  border-top: 1px solid rgba(17, 26, 34, .12);
}

.discount-code-product b {
  margin-left: 6px;
  color: #17623e;
}

.discount-code-saving {
  padding-top: 9px;
  border-top: 1px solid rgba(17, 26, 34, .12);
}

.discount-code-message {
  margin: 0;
}

.discount-code-message.is-warning {
  color: #8b4c00;
}

.discount-campaign-banner {
  position: relative;
}

.campaign-dismiss {
  align-self: start;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  font-size: 1.5rem;
  line-height: 1;
}

.campaign-admin-toolbar {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(180px, 260px);
  gap: 12px;
  margin: 16px 0;
}

.campaign-admin-toolbar label {
  display: grid;
  gap: 5px;
  font-weight: 750;
}

.campaign-table-wrap {
  overflow-x: auto;
  border: 1px solid #d7d4cc;
  border-radius: 12px;
  background: #fff;
}

.campaign-table {
  width: 100%;
  min-width: 1180px;
  border-collapse: collapse;
  font-size: .78rem;
}

.campaign-table th {
  padding: 10px;
  color: #fff;
  background: #111a22;
  text-align: left;
  white-space: nowrap;
}

.campaign-table td {
  padding: 10px;
  border-bottom: 1px solid #e3e0d9;
  vertical-align: top;
}

.campaign-table td > small,
.campaign-table td > strong {
  display: block;
}

.campaign-table code {
  font-weight: 800;
}

.campaign-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.campaign-actions .ghost-button {
  min-height: 30px;
  padding: 6px 9px;
  font-size: .72rem;
}

.campaign-actions .danger {
  color: #a52d1f;
}

.campaign-stat-row td {
  background: #f7f5f0;
}

.campaign-stat-row td {
  display: table-cell;
}

.campaign-stat-row span {
  display: inline-flex;
  gap: 4px;
  margin: 2px 16px 2px 0;
  white-space: nowrap;
}

.campaign-status-draft,
.campaign-status-deactivated {
  background: #ebe9e3;
  color: #36424b;
}

.campaign-status-planned {
  background: #eef4ff;
  color: #1e4d8f;
}

.campaign-status-active {
  background: #e4f6ea;
  color: #17623e;
}

.campaign-status-expired,
.campaign-status-archived {
  background: #f5e8e5;
  color: #8d3024;
}

.campaign-log {
  margin-top: 24px;
}

.campaign-log-list {
  border: 1px solid #d7d4cc;
  border-radius: 12px;
  background: #fff;
}

.campaign-log-list > div {
  display: grid;
  grid-template-columns: 170px minmax(200px, 1fr) minmax(160px, 1fr);
  gap: 12px;
  padding: 9px 12px;
  border-bottom: 1px solid #e3e0d9;
  font-size: .8rem;
}

.campaign-editor {
  display: grid;
  gap: 18px;
}

.campaign-editor section {
  padding: 16px;
  border: 1px solid #ddd9d0;
  border-radius: 14px;
  background: #fbfaf7;
}

.campaign-editor section h3 {
  margin-top: 0;
}

.campaign-editor select[multiple] {
  min-height: 130px;
}

.campaign-checks {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 22px;
}

.campaign-checks label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.campaign-editor-actions {
  position: sticky;
  bottom: 0;
  padding: 12px 0 0;
  background: #fff;
}

@media (max-width: 720px) {
  .discount-code-head,
  .discount-code-product,
  .discount-code-saving {
    align-items: flex-start;
  }

  .discount-code-entry {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .campaign-admin-toolbar,
  .campaign-log-list > div {
    grid-template-columns: minmax(0, 1fr);
  }

  .campaign-checks {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* CART SUMMARY WIDTH ALIGNMENT */
.premium-cart-summary {
  grid-template-columns: minmax(0, 1fr);
  min-width: 0;
}

.premium-cart-summary > .campaign-summary,
.premium-cart-summary > .discount-code-box {
  box-sizing: border-box;
  width: auto;
  max-width: 100%;
  min-width: 0;
}

.premium-cart-summary > *,
.discount-code-entry > * {
  min-width: 0;
}

.cart-sticky-action {
  display: none;
}

@media (max-width: 720px) {
  .cart-sticky-action {
    display: block;
  }
}
/* PRIVACY-FRIENDLY VISITOR STATISTICS */
.visitor-stats-page {
  display: grid;
  gap: 22px;
}

.visitor-stats-heading,
.visitor-panel-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.visitor-stats-heading h1,
.visitor-stat-panel h2 {
  margin: 0;
}

.visitor-stat-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.visitor-stat-cards article,
.visitor-stat-panel {
  border: 1px solid #d8d3c8;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(17, 24, 32, .06);
}

.visitor-stat-cards article {
  display: grid;
  gap: 4px;
  padding: 18px;
}

.visitor-stat-cards span,
.visitor-stat-cards small {
  color: #58636d;
  font-size: 12px;
  font-weight: 800;
}

.visitor-stat-cards strong {
  color: #111820;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
}

.visitor-stat-panel {
  min-width: 0;
  padding: 20px;
}

.visitor-chart {
  display: grid;
  grid-template-columns: repeat(30, minmax(7px, 1fr));
  align-items: end;
  gap: 6px;
  min-height: 250px;
  margin-top: 18px;
  padding: 18px 12px 0;
  border-top: 1px solid #e1ddd5;
  overflow-x: auto;
}

.visitor-bar {
  display: grid;
  grid-template-rows: 190px auto;
  align-items: end;
  gap: 8px;
  min-width: 8px;
}

.visitor-bar > span {
  display: block;
  width: 100%;
  height: var(--visitor-height);
  min-height: 0;
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, #ef542f, #a72816);
}

.visitor-bar small {
  display: none;
  color: #606a73;
  font-size: 9px;
  white-space: nowrap;
  transform: rotate(-55deg);
  transform-origin: left top;
}

.visitor-bar:nth-child(5n + 1) small,
.visitor-bar:last-child small {
  display: block;
}

.visitor-stat-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  gap: 18px;
  align-items: start;
}

.visitor-table-wrap {
  max-height: 520px;
  overflow: auto;
}

.visitor-stat-panel code {
  font-size: 12px;
  overflow-wrap: anywhere;
}

@media (max-width: 800px) {
  .visitor-stat-cards,
  .visitor-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .visitor-stat-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .visitor-stats-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 520px) {
  .visitor-stat-cards {
    grid-template-columns: minmax(0, 1fr);
  }

  .visitor-chart {
    grid-template-columns: repeat(30, minmax(12px, 1fr));
  }
}


/* ORDER MANAGEMENT 20260731 */
.order-edit-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(17, 25, 35, .62);
}
.order-edit-dialog {
  width: min(1080px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 24px;
  border: 1px solid #d8d2c8;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(17, 25, 35, .24);
}
.order-edit-head,
.order-edit-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.order-edit-head h2 { margin: 4px 0 0; }
.order-edit-warning {
  margin: 18px 0;
  padding: 12px 14px;
  border: 1px solid #e2b73a;
  border-radius: 10px;
  background: #fff8dc;
  color: #5c4510;
}
.order-edit-table-wrap { overflow-x: auto; }
.order-edit-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: auto;
}
.order-edit-table th {
  padding: 9px;
  background: #111923;
  color: #fff;
  text-align: left;
  font-size: 12px;
  text-transform: uppercase;
}
.order-edit-table td {
  padding: 9px;
  border-bottom: 1px solid #e1ddd5;
  vertical-align: middle;
}
.order-edit-table select,
.order-edit-table input {
  width: 100%;
  min-width: 110px;
}
.order-edit-table input { max-width: 80px; }
.order-edit-footer {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid #d8d2c8;
}
.order-history {
  display: grid;
  gap: 5px;
  margin-top: 10px;
  font-size: 12px;
}
.order-history span {
  padding-top: 5px;
  border-top: 1px dotted #d8d2c8;
}
.order-email-status {
  display: grid;
  gap: 7px;
  margin: 12px 0;
  padding: 12px;
  border: 1px solid #d8d2c8;
  border-radius: 10px;
  background: #faf9f6;
}
.order-email-status-label { font-weight: 800; }
.order-email-status > small,
.order-email-log small { color: #5d6870; line-height: 1.45; }
.order-email-sent { border-color: #a8d5b8; background: #f1faf3; }
.order-email-failed { border-color: #e7b0ac; background: #fff5f4; }
.order-email-unknown { border-color: #d8d2c8; }
.order-email-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin: 0;
  font-size: 12px;
}
.order-email-meta div { min-width: 0; }
.order-email-meta dt { color: #68727b; }
.order-email-meta dd { margin: 2px 0 0; overflow-wrap: anywhere; font-weight: 700; }
.order-email-diagnostics-button { justify-self: start; }
.order-email-diagnostic-results { padding-top: 5px; border-top: 1px solid #ded9d0; }
.order-email-diagnostic-results > p { margin: 4px 0; color: #5d6870; }
.order-email-log { display: grid; gap: 7px; }
.order-email-log > div { display: grid; gap: 2px; padding-top: 7px; border-top: 1px dotted #d8d2c8; }
.order-email-log span { font-size: 12px; color: #68727b; }
@media (max-width: 760px) {
  .order-email-meta { grid-template-columns: 1fr; }
  .order-email-diagnostics-button { width: 100%; }
  .order-edit-overlay { padding: 0; }
  .order-edit-dialog {
    min-height: 100vh;
    max-height: 100vh;
    border: 0;
    border-radius: 0;
    padding: 18px;
  }
  .order-edit-table thead { display: none; }
  .order-edit-table,
  .order-edit-table tbody,
  .order-edit-table tr,
  .order-edit-table td { display: block; width: 100%; }
  .order-edit-table tr {
    margin-bottom: 14px;
    padding: 10px;
    border: 1px solid #d8d2c8;
    border-radius: 10px;
  }
  .order-edit-table td { border: 0; padding: 5px 0; }
  .order-edit-footer { align-items: stretch; flex-direction: column; }
  .order-edit-footer .actions { display: grid; grid-template-columns: 1fr 1fr; }
}

/* ORDER MANAGEMENT V2 20260731 */
.admin-confirm-dialog { width: min(520px, 100%); }
.admin-confirm-content {
  margin: 20px 0 4px;
  padding: 16px;
  border-radius: 10px;
  background: #f7f5f1;
  line-height: 1.55;
}
.admin-warning-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: #8b2418;
  font-weight: 700;
}


/* Cart and checkout: keep summary content inside its card. */
.premium-cart-layout,
.checkout-simple .checkout-premium-grid,
.premium-cart-summary,
.checkout-simple .checkout-summary-card,
.discount-code-box {
  min-width: 0;
}

.premium-cart-summary,
.checkout-simple .checkout-summary-card,
.discount-code-box {
  grid-template-columns: minmax(0, 1fr);
  max-width: 100%;
}

.premium-cart-summary > *,
.checkout-simple .checkout-summary-card > *,
.checkout-summary-list > *,
.discount-code-box > * {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.discount-code-head {
  flex-wrap: wrap;
}

.discount-code-entry {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.discount-code-entry input {
  width: 100%;
  min-width: 0;
}

.discount-code-entry .ghost-button {
  max-width: 100%;
  white-space: nowrap;
}

.checkout-summary-row,
.checkout-total {
  grid-template-columns: minmax(0, 1fr) auto;
  width: 100%;
  min-width: 0;
}

.checkout-summary-row > span,
.checkout-summary-head h2 {
  min-width: 0;
  overflow-wrap: anywhere;
}

.premium-cart-head h1,
.checkout-simple .checkout-top h1 {
  font-size: clamp(52px, 6vw, 76px);
  line-height: .96;
}

@media (max-width: 720px) {
  .discount-code-entry {
    grid-template-columns: minmax(0, 1fr);
  }

  .discount-code-entry .ghost-button {
    width: 100%;
  }
}

/* Checkout summary: readable at every desktop and tablet width. */
.checkout-simple .checkout-summary-card .checkout-summary-head h2 {
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.15;
  overflow-wrap: normal;
  word-break: normal;
}

.checkout-simple .checkout-summary-card .discount-code-entry {
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
}

.checkout-simple .checkout-summary-card .discount-code-entry .ghost-button {
  width: 100%;
  justify-content: center;
}

.checkout-simple .checkout-summary-card .discount-code-entry > .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;
}

@media (max-width: 1100px) {
  .checkout-simple .checkout-top,
  .checkout-simple .checkout-form {
    width: min(760px, 100%);
    max-width: 760px;
    margin-inline: auto;
  }

  .checkout-simple .checkout-premium-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 22px !important;
  }

  .checkout-simple .checkout-summary-card {
    position: static;
    order: -1;
    width: 100%;
  }
}

/* Admin orders: keep an open action menu above the following order rows. */
.order-workflow .ow-queue,
.order-workflow .ow-card {
  overflow: visible !important;
}

.order-workflow .ow-card:focus-within,
.order-workflow .ow-card:has(.ow-menu[open]) {
  position: relative !important;
  z-index: 90 !important;
}

.order-workflow .ow-menu[open] {
  z-index: 100 !important;
}

.order-workflow .ow-menu-panel {
  z-index: 110 !important;
}
/* Garmin SEO landing pages */
.compatibility-ticker-group a {
  color: inherit;
  text-decoration: none;
}
.compatibility-ticker-group a:hover,
.compatibility-ticker-group a:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.seo-landing-hero,
.seo-guide-layout,
.seo-related-nav {
  width: min(1440px, 100%);
  margin-inline: auto;
}
.seo-landing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
  gap: clamp(28px, 6vw, 96px);
  align-items: center;
  padding: clamp(40px, 7vw, 104px) clamp(16px, 5vw, 72px);
}
.seo-landing-copy h1 {
  max-width: 920px;
  margin: 8px 0 22px;
  font-size: clamp(48px, 7vw, 96px);
  line-height: .94;
  letter-spacing: -.045em;
}
.seo-landing-lead {
  max-width: 760px;
  margin: 0;
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.45;
  color: var(--store-muted, #475569);
}
.seo-landing-copy .hero-actions {
  margin-top: 28px;
}
.seo-compatibility-note {
  max-width: 720px;
  margin: 20px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--store-muted, #64748b);
}
.seo-fit-card {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 4vw, 44px);
  border-radius: 28px;
  background: #101a24;
  color: #fff;
  box-shadow: 0 24px 54px rgba(13, 27, 42, .18);
}
.seo-fit-card::after {
  content: '';
  position: absolute;
  width: 170px;
  height: 170px;
  right: -76px;
  top: -82px;
  border: 22px solid #c02c1f;
  border-radius: 50%;
  opacity: .9;
}
.seo-fit-label {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 22px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.seo-width-rail {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.seo-width-pill {
  display: grid;
  place-items: center;
  min-height: 92px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 18px;
  color: #fff;
  text-decoration: none;
  background: rgba(255,255,255,.07);
}
.seo-width-pill strong { font-size: 30px; line-height: 1; }
.seo-width-pill span { font-size: 12px; opacity: .72; }
.seo-width-pill:hover,
.seo-width-pill:focus-visible,
.seo-width-pill.active {
  color: #101a24;
  background: #fff;
  border-color: #fff;
}
.seo-fit-card > p {
  position: relative;
  z-index: 1;
  margin: 20px 0 0;
  color: rgba(255,255,255,.72);
  line-height: 1.5;
}
.seo-guide-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .8fr);
  gap: clamp(30px, 7vw, 110px);
  padding: clamp(36px, 6vw, 88px) clamp(16px, 5vw, 72px);
  border-block: 1px solid var(--store-line, #dedbd4);
}
.seo-guide-copy h2,
.seo-landing-faq h2 {
  margin: 8px 0 20px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
  letter-spacing: -.035em;
}
.seo-guide-copy p:not(.eyebrow) {
  max-width: 720px;
  color: var(--store-muted, #475569);
  font-size: 17px;
  line-height: 1.65;
}
.seo-guide-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--store-line, #dedbd4);
}
.seo-guide-steps li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--store-line, #dedbd4);
}
.seo-guide-steps li > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  background: #b52b1f;
  font-weight: 800;
}
.seo-guide-steps p { margin: 0; font-weight: 700; line-height: 1.4; }
.seo-product-section { border-bottom: 1px solid var(--store-line, #dedbd4); }
.seo-landing-faq {
  display: grid;
  grid-template-columns: minmax(240px, .55fr) minmax(0, 1fr);
  gap: clamp(28px, 7vw, 100px);
}
.seo-landing-faq .faq-list { border-top: 1px solid var(--store-line, #dedbd4); }
.seo-related-nav {
  padding: 28px clamp(16px, 5vw, 72px) clamp(50px, 8vw, 100px);
}
.seo-related-nav > strong {
  display: block;
  margin-bottom: 14px;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.seo-related-nav > div { display: flex; flex-wrap: wrap; gap: 9px; }
.seo-related-nav a {
  padding: 10px 14px;
  border: 1px solid var(--store-line, #d9d6cf);
  border-radius: 999px;
  color: inherit;
  text-decoration: none;
  background: #fff;
}
.seo-related-nav a:hover,
.seo-related-nav a:focus-visible { border-color: #101a24; }
@media (max-width: 820px) {
  .seo-landing-hero,
  .seo-guide-layout,
  .seo-landing-faq { grid-template-columns: minmax(0, 1fr); }
  .seo-landing-hero { padding-inline: 12px; }
  .seo-landing-copy h1 { font-size: clamp(44px, 14vw, 68px); }
  .seo-fit-card { border-radius: 20px; }
  .seo-guide-layout { padding-inline: 12px; }
  .seo-related-nav { padding-inline: 12px; }
}

.checkout-form-error {
  margin: 0 0 12px;
  padding: 11px 13px;
  border: 1px solid #b52b18;
  border-radius: 8px;
  background: #fff1ee;
  color: #8f2012;
  font-weight: 700;
  line-height: 1.4;
}
