:root {
  --store-ink: #111111;
  --store-muted: #6f6f6f;
  --store-line: #e2e2e2;
  --store-soft: #f5f5f5;
  --store-paper: #ffffff;
  --store-success: #277345;
  --store-danger: #a42323;
  --store-max: 1180px;
  --store-gutter: 28px;
}

body[data-store-page] {
  margin: 0;
  background: var(--store-paper);
  color: var(--store-ink);
}
body.store-lock { overflow: hidden; }

/* Header */
body[data-store-page] .store-nav {
  position: sticky;
  top: 0;
  z-index: 80;
  border: 0;
  background: #000;
}
body[data-store-page] .store-nav .nav-inner {
  width: min(var(--store-max), calc(100% - (var(--store-gutter) * 2)));
  min-height: 62px;
}
body[data-store-page] .store-nav .nav-logo img {
  width: 120px;
  height: 36px;
  object-fit: contain;
  object-position: left center;
  filter: grayscale(1) brightness(0) invert(1);
}
body[data-store-page] .store-nav .nav-links { gap: 22px; }
body[data-store-page] .store-nav .nav-links a,
body[data-store-page] .nav-bag {
  color: rgba(255,255,255,.84);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-decoration: none;
  text-transform: uppercase;
}
body[data-store-page] .store-nav .nav-links a:hover,
body[data-store-page] .store-nav .nav-links a:focus-visible,
body[data-store-page] .store-nav .nav-links a[aria-current="page"] { color: #fff; }
body[data-store-page] .nav-bag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
body[data-store-page] .nav-bag-count {
  display: inline-grid;
  min-width: 20px;
  height: 20px;
  place-items: center;
  padding: 0 5px;
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 999px;
  color: #fff;
  font-size: .57rem;
  line-height: 1;
}

/* Shared shell */
body[data-store-page] .store-page,
body[data-store-page] .shop-index {
  width: min(var(--store-max), calc(100% - (var(--store-gutter) * 2)));
  margin: 0 auto;
}
body[data-store-page] .store-page { padding: 38px 0 58px; }
body[data-store-page] .shop-index { padding: 38px 0 58px; }
body[data-store-page] .store-status {
  margin: 0 0 20px;
  padding: 10px 12px;
  border: 1px solid var(--store-line);
  background: #fff;
  color: var(--store-muted);
  font-size: .72rem;
  line-height: 1.45;
}
body[data-store-page] .store-status.is-error { color: var(--store-danger); border-color: #d9a8a8; }
body[data-store-page] .store-status.is-success { color: var(--store-success); border-color: #a9cab2; }

/* Shop */
body[data-store-page="landing"] .shop-index-head {
  margin: 0 0 24px;
}
body[data-store-page="landing"] .shop-index-head h1 {
  margin: 0;
  color: var(--store-ink);
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.1;
}
body[data-store-page="landing"] .shop-index-head p {
  margin: 7px 0 0;
  color: var(--store-muted);
  font-size: .78rem;
  line-height: 1.5;
}
body[data-store-page="landing"] .shop-index-grid {
  display: grid;
  grid-template-columns: minmax(260px, 330px);
  gap: 24px;
}
body[data-store-page="landing"] .shop-index-card {
  display: block;
  color: var(--store-ink);
  text-decoration: none;
}
body[data-store-page="landing"] .shop-index-card-image {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--store-soft);
}
body[data-store-page="landing"] .shop-index-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .22s ease;
}
body[data-store-page="landing"] .shop-index-card:hover .shop-index-card-image img,
body[data-store-page="landing"] .shop-index-card:focus-visible .shop-index-card-image img { transform: scale(1.012); }
body[data-store-page="landing"] .shop-index-card-info {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: baseline;
  margin-top: 11px;
}
body[data-store-page="landing"] .shop-index-card-info strong {
  min-width: 0;
  color: var(--store-ink);
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.4;
}
body[data-store-page="landing"] .shop-index-card-info > span {
  color: var(--store-ink);
  font-size: .73rem;
  font-weight: 600;
  white-space: nowrap;
}
body[data-store-page="landing"] .shop-index-card-meta {
  display: block;
  margin-top: 4px;
  color: #858585;
  font-size: .62rem;
  line-height: 1.45;
}

/* Product */
body[data-store-page="product"] .product-layout {
  display: grid;
  grid-template-columns: minmax(0, 650px) minmax(320px, 390px);
  justify-content: space-between;
  gap: clamp(42px, 6vw, 82px);
  align-items: start;
}
body[data-store-page="product"] .product-gallery {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 10px;
  min-width: 0;
  align-items: start;
}
body[data-store-page="product"] .product-thumbnails {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 0;
}
body[data-store-page="product"] .product-thumbnail {
  display: block;
  width: 64px;
  height: 64px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid #dedede;
  border-radius: 0;
  background: var(--store-soft);
  cursor: pointer;
}
body[data-store-page="product"] .product-thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border: 0;
}
body[data-store-page="product"] .product-thumbnail.is-active,
body[data-store-page="product"] .product-thumbnail:hover,
body[data-store-page="product"] .product-thumbnail:focus-visible { border-color: #111; }
body[data-store-page="product"] .product-visual {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--store-soft);
}
body[data-store-page="product"] .product-visual img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transition: opacity .14s ease;
}
body[data-store-page="product"] .product-visual.is-changing img { opacity: .28; }
body[data-store-page="product"] .product-panel {
  position: sticky;
  top: 88px;
  min-width: 0;
  padding: 0;
}
body[data-store-page="product"] .product-panel h1 {
  margin: 0;
  color: var(--store-ink);
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1.12;
  text-transform: none;
}
body[data-store-page="product"] .product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--store-line);
}
body[data-store-page="product"] .product-price {
  margin: 0;
  color: var(--store-ink);
  font-size: .92rem;
  font-weight: 600;
}
body[data-store-page="product"] .stock-state {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #777;
  font-size: .64rem;
  font-weight: 600;
  white-space: nowrap;
}
body[data-store-page="product"] .stock-state i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #aaa;
}
body[data-store-page="product"] .stock-state.is-live { color: var(--store-success); }
body[data-store-page="product"] .stock-state.is-live i { background: var(--store-success); }
body[data-store-page="product"] .product-intro {
  max-width: 370px;
  margin: 16px 0 0;
  color: #5f5f5f;
  font-size: .75rem;
  line-height: 1.58;
}
body[data-store-page="product"] .product-option-group {
  min-width: 0;
  margin: 20px 0 0;
  padding: 0;
  border: 0;
}
body[data-store-page="product"] .product-option-group legend {
  width: 100%;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin: 0 0 9px;
  padding: 0;
}
body[data-store-page="product"] .product-option-group legend span,
body[data-store-page="product"] .product-option-group legend strong,
body[data-store-page="product"] .quantity-field > span {
  color: var(--store-ink);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}
