:root{
  --ink:#121212;
  --muted:#7d7d7d;
  --soft:#f7f7f7;
  --line:#e8e8e8;
  --line-strong:#dddddd;
  --white:#ffffff;
  --orange:#ff6541;
  --max:1450px;
  --ease:cubic-bezier(.22,1,.36,1);
  --shadow:0 18px 50px rgba(0,0,0,.075);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth;background:#fff}
body{margin:0;background:#fff;color:var(--ink);font-family:Arial,"Helvetica Neue",Helvetica,sans-serif;-webkit-font-smoothing:antialiased}
body.menu-open,body.search-open{overflow:hidden}
a{color:inherit;text-decoration:none}
button,input,select,textarea{font:inherit;color:inherit}
button{cursor:pointer}
img{display:block;max-width:100%}
svg{display:block}
::selection{background:#111;color:#fff}

.loader{position:fixed;inset:0;background:#fff;z-index:9999;display:grid;place-items:center;transition:opacity .5s var(--ease),visibility .5s}
.loader.is-done{opacity:0;visibility:hidden}
.loader img{width:min(150px,35vw);height:auto;animation:loaderPulse .8s ease-in-out infinite alternate}
@keyframes loaderPulse{to{opacity:.45;transform:scale(.97)}}
.scroll-progress{position:fixed;z-index:990;left:0;top:0;width:0;height:2px;background:#111;pointer-events:none}

/* Header — clean double-row layout matching the supplied reference */
.site-header{position:sticky;top:0;z-index:800;background:rgba(255,255,255,.97);border-bottom:1px solid var(--line);backdrop-filter:blur(12px)}
.header-main{height:102px;max-width:var(--max);margin:0 auto;padding:0 18px;display:grid;grid-template-columns:1fr auto 1fr;align-items:center}
.header-note{font-size:16px;color:#6f6f6f;letter-spacing:-.01em}
.brand{justify-self:center;width:72px;height:64px;display:flex;align-items:center;justify-content:center;overflow:hidden;transition:transform .3s var(--ease)}
.brand:hover{transform:scale(.96)}
.brand img{width:68px;height:auto}
.header-actions{justify-self:end;display:flex;align-items:center;gap:2px}
.icon-btn{width:40px;height:40px;border:0;background:transparent;border-radius:999px;display:grid;place-items:center;position:relative;color:#777;transition:color .2s,background .2s}
.icon-btn:hover{color:#111;background:#f5f5f5}
.icon-btn svg{width:20px;height:20px;fill:none;stroke:currentColor;stroke-width:1.4;stroke-linecap:round;stroke-linejoin:round}
.cart-count{position:absolute;top:-1px;right:-1px;min-width:23px;height:23px;padding:0 6px;border-radius:99px;background:var(--orange);color:#fff;font-size:11px;display:grid;place-items:center;font-weight:700;border:2px solid #fff}
.desktop-nav{height:73px;border-top:1px solid var(--line);display:flex;align-items:center;justify-content:center;gap:50px;background:#fff}
.desktop-nav a{height:73px;display:flex;align-items:center;position:relative;font-size:17px;color:#6d6d6d;transition:color .2s}
.desktop-nav a:hover,.desktop-nav a.active{color:#111}
.desktop-nav a.active::after{content:"";position:absolute;left:0;right:0;bottom:-1px;height:4px;background:#111}
.mobile-menu-btn{display:none}

/* overlays */
.overlay{position:fixed;inset:0;z-index:950;background:#fff;opacity:0;visibility:hidden;transition:opacity .3s,visibility .3s}
.overlay.is-open{opacity:1;visibility:visible}
.overlay-head{height:82px;padding:0 22px;display:flex;align-items:center;justify-content:space-between;border-bottom:1px solid var(--line)}
.overlay-head img{width:95px}
.mobile-links{height:calc(100% - 82px);padding:30px 22px 22px;display:flex;flex-direction:column}
.mobile-links a{font-size:34px;font-weight:600;letter-spacing:-.04em;padding:16px 0;border-bottom:1px solid var(--line)}
.mobile-meta{margin-top:auto;color:#888;font-size:11px;text-transform:uppercase;letter-spacing:.08em;display:flex;justify-content:space-between;gap:16px}
.search-overlay{display:grid;place-items:center;padding:22px}
.search-box{width:min(920px,100%)}
.search-kicker{font-size:11px;text-transform:uppercase;letter-spacing:.12em;color:#888;margin-bottom:18px}
.search-row{display:flex;align-items:center;border-bottom:2px solid #111}
.search-row input{flex:1;min-width:0;border:0;outline:0;background:transparent;padding:14px 0;font-size:clamp(32px,6vw,70px);letter-spacing:-.04em}
.search-row button{border:0;background:transparent;padding:18px}
.search-results{margin-top:24px}
.search-result{display:flex;justify-content:space-between;gap:20px;padding:14px 0;border-bottom:1px solid var(--line);font-size:13px}

/* Homepage: only four supplied images */
.home-stage{max-width:var(--max);margin:0 auto;padding:32px 18px 70px}
.editorial-grid{display:grid;grid-template-columns:1fr 1fr;grid-auto-rows:minmax(320px,34vw);gap:3px;background:#fff}
.editorial-tile{position:relative;overflow:hidden;background:#eee;isolation:isolate}
.editorial-tile img{width:100%;height:100%;object-fit:cover;transition:transform 1s var(--ease),filter .6s var(--ease)}
.editorial-tile::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 55%,rgba(0,0,0,.48));opacity:0;transition:opacity .4s}
.editorial-tile:hover img{transform:scale(1.025)}
.editorial-tile:hover::after{opacity:1}
.tile-copy{position:absolute;z-index:2;left:18px;right:18px;bottom:18px;color:#fff;display:flex;align-items:flex-end;justify-content:space-between;gap:20px;opacity:0;transform:translateY(10px);transition:.35s var(--ease);text-shadow:0 1px 12px rgba(0,0,0,.3)}
.editorial-tile:hover .tile-copy{opacity:1;transform:none}
.tile-copy span{font-size:10px;text-transform:uppercase;letter-spacing:.08em}
.tile-copy strong{display:inline-block;margin-top:4px;font-size:18px;font-weight:500}
.tile-arrow{width:38px!important;height:38px;display:grid;place-items:center;border:1px solid rgba(255,255,255,.72);border-radius:50%}
.tile-arrow svg{width:16px;fill:none;stroke:#fff;stroke-width:1.5}
.catalog-cta{margin-top:3px;height:68px;background:#242424;color:#fff;display:flex;align-items:center;justify-content:center;gap:12px;text-transform:uppercase;font-size:18px;letter-spacing:.025em;transition:background .25s}
.catalog-cta:hover{background:#111}
.catalog-cta svg{width:20px;fill:none;stroke:currentColor;stroke-width:1.5}

/* generic page */
.page-shell,.product-page{max-width:var(--max);margin:0 auto;padding:56px 18px 110px}
.page-hero{padding:0 0 58px;border-bottom:1px solid var(--line)}
.eyebrow,.breadcrumb{font-size:12px;color:#929292}
.breadcrumb{display:flex;gap:10px;align-items:center;margin-bottom:22px;text-transform:none;letter-spacing:0}
.page-hero h1{font-size:clamp(44px,5.3vw,78px);line-height:1.02;letter-spacing:-.055em;margin:16px 0 20px;font-weight:500}
.page-hero p{max-width:600px;color:#777;font-size:14px;line-height:1.75;margin:0}

/* Catalog */
.shop-page{padding-top:55px}
.catalog-heading{padding-bottom:58px}
.catalog-heading h1{margin:0;font-size:46px;font-weight:400;letter-spacing:-.045em}
.catalog-toolbar{min-height:124px;display:flex;align-items:flex-end;justify-content:space-between;padding-bottom:28px;border-bottom:0}
.catalog-toolbar p{margin:0 0 2px;color:#7a7a7a;font-size:17px}
.filter-trigger{width:144px;height:54px;border:1px solid var(--line-strong);background:#fff;border-radius:7px;display:flex;align-items:center;justify-content:center;gap:12px;color:#777;font-size:17px;transition:.2s}
.filter-trigger:hover,.filter-trigger[aria-expanded="true"]{border-color:#111;color:#111}
.filter-trigger svg{width:20px;height:20px;fill:none;stroke:currentColor;stroke-width:1.5;stroke-linecap:round}
.filter-panel{display:grid;grid-template-columns:1fr auto;gap:28px;align-items:end;max-height:0;opacity:0;overflow:hidden;border-top:1px solid transparent;border-bottom:1px solid transparent;transition:max-height .45s var(--ease),opacity .25s,padding .35s,border-color .3s;padding:0}
.filter-panel.open{max-height:180px;opacity:1;padding:22px 0;border-color:var(--line)}
.filter-label,.sort-wrap{font-size:11px;text-transform:uppercase;letter-spacing:.09em;color:#888}
.filters{display:flex;flex-wrap:wrap;gap:8px;margin-top:10px}
.filter-btn{height:34px;padding:0 15px;border:1px solid #dedede;background:#fff;border-radius:99px;font-size:11px;text-transform:uppercase;letter-spacing:.035em;color:#666;transition:.2s}
.filter-btn:hover,.filter-btn.active{background:#111;color:#fff;border-color:#111}
.sort-wrap{display:grid;gap:10px;min-width:190px}
.sort{height:40px;border:1px solid #dedede;background:#fff;padding:0 12px;outline:0}
.product-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:38px;margin-top:0}
.catalog-grid{padding-top:6px}
.product-card{min-width:0;border:1px solid #e4e4e4;background:#fff;position:relative;overflow:hidden;transition:box-shadow .35s var(--ease),transform .35s var(--ease),border-color .25s}
.product-card:hover{box-shadow:var(--shadow);border-color:#d7d7d7;transform:translateY(-3px)}
.product-visual{display:block;position:relative;aspect-ratio:1 / 1.04;background:#fff;overflow:hidden;padding:16px}
.product-visual img{width:100%;height:100%;object-fit:contain;transition:transform .55s var(--ease)}
.product-card:hover .product-visual img{transform:scale(1.025)}
.product-badge{position:absolute;left:12px;top:12px;background:#fff;border:1px solid #e5e5e5;padding:6px 8px;font-size:9px;text-transform:uppercase;letter-spacing:.06em;color:#777;opacity:.95}
.product-info{text-align:center;padding:0 18px 20px;min-height:117px;display:flex;flex-direction:column;align-items:center}
.product-line{display:block;width:100%}
.product-name{font-size:14px;line-height:1.35;text-transform:uppercase;font-weight:400;display:block;min-height:38px}
.product-price{display:block;margin-top:9px;color:#8b8b8b;font-size:12px}
.product-sub{display:none}
.quick-add{position:static;transform:none;width:auto;min-width:112px;height:43px;padding:0 17px;margin:0 auto 20px;border:0;border-radius:3px;background:#050505;color:#fff;font-size:11px;transition:background .2s,transform .2s}
.quick-add:hover{background:#222;transform:translateY(-1px)}
@keyframes productIn{from{opacity:0;transform:translateY(12px)}to{opacity:1;transform:none}}
.product-card{animation:productIn .55s var(--ease) both}

/* Product detail — reference-inspired composition */
.product-page{padding-top:46px}
.product-detail-top{display:grid;grid-template-columns:minmax(0,1.04fr) minmax(390px,.96fr);gap:70px;align-items:start}
.product-visual-column{min-width:0}
.main-product-image{height:570px;background:#fff;display:grid;place-items:center;overflow:hidden}
.main-product-image img{width:100%;height:100%;object-fit:contain;transition:opacity .2s}
.product-thumbs{display:flex;justify-content:center;gap:10px;margin-top:18px}
.product-thumb-btn{width:70px;height:70px;background:#fff;border:1px solid #e5e5e5;padding:4px;border-radius:3px}
.product-thumb-btn.active{border-color:#111}
.product-thumb-btn img{width:100%;height:100%;object-fit:cover}
.product-summary{position:static;padding-top:2px}
.product-summary-head{display:flex;justify-content:space-between;gap:20px;align-items:start}
.product-summary .breadcrumb{margin-bottom:12px}
.share-btn{border:0;background:transparent;color:#888;display:flex;align-items:center;gap:7px;font-size:11px;padding:4px 0}
.share-btn svg{width:15px;height:15px;fill:none;stroke:currentColor;stroke-width:1.5}
.product-summary h1{font-size:27px;line-height:1.2;letter-spacing:-.025em;margin:0 0 9px;text-transform:uppercase;font-weight:500}
.product-meta{display:flex;gap:14px;align-items:center;color:#999;font-size:10px;margin-bottom:18px}
.product-meta span{display:flex;gap:5px;align-items:center}
.product-meta svg{width:13px;height:13px;fill:none;stroke:currentColor;stroke-width:1.45}
.product-price-lg{font-size:18px;margin-bottom:18px}
.detail-option{display:grid;grid-template-columns:58px 1fr;align-items:center;gap:14px;margin:16px 0 22px}
.detail-option label{font-size:11px;color:#888}
.detail-option select{height:42px;border:1px solid #e4e4e4;background:#fff;color:#999;padding:0 12px;outline:0}
.purchase-row{display:flex;gap:10px;align-items:center;margin-bottom:27px}
.detail-qty{display:flex;height:43px}
.detail-qty button,.detail-qty span{width:38px;border:1px solid #e3e3e3;background:#fff;display:grid;place-items:center;font-size:11px}
.detail-qty button+span,.detail-qty span+button{border-left:0}
.add-cart{height:43px;min-width:150px;padding:0 18px;border:0;background:#8c8c8c;color:#fff;border-radius:3px;font-size:11px;transition:background .2s}
.add-cart:hover{background:#111}
.buy-now{height:43px;padding:0 18px;border:1px solid #111;background:#fff;font-size:11px;border-radius:3px;margin:0}
.buy-now:hover{background:#111;color:#fff}
.shop-reasons{padding-top:1px}
.shop-reasons h3{font-size:13px;font-weight:500;margin:0 0 14px}
.shop-reasons p{margin:8px 0;font-size:10px;color:#888;display:flex;align-items:center;gap:8px}
.shop-reasons svg{width:12px;height:12px;fill:none;stroke:#9a9a9a;stroke-width:1.6}
.product-tabs{margin-top:78px;border-top:1px solid var(--line);padding-top:0}
.tab-nav{height:54px;display:flex;justify-content:center;gap:26px;border-bottom:1px solid var(--line)}
.tab-btn{border:0;background:transparent;position:relative;font-size:12px;color:#999;padding:0 2px}
.tab-btn.active{color:#111}
.tab-btn.active::before{content:"";position:absolute;left:0;right:0;top:-1px;height:3px;background:#111}
.tab-content{max-width:930px;margin:0 auto;padding:42px 0 25px;font-size:11px;line-height:2;color:#777}
.product-specs{display:grid;grid-template-columns:130px 1fr;max-width:760px;margin-bottom:24px}
.product-specs div{padding:8px 0;border-bottom:1px solid #f0f0f0}
.product-specs div:nth-child(odd){color:#999}
.related{margin-top:70px}
.related-title{text-align:center;font-size:27px;font-weight:400;letter-spacing:-.03em;margin:0 0 34px}
.related .product-grid{gap:30px}
.related .product-card{box-shadow:none}

/* content pages */
.statement{padding:72px 0;display:grid;grid-template-columns:1fr 1fr;gap:70px;border-bottom:1px solid var(--line)}
.statement h2{font-size:clamp(38px,4vw,62px);letter-spacing:-.05em;line-height:1.02;margin:0;font-weight:500}
.statement-copy{font-size:15px;line-height:1.8;color:#666;max-width:580px}
.stat-row{display:grid;grid-template-columns:repeat(3,1fr);border-bottom:1px solid var(--line)}
.stat{padding:38px 0;border-right:1px solid var(--line)}
.stat:last-child{border-right:0;padding-left:30px}
.stat:not(:first-child){padding-left:30px}
.stat strong{font-size:40px;display:block;font-weight:500}
.stat span{font-size:10px;text-transform:uppercase;letter-spacing:.09em;color:#888}
.journal-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:28px;margin-top:48px}
.journal-card{border:1px solid var(--line);background:#fff}
.journal-image{aspect-ratio:1.45;overflow:hidden}
.journal-image img{width:100%;height:100%;object-fit:cover;transition:transform .65s var(--ease)}
.journal-card:hover img{transform:scale(1.025)}
.journal-copy{padding:22px}
.journal-copy small{font-size:10px;color:#999;text-transform:uppercase;letter-spacing:.08em}
.journal-copy h2{font-size:25px;font-weight:500;letter-spacing:-.035em;margin:10px 0}
.journal-copy p{font-size:12px;color:#777;line-height:1.7}

/* forms / cart / checkout */
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.field{display:grid;gap:8px}.field.full{grid-column:1/-1}
.field label{font-size:10px;text-transform:uppercase;letter-spacing:.08em;color:#777}
.field input,.field textarea,.field select{width:100%;border:1px solid #ddd;background:#fff;padding:14px;outline:0}
.field input:focus,.field textarea:focus,.field select:focus{border-color:#111}
.field textarea{min-height:150px;resize:vertical}
.primary-btn{display:inline-flex;align-items:center;justify-content:center;min-height:48px;border:1px solid #111;background:#111;color:#fff;padding:0 22px;font-size:11px;text-transform:uppercase;letter-spacing:.07em}
.primary-btn:hover{background:#333}
.contact-layout{display:grid;grid-template-columns:.75fr 1.25fr;gap:70px;padding-top:56px}
.contact-aside h2{font-size:38px;font-weight:500;margin:0 0 20px}
.contact-aside p{font-size:13px;color:#777;line-height:1.75}
.contact-meta{margin-top:34px;display:grid;gap:13px;font-size:10px;text-transform:uppercase;letter-spacing:.06em;color:#777}
.cart-layout{display:grid;grid-template-columns:1.4fr .6fr;gap:55px;padding-top:42px}
.cart-items{border-top:1px solid var(--line)}
.cart-item{display:grid;grid-template-columns:120px 1fr auto;gap:20px;padding:20px 0;border-bottom:1px solid var(--line);align-items:center}
.cart-thumb{width:120px;height:120px;object-fit:contain;background:#fff}
.cart-item h3{margin:0 0 8px;font-size:15px;text-transform:uppercase;font-weight:500}
.cart-item p{margin:0;color:#888;font-size:11px}.qty{display:flex;align-items:center;margin-top:12px}
.qty button{width:30px;height:30px;border:1px solid #ddd;background:#fff}.qty span{width:36px;text-align:center;font-size:12px}
.cart-price{text-align:right;font-size:13px}.remove-link{display:block;border:0;background:transparent;color:#888;font-size:9px;text-transform:uppercase;text-decoration:underline;margin:12px 0 0 auto;padding:0}
.summary-card{position:sticky;top:205px;border:1px solid var(--line);padding:24px}
.summary-card h2{font-size:22px;font-weight:500;margin:0 0 20px}.summary-line{display:flex;justify-content:space-between;font-size:11px;padding:10px 0;border-bottom:1px solid var(--line)}
.summary-total{display:flex;justify-content:space-between;font-size:17px;padding:18px 0;font-weight:600}.empty-cart{text-align:center;padding:80px 20px;border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.empty-cart h2{font-size:34px;font-weight:500;margin:0 0 15px}.checkout-layout{display:grid;grid-template-columns:1.2fr .8fr;gap:55px;padding-top:48px}
.notice{padding:13px 15px;background:#fafafa;border:1px solid #e5e5e5;font-size:11px;line-height:1.55;margin-bottom:20px}

/* footer */
.site-footer{margin-top:0;background:#fff;border-top:1px solid var(--line)}
.footer-spacer{height:115px;background:#f3f3f3}
.footer-main{max-width:var(--max);margin:0 auto;padding:38px 18px 30px;display:grid;grid-template-columns:1.4fr .6fr .6fr;gap:60px}
.footer-wordmark{width:230px;margin-bottom:18px}
.footer-brand p{max-width:420px;font-size:11px;color:#888;line-height:1.7;margin:0}
.footer-links h4{font-size:10px;text-transform:uppercase;letter-spacing:.1em;margin:0 0 16px}
.footer-links a{display:block;color:#777;font-size:11px;margin:10px 0}
.footer-bottom{height:62px;background:#e8e8e8;display:flex;align-items:center;justify-content:space-between;padding:0 max(18px,calc((100vw - var(--max))/2 + 18px));font-size:10px;color:#777}
.toast{position:fixed;right:22px;bottom:22px;z-index:1000;background:#111;color:#fff;padding:14px 18px;font-size:11px;transform:translateY(20px);opacity:0;pointer-events:none;transition:.3s var(--ease)}
.toast.show{transform:none;opacity:1}
.reveal{opacity:0;transform:translateY(13px);transition:opacity .6s var(--ease),transform .6s var(--ease)}
.reveal.is-visible{opacity:1;transform:none}

@media (max-width:1050px){
  .header-main{height:82px;padding:0 18px}.header-note{font-size:13px}.brand{width:58px;height:54px}.brand img{width:58px}.desktop-nav{height:62px;gap:35px}.desktop-nav a{height:62px;font-size:15px}
  .product-grid{grid-template-columns:repeat(3,minmax(0,1fr));gap:24px}
  .product-detail-top{grid-template-columns:1fr 1fr;gap:38px}.main-product-image{height:490px}
  .footer-main{grid-template-columns:1fr 1fr 1fr}
}
@media (max-width:760px){
  .site-header{position:sticky}.header-main{height:70px;grid-template-columns:1fr auto auto}.header-note{font-size:11px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:170px}.brand{justify-self:center;width:54px;height:48px}.brand img{width:52px}.header-actions .user-btn{display:none}.mobile-menu-btn{display:grid}.desktop-nav{display:none}
  .home-stage{padding:14px 12px 45px}.editorial-grid{grid-template-columns:1fr;grid-auto-rows:115vw;gap:2px}.tile-copy{opacity:1;transform:none}.editorial-tile::after{opacity:.45}.catalog-cta{height:58px;font-size:14px}
  .page-shell,.product-page{padding:38px 16px 75px}.catalog-heading{padding-bottom:35px}.catalog-heading h1{font-size:39px}.catalog-toolbar{min-height:90px;align-items:center;padding-bottom:15px}.catalog-toolbar p{font-size:13px}.filter-trigger{width:112px;height:44px;font-size:13px}
  .filter-panel{grid-template-columns:1fr}.filter-panel.open{max-height:280px}.sort-wrap{min-width:0}
  .product-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}.product-info{padding:0 10px 14px;min-height:104px}.product-name{font-size:11px;min-height:31px}.product-price{font-size:10px}.quick-add{min-width:92px;height:37px;font-size:9px;margin-bottom:14px}.product-badge{font-size:8px;padding:5px 6px}
  .product-detail-top{grid-template-columns:1fr;gap:38px}.main-product-image{height:auto;aspect-ratio:1/1.05}.product-summary h1{font-size:24px}.product-tabs{margin-top:50px}.tab-content{padding:28px 0}.related{margin-top:50px}.related-title{font-size:24px}.related .product-grid{gap:12px}
  .statement,.contact-layout,.cart-layout,.checkout-layout{grid-template-columns:1fr;gap:34px}.journal-grid{grid-template-columns:1fr}.stat-row{grid-template-columns:1fr}.stat{border-right:0;border-bottom:1px solid var(--line);padding-left:0!important}
  .summary-card{position:static}.footer-spacer{height:72px}.footer-main{grid-template-columns:1fr 1fr;gap:32px}.footer-brand{grid-column:1/-1}.footer-bottom{height:auto;min-height:62px;padding-top:15px;padding-bottom:15px;gap:10px;flex-direction:column;align-items:flex-start}
}
@media (max-width:430px){
  .header-note{max-width:125px;font-size:10px}.header-actions{gap:0}.icon-btn{width:35px;height:35px}.icon-btn svg{width:18px;height:18px}.cart-count{min-width:19px;height:19px;font-size:9px}
  .catalog-toolbar{gap:10px}.catalog-toolbar p{max-width:155px;line-height:1.4}.filter-trigger{width:100px}
  .product-grid{gap:8px}.product-visual{padding:8px}.product-info{padding-left:7px;padding-right:7px}.product-name{font-size:10px}.quick-add{width:calc(100% - 14px);min-width:0;margin-left:7px;margin-right:7px}
  .purchase-row{flex-wrap:wrap}.add-cart{flex:1}.buy-now{width:100%}.product-specs{grid-template-columns:95px 1fr}
  .form-grid{grid-template-columns:1fr}.field.full{grid-column:auto}.cart-item{grid-template-columns:82px 1fr}.cart-thumb{width:82px;height:82px}.cart-price{grid-column:2;text-align:left}.remove-link{margin-left:0}
  .footer-main{grid-template-columns:1fr}.footer-brand{grid-column:auto}
}
@media (prefers-reduced-motion:reduce){*{scroll-behavior:auto!important;animation:none!important;transition:none!important}.reveal{opacity:1;transform:none}}

/* =========================================================
   V4 — TYPOGRAPHY HARMONIZATION
   Readable, consistent scale across header, catalog, detail,
   forms and footer. Keeps the clean JFA-inspired composition.
   ========================================================= */
body{font-size:16px;line-height:1.5}

/* Utility / micro copy: never too tiny on desktop */
.eyebrow,.breadcrumb{font-size:13px;line-height:1.5}
.search-kicker,.filter-label,.sort-wrap{font-size:12px}
.search-result{font-size:14px}

/* Header */
.header-note{font-size:17px}
.desktop-nav a{font-size:18px}
.cart-count{font-size:11px}

/* Home */
.tile-copy span{font-size:12px}
.tile-copy strong{font-size:19px;line-height:1.3}
.catalog-cta{font-size:18px}

/* Generic pages */
.page-hero p{font-size:16px;line-height:1.7}

/* Catalog */
.catalog-toolbar p{font-size:18px}
.filter-trigger{font-size:17px}
.filter-btn{font-size:12px}
.product-name{font-size:15px;line-height:1.4;min-height:42px}
.product-price{font-size:13px}
.product-badge{font-size:10px}
.quick-add{font-size:12px;min-height:43px}

/* Product detail */
.share-btn{font-size:12px}
.product-meta{font-size:12px}
.product-price-lg{font-size:20px}
.detail-option label{font-size:13px}
.detail-option select{font-size:13px}
.detail-qty button,.detail-qty span{font-size:13px}
.add-cart,.buy-now{font-size:12px}
.shop-reasons h3{font-size:15px}
.shop-reasons p{font-size:12px;line-height:1.6}
.tab-btn{font-size:13px}
.tab-content{font-size:13px;line-height:1.85}
.related-title{font-size:29px}

/* Editorial / content */
.statement-copy{font-size:16px}
.stat span{font-size:12px}
.journal-copy small{font-size:12px}
.journal-copy p{font-size:14px;line-height:1.7}

/* Forms, cart and checkout */
.field label{font-size:12px}
.field input,.field textarea,.field select{font-size:14px}
.primary-btn{font-size:12px}
.contact-aside p{font-size:15px}
.contact-meta{font-size:12px;line-height:1.6}
.cart-item h3{font-size:16px}
.cart-item p{font-size:13px}
.qty span{font-size:13px}
.cart-price{font-size:14px}
.remove-link{font-size:11px}
.summary-line{font-size:13px;line-height:1.5}
.summary-total{font-size:18px}
.notice{font-size:13px}
.toast{font-size:13px}

/* Footer — stronger and visually balanced */
.footer-main{padding-top:48px;padding-bottom:42px;grid-template-columns:1.35fr .65fr .65fr;gap:72px}
.footer-wordmark{width:245px;margin-bottom:22px}
.footer-brand p{max-width:470px;font-size:14px;line-height:1.75;color:#6f6f6f}
.footer-links h4{font-size:12px;letter-spacing:.09em;margin-bottom:19px;color:#222}
.footer-links a{font-size:15px;line-height:1.45;margin:12px 0;color:#626262;transition:color .2s,transform .2s var(--ease)}
.footer-links a:hover{color:#111;transform:translateX(3px)}
.footer-bottom{font-size:12px;min-height:66px;height:auto;padding-top:18px;padding-bottom:18px}

@media (max-width:1050px){
  .header-note{font-size:15px}
  .desktop-nav a{font-size:16px}
  .footer-main{gap:42px}
  .footer-brand p{font-size:13px}
  .footer-links a{font-size:14px}
}

@media (max-width:760px){
  body{font-size:15px}
  .header-note{font-size:12px}
  .mobile-links a{font-size:32px}
  .mobile-meta{font-size:12px;line-height:1.5}
  .catalog-toolbar p{font-size:14px}
  .filter-trigger{font-size:14px}
  .product-name{font-size:12px;min-height:34px}
  .product-price{font-size:12px}
  .quick-add{font-size:10px}
  .product-summary h1{font-size:25px}
  .product-meta{font-size:11px}
  .shop-reasons p{font-size:12px}
  .tab-content{font-size:13px}
  .journal-copy p{font-size:13px}
  .footer-main{grid-template-columns:1fr 1fr;gap:34px 28px;padding-top:38px;padding-bottom:34px}
  .footer-brand{grid-column:1/-1}
  .footer-wordmark{width:220px}
  .footer-brand p{font-size:14px;max-width:560px}
  .footer-links h4{font-size:12px;margin-bottom:15px}
  .footer-links a{font-size:15px;margin:11px 0}
  .footer-bottom{font-size:12px;line-height:1.55}
}

@media (max-width:430px){
  .header-note{font-size:11px}
  .product-name{font-size:11.5px}
  .product-price{font-size:11.5px}
  .footer-main{grid-template-columns:1fr;gap:28px;padding-left:20px;padding-right:20px}
  .footer-brand{grid-column:auto}
  .footer-wordmark{width:210px}
  .footer-links h4{font-size:12px}
  .footer-links a{font-size:16px;margin:12px 0}
  .footer-bottom{font-size:11.5px;padding-left:20px;padding-right:20px}
}

/* =========================================================
   V5 CATALOG REBUILD
   Large, quiet product cards inspired by supplied JFA layout.
   ========================================================= */
.shop-page{
  max-width:1540px;
  padding:58px 30px 120px;
}
.catalog-heading{
  padding:0 0 68px;
}
.catalog-heading .breadcrumb{
  margin:0 0 22px;
  font-size:14px;
  color:#8f8f8f;
}
.catalog-heading h1{
  margin:0;
  font-size:48px;
  line-height:1;
  font-weight:400;
  letter-spacing:-.045em;
}
.catalog-toolbar{
  min-height:104px;
  padding:0 0 28px;
  align-items:flex-end;
}
.catalog-toolbar p{
  margin:0;
  color:#858585;
  font-size:17px;
  line-height:1.4;
}
.filter-trigger{
  width:144px;
  height:54px;
  border:1px solid #dfdfdf;
  border-radius:6px;
  color:#777;
  font-size:16px;
  background:#fff;
}
.filter-trigger:hover,
.filter-trigger[aria-expanded="true"]{
  color:#111;
  border-color:#bbb;
  background:#fafafa;
}
.filter-panel.open{
  max-height:190px;
  padding:24px 0 30px;
  margin-bottom:6px;
}
.catalog-grid{
  padding-top:4px;
}
.product-grid{
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:24px;
}
.product-card{
  border:1px solid #e4e4e4;
  background:#fff;
  box-shadow:none;
  transform:none;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  min-height:545px;
  animation:productIn .5s var(--ease) both;
}
.product-card:hover{
  border-color:#d2d2d2;
  box-shadow:0 18px 45px rgba(0,0,0,.055);
  transform:translateY(-2px);
}
.product-visual{
  aspect-ratio:1/1;
  padding:22px 22px 8px;
  background:#fff;
  overflow:hidden;
}
.product-visual img{
  width:100%;
  height:100%;
  object-fit:contain;
  transform:scale(.96);
  transition:transform .6s var(--ease);
}
.product-card:hover .product-visual img{
  transform:scale(1.01);
}
.product-badge{display:none!important}
.product-info{
  min-height:106px;
  padding:12px 20px 14px;
  text-align:center;
  align-items:center;
  justify-content:flex-start;
}
.product-name{
  display:block;
  min-height:45px;
  font-size:16px;
  line-height:1.38;
  font-weight:400;
  letter-spacing:-.015em;
  text-transform:uppercase;
}
.product-price{
  display:block;
  margin-top:10px;
  color:#939393;
  font-size:14px;
  line-height:1.3;
}
.product-sub{display:none}
.quick-add{
  display:flex;
  align-items:center;
  justify-content:center;
  min-width:0;
  width:max-content;
  max-width:calc(100% - 40px);
  height:43px;
  margin:auto auto 28px;
  padding:0 20px;
  border:1px solid #060606;
  border-radius:4px;
  background:#060606;
  color:#fff;
  font-size:13px;
  line-height:1;
  white-space:nowrap;
  text-decoration:none;
}
.quick-add:hover{background:#222;transform:none}
.quick-add.soldout{
  cursor:not-allowed;
  opacity:1;
  color:#fff;
  background:#060606;
}
.option-link{appearance:none}

@media (max-width:1100px){
  .shop-page{padding-left:22px;padding-right:22px}
  .product-grid{grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
  .product-card{min-height:500px}
}
@media (max-width:760px){
  .shop-page{padding:38px 14px 78px}
  .catalog-heading{padding-bottom:38px}
  .catalog-heading .breadcrumb{font-size:13px;margin-bottom:16px}
  .catalog-heading h1{font-size:38px}
  .catalog-toolbar{min-height:78px;padding-bottom:18px;gap:12px}
  .catalog-toolbar p{font-size:14px}
  .filter-trigger{width:106px;height:43px;font-size:14px;gap:8px}
  .filter-trigger svg{width:17px;height:17px}
  .filter-panel.open{padding:18px 0 22px}
  .product-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}
  .product-card{min-height:0}
  .product-visual{padding:10px 10px 0;aspect-ratio:1/1.08}
  .product-visual img{transform:scale(.99)}
  .product-info{min-height:92px;padding:8px 8px 10px}
  .product-name{min-height:42px;font-size:12px;line-height:1.35}
  .product-price{font-size:12px;margin-top:6px}
  .quick-add{width:calc(100% - 16px);max-width:none;height:39px;margin:0 8px 12px;padding:0 8px;font-size:11px}
}
@media (max-width:390px){
  .shop-page{padding-left:10px;padding-right:10px}
  .product-grid{gap:7px}
  .product-name{font-size:11px}
  .product-price{font-size:11px}
  .quick-add{font-size:10px}
}

/* =========================================================
   V6 — PRODUCT EXPERIENCE REBUILD
   Bigger product photography, richer information and a more
   deliberate streetwear catalog / product-detail experience.
   ========================================================= */
body.lightbox-open{overflow:hidden}
.shop-page{max-width:1600px;padding-top:54px}
.catalog-heading{padding-bottom:54px}
.catalog-toolbar{min-height:94px;padding-bottom:24px}
.catalog-grid{padding-top:0}
.product-grid{gap:18px}
.product-card{
  min-height:0;
  border-color:#e3e3e3;
  transition:border-color .25s,box-shadow .35s var(--ease),transform .35s var(--ease);
}
.product-card:hover{box-shadow:0 22px 52px rgba(0,0,0,.065);transform:translateY(-3px)}
.product-visual{
  position:relative;
  aspect-ratio:1/1.12;
  padding:10px;
  background:#fff;
}
.product-visual img{
  transform:scale(1.04);
  object-fit:contain;
  transition:transform .65s var(--ease),filter .45s var(--ease);
}
.product-card:hover .product-visual img{transform:scale(1.095)}
.product-view{
  position:absolute;
  right:16px;
  bottom:16px;
  display:flex;
  align-items:center;
  gap:7px;
  min-height:38px;
  padding:0 12px;
  background:rgba(255,255,255,.94);
  border:1px solid #e1e1e1;
  border-radius:999px;
  color:#222;
  font-size:11px;
  opacity:0;
  transform:translateY(8px);
  transition:.28s var(--ease);
  backdrop-filter:blur(8px);
}
.product-view svg{width:15px;height:15px;fill:none;stroke:currentColor;stroke-width:1.5;stroke-linecap:round}
.product-card:hover .product-view{opacity:1;transform:none}
.product-info{
  min-height:0;
  padding:18px 20px 17px;
  text-align:left;
  align-items:stretch;
  border-top:1px solid #efefef;
}
.product-kicker{
  margin-bottom:8px;
  color:#888;
  font-size:11px;
  line-height:1.3;
  text-transform:uppercase;
  letter-spacing:.075em;
}
.product-name{
  min-height:0;
  font-size:17px;
  line-height:1.28;
  letter-spacing:-.025em;
  text-transform:uppercase;
}
.product-card-meta{display:flex;align-items:center;justify-content:space-between;gap:18px;margin-top:14px}
.product-price{margin:0;color:#222;font-size:15px;font-weight:500}
.product-sizes{font-size:11px;color:#8a8a8a;white-space:nowrap}
.product-material{margin-top:8px;color:#999;font-size:11px;line-height:1.45}
.quick-add{
  width:calc(100% - 40px);
  max-width:none;
  height:46px;
  margin:0 20px 20px;
  border-radius:2px;
  font-size:12px;
  letter-spacing:.02em;
}
.quick-add.soldout{background:#111;color:#fff;opacity:.42}

/* Product detail */
.product-page{max-width:1600px;padding:54px 30px 120px}
.product-detail-top{
  grid-template-columns:minmax(0,1.22fr) minmax(430px,.78fr);
  gap:82px;
  align-items:start;
}
.product-visual-column{position:sticky;top:200px;align-self:start}
.main-product-image{
  position:relative;
  height:min(730px,72vh);
  min-height:620px;
  border:1px solid #ececec;
  background:#fff;
  cursor:zoom-in;
}
.main-product-image img{width:100%;height:100%;object-fit:contain;padding:8px;transition:transform .6s var(--ease)}
.main-product-image:hover img{transform:scale(1.025)}
.zoom-hint{
  position:absolute;
  right:18px;
  bottom:18px;
  display:flex;
  align-items:center;
  gap:8px;
  height:42px;
  padding:0 15px;
  border:1px solid #e2e2e2;
  border-radius:999px;
  background:rgba(255,255,255,.95);
  color:#333;
  font-size:12px;
  backdrop-filter:blur(8px);
}
.zoom-hint svg{width:17px;height:17px;fill:none;stroke:currentColor;stroke-width:1.5}
.product-thumbs{justify-content:flex-start;gap:12px;margin-top:14px}
.product-thumb-btn{width:94px;height:94px;padding:3px;border-radius:0;background:#fff;overflow:hidden}
.product-thumb-btn img{object-fit:cover}
.product-thumb-btn.active{border-color:#111;box-shadow:inset 0 0 0 1px #111}
.product-summary{padding-top:4px}
.product-summary-head{margin-bottom:26px}
.product-summary .breadcrumb{margin:0;font-size:13px}
.product-collection{font-size:11px;letter-spacing:.11em;color:#999;margin-bottom:12px}
.product-summary h1{font-size:clamp(35px,3.3vw,52px);line-height:1.03;letter-spacing:-.05em;margin:0 0 12px;font-weight:500;text-transform:uppercase}
.product-summary-sub{font-size:14px;color:#777;margin-bottom:22px}
.product-price-lg{font-size:27px;font-weight:500;margin-bottom:14px}
.stock-row{display:flex;align-items:center;gap:8px;padding-bottom:22px;border-bottom:1px solid #e8e8e8;font-size:12px;color:#898989}
.stock-row strong{font-size:12px;color:#333;font-weight:500;margin-right:7px}
.stock-dot{width:7px;height:7px;border-radius:50%;background:#aaa}
.stock-dot.in-stock{background:#208a4f}.stock-dot.out-stock{background:#a4a4a4}
.product-short-desc{margin:24px 0 26px;max-width:610px;font-size:15px;line-height:1.75;color:#626262}
.detail-spec-strip{display:grid;grid-template-columns:repeat(3,1fr);border-top:1px solid #ececec;border-bottom:1px solid #ececec;margin-bottom:27px}
.detail-spec-strip>div{padding:15px 13px 15px 0;border-right:1px solid #ececec}
.detail-spec-strip>div+div{padding-left:14px}.detail-spec-strip>div:last-child{border-right:0}
.detail-spec-strip span{display:block;margin-bottom:6px;color:#999;font-size:10px;text-transform:uppercase;letter-spacing:.08em}
.detail-spec-strip strong{display:block;font-size:12px;line-height:1.4;font-weight:500}
.size-block{margin:0 0 24px}
.size-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:12px;font-size:13px;font-weight:500}
.size-guide{border:0;background:transparent;padding:0;color:#777;text-decoration:underline;font-size:11px}
.size-options{display:flex;flex-wrap:wrap;gap:8px}
.size-chip{min-width:50px;height:44px;padding:0 14px;border:1px solid #dcdcdc;background:#fff;border-radius:2px;font-size:12px;transition:.2s}
.size-chip:hover,.size-chip.active{border-color:#111;background:#111;color:#fff}
.purchase-row{display:grid;grid-template-columns:auto minmax(180px,1fr) minmax(130px,.75fr);gap:8px;margin-bottom:30px}
.detail-qty{height:50px}.detail-qty button,.detail-qty span{width:44px;font-size:13px}
.add-cart,.buy-now{height:50px;border-radius:2px;font-size:12px}
.add-cart{background:#111;min-width:0}.add-cart:hover{background:#2b2b2b}
.add-cart:disabled,.buy-now:disabled{cursor:not-allowed;opacity:.35}
.shop-reasons{border-top:1px solid #ececec;padding-top:8px}
.reason-row{display:grid;grid-template-columns:18px 1fr;gap:11px;padding:13px 0;border-bottom:1px solid #f0f0f0}
.reason-row svg{width:16px;height:16px;fill:none;stroke:#555;stroke-width:1.5;margin-top:2px}
.reason-row strong{display:block;font-size:12px;font-weight:500;margin-bottom:3px}
.reason-row span{display:block;color:#888;font-size:11px;line-height:1.5}

.product-detail-sections{display:grid;grid-template-columns:1fr 1.12fr;gap:100px;margin-top:100px;padding:78px 0;border-top:1px solid #e7e7e7;border-bottom:1px solid #e7e7e7}
.detail-eyebrow{display:block;margin-bottom:16px;color:#999;font-size:10px;letter-spacing:.12em}
.detail-story h2,.detail-media-copy h2{margin:0 0 20px;font-size:clamp(32px,3vw,48px);line-height:1.03;letter-spacing:-.045em;font-weight:500}
.detail-story p,.detail-media-copy p{margin:0;color:#777;font-size:14px;line-height:1.8;max-width:600px}
.detail-table{border-top:1px solid #e6e6e6}
.detail-table>div{display:grid;grid-template-columns:135px 1fr;gap:20px;padding:15px 0;border-bottom:1px solid #e6e6e6}
.detail-table span{color:#999;font-size:11px;text-transform:uppercase;letter-spacing:.06em}
.detail-table strong{font-size:13px;line-height:1.5;font-weight:500}
.product-detail-media{display:grid;grid-template-columns:1.12fr .88fr;min-height:580px;margin-top:72px;background:#f5f5f3}
.detail-media-image{min-height:580px;background:#fff;overflow:hidden}
.detail-media-image img{width:100%;height:100%;object-fit:cover}
.detail-media-copy{padding:64px;display:flex;flex-direction:column;justify-content:center}
.related{margin-top:105px}
.related-head{text-align:center;margin-bottom:36px}.related-head>span{font-size:10px;letter-spacing:.12em;color:#999}
.related-title{margin:8px 0 0;font-size:38px;letter-spacing:-.04em}
.related .product-grid{gap:18px}

.product-lightbox{position:fixed;inset:0;z-index:1200;display:grid;place-items:center;background:rgba(248,248,246,.98);opacity:0;visibility:hidden;transition:.28s var(--ease);overflow:auto;padding:60px}
.product-lightbox.open{opacity:1;visibility:visible}
.product-lightbox img{max-width:min(1200px,88vw);max-height:82vh;object-fit:contain;cursor:zoom-in;transition:max-width .3s,max-height .3s}
.product-lightbox img.zoomed{max-width:none;max-height:none;width:auto;height:auto;cursor:zoom-out}
.lightbox-close{position:fixed;top:24px;right:24px;width:48px;height:48px;border:1px solid #ddd;border-radius:50%;background:#fff;display:grid;place-items:center;z-index:2}
.lightbox-close svg{width:21px;height:21px;fill:none;stroke:#111;stroke-width:1.5}
.lightbox-caption{position:fixed;left:30px;bottom:24px;font-size:12px;color:#444}.lightbox-caption span{color:#999}

@media (max-width:1180px){
  .product-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
  .product-detail-top{grid-template-columns:1fr 1fr;gap:44px}
  .main-product-image{min-height:560px;height:620px}
  .detail-spec-strip{grid-template-columns:1fr}.detail-spec-strip>div{border-right:0;border-bottom:1px solid #ececec;padding:11px 0}.detail-spec-strip>div+div{padding-left:0}.detail-spec-strip>div:last-child{border-bottom:0}
  .product-detail-sections{gap:55px}
}
@media (max-width:760px){
  .shop-page{padding-left:12px;padding-right:12px}
  .product-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:9px}
  .product-visual{aspect-ratio:1/1.14;padding:4px}
  .product-visual img{transform:scale(1.04)}
  .product-view{display:none}
  .product-info{padding:12px 10px 11px}
  .product-kicker{font-size:9px;margin-bottom:6px}
  .product-name{font-size:13px;line-height:1.28}
  .product-card-meta{display:block;margin-top:9px}.product-price{font-size:13px}.product-sizes{display:block;margin-top:4px;font-size:9px}
  .product-material{font-size:9px;margin-top:5px}
  .quick-add{width:calc(100% - 20px);height:40px;margin:0 10px 10px;font-size:10px;padding:0 6px}

  .product-page{padding:34px 14px 80px}
  .product-detail-top{grid-template-columns:1fr;gap:36px}
  .product-visual-column{position:static}
  .main-product-image{height:auto;min-height:0;aspect-ratio:1/1.06}
  .zoom-hint{right:10px;bottom:10px;height:38px;padding:0 12px;font-size:10px}
  .product-thumbs{gap:8px;margin-top:9px}.product-thumb-btn{width:76px;height:76px}
  .product-summary-head{margin-bottom:22px}.product-collection{font-size:9px}.product-summary h1{font-size:33px}.product-summary-sub{font-size:13px}.product-price-lg{font-size:23px}
  .product-short-desc{font-size:14px;margin-top:20px}
  .detail-spec-strip{grid-template-columns:1fr 1fr 1fr}.detail-spec-strip>div{border-right:1px solid #ececec;border-bottom:0;padding:11px 8px 11px 0}.detail-spec-strip>div+div{padding-left:9px}.detail-spec-strip>div:last-child{border-right:0}.detail-spec-strip strong{font-size:10px}
  .purchase-row{grid-template-columns:1fr 1.65fr}.detail-qty{grid-column:1}.add-cart{grid-column:2}.buy-now{grid-column:1/-1}
  .product-detail-sections{grid-template-columns:1fr;gap:38px;margin-top:64px;padding:52px 0}.detail-story h2,.detail-media-copy h2{font-size:34px}
  .detail-table>div{grid-template-columns:100px 1fr}
  .product-detail-media{grid-template-columns:1fr;min-height:0;margin-top:48px}.detail-media-image{min-height:0;aspect-ratio:1/1}.detail-media-copy{padding:36px 24px 42px}
  .related{margin-top:70px}.related-title{font-size:30px}.related .product-grid{gap:9px}
  .product-lightbox{padding:55px 12px}.product-lightbox img{max-width:96vw;max-height:80vh}.lightbox-caption{left:15px;bottom:14px;font-size:10px}.lightbox-close{top:12px;right:12px}
}
@media (max-width:390px){
  .product-name{font-size:12px}.product-price{font-size:12px}.product-material{display:none}
  .detail-spec-strip{grid-template-columns:1fr}.detail-spec-strip>div{border-right:0;border-bottom:1px solid #ececec;padding:10px 0}.detail-spec-strip>div+div{padding-left:0}.detail-spec-strip>div:last-child{border-bottom:0}
  .size-chip{min-width:44px;height:42px;padding:0 11px}
}

/* ============================================================
   V7 — PRODUCT DETAIL / EDITORIAL COMMERCE
   Large imagery, readable typography, deliberate product detail.
   ============================================================ */
body.pd-modal-open{overflow:hidden}
.product-page{max-width:1540px;margin:0 auto;padding:38px 28px 128px}
.pd-breadcrumb-row{display:flex;align-items:center;justify-content:space-between;gap:20px;padding:6px 0 28px;border-bottom:1px solid #e9e9e9}
.pd-breadcrumb-row .breadcrumb{margin:0;font-size:13px;color:#8b8b8b;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.pd-breadcrumb-row .breadcrumb a{color:#696969}.pd-breadcrumb-row .breadcrumb span{margin:0 8px}.pd-breadcrumb-row .breadcrumb span:last-child{margin-left:0}
.pd-share{display:inline-flex;align-items:center;gap:8px;border:0;background:transparent;padding:8px 0;font-size:13px;color:#666;flex:0 0 auto}.pd-share svg{width:17px;height:17px;fill:none;stroke:currentColor;stroke-width:1.5}
.pd-hero{display:grid;grid-template-columns:minmax(0,1.34fr) minmax(430px,.66fr);gap:72px;padding-top:34px;align-items:start}
.pd-gallery{min-width:0}.pd-main-wrap{background:#f7f7f5;border:1px solid #ececea}
.pd-main-image{position:relative;width:100%;aspect-ratio:1/1.03;border:0;background:#fff;overflow:hidden;display:block;cursor:zoom-in;padding:0}
.pd-main-image img{width:100%;height:100%;object-fit:contain;padding:8px;transform:scale(1.015);transition:opacity .2s ease,transform .7s var(--ease)}
.pd-main-image:hover img{transform:scale(1.045)}.pd-main-image img.is-switching{opacity:.25}
.pd-zoom{position:absolute;right:18px;bottom:18px;display:inline-flex;align-items:center;gap:8px;height:42px;padding:0 15px;background:rgba(255,255,255,.94);border:1px solid #dedede;border-radius:999px;font-size:12px;backdrop-filter:blur(8px)}
.pd-zoom svg{width:17px;height:17px;fill:none;stroke:currentColor;stroke-width:1.5}.pd-image-count{position:absolute;left:18px;bottom:18px;height:42px;display:flex;align-items:center;padding:0 14px;background:rgba(255,255,255,.94);border:1px solid #dedede;border-radius:999px;font-size:11px;letter-spacing:.08em}
.pd-thumbs{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px;margin-top:10px}
.pd-thumb{position:relative;aspect-ratio:1/1;border:1px solid #ececec;background:#fff;overflow:hidden;padding:0;cursor:pointer}.pd-thumb:after{content:"";position:absolute;inset:0;border:2px solid transparent;pointer-events:none;transition:.2s}.pd-thumb.active:after{border-color:#111}
.pd-thumb img{width:100%;height:100%;object-fit:cover;transition:transform .5s var(--ease)}.pd-thumb:hover img{transform:scale(1.035)}.pd-thumb span{position:absolute;left:10px;bottom:9px;display:grid;place-items:center;width:29px;height:23px;background:rgba(255,255,255,.9);font-size:9px;letter-spacing:.08em}
.pd-summary{min-width:0}.pd-summary-sticky{position:sticky;top:170px;padding-top:3px}.pd-overline{margin-bottom:16px;color:#888;font-size:11px;letter-spacing:.1em}.pd-summary h1{margin:0 0 13px;font-size:clamp(34px,3vw,50px);line-height:.99;letter-spacing:-.05em;font-weight:500;text-transform:uppercase}
.pd-subline{display:flex;justify-content:space-between;gap:16px;align-items:center;color:#777;font-size:13px;margin-bottom:25px}.pd-stock{display:inline-flex;align-items:center;gap:7px;color:#333;white-space:nowrap}.pd-stock:before{content:"";width:7px;height:7px;border-radius:50%;background:#a9a9a9}.pd-stock.is-in:before{background:#229457}.pd-stock.is-out{color:#999}
.pd-price{font-size:29px;line-height:1.1;font-weight:500;letter-spacing:-.025em}.pd-paynote{margin-top:8px;color:#999;font-size:11px;line-height:1.55}.pd-divider{height:1px;background:#e8e8e8;margin:26px 0 23px}.pd-intro{margin:0 0 28px;font-size:15px;line-height:1.75;color:#5f5f5f;max-width:620px}
.pd-mini-specs{display:grid;grid-template-columns:repeat(3,1fr);border-top:1px solid #e8e8e8;border-bottom:1px solid #e8e8e8;margin-bottom:28px}.pd-mini-specs>div{min-width:0;padding:15px 14px 15px 0;border-right:1px solid #e8e8e8}.pd-mini-specs>div+div{padding-left:14px}.pd-mini-specs>div:last-child{border-right:0}.pd-mini-specs span{display:block;color:#999;font-size:10px;text-transform:uppercase;letter-spacing:.08em;margin-bottom:6px}.pd-mini-specs strong{display:block;font-size:12px;line-height:1.45;font-weight:500}
.pd-size-block{margin-bottom:20px}.pd-size-head{display:flex;align-items:center;justify-content:space-between;gap:20px;margin-bottom:12px}.pd-size-head>div{display:flex;gap:7px;align-items:baseline;font-size:13px}.pd-size-head>div span{font-weight:500}.pd-size-head>div strong{font-size:12px;color:#8a8a8a;font-weight:400}.pd-size-guide{display:inline-flex;align-items:center;gap:7px;border:0;background:transparent;padding:0;color:#555;font-size:12px;text-decoration:underline;text-underline-offset:3px}.pd-size-guide svg{width:16px;height:16px;fill:none;stroke:currentColor;stroke-width:1.5}
.pd-sizes{display:grid;grid-template-columns:repeat(5,1fr);gap:7px}.pd-size{height:48px;border:1px solid #dcdcdc;background:#fff;font-size:12px;transition:.18s}.pd-size:hover,.pd-size.active{border-color:#111;background:#111;color:#fff}
.pd-buy-row{display:grid;grid-template-columns:132px 1fr;gap:8px}.pd-qty{height:54px;display:grid;grid-template-columns:44px 44px 44px}.pd-qty button,.pd-qty span{display:grid;place-items:center;border:1px solid #ddd;background:#fff;font-size:13px}.pd-qty span,.pd-qty button+button{border-left:0}.pd-add,.pd-buy-now{height:54px;border:1px solid #111;font-size:12px;letter-spacing:.01em;transition:.2s}.pd-add{background:#111;color:#fff}.pd-add:hover:not(:disabled){background:#2b2b2b}.pd-buy-now{width:100%;margin-top:8px;background:#fff;color:#111}.pd-buy-now:hover:not(:disabled){background:#111;color:#fff}.pd-add:disabled,.pd-buy-now:disabled{opacity:.35;cursor:not-allowed}
.pd-service-list{margin-top:28px;border-top:1px solid #e8e8e8}.pd-service-list>div{display:grid;grid-template-columns:21px 1fr;gap:13px;padding:14px 0;border-bottom:1px solid #ededed}.pd-service-list svg{width:19px;height:19px;fill:none;stroke:#454545;stroke-width:1.35;margin-top:1px}.pd-service-list strong{display:block;font-size:12px;font-weight:500;margin-bottom:3px}.pd-service-list small{display:block;color:#8c8c8c;font-size:11px;line-height:1.5}
.pd-accordions{margin-top:10px}.pd-accordion{border-bottom:1px solid #e8e8e8}.pd-accordion>button{width:100%;height:50px;border:0;background:transparent;display:flex;align-items:center;justify-content:space-between;padding:0;font-size:12px;text-align:left}.pd-accordion>button svg{width:17px;height:17px;fill:none;stroke:#555;stroke-width:1.5;transition:transform .2s}.pd-accordion.open>button svg{transform:rotate(180deg)}.pd-accordion-body{max-height:0;overflow:hidden;transition:max-height .35s ease}.pd-accordion.open .pd-accordion-body{max-height:180px}.pd-accordion-body p{margin:0;padding:0 0 17px;color:#777;font-size:12px;line-height:1.72}
.pd-label{display:block;color:#999;font-size:10px;letter-spacing:.13em}.pd-story{display:grid;grid-template-columns:.78fr 1.22fr;margin-top:120px;background:#f3f3f1;min-height:700px}.pd-story-copy{padding:76px 64px;display:flex;flex-direction:column;justify-content:center}.pd-story-copy h2,.pd-editorial-copy h2{margin:16px 0 24px;font-size:clamp(40px,4.5vw,72px);line-height:.96;letter-spacing:-.055em;font-weight:500}.pd-story-copy p{margin:0;max-width:520px;color:#686868;font-size:15px;line-height:1.82}.pd-story-image{min-height:700px;background:#fff;overflow:hidden}.pd-story-image img{width:100%;height:100%;object-fit:contain;padding:22px}
.pd-editorial{display:grid;grid-template-columns:1.1fr .9fr;margin-top:14px;min-height:680px;background:#111;color:#fff}.pd-editorial-image{min-height:680px;overflow:hidden;background:#191919}.pd-editorial-image img{width:100%;height:100%;object-fit:cover;filter:saturate(.9) contrast(1.03)}.pd-editorial-copy{padding:72px 62px;display:flex;flex-direction:column;justify-content:center}.pd-editorial-copy .pd-label{color:#777}.pd-editorial-copy h2{font-size:clamp(38px,4vw,64px)}.pd-spec-table{margin-top:16px;border-top:1px solid #333}.pd-spec-table>div{display:grid;grid-template-columns:130px 1fr;gap:20px;padding:14px 0;border-bottom:1px solid #2c2c2c}.pd-spec-table span{color:#777;font-size:10px;text-transform:uppercase;letter-spacing:.08em}.pd-spec-table strong{font-size:12px;line-height:1.5;font-weight:400;color:#e5e5e5}
.pd-related{margin-top:120px}.pd-related-head{display:flex;align-items:end;justify-content:space-between;gap:30px;margin-bottom:34px}.pd-related-head h2{margin:9px 0 0;font-size:clamp(34px,3vw,48px);letter-spacing:-.045em;font-weight:500}.pd-related-head>a{font-size:12px;border-bottom:1px solid #111;padding-bottom:3px}.pd-related-head>a span{margin-left:8px}.pd-related .product-grid{gap:16px}
.pd-lightbox{position:fixed;inset:0;z-index:1400;background:rgba(247,247,245,.985);opacity:0;visibility:hidden;transition:.25s;overflow:auto}.pd-lightbox.open{opacity:1;visibility:visible}.pd-lightbox-stage{min-height:100vh;display:grid;place-items:center;padding:72px 42px}.pd-lightbox-stage img{max-width:90vw;max-height:88vh;object-fit:contain;cursor:zoom-in;transition:.25s}.pd-lightbox-stage img.zoomed{max-width:none;max-height:none;width:auto;height:auto;cursor:zoom-out}.pd-lightbox-close,.pd-modal-close{position:fixed;right:24px;top:24px;width:46px;height:46px;border:1px solid #ddd;background:#fff;border-radius:50%;display:grid;place-items:center;z-index:2}.pd-lightbox-close svg,.pd-modal-close svg{width:19px;height:19px;fill:none;stroke:#111;stroke-width:1.5}.pd-lightbox-meta{position:fixed;left:28px;right:28px;bottom:20px;display:flex;justify-content:space-between;gap:20px;font-size:11px;color:#555;pointer-events:none}
.pd-modal{position:fixed;inset:0;z-index:1450;background:rgba(0,0,0,.42);display:grid;place-items:center;padding:24px;opacity:0;visibility:hidden;transition:.2s}.pd-modal.open{opacity:1;visibility:visible}.pd-modal-card{position:relative;width:min(780px,100%);max-height:90vh;overflow:auto;background:#fff;padding:46px}.pd-modal-close{position:absolute;right:18px;top:18px}.pd-modal-card h2{margin:12px 0 10px;font-size:37px;line-height:1;letter-spacing:-.045em;font-weight:500}.pd-modal-note,.pd-modal-tip{color:#777;font-size:12px;line-height:1.6}.pd-table-wrap{overflow-x:auto;margin:28px 0 18px}.pd-table-wrap table{width:100%;border-collapse:collapse;min-width:620px}.pd-table-wrap th,.pd-table-wrap td{padding:13px 14px;border-bottom:1px solid #e7e7e7;text-align:left;font-size:12px}.pd-table-wrap th{font-size:10px;color:#888;text-transform:uppercase;letter-spacing:.07em;font-weight:500;border-top:1px solid #e7e7e7}
@media(max-width:1180px){.pd-hero{grid-template-columns:minmax(0,1fr) minmax(390px,.72fr);gap:38px}.pd-summary-sticky{top:150px}.pd-story-copy,.pd-editorial-copy{padding:54px 42px}}
@media(max-width:820px){
  .product-page{padding:26px 14px 88px}.pd-breadcrumb-row{padding-bottom:18px}.pd-breadcrumb-row .breadcrumb{font-size:11px}.pd-share span{display:none}
  .pd-hero{grid-template-columns:1fr;gap:34px;padding-top:18px}.pd-summary-sticky{position:static}.pd-main-image{aspect-ratio:1/1.05}.pd-main-image img{padding:2px}.pd-zoom,.pd-image-count{bottom:10px;height:38px}.pd-zoom{right:10px}.pd-image-count{left:10px}.pd-thumbs{gap:6px;margin-top:6px}.pd-thumb span{left:6px;bottom:6px}
  .pd-summary h1{font-size:35px}.pd-overline{font-size:9px}.pd-subline{font-size:12px}.pd-price{font-size:25px}.pd-intro{font-size:14px}.pd-mini-specs{grid-template-columns:1fr}.pd-mini-specs>div{border-right:0;border-bottom:1px solid #e8e8e8;padding:11px 0}.pd-mini-specs>div+div{padding-left:0}.pd-mini-specs>div:last-child{border-bottom:0}.pd-sizes{grid-template-columns:repeat(5,1fr)}.pd-size{height:45px}.pd-buy-row{grid-template-columns:120px 1fr}.pd-qty{grid-template-columns:40px 40px 40px}.pd-qty button,.pd-qty span{width:40px}
  .pd-story{grid-template-columns:1fr;margin-top:72px;min-height:0}.pd-story-copy{padding:48px 24px}.pd-story-copy h2,.pd-editorial-copy h2{font-size:44px}.pd-story-image{min-height:0;aspect-ratio:1/1}.pd-story-image img{padding:8px}.pd-editorial{grid-template-columns:1fr;min-height:0}.pd-editorial-image{min-height:0;aspect-ratio:4/5}.pd-editorial-copy{padding:48px 24px}.pd-spec-table>div{grid-template-columns:100px 1fr}.pd-related{margin-top:76px}.pd-related-head{align-items:start}.pd-related-head h2{font-size:34px}.pd-related-head>a{margin-top:4px;white-space:nowrap}.pd-modal-card{padding:40px 20px 24px}.pd-modal-card h2{font-size:30px}.pd-lightbox-stage{padding:64px 10px}.pd-lightbox-meta{left:14px;right:14px;bottom:12px;font-size:9px}
}
@media(max-width:440px){.pd-sizes{grid-template-columns:repeat(3,1fr)}.pd-buy-row{grid-template-columns:1fr}.pd-qty{grid-template-columns:repeat(3,1fr);width:100%}.pd-qty button,.pd-qty span{width:auto}.pd-related-head{display:block}.pd-related-head>a{display:inline-block;margin-top:16px}.pd-story-copy h2,.pd-editorial-copy h2{font-size:39px}.pd-zoom span{display:none}.pd-zoom{width:38px;padding:0;justify-content:center}.pd-image-count{font-size:9px}}
