.store-site {
  --store-black: #0a0a0a;
  --store-white: #fff;
  --store-soft: #f3f3f3;
  --store-line: #d8d8d8;
  --store-muted: #5f5f5f;
  --store-min-text: 14px;
  background: var(--store-white);
  color: var(--store-black);
  font-size: 16px;
}

.store-site *, .store-site *::before, .store-site *::after { box-sizing: border-box; }
.store-site .skip-link { z-index: 1200; }
.store-wrap { width: min(100%, 1380px); margin-inline: auto; padding-inline: clamp(20px, 4vw, 56px); }

.store-collection-header { padding-block: 30px 28px; border-bottom: 1px solid var(--store-line); }
.store-collection-header nav, .store-breadcrumb { display: flex; gap: 10px; align-items: center; color: var(--store-muted); font-size: var(--store-min-text); }
.store-collection-header nav a, .store-breadcrumb a { color: var(--store-black); text-decoration: underline; text-underline-offset: 4px; }
.store-collection-header > div { display: flex; gap: 32px; align-items: end; justify-content: space-between; margin-top: 30px; }
.store-collection-header h1 { margin: 0; font-family: var(--twb-display); font-size: clamp(32px, 3vw, 40px); font-weight: 400; letter-spacing: -.02em; line-height: 1.08; }
.store-collection-header p { max-width: 570px; margin: 0; color: var(--store-muted); font-size: 16px; line-height: 1.55; }

