:root {
  color-scheme: light;
  --store-ink: #1d2226;
  --store-muted: #687078;
  --store-rule: #dedfdc;
  --store-warm: #f3f0ea;
  --store-red: #ba1423;
  --store-paper: #fff;
}

* { box-sizing: border-box; }
.store-page { min-height: 100vh; overflow: hidden; color: var(--store-ink); background: var(--store-paper); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; text-rendering: optimizeLegibility; }
.store-page a, .store-cart a { color: inherit; }
.store-header, .store-intro, .store-collection, .store-footer { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.store-header { display: grid; grid-template-columns: minmax(140px, 1fr) auto minmax(180px, 1fr); align-items: center; gap: 24px; min-height: 102px; border-bottom: 1px solid var(--store-rule); }
.store-brand { display: inline-flex; width: fit-content; }
.store-brand img { display: block; width: 142px; height: auto; }
.store-nav { display: flex; align-items: center; gap: clamp(14px, 2.6vw, 32px); font-size: .8rem; font-weight: 760; letter-spacing: .07em; text-transform: uppercase; }
.store-nav a, .store-contact { position: relative; text-decoration: none; }
.store-nav a::after { position: absolute; right: 0; bottom: -9px; left: 0; height: 2px; background: var(--store-red); content: ""; opacity: 0; transform: scaleX(.35); transition: opacity .2s ease, transform .2s ease; }
.store-nav a:hover::after, .store-nav a:focus-visible::after, .store-nav a[aria-current="page"]::after { opacity: 1; transform: scaleX(1); }
.store-header-actions { display: flex; align-items: center; justify-self: end; gap: 10px; }
.store-contact, .store-cart-trigger { border: 1px solid var(--store-ink); padding: 10px 15px; color: var(--store-ink); background: transparent; font: inherit; font-size: .76rem; font-weight: 780; letter-spacing: .06em; text-transform: uppercase; transition: color .2s ease, background-color .2s ease; }
.store-cart-trigger { cursor: pointer; border-color: var(--store-rule); }
.store-cart-trigger span { display: inline-grid; min-width: 1.35rem; min-height: 1.35rem; margin-left: 5px; place-items: center; border-radius: 50%; color: #fff; background: var(--store-red); font-size: .65rem; }
.store-contact:hover, .store-contact:focus-visible { color: #fff; background: var(--store-ink); }
.store-cart-trigger:hover, .store-cart-trigger:focus-visible { border-color: var(--store-ink); background: var(--store-warm); }
.store-intro { max-width: 930px; margin-top: clamp(72px, 12vw, 144px); margin-bottom: clamp(64px, 10vw, 112px); margin-left: max(24px, calc((100vw - min(1180px, calc(100vw - 48px))) / 2)); }
.store-kicker { margin: 0; color: var(--store-red); font-size: .72rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.store-intro h1, .store-section-heading h2 { margin: 13px 0 0; font-family: Georgia, "Times New Roman", serif; font-weight: 500; letter-spacing: -.052em; }
.store-intro h1 { max-width: 800px; font-size: clamp(3.35rem, 8.1vw, 7rem); line-height: .93; }
.store-lede { max-width: 650px; margin: 31px 0 0; color: #474f56; font-size: clamp(1.03rem, 1.7vw, 1.22rem); line-height: 1.65; }
.store-beta-controls { display: grid; grid-template-columns: minmax(220px, max-content) minmax(0, 430px); align-items: end; gap: 16px 28px; margin-top: 29px; padding: 17px 18px; border-left: 3px solid var(--store-red); background: var(--store-warm); }
.store-region-label, .store-shipping label { display: grid; gap: 7px; color: #4d5459; font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.store-region-label select, .store-shipping select { min-height: 40px; width: 100%; border: 1px solid #c6c8c4; border-radius: 0; padding: 0 33px 0 11px; color: var(--store-ink); background: #fff; font: inherit; font-size: .86rem; font-weight: 680; letter-spacing: 0; text-transform: none; }
.store-currency-notice { max-width: 420px; margin: 0; color: #565d62; font-size: .78rem; line-height: 1.5; }
.store-collection { padding-top: 32px; border-top: 1px solid var(--store-rule); }
.store-section-heading { margin-bottom: 38px; }
.store-section-heading h2 { font-size: clamp(2.25rem, 4.1vw, 4rem); line-height: .96; }
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px 20px; }
.product-card { display: flex; min-width: 0; flex-direction: column; border: 1px solid var(--store-rule); background: #fff; transition: box-shadow .25s ease, transform .25s ease; }
.product-card:hover { box-shadow: 0 18px 45px rgba(25, 28, 29, .1); transform: translateY(-4px); }
.product-image-wrap { position: relative; display: grid; min-height: 0; place-items: center; overflow: hidden; border-bottom: 1px solid var(--store-rule); aspect-ratio: 1; background: #fff; }
.product-image-wrap::after { position: absolute; z-index: 3; right: 19px; bottom: 18px; width: 19px; height: 19px; border-right: 1px solid rgba(29, 34, 38, .42); border-bottom: 1px solid rgba(29, 34, 38, .42); content: ""; pointer-events: none; }
.product-image-wrap img { position: relative; z-index: 0; display: block; width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; transition: transform .4s ease; }
.product-motion-video { position: absolute; z-index: 1; inset: 0; width: 100%; height: 100%; object-fit: contain; opacity: 0; background: #fff; pointer-events: none; transition: opacity .2s ease; }
.product-card.is-motion-playing .product-motion-video { opacity: 1; }
.product-card:hover .product-image-wrap img { transform: scale(1.035); }
.product-index { position: absolute; z-index: 1; top: 17px; left: 18px; color: #8b9194; font-size: .7rem; font-weight: 780; letter-spacing: .11em; }
.product-card__body { display: flex; min-height: 210px; flex: 1; flex-direction: column; padding: 22px 22px 20px; }
.product-card h3 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: 2rem; font-weight: 500; letter-spacing: -.035em; }
.product-price { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin: 17px 0 0; padding-top: 13px; border-top: 1px solid var(--store-rule); }
.product-price span { color: #777e82; font-size: .67rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.product-price strong { color: var(--store-ink); font-family: Georgia, "Times New Roman", serif; font-size: 1.35rem; font-weight: 500; letter-spacing: -.03em; }
.product-card__footer { display: grid; gap: 13px; margin-top: auto; padding-top: 18px; }
.product-add, .product-motion-toggle, .product-card__footer a { display: flex; align-items: center; justify-content: space-between; width: 100%; border: 0; border-top: 1px solid var(--store-rule); padding: 13px 0 0; color: var(--store-ink); background: transparent; font: inherit; font-size: .78rem; font-weight: 800; letter-spacing: .075em; text-align: left; text-decoration: none; text-transform: uppercase; }
.product-add, .product-motion-toggle { cursor: pointer; }
.product-motion-toggle svg { width: 17px; height: 17px; color: var(--store-red); transition: transform .2s ease; }
.product-motion-toggle:hover svg, .product-motion-toggle:focus-visible svg { transform: scale(1.15); }
.product-motion-toggle[aria-pressed="true"] svg { transform: rotate(90deg); }
.product-motion-toggle[aria-pressed="true"]:hover svg, .product-motion-toggle[aria-pressed="true"]:focus-visible svg { transform: rotate(90deg) scale(1.15); }
.product-add span { color: var(--store-red); font-size: 1.25rem; line-height: .5; transition: transform .2s ease; }
.product-add:hover span, .product-add:focus-visible span { transform: rotate(90deg); }
.product-card__footer a span { color: var(--store-red); font-size: 1.25rem; line-height: .5; transition: transform .2s ease; }
.product-card__footer a:hover span, .product-card__footer a:focus-visible span { transform: translateX(4px); }
.store-footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 90px; border-top: 1px solid var(--store-rule); color: var(--store-muted); font-size: .78rem; }
.store-footer a { color: var(--store-ink); font-weight: 760; text-underline-offset: 4px; }
.store-beta-float { position: fixed; z-index: 8; right: 18px; bottom: 18px; display: grid; gap: 3px; max-width: min(280px, calc(100vw - 36px)); padding: 12px 14px; border: 1px solid rgba(29, 34, 38, .18); box-shadow: 0 12px 30px rgba(29, 34, 38, .14); color: #fff; background: var(--store-ink); font-size: .72rem; font-weight: 800; letter-spacing: .055em; text-transform: uppercase; }
.store-beta-float span { color: #e9dbdc; font-size: .64rem; font-weight: 650; letter-spacing: .04em; }
.store-cart-backdrop { position: fixed; z-index: 18; inset: 0; background: rgba(16, 18, 20, .42); }
.store-cart { position: fixed; z-index: 19; top: 0; right: 0; display: flex; width: min(460px, 100%); height: 100dvh; flex-direction: column; overflow-y: auto; padding: clamp(24px, 4vw, 38px); border-left: 1px solid var(--store-rule); box-shadow: -18px 0 45px rgba(29, 34, 38, .18); background: #fff; transform: translateX(103%); transition: transform .28s ease; }
.store-cart.is-open { transform: translateX(0); }
.store-cart__header { display: flex; align-items: start; justify-content: space-between; gap: 16px; }
.store-cart__header h2 { margin: 8px 0 0; font-family: Georgia, "Times New Roman", serif; font-size: 2.45rem; font-weight: 500; letter-spacing: -.045em; }
.store-cart-close { display: grid; width: 39px; height: 39px; place-items: center; border: 1px solid var(--store-rule); color: var(--store-ink); background: #fff; font-size: 1.6rem; line-height: 1; cursor: pointer; }
.store-cart-close:hover, .store-cart-close:focus-visible { color: #fff; border-color: var(--store-ink); background: var(--store-ink); }
.store-cart__disclaimer { margin: 20px 0 0; padding: 12px 13px; border-left: 3px solid var(--store-red); color: #545b60; background: var(--store-warm); font-size: .78rem; line-height: 1.5; }
.store-cart__items { display: grid; gap: 0; margin-top: 24px; border-top: 1px solid var(--store-rule); }
.store-cart__empty { margin: 0; padding: 22px 0; color: var(--store-muted); font-size: .9rem; line-height: 1.55; }
.store-cart-item { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--store-rule); }
.store-cart-item h3 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: 1.4rem; font-weight: 500; letter-spacing: -.025em; }
.store-cart-item p { margin: 5px 0 0; color: var(--store-muted); font-size: .73rem; line-height: 1.4; }
.store-cart-item__controls { display: grid; grid-template-columns: repeat(3, 28px); gap: 5px; align-content: start; justify-items: center; }
.store-cart-item__controls button { display: grid; width: 28px; height: 28px; place-items: center; border: 1px solid var(--store-rule); color: var(--store-ink); background: #fff; font: inherit; cursor: pointer; }
.store-cart-item__controls button:hover, .store-cart-item__controls button:focus-visible { color: #fff; border-color: var(--store-ink); background: var(--store-ink); }
.store-cart-item__controls span { display: grid; min-height: 28px; place-items: center; font-size: .8rem; font-weight: 750; }
.store-cart-item__controls .store-cart-item__remove { grid-column: 1 / -1; width: auto; height: auto; padding: 5px 0 0; border: 0; color: var(--store-red); font-size: .66rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.store-cart-item__controls .store-cart-item__remove:hover, .store-cart-item__controls .store-cart-item__remove:focus-visible { color: #8f0e1a; background: transparent; text-decoration: underline; }
.store-shipping { display: grid; gap: 12px; margin-top: 26px; padding: 22px 0; border-top: 1px solid var(--store-rule); border-bottom: 1px solid var(--store-rule); }
.store-shipping h3 { margin: -3px 0 3px; font-family: Georgia, "Times New Roman", serif; font-size: 1.65rem; font-weight: 500; letter-spacing: -.03em; }
.store-secondary-button, .store-checkout-button { min-height: 44px; border: 1px solid var(--store-ink); color: var(--store-ink); background: #fff; font: inherit; font-size: .73rem; font-weight: 800; letter-spacing: .065em; text-transform: uppercase; cursor: pointer; }
.store-secondary-button:hover, .store-secondary-button:focus-visible { color: #fff; background: var(--store-ink); }
.store-secondary-button:disabled, .store-checkout-button:disabled { cursor: not-allowed; opacity: .42; }
.store-shipping__result { min-height: 1.25em; margin: 0; color: var(--store-muted); font-size: .76rem; line-height: 1.5; }
.store-cart__totals { display: grid; gap: 10px; margin: 22px 0 0; }
.store-cart__totals div { display: flex; justify-content: space-between; gap: 20px; color: var(--store-muted); font-size: .83rem; }
.store-cart__totals dt, .store-cart__totals dd { margin: 0; }
.store-cart__totals dd { color: var(--store-ink); font-weight: 760; }
.store-cart__totals .store-cart__total { margin-top: 3px; padding-top: 13px; border-top: 1px solid var(--store-rule); color: var(--store-ink); font-weight: 800; }
.store-cart__totals .store-cart__total dd { font-family: Georgia, "Times New Roman", serif; font-size: 1.36rem; font-weight: 500; letter-spacing: -.02em; }
.store-checkout-button { width: 100%; margin-top: 20px; color: #fff; background: var(--store-red); border-color: var(--store-red); }
.store-checkout-button:hover, .store-checkout-button:focus-visible { background: #98101c; border-color: #98101c; }
.store-checkout-status { min-height: 1.25em; margin: 12px 0 0; color: var(--store-muted); font-size: .76rem; line-height: 1.5; }
button:focus-visible, a:focus-visible, select:focus-visible { outline: 3px solid rgba(186, 20, 35, .35); outline-offset: 3px; }
@media (max-width: 800px) { .store-header { grid-template-columns: 1fr auto; min-height: 86px; } .store-brand img { width: 126px; } .store-nav { grid-column: 1 / -1; grid-row: 2; justify-content: space-between; width: 100%; padding: 0 0 15px; font-size: .69rem; } .store-contact { padding: 9px 12px; font-size: .68rem; } .store-intro { margin-top: 82px; } .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 540px) { .store-header, .store-intro, .store-collection, .store-footer { width: min(100% - 32px, 1180px); } .store-header { gap: 12px; } .store-header-actions { gap: 7px; } .store-cart-trigger { padding: 8px 9px; font-size: 0; } .store-cart-trigger span { margin-left: 0; font-size: .65rem; } .store-contact { padding: 9px 10px; font-size: .62rem; } .store-nav { gap: 8px; overflow-x: auto; } .store-nav a::after { bottom: -6px; } .store-intro { margin-top: 61px; margin-bottom: 66px; } .store-intro h1 { font-size: clamp(3rem, 16vw, 4.6rem); } .store-beta-controls { grid-template-columns: 1fr; margin-top: 24px; } .store-section-heading { margin-bottom: 25px; } .product-grid { grid-template-columns: 1fr; gap: 18px; } .product-card__body { min-height: 200px; } .store-footer { min-height: 78px; } .store-beta-float { right: 12px; bottom: 12px; } .store-cart { padding: 24px 18px; } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; } }