body[data-store-page="product"] .product-option-group legend strong {
  color: #777;
  font-weight: 500;
}
body[data-store-page="product"] .colour-options {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
body[data-store-page="product"] .colour-option {
  position: relative;
  display: grid;
  width: 28px;
  height: 28px;
  min-height: 28px;
  place-items: center;
  margin: 0;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}
body[data-store-page="product"] .colour-option i {
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(0,0,0,.18);
  border-radius: 50%;
  background: var(--swatch, #777);
}
body[data-store-page="product"] .colour-option span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
body[data-store-page="product"] .colour-option:hover,
body[data-store-page="product"] .colour-option:focus-visible,
body[data-store-page="product"] .colour-option[aria-pressed="true"] { border-color: #111; }
body[data-store-page="product"] .size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
body[data-store-page="product"] .size-option {
  min-width: 42px;
  height: 36px;
  margin: 0;
  padding: 0 9px;
  border: 1px solid #d2d2d2;
  border-radius: 0;
  background: #fff;
  color: var(--store-ink);
  font-size: .66rem;
  font-weight: 600;
  cursor: pointer;
}
body[data-store-page="product"] .size-option:hover,
body[data-store-page="product"] .size-option:focus-visible { border-color: #111; }
body[data-store-page="product"] .size-option[aria-pressed="true"] {
  border-color: #111;
  background: #111;
  color: #fff;
}
body[data-store-page="product"] .size-option:disabled {
  border-color: #e6e6e6;
  background: #fafafa;
  color: #b2b2b2;
  text-decoration: line-through;
  cursor: not-allowed;
}
body[data-store-page="product"] .option-loading {
  color: #888;
  font-size: .67rem;
  line-height: 36px;
}
body[data-store-page="product"] .product-actions {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 8px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--store-line);
}
body[data-store-page="product"] .quantity-field {
  display: grid;
  gap: 6px;
}
body[data-store-page="product"] .quantity-field select {
  width: 100%;
  height: 46px;
  padding: 0 9px;
  border: 1px solid #cfcfcf;
  border-radius: 0;
  background: #fff;
  color: #111;
  font-size: .72rem;
  font-weight: 600;
}
body[data-store-page="product"] #add-to-cart {
  align-self: end;
  height: 46px;
  min-height: 46px;
}
body[data-store-page="product"] .product-delivery-note {
  margin: 10px 0 0;
  color: #888;
  font-size: .61rem;
  line-height: 1.45;
}

/* Shared buttons */
body[data-store-page] .primary-action,
body[data-store-page] .secondary-action {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0 16px;
  border-radius: 0;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .025em;
  text-decoration: none;
  text-transform: none;
  cursor: pointer;
}
body[data-store-page] .primary-action {
  border: 1px solid #000;
  background: #000;
  color: #fff;
}
body[data-store-page] .secondary-action {
  border: 1px solid #bfbfbf;
  background: #fff;
  color: #111;
}
body[data-store-page] .primary-action:hover:not(:disabled),
body[data-store-page] .primary-action:focus-visible:not(:disabled) { background: #222; border-color: #222; }
body[data-store-page] .secondary-action:hover:not(:disabled),
body[data-store-page] .secondary-action:focus-visible:not(:disabled) { border-color: #111; }
body[data-store-page] .primary-action:disabled,
body[data-store-page] .secondary-action:disabled {
  border-color: #dedede;
  background: #efefef;
  color: #999;
  cursor: not-allowed;
}

/* Footer */
body[data-store-page] .store-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 56px;
  padding-top: 18px;
  border-top: 1px solid var(--store-line);
  color: #777;
  font-size: .62rem;
}
body[data-store-page] .store-footer-links { display: inline-flex; gap: 20px; }
body[data-store-page] .store-footer-links a { text-decoration: none; }
body[data-store-page] .store-footer-links a:hover,
body[data-store-page] .store-footer-links a:focus-visible { color: #111; }

/* Cart drawer */
body[data-store-page] .cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(0,0,0,.38);
  opacity: 0;
  transition: opacity .18s ease;
}
body[data-store-page] .cart-overlay.is-open { opacity: 1; }
body[data-store-page] .cart-drawer {
  position: fixed;
  z-index: 120;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 100vw);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  background: #fff;
  color: #111;
  box-shadow: -12px 0 34px rgba(0,0,0,.12);
  transform: translateX(100%);
  transition: transform .22s ease;
}
body[data-store-page] .cart-drawer.is-open { transform: translateX(0); }
body[data-store-page] .cart-drawer[inert] { pointer-events: none; }
body[data-store-page] .cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--store-line);
}
body[data-store-page] .cart-drawer-header h2 {
  margin: 0;
  color: #111;
  font-size: 1rem;
  font-weight: 700;
}
body[data-store-page] .cart-close {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #555;
  font-size: .66rem;
  font-weight: 600;
  cursor: pointer;
}
body[data-store-page] .cart-drawer-body {
  overflow-y: auto;
  padding: 0 24px;
}
body[data-store-page] .cart-empty { padding: 38px 0; }
body[data-store-page] .cart-empty strong { font-size: .8rem; }
body[data-store-page] .cart-empty p {
  margin: 9px 0 18px;
  color: #777;
  font-size: .69rem;
  line-height: 1.55;
}
body[data-store-page] .cart-empty .secondary-action { width: auto; }
body[data-store-page] .drawer-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 15px;
  padding: 18px 0;
  border-bottom: 1px solid var(--store-line);
}
body[data-store-page] .drawer-item.is-unavailable { opacity: .58; }
body[data-store-page] .drawer-item img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  background: var(--store-soft);
}
body[data-store-page] .drawer-item-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
body[data-store-page] .drawer-item h3 {
  margin: 0;
  color: #111;
  font-size: .68rem;
  font-weight: 700;
  line-height: 1.35;
}
body[data-store-page] .drawer-item-price {
  color: #111;
  font-size: .67rem;
  font-weight: 600;
  white-space: nowrap;
}
body[data-store-page] .drawer-item-meta {
  margin: 6px 0 0;
  color: #777;
  font-size: .61rem;
}
body[data-store-page] .item-controls {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 13px;
}
body[data-store-page] .quantity-stepper {
  display: inline-grid;
  grid-template-columns: 30px 30px 30px;
  border: 1px solid #d4d4d4;
}
body[data-store-page] .quantity-stepper button,
body[data-store-page] .quantity-stepper span {
  display: grid;
  min-height: 29px;
  place-items: center;
  border: 0;
  background: #fff;
  color: #111;
  font-size: .65rem;
}
body[data-store-page] .quantity-stepper button { cursor: pointer; }
body[data-store-page] .item-remove {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #777;
  font-size: .6rem;
  text-decoration: underline;
  cursor: pointer;
}
body[data-store-page] .cart-drawer-footer {
  padding: 19px 24px 22px;
  border-top: 1px solid var(--store-line);
  background: #fff;
}
body[data-store-page] .drawer-summary > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 4px 0;
  color: #686868;
  font-size: .65rem;
}
body[data-store-page] .drawer-summary strong { color: #111; font-weight: 600; }
body[data-store-page] .drawer-summary .drawer-total {
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px solid var(--store-line);
  color: #111;
  font-weight: 700;
}
body[data-store-page] .cart-drawer-footer .primary-action,
body[data-store-page] .cart-drawer-footer .secondary-action { width: 100%; }
body[data-store-page] .cart-drawer-footer .primary-action { margin-top: 15px; }
body[data-store-page] .cart-drawer-footer .secondary-action { margin-top: 7px; }
body[data-store-page] .store-toast {
  position: fixed;
  z-index: 150;
  right: 18px;
  bottom: 18px;
  max-width: 340px;
  padding: 11px 14px;
  background: #111;
  color: #fff;
  font-size: .67rem;
  line-height: 1.45;
}

/* Cart page */
body[data-store-page="cart"] .cart-page { max-width: 1040px; }
body[data-store-page="cart"] .cart-page-heading h1,
body[data-store-page="order"] .order-card h1 {
  margin: 0;
  color: #111;
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.1;
}
body[data-store-page="cart"] .cart-page-heading > p {
  margin: 8px 0 0;
  color: #777;
  font-size: .75rem;
}
body[data-store-page="cart"] .cart-item-summary { font-size: .68rem; }
body[data-store-page="cart"] .cart-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 50px;
  margin-top: 32px;
  align-items: start;
}
body[data-store-page="cart"] .cart-lines { border-top: 1px solid var(--store-line); }
body[data-store-page="cart"] .cart-line {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) auto;
  gap: 17px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--store-line);
}
body[data-store-page="cart"] .cart-line img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  background: var(--store-soft);
}
body[data-store-page="cart"] .cart-line h2 {
  margin: 0;
  color: #111;
  font-size: .72rem;
  font-weight: 700;
}
body[data-store-page="cart"] .cart-line-meta { margin: 6px 0 0; color: #777; font-size: .63rem; }
body[data-store-page="cart"] .cart-line-total { align-self: start; color: #111; font-size: .72rem; font-weight: 600; }
body[data-store-page="cart"] .cart-summary { position: sticky; top: 88px; }
body[data-store-page="cart"] .cart-summary h2 { margin: 0 0 12px; font-size: .9rem; font-weight: 700; }
body[data-store-page="cart"] .cart-summary dl { margin: 0; border-top: 1px solid var(--store-line); }
body[data-store-page="cart"] .cart-summary dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--store-line);
}
body[data-store-page="cart"] .cart-summary dt,
body[data-store-page="cart"] .cart-summary dd { margin: 0; color: #747474; font-size: .67rem; }
body[data-store-page="cart"] .cart-summary dd { color: #111; font-weight: 600; }
body[data-store-page="cart"] .cart-total dt,
body[data-store-page="cart"] .cart-total dd { color: #111; font-size: .78rem; font-weight: 700; }
body[data-store-page="cart"] .cart-checkout { width: 100%; margin-top: 16px; }
body[data-store-page="cart"] .cart-summary .secondary-action { width: 100%; margin-top: 7px; }
body[data-store-page="cart"] .cart-market-note { margin: 11px 0 0; color: #888; font-size: .6rem; line-height: 1.45; }
body[data-store-page="cart"] .cart-page-empty { padding: 28px 0 50px; }
body[data-store-page="cart"] .cart-page-empty h2 { margin: 0; font-size: .95rem; }
body[data-store-page="cart"] .cart-page-empty p { margin: 10px 0 18px; color: #777; font-size: .7rem; }
body[data-store-page="cart"] .cart-page-empty .primary-action { width: auto; }

/* Order */
body[data-store-page="order"] .order-page { max-width: 900px; }
body[data-store-page="order"] .order-card-head > p {
  max-width: 620px;
  margin: 10px 0 0;
  color: #777;
  font-size: .75rem;
  line-height: 1.55;
}
body[data-store-page="order"] .order-progress {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 32px;
  border-top: 1px solid var(--store-line);
  border-bottom: 1px solid var(--store-line);
}
body[data-store-page="order"] .order-progress > div {
  min-height: 86px;
  padding: 15px 14px;
  border-right: 1px solid var(--store-line);
}
body[data-store-page="order"] .order-progress > div:first-child { padding-left: 0; }
body[data-store-page="order"] .order-progress > div:last-child { border-right: 0; }
body[data-store-page="order"] .order-progress strong,
body[data-store-page="order"] .order-progress em { display: block; }
body[data-store-page="order"] .order-progress strong { color: #777; font-size: .67rem; font-weight: 700; }
body[data-store-page="order"] .order-progress em { margin-top: 5px; color: #999; font-size: .58rem; font-style: normal; }
body[data-store-page="order"] .order-progress .is-current strong,
body[data-store-page="order"] .order-progress .is-complete strong { color: #111; }
body[data-store-page="order"] .order-progress .is-complete em { color: var(--store-success); }
body[data-store-page="order"] .order-reference,
body[data-store-page="order"] .order-financials > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
body[data-store-page="order"] .order-reference { margin-top: 20px; padding: 10px 0; border-bottom: 1px solid var(--store-line); }
body[data-store-page="order"] .order-reference span,
body[data-store-page="order"] .order-reference strong { font-size: .64rem; }
body[data-store-page="order"] .order-items { margin-top: 14px; }
body[data-store-page="order"] .order-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--store-line);
}
body[data-store-page="order"] .order-item img { width: 72px; height: 72px; object-fit: cover; background: var(--store-soft); }
body[data-store-page="order"] .order-item h3 { margin: 0; font-size: .68rem; font-weight: 700; }
body[data-store-page="order"] .order-item p { margin: 4px 0 0; color: #777; font-size: .6rem; }
body[data-store-page="order"] .order-item > strong { font-size: .68rem; }
body[data-store-page="order"] .order-financials { margin: 18px 0 0; border-top: 1px solid var(--store-line); }
body[data-store-page="order"] .order-financials > div { padding: 8px 0; border-bottom: 1px solid var(--store-line); }
body[data-store-page="order"] .order-financials dt,
body[data-store-page="order"] .order-financials dd { margin: 0; color: #777; font-size: .64rem; }
body[data-store-page="order"] .order-financials dd { color: #111; font-weight: 600; }
body[data-store-page="order"] .order-financial-total dt,
body[data-store-page="order"] .order-financial-total dd { color: #111; font-size: .74rem; font-weight: 700; }
body[data-store-page="order"] .order-tracking { margin-top: 20px; padding: 12px 0; border-top: 1px solid var(--store-line); border-bottom: 1px solid var(--store-line); }
body[data-store-page="order"] .order-actions { display: flex; gap: 8px; margin-top: 24px; }
body[data-store-page="order"] .order-actions .secondary-action { width: auto; }

body[data-store-page] .store-noscript {
  position: fixed;
  z-index: 200;
  right: 18px;
  bottom: 18px;
  max-width: 360px;
  padding: 12px 14px;
  border: 1px solid #111;
  background: #fff;
  color: #111;
  font-size: .67rem;
}

/* Responsive */
@media (max-width: 900px) {
  :root { --store-gutter: 22px; }
  body[data-store-page="product"] .product-layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 330px);
    gap: 30px;
  }
  body[data-store-page="product"] .product-gallery { grid-template-columns: 54px minmax(0, 1fr); gap: 9px; }
  body[data-store-page="product"] .product-thumbnail { width: 54px; height: 54px; }
  body[data-store-page="cart"] .cart-page-layout { grid-template-columns: 1fr; gap: 34px; }
  body[data-store-page="cart"] .cart-summary { position: static; }
}

@media (max-width: 700px) {
  :root { --store-gutter: 14px; }
  body[data-store-page] .store-nav .nav-inner { min-height: 54px; }
  body[data-store-page] .store-nav .nav-logo img { width: 104px; height: 31px; }
  body[data-store-page] .store-nav .nav-links { gap: 13px; }
  body[data-store-page] .store-nav .nav-links a,
  body[data-store-page] .nav-bag { font-size: .6rem; }
  body[data-store-page] .nav-bag-count { min-width: 19px; height: 19px; }
  body[data-store-page] .store-page,
  body[data-store-page] .shop-index { padding: 20px 0 38px; }

  body[data-store-page="landing"] .shop-index-head { margin-bottom: 17px; }
  body[data-store-page="landing"] .shop-index-head h1 { font-size: 1.45rem; }
  body[data-store-page="landing"] .shop-index-head p { font-size: .7rem; }
  body[data-store-page="landing"] .shop-index-grid { grid-template-columns: minmax(0, 300px); }
  body[data-store-page="landing"] .shop-index-card-info { margin-top: 9px; }

  body[data-store-page="product"] .product-layout {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  body[data-store-page="product"] .product-gallery {
    grid-template-columns: 42px minmax(0, 254px);
    gap: 7px;
    justify-content: center;
    width: 100%;
    max-width: 303px;
    margin: 0 auto;
  }
  body[data-store-page="product"] .product-thumbnails { gap: 6px; }
  body[data-store-page="product"] .product-thumbnail { width: 42px; height: 42px; }
  body[data-store-page="product"] .product-visual { width: 254px; height: 254px; aspect-ratio: auto; }
  body[data-store-page="product"] .product-panel {
    position: static;
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
  }
  body[data-store-page="product"] .product-panel h1 { font-size: 1.22rem; line-height: 1.16; }
  body[data-store-page="product"] .product-price-row { margin-top: 7px; padding-bottom: 9px; }
  body[data-store-page="product"] .product-price { font-size: .8rem; }
  body[data-store-page="product"] .stock-state { font-size: .57rem; }
  body[data-store-page="product"] .product-intro { margin-top: 9px; font-size: .67rem; line-height: 1.45; }
  body[data-store-page="product"] .product-option-group { margin-top: 12px; }
  body[data-store-page="product"] .product-option-group legend { margin-bottom: 6px; }
  body[data-store-page="product"] .product-option-group legend span,
  body[data-store-page="product"] .product-option-group legend strong,
  body[data-store-page="product"] .quantity-field > span { font-size: .61rem; }
  body[data-store-page="product"] .colour-options { gap: 8px; }
  body[data-store-page="product"] .colour-option { width: 25px; height: 25px; min-height: 25px; }
  body[data-store-page="product"] .colour-option i { width: 17px; height: 17px; }
  body[data-store-page="product"] .size-options { gap: 4px; }
  body[data-store-page="product"] .size-option { min-width: 36px; height: 32px; padding: 0 7px; font-size: .59rem; }
  body[data-store-page="product"] .product-actions {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 7px;
    margin-top: 13px;
    padding-top: 11px;
  }
  body[data-store-page="product"] .quantity-field { gap: 4px; }
  body[data-store-page="product"] .quantity-field select,
  body[data-store-page="product"] #add-to-cart { height: 40px; min-height: 40px; }
  body[data-store-page="product"] #add-to-cart { padding: 0 10px; font-size: .6rem; }
  body[data-store-page="product"] .product-delivery-note { margin-top: 7px; font-size: .55rem; }

  body[data-store-page] .store-footer { display: block; margin-top: 34px; }
  body[data-store-page] .store-footer-links { display: flex; margin-top: 7px; }
  body[data-store-page] .cart-drawer { width: 100vw; }
  body[data-store-page] .cart-drawer-header,
  body[data-store-page] .cart-drawer-body,
  body[data-store-page] .cart-drawer-footer { padding-right: 18px; padding-left: 18px; }
  body[data-store-page] .drawer-item { grid-template-columns: 82px minmax(0, 1fr); }
  body[data-store-page] .drawer-item img { width: 82px; height: 82px; }

  body[data-store-page="cart"] .cart-page-heading h1,
  body[data-store-page="order"] .order-card h1 { font-size: 1.5rem; }
  body[data-store-page="cart"] .cart-page-layout { margin-top: 24px; }
  body[data-store-page="cart"] .cart-line { grid-template-columns: 82px minmax(0, 1fr); gap: 13px; }
  body[data-store-page="cart"] .cart-line img { width: 82px; height: 82px; }
  body[data-store-page="cart"] .cart-line-total { grid-column: 2; }

  body[data-store-page="order"] .order-progress { grid-template-columns: repeat(2, 1fr); }
  body[data-store-page="order"] .order-progress > div:nth-child(2) { border-right: 0; }
  body[data-store-page="order"] .order-progress > div:nth-child(-n+2) { border-bottom: 1px solid var(--store-line); }
  body[data-store-page="order"] .order-progress > div:nth-child(3) { padding-left: 0; }
  body[data-store-page="order"] .order-item { grid-template-columns: 62px minmax(0, 1fr); }
  body[data-store-page="order"] .order-item img { width: 62px; height: 62px; }
  body[data-store-page="order"] .order-item > strong { grid-column: 2; }
  body[data-store-page="order"] .order-actions { flex-direction: column; }
  body[data-store-page="order"] .order-actions .secondary-action { width: 100%; }
}

@media (max-width: 360px) {
  body[data-store-page="product"] .product-gallery {
    grid-template-columns: 40px minmax(0, 238px);
    gap: 6px;
    max-width: 284px;
  }
  body[data-store-page="product"] .product-thumbnail { width: 40px; height: 40px; }
  body[data-store-page="product"] .product-visual { width: 238px; height: 238px; }
  body[data-store-page="product"] .size-option { min-width: 34px; padding: 0 6px; }
}

@media (prefers-reduced-motion: reduce) {
  body[data-store-page] .cart-overlay,
  body[data-store-page] .cart-drawer,
  body[data-store-page="product"] .product-visual img,
  body[data-store-page="landing"] .shop-index-card-image img { transition: none !important; }
}