.store-collection { padding-block: 24px clamp(64px, 7vw, 96px); }
.store-collection__bar { min-height: 48px; margin-bottom: 22px; padding-bottom: 15px; display: flex; align-items: center; justify-content: space-between; gap: 24px; border-bottom: 1px solid var(--store-line); font-size: var(--store-min-text); }
.store-collection__bar strong { font-weight: 600; }
.store-collection__bar span { color: var(--store-muted); }
.store-product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(28px, 4vw, 60px); }
.store-product-card { overflow: hidden; border: 1px solid var(--store-line); border-radius: 14px; background: #fff; transition: border-color .18s ease, box-shadow .18s ease; }
.store-product-card a { display: block; color: inherit; }
.store-product-image { position: relative; display: block; width: 100%; aspect-ratio: 1; overflow: hidden; background: var(--store-soft); }
.store-product-image img { object-fit: contain; transition: transform .3s ease; }
.store-product-card__copy { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 8px 22px; padding: 20px; border-top: 1px solid var(--store-line); }
.store-product-card__copy > span { grid-column: 1 / -1; color: var(--store-muted); font-size: var(--store-min-text); }
.store-product-card__copy > strong { font-family: var(--twb-display); font-size: clamp(23px, 2.1vw, 29px); font-weight: 400; line-height: 1.16; }
.store-product-card__copy > b { padding-top: 4px; font-size: 17px; font-weight: 500; }
.store-product-card__copy > em { grid-column: 1 / -1; color: var(--store-muted); font-size: var(--store-min-text); font-style: normal; }
.store-product-card__copy > i { grid-column: 1 / -1; width: max-content; margin-top: 5px; padding-bottom: 4px; border-bottom: 1px solid currentColor; font-size: var(--store-min-text); font-style: normal; font-weight: 600; }

.store-breadcrumb { padding-block: 22px; border-bottom: 1px solid var(--store-line); }
.store-breadcrumb > span:last-child { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.store-product-page { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(420px, .75fr); gap: clamp(42px, 6vw, 88px); align-items: start; padding-block: clamp(34px, 5vw, 70px) clamp(72px, 8vw, 116px); }
.store-gallery { min-width: 0; }
.store-gallery__main { position: relative; display: block; width: 100%; overflow: hidden; background: var(--store-soft); }
.store-gallery__main .store-product-image { aspect-ratio: 1; }
.store-gallery__main[data-magnifier="true"] { cursor: crosshair; touch-action: none; }
.store-gallery__zoom-toggle { position: absolute; top: 16px; right: 16px; z-index: 4; display: inline-flex; gap: 9px; align-items: center; min-height: 46px; padding: 10px 14px; border: 1px solid var(--store-black); background: rgba(255,255,255,.96); color: var(--store-black); font-size: var(--store-min-text); font-weight: 600; cursor: pointer; }
.store-zoom-icon { position: relative; display: block; width: 17px; height: 17px; border: 2px solid currentColor; border-radius: 50%; }
.store-zoom-icon::after { position: absolute; right: -6px; bottom: -4px; width: 8px; height: 2px; background: currentColor; content: ""; transform: rotate(45deg); transform-origin: left center; }
.store-gallery__lens { position: absolute; z-index: 3; width: clamp(170px, 18vw, 240px); aspect-ratio: 1; border: 2px solid #fff; border-radius: 50%; background-color: #fff; background-repeat: no-repeat; background-size: 300% auto; box-shadow: 0 8px 28px rgba(0,0,0,.28); pointer-events: none; transform: translate(-50%, -50%); }
.store-gallery__zoom-hint { position: absolute; right: 16px; bottom: 16px; z-index: 4; padding: 9px 12px; background: rgba(255,255,255,.94); color: var(--store-black); font-size: var(--store-min-text); pointer-events: none; }
.store-gallery__thumbs { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin-top: 12px; }
.store-gallery__thumbs button { position: relative; aspect-ratio: 1; padding: 0; overflow: hidden; border: 1px solid transparent; background: var(--store-soft); cursor: pointer; }
.store-gallery__thumbs button[data-selected="true"] { border-color: var(--store-black); }
.store-gallery__thumbs img { object-fit: cover; }

.store-product-info { position: sticky; top: 24px; min-width: 0; }
.store-kicker { margin: 0 0 13px; color: var(--store-muted); font-size: var(--store-min-text); font-weight: 600; }
.store-product-info h1 { margin: 0; font-family: var(--twb-display); font-size: clamp(32px, 3vw, 42px); font-weight: 400; letter-spacing: -.025em; line-height: 1.08; }
.store-product-price { margin: 18px 0 0; font-size: 23px; font-weight: 500; }
.store-product-shipping { margin: 8px 0 0; color: var(--store-muted); font-size: var(--store-min-text); }
.store-product-description { margin: 24px 0 28px; color: #3f3f3f; font-size: 16px; line-height: 1.65; }
.store-product-details { margin-bottom: 28px; border-top: 1px solid var(--store-black); }
.store-product-details h2 { margin: 0; padding: 17px 0; border-bottom: 1px solid var(--store-line); font-size: 18px; font-weight: 600; }
.store-product-details dl { margin: 0; }
.store-product-details dl > div { display: grid; grid-template-columns: 130px 1fr; gap: 22px; padding: 16px 0; border-bottom: 1px solid var(--store-line); }
.store-product-details dt { color: var(--store-muted); font-size: var(--store-min-text); font-weight: 600; }
.store-product-details dd { margin: 0; font-size: 15px; line-height: 1.6; }

.store-eligibility { position: relative; margin-bottom: 20px; }
.store-eligibility label, .store-product-buy label, .store-delivery-form label { display: grid; gap: 9px; }
.store-eligibility label > span, .store-product-buy label > span, .store-delivery-form label > span { color: #303030; font-size: var(--store-min-text); font-weight: 600; }
.store-delivery-form label > span i { font-style: normal; font-weight: 400; }
.store-eligibility input, .store-product-buy select, .store-delivery-form input, .store-delivery-form select { width: 100%; min-height: 52px; padding: 13px 14px; border: 1px solid #989898; border-radius: 0; outline: none; background: #fff; color: var(--store-black); font: inherit; font-size: 16px; }
.store-eligibility input:focus, .store-product-buy select:focus, .store-delivery-form input:focus, .store-delivery-form select:focus { border-color: var(--store-black); box-shadow: 0 0 0 1px var(--store-black); }
.store-eligibility > small { display: block; margin-top: 10px; color: var(--store-muted); font-size: var(--store-min-text); }
.store-eligibility__results { position: absolute; top: 84px; inset-inline: 0; z-index: 20; max-height: 340px; overflow: auto; border: 1px solid var(--store-black); background: #fff; box-shadow: 0 12px 30px rgba(0,0,0,.12); }
.store-eligibility__results button { display: grid; gap: 5px; width: 100%; padding: 15px; border: 0; border-bottom: 1px solid var(--store-line); background: #fff; color: var(--store-black); text-align: left; cursor: pointer; }
.store-eligibility__results button:hover, .store-eligibility__results button:focus-visible { background: var(--store-soft); }
.store-eligibility__results strong { font-size: 16px; }
.store-eligibility__results span { color: var(--store-muted); font-size: var(--store-min-text); }
.store-eligibility__selected { display: grid; grid-template-columns: 1fr auto; gap: 8px 18px; margin-top: 12px; padding: 16px; border: 1px solid var(--store-black); }
.store-eligibility__selected > span { grid-column: 1 / -1; font-size: var(--store-min-text); font-weight: 600; }
.store-eligibility__selected strong { font-family: var(--twb-display); font-size: 28px; font-weight: 400; }
.store-eligibility__selected small { align-self: center; color: var(--store-muted); font-size: var(--store-min-text); line-height: 1.5; text-align: right; }
.store-final-sale, .store-test-note { margin: 0 0 20px; padding: 14px 0; border-block: 1px solid var(--store-line); font-size: var(--store-min-text); font-weight: 600; line-height: 1.5; }
.store-media-addon { margin: 0 0 20px; padding: 18px; display: grid; grid-template-columns: 20px 1fr; gap: 14px; align-items: start; border: 1px solid var(--store-black); background: #fff; cursor: pointer; }
.store-media-addon > input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--store-black); }
.store-media-addon > span { display: grid; gap: 5px; }
.store-media-addon small { color: var(--store-muted); font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.store-media-addon strong { font-family: var(--twb-display); font-size: 24px; font-weight: 400; line-height: 1.15; }
.store-media-addon em { color: var(--store-muted); font-size: 16px; font-style: normal; line-height: 1.55; }
.store-product-buy { display: grid; grid-template-columns: 110px minmax(0, 1fr); gap: 12px; align-items: end; }
.store-product-buy > button, .store-cart aside > footer > button, .store-private-gate a { min-height: 52px; padding: 13px 18px; border: 1px solid var(--store-black); background: var(--store-black); color: #fff; font-size: var(--store-min-text); font-weight: 600; cursor: pointer; }

.store-site button.store-cart-trigger { position: fixed; right: 22px; bottom: 22px; z-index: 80; min-height: 50px; padding: 12px 17px; border: 1px solid var(--store-black); background: var(--store-black); color: #fff; font-size: var(--store-min-text); font-weight: 600; cursor: pointer; }
.store-site button.store-cart-trigger span { display: inline-grid; min-width: 22px; min-height: 22px; margin-left: 8px; place-items: center; background: #fff; color: var(--store-black); }
.store-cart { position: fixed; inset: 0; z-index: 1200; visibility: hidden; pointer-events: none; }
.store-cart--open { visibility: visible; pointer-events: auto; }
.store-cart__backdrop { position: absolute; inset: 0; border: 0; background: rgba(0,0,0,.7); opacity: 0; transition: opacity .2s ease; }
.store-cart--open .store-cart__backdrop { opacity: 1; }
.store-cart aside { position: absolute; top: 0; right: 0; display: grid; grid-template-rows: auto auto 1fr auto; width: min(100%, 570px); height: 100%; background: #fff; color: var(--store-black); transform: translateX(100%); transition: transform .24s ease; }
.store-cart--open aside { transform: translateX(0); }
.store-cart aside > header { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid var(--store-line); }
.store-cart aside > header p { margin: 0; font-family: var(--twb-display); font-size: 28px; }
.store-cart aside > header small { color: var(--store-muted); font-size: var(--store-min-text); }
.store-cart aside > header button, .store-cart__items article > button, .store-review button { padding: 4px 0; border: 0; border-bottom: 1px solid currentColor; background: transparent; font-size: var(--store-min-text); font-weight: 600; cursor: pointer; }
.store-checkout-steps { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid var(--store-line); }
.store-checkout-steps span { padding: 14px 10px; border-right: 1px solid var(--store-line); color: #777; font-size: var(--store-min-text); font-weight: 600; text-align: center; }
.store-checkout-steps span:last-child { border-right: 0; }
.store-checkout-steps span[data-active="true"] { background: var(--store-black); color: #fff; }
.store-cart__body { overflow: auto; padding: 0 24px; }
.store-cart__items article { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 10px 20px; padding: 22px 0; border-bottom: 1px solid var(--store-line); }
.store-cart__items article p { margin: 0; font-size: 16px; font-weight: 600; }
.store-cart__items article span, .store-cart__items article small { display: block; margin-top: 6px; color: var(--store-muted); font-size: var(--store-min-text); line-height: 1.45; }
.store-cart__items article > button { grid-column: 1 / -1; width: max-content; }
.store-cart__empty { padding: 38px 0; color: var(--store-muted); font-size: 16px; }
.store-delivery-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 17px 13px; padding-block: 24px 32px; }
.store-field--wide { grid-column: 1 / -1; }
.store-save-address { grid-template-columns: 19px 1fr !important; align-items: center; }
.store-save-address input { width: 18px; min-height: 18px; height: 18px; padding: 0; accent-color: var(--store-black); }
.store-save-address span { font-weight: 400 !important; }
.store-account-invitation { margin: 0; padding: 15px 0 0; border-top: 1px solid var(--store-line); color: var(--store-muted); font-size: var(--store-min-text); }
.store-account-invitation a { color: var(--store-black); text-decoration: underline; text-underline-offset: 3px; }
.store-review section { position: relative; padding: 22px 0; border-bottom: 1px solid var(--store-line); }
.store-review section > span { display: block; margin-bottom: 9px; color: var(--store-muted); font-size: var(--store-min-text); font-weight: 600; }
.store-review strong { font-size: 16px; }
.store-review p { margin: 7px 0 0; color: #4d4d4d; font-size: var(--store-min-text); line-height: 1.6; }
.store-review button { position: absolute; top: 22px; right: 0; }
.store-final-confirmation { display: grid; grid-template-columns: 19px 1fr; gap: 11px; align-items: start; margin: 22px 0 26px; cursor: pointer; }
.store-final-confirmation input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--store-black); }
.store-final-confirmation span { font-size: var(--store-min-text); line-height: 1.6; }
.store-cart aside > footer { padding: 18px 24px 24px; border-top: 1px solid var(--store-black); }
.store-cart aside > footer > div { display: flex; justify-content: space-between; margin-bottom: 9px; color: #4d4d4d; font-size: var(--store-min-text); }
.store-cart aside > footer > .store-cart__total { margin: 15px 0 18px; padding-top: 15px; border-top: 1px solid var(--store-line); color: var(--store-black); font-size: 19px; }
.store-cart aside > footer > button { width: 100%; }
.store-cart aside > footer > button:disabled { opacity: .4; cursor: not-allowed; }
.store-cart__error { margin: 12px 0 0; font-size: var(--store-min-text); }

.store-private-gate { min-height: 60vh; padding-block: 90px 130px; text-align: center; }
.store-private-gate > p { margin: 0; font-size: var(--store-min-text); font-weight: 600; }
.store-private-gate h1 { max-width: 760px; margin: 18px auto; font-family: var(--twb-display); font-size: clamp(36px, 4vw, 48px); font-weight: 400; line-height: 1.05; }
.store-private-gate > span { display: block; max-width: 650px; margin: 0 auto 28px; color: var(--store-muted); font-size: 16px; line-height: 1.65; }
.store-private-gate a { display: inline-grid; place-items: center; }
.store-success { width: min(760px, calc(100% - 42px)); margin: 0 auto; padding: 110px 0 140px; text-align: center; }
.store-success h1 { margin: 16px 0 24px; font-family: var(--twb-display); font-size: clamp(38px, 4vw, 50px); font-weight: 400; line-height: 1.05; }
.store-success > p { color: var(--store-muted); font-size: 16px; line-height: 1.65; }
.store-success > div { display: flex; justify-content: center; gap: 10px; margin-top: 30px; }
.store-success a { padding: 13px 17px; border: 1px solid var(--store-black); font-size: var(--store-min-text); font-weight: 600; }
.store-success a:first-child { background: var(--store-black); color: #fff; }

@media (hover:hover) and (pointer:fine) {
  .store-product-card:hover { border-color: #999; box-shadow: 0 10px 30px rgba(0,0,0,.06); }
  .store-product-card a:hover .store-product-image img { transform: scale(1.035); }
  .store-product-buy > button:hover, .store-cart aside > footer > button:hover:not(:disabled) { background: #333; }
}

@media (max-width: 980px) {
  .store-product-page { grid-template-columns: 1fr; }
  .store-product-info { position: static; }
  .store-gallery__main .store-product-image { aspect-ratio: 1; }
}

@media (max-width: 680px) {
  .store-wrap { padding-inline: 16px; }
  .store-collection-header > div { display: block; margin-top: 24px; }
  .store-collection-header p { margin-top: 14px; }
  .store-collection__bar { align-items: flex-start; flex-direction: column; gap: 4px; }
  .store-product-grid { grid-template-columns: 1fr; gap: 44px; }
  .store-product-card__copy > strong { font-size: 28px; }
  .store-product-page { padding-top: 22px; }
  .store-product-info h1 { font-size: 34px; }
  .store-product-details dl > div { grid-template-columns: 1fr; gap: 7px; }
  .store-product-buy { grid-template-columns: 100px 1fr; }
  .store-gallery__zoom-toggle { top: 10px; right: 10px; }
  .store-gallery__zoom-hint { right: 10px; bottom: 10px; left: 10px; text-align: center; }
  .store-site button.store-cart-trigger { position: static; display: flex; width: calc(100% - 32px); margin: 0 auto 48px; align-items: center; justify-content: center; }
  .store-delivery-form { grid-template-columns: 1fr; }
  .store-field--wide { grid-column: auto; }
  .store-success > div { flex-direction: column; }
}
