/*
Theme Name: Trimiti
Theme URI: https://trimitibd.com
Author: Trimiti
Description: Custom storefront theme for Trimiti scratch art hue boards.
Version: 1.0.0
Text Domain: trimiti
*/

:root{
  --ink:#0a0a0a;
  --ink-soft:#171412;
  --paper:#fbf7f0;
  --paper-dim:#f2ece1;
  --crimson:#ac1015;
  --crimson-deep:#7a0c10;
  --crimson-tint:#f6dcdc;
  --gold:#c9a227;
  --line:rgba(10,10,10,.12);
  --line-dark:rgba(251,247,240,.14);
  --font-display: Fraunces, 'Iowan Old Style', 'Palatino Linotype', Palatino, Georgia, 'Times New Roman', serif;
  --font-body: 'Work Sans', Optima, Candara, 'Noto Sans', -apple-system, 'Segoe UI', Roboto, sans-serif;
  --radius: 3px;
  --container: 1240px;
}
*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0; background:var(--paper); color:var(--ink);
  font-family:var(--font-body); font-size:16px; line-height:1.5;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%; display:block;}
a{color:inherit; text-decoration:none;}
button{font-family:inherit; cursor:pointer;}
.wrap{max-width:var(--container); margin:0 auto; padding:0 28px;}
h1,h2,h3,h4{font-family:var(--font-display); font-weight:600; margin:0; letter-spacing:-0.01em;}
.eyebrow{
  font-family:var(--font-body); font-size:12.5px; font-weight:600; letter-spacing:.14em; text-transform:uppercase;
  color:var(--crimson);
}
.announce{background:var(--ink); color:var(--paper); font-size:13px; letter-spacing:.02em; overflow:hidden;}
.announce .wrap{display:flex; justify-content:center; gap:36px; padding:9px 28px; flex-wrap:wrap;}
.announce span{opacity:.92; white-space:nowrap;}
.announce span b{color:var(--gold); font-weight:600;}
header.site{position:sticky; top:0; z-index:40; background:var(--paper); border-bottom:1px solid var(--line);}
.nav{display:flex; align-items:center; justify-content:space-between; padding:14px 28px; gap:18px;}
.brand{display:flex; align-items:center; gap:10px; flex-shrink:0;}
.brand img{height:38px; width:auto;}
.brand-text{font-family:var(--font-display); font-weight:700; font-size:24px; color:var(--ink); letter-spacing:-0.01em; line-height:1; display:flex; align-items:baseline; gap:8px;}
.brand-text small{font-family:var(--font-body); font-weight:600; font-size:12px; color:var(--crimson); letter-spacing:.02em;}
.foot-brand-text{color:var(--paper); margin-bottom:14px; display:flex;}
.foot-brand-text small{color:var(--gold);}
.navlinks{display:flex; gap:26px; align-items:center; flex:1; justify-content:center;}
.navlinks > a{font-size:14.5px; font-weight:500; padding:6px 2px; border-bottom:2px solid transparent; transition:border-color .15s ease, color .15s ease; cursor:pointer; white-space:nowrap;}
.navlinks > a:hover{border-color:var(--crimson);}
.navlinks .soon{font-size:10px; vertical-align:2px; background:var(--crimson-tint); color:var(--crimson-deep); padding:2px 6px; border-radius:20px; margin-left:5px; letter-spacing:.03em; font-weight:700;}
.navdrop{position:relative;}
.navdrop > a{display:flex; align-items:center; gap:5px;}
.navdrop .caret{width:11px; height:11px; stroke:var(--ink); fill:none; stroke-width:2.2; transition:transform .15s ease;}
.navdrop:hover .caret{transform:rotate(180deg);}
.megamenu{position:absolute; top:100%; left:50%; transform:translateX(-50%); background:var(--paper); border:1px solid var(--line); border-radius:6px; box-shadow:0 20px 40px rgba(0,0,0,.12); padding:10px; display:none; flex-direction:column; min-width:210px; margin-top:14px; z-index:50;}
.navdrop:hover .megamenu{display:flex;}
.megamenu a{font-size:13.5px; padding:9px 12px; border-radius:4px; border-bottom:none !important; white-space:nowrap;}
.megamenu a:hover{background:var(--paper-dim); color:var(--crimson);}
.navicons{display:flex; align-items:center; gap:16px; flex-shrink:0;}
.iconbtn{position:relative; background:none; border:none; padding:6px;}
.iconbtn svg{width:21px; height:21px; stroke:var(--ink); fill:none; stroke-width:1.6;}
.cartcount{position:absolute; top:-2px; right:-2px; background:var(--crimson); color:#fff; font-size:10px; font-weight:700; width:17px; height:17px; border-radius:50%; display:flex; align-items:center; justify-content:center;}
.navtoggle{display:none; background:none; border:none; padding:6px; flex-shrink:0;}
.navtoggle svg{width:23px;height:23px;stroke:var(--ink);fill:none;stroke-width:1.6;}
@media(max-width:900px){
  .navlinks{display:none;}
  .navtoggle{display:block;}
  .nav{padding:12px 18px;}
  .announce .wrap{justify-content:flex-start; gap:0; padding:8px 18px; overflow-x:auto; flex-wrap:nowrap;}
  .announce span{display:none;}
  .announce span:first-child{display:inline;}
}
@media(max-width:480px){
  .brand img{height:32px;}
  .navicons{gap:10px;}
}
.btn{display:inline-flex; align-items:center; justify-content:center; gap:8px; padding:13px 26px; border-radius:var(--radius); font-weight:600; font-size:14.5px; border:1.5px solid transparent; transition:transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease; letter-spacing:.01em;}
.btn:active{transform:scale(.97);}
.btn-primary{background:var(--crimson); color:#fff;}
.btn-primary:hover{background:var(--crimson-deep);}
.btn-ghost{background:transparent; color:var(--paper); border-color:rgba(251,247,240,.4);}
.btn-ghost:hover{border-color:var(--paper);}
.btn-dark{background:var(--ink); color:var(--paper);}
.btn-dark:hover{background:#000;}
.btn-outline{background:transparent; border-color:var(--ink); color:var(--ink);}
.btn-outline:hover{background:var(--ink); color:var(--paper);}
.btn-block{width:100%;}
.btn[disabled]{opacity:.45; cursor:not-allowed;}
.hero{background:var(--ink); color:var(--paper); position:relative; overflow:hidden;}
.hero::before{
  content:""; position:absolute; inset:0; opacity:.05; pointer-events:none;
  background-image:repeating-linear-gradient(115deg, var(--paper) 0px, var(--paper) 1px, transparent 1px, transparent 22px);
}
.hero .wrap{position:relative; display:grid; grid-template-columns:1.05fr .95fr; gap:56px; align-items:center; padding:76px 28px 84px;}
.hero-eyebrow{color:var(--gold); font-size:12.5px; font-weight:700; letter-spacing:.18em; text-transform:uppercase; margin-bottom:18px; display:block;}
.hero h1{font-size:clamp(38px,5vw,60px); line-height:1.03; color:var(--paper); max-width:14ch;}
.hero h1 em{font-style:italic; color:var(--gold);}
.hero p.lede{margin:22px 0 32px; font-size:17px; max-width:44ch; color:rgba(251,247,240,.78);}
.hero-ctas{display:flex; gap:14px; flex-wrap:wrap;}
.hero-stats{display:flex; gap:32px; margin-top:44px; flex-wrap:wrap;}
.hero-stats div{font-size:13px; color:rgba(251,247,240,.65); max-width:15ch; padding-left:14px; border-left:2px solid var(--crimson);}
.scratch-wrap{position:relative; aspect-ratio:4/5; border-radius:6px; overflow:hidden; box-shadow:0 40px 80px -20px rgba(0,0,0,.6); border:1px solid rgba(251,247,240,.12);}
.scratch-wrap canvas{position:absolute; inset:0; width:100%; height:100%; touch-action:none; cursor:crosshair; z-index:2;}
.scratch-hint{position:absolute; left:50%; bottom:18px; transform:translateX(-50%); background:rgba(10,10,10,.55); backdrop-filter:blur(6px); color:var(--paper); font-size:12.5px; letter-spacing:.05em; padding:9px 16px; border-radius:30px; display:flex; align-items:center; gap:8px; pointer-events:none; transition:opacity .4s ease; border:1px solid rgba(251,247,240,.18); z-index:3;}
.scratch-hint svg{width:14px;height:14px;stroke:var(--gold);fill:none;stroke-width:2;}
@media(max-width:900px){ .hero .wrap{grid-template-columns:1fr; padding-top:48px;} .scratch-wrap{aspect-ratio:16/11;} }
.trust{background:var(--paper-dim); border-bottom:1px solid var(--line);}
.trust .wrap{display:flex; justify-content:space-between; padding:22px 28px; flex-wrap:wrap; gap:18px;}
.trust-item{display:flex; align-items:center; gap:10px; font-size:13.5px; font-weight:500; color:var(--ink-soft);}
.trust-item svg{width:19px; height:19px; stroke:var(--crimson); fill:none; stroke-width:1.7; flex-shrink:0;}
section{padding:84px 0;}
.section-head{display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:40px; gap:24px; flex-wrap:wrap;}
.section-head h2{font-size:clamp(26px,3vw,38px);}
.section-head p{margin:10px 0 0; color:#555; max-width:52ch; font-size:15px;}
.viewall{font-size:13.5px; font-weight:600; border-bottom:1.5px solid var(--ink); padding-bottom:2px; white-space:nowrap;}
.bento{display:grid; grid-template-columns:repeat(4,1fr); grid-auto-rows:170px; gap:16px;}
.bento a{position:relative; border-radius:6px; overflow:hidden; display:block; background:var(--ink);}
.bento a img{position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:.72; transition:transform .5s ease, opacity .3s ease;}
.bento a:hover img{transform:scale(1.06); opacity:.55;}
.bento a .tag{position:absolute; left:18px; bottom:16px; color:#fff; font-family:var(--font-display); font-size:19px; z-index:2;}
.bento a .tag small{display:block; font-family:var(--font-body); font-size:11.5px; font-weight:600; letter-spacing:.08em; text-transform:uppercase; color:var(--gold); margin-bottom:4px;}
.bento a::after{content:""; position:absolute; inset:0; background:linear-gradient(0deg, rgba(0,0,0,.72), rgba(0,0,0,0) 62%);}
.b-a3{grid-column:span 2; grid-row:span 2;}
.b-a3 .tag{font-size:26px;}
@media(max-width:820px){ .bento{grid-template-columns:repeat(2,1fr); grid-auto-rows:140px;} .b-a3{grid-column:span 2; grid-row:span 2;} }
.filterbar{display:flex; gap:10px; flex-wrap:wrap; margin-bottom:34px;}
.chip{padding:9px 18px; border-radius:30px; border:1.5px solid var(--line); font-size:13.5px; font-weight:500; background:transparent; color:var(--ink);}
.chip.active{background:var(--ink); color:var(--paper); border-color:var(--ink);}
.grid{display:grid; grid-template-columns:repeat(4,1fr); gap:26px 22px;}
@media(max-width:1080px){ .grid{grid-template-columns:repeat(3,1fr);} }
@media(max-width:760px){ .grid{grid-template-columns:repeat(2,1fr);} .bento{grid-template-columns:repeat(2,1fr);} }
.card{cursor:pointer;}
.card-media{position:relative; aspect-ratio:1/1.08; border-radius:5px; overflow:hidden; background:var(--ink); margin-bottom:14px;}
.card-media img{width:100%; height:100%; object-fit:cover; transition:transform .5s ease;}
.card:hover .card-media img{transform:scale(1.045);}
.card-badge{position:absolute; top:10px; left:10px; background:var(--crimson); color:#fff; font-size:10.5px; font-weight:700; letter-spacing:.05em; padding:4px 9px; border-radius:3px; text-transform:uppercase; z-index:2;}
.card-badge.gold{background:var(--gold); color:var(--ink);}
.card-badge.preorder{background:var(--ink); color:var(--gold); border:1px solid var(--gold);}
.card-cta{position:absolute; left:10px; right:10px; bottom:10px; background:var(--paper); color:var(--ink); text-align:center; padding:10px; font-size:12.5px; font-weight:600; border-radius:3px; opacity:0; transform:translateY(6px); transition:.2s ease;}
.card:hover .card-cta{opacity:1; transform:translateY(0);}
.card-cat{font-size:11px; text-transform:uppercase; letter-spacing:.08em; color:var(--crimson); font-weight:700; margin-bottom:5px;}
.card h3{font-size:16px; font-weight:600; font-family:var(--font-body); line-height:1.3;}
.card .price{margin-top:6px; font-family:var(--font-display); font-size:16.5px; color:var(--ink-soft);}
.card .price small{font-family:var(--font-body); font-size:11.5px; color:#777; font-weight:500;}
.story{background:var(--ink); color:var(--paper);}
.story .wrap{display:grid; grid-template-columns:.9fr 1.1fr; gap:64px; align-items:center;}
.story img{border-radius:6px; width:100%;}
.story .eyebrow{color:var(--gold);}
.story h2{color:var(--paper); font-size:clamp(26px,3vw,36px); margin:14px 0 18px;}
.story p{color:rgba(251,247,240,.75); font-size:15.5px; max-width:46ch; margin:0 0 14px;}
.story ul{list-style:none; padding:0; margin:26px 0 0; display:grid; gap:14px;}
.story li{display:flex; gap:12px; font-size:14.5px; color:rgba(251,247,240,.9);}
.story li b{color:var(--gold); font-family:var(--font-display); font-size:15px;}
@media(max-width:900px){ .story .wrap{grid-template-columns:1fr;} }
.wholesale{background:linear-gradient(120deg, var(--crimson) 0%, var(--crimson-deep) 100%); color:#fff;}
.wholesale .wrap{display:flex; align-items:center; justify-content:space-between; gap:30px; flex-wrap:wrap; padding:52px 28px;}
.wholesale h2{color:#fff; font-size:clamp(22px,2.6vw,30px); max-width:20ch;}
.wholesale p{margin:10px 0 0; color:rgba(255,255,255,.85); max-width:48ch; font-size:14.5px;}
.newsletter{text-align:center;}
.newsletter .wrap{max-width:560px;}
.newsletter form{display:flex; gap:10px; margin-top:24px;}
.newsletter input{flex:1; padding:13px 16px; border:1.5px solid var(--line); border-radius:var(--radius); font-family:inherit; font-size:14.5px;}
.newsletter input:focus{outline:2px solid var(--crimson); outline-offset:1px;}
footer{background:var(--ink); color:rgba(251,247,240,.7); padding:64px 0 0;}
.foot-grid{display:grid; grid-template-columns:1.4fr repeat(3,1fr); gap:40px; padding-bottom:48px; border-bottom:1px solid var(--line-dark);}
.foot-brand img{height:36px; margin-bottom:14px;}
.foot-brand p{font-size:13.5px; line-height:1.6; max-width:34ch; color:rgba(251,247,240,.55);}
.foot-social{display:flex; gap:12px; margin-top:18px;}
.foot-social a{width:34px; height:34px; border:1px solid var(--line-dark); border-radius:50%; display:flex; align-items:center; justify-content:center;}
.foot-social svg{width:16px; height:16px; stroke:var(--paper); fill:none; stroke-width:1.6;}
footer h4{color:var(--paper); font-size:13px; text-transform:uppercase; letter-spacing:.08em; margin-bottom:16px; font-family:var(--font-body); font-weight:600;}
footer ul{list-style:none; padding:0; margin:0; display:grid; gap:10px;}
footer ul a{font-size:13.5px; color:rgba(251,247,240,.65);}
footer ul a:hover{color:var(--paper);}
.foot-bottom{display:flex; justify-content:space-between; align-items:center; padding:22px 0; font-size:12.5px; color:rgba(251,247,240,.45); flex-wrap:wrap; gap:10px;}
.paybadges{display:flex; gap:8px; align-items:center;}
.paybadges span{border:1px solid var(--line-dark); border-radius:3px; padding:4px 9px; font-size:11px; letter-spacing:.03em;}
@media(max-width:900px){ .foot-grid{grid-template-columns:1fr 1fr;} }
.overlay{position:fixed; inset:0; background:rgba(10,10,10,.5); opacity:0; pointer-events:none; transition:opacity .25s ease; z-index:60;}
.overlay.open{opacity:1; pointer-events:auto;}
.drawer{position:fixed; top:0; right:0; height:100%; width:420px; max-width:92vw; background:var(--paper); z-index:61; transform:translateX(100%); transition:transform .3s ease; display:flex; flex-direction:column; box-shadow:-20px 0 60px rgba(0,0,0,.2);}
.drawer.open{transform:translateX(0);}
.drawer-head{display:flex; justify-content:space-between; align-items:center; padding:22px 24px; border-bottom:1px solid var(--line);}
.drawer-head h3{font-size:19px;}
.drawer-close{background:none;border:none;padding:4px;}
.drawer-close svg{width:22px;height:22px;stroke:var(--ink);fill:none;stroke-width:1.6;}
.drawer-items{flex:1; overflow-y:auto; padding:18px 24px;}
.drawer-item{display:flex; gap:14px; padding:16px 0; border-bottom:1px solid var(--line);}
.drawer-item img{width:64px; height:64px; object-fit:cover; border-radius:4px; background:var(--ink);}
.drawer-item .info{flex:1;}
.drawer-item .info .n{font-size:14px; font-weight:600;}
.drawer-item .info .v{font-size:12.5px; color:#777; margin-top:2px;}
.drawer-item .qtyrow{display:flex; align-items:center; gap:10px; margin-top:8px;}
.qbtn{width:24px;height:24px;border:1px solid var(--line);background:#fff;border-radius:3px;font-size:14px;line-height:1;display:flex;align-items:center;justify-content:center;}
.drawer-item .rm{font-size:12px; color:var(--crimson); font-weight:600; margin-left:auto;}
.drawer-empty{text-align:center; padding:60px 20px; color:#888; font-size:14px;}
.drawer-foot{padding:22px 24px; border-top:1px solid var(--line);}
.drawer-foot .subtotal{display:flex; justify-content:space-between; font-size:15px; font-weight:600; margin-bottom:16px;}
.drawer-foot small{display:block; text-align:center; margin-top:10px; color:#888; font-size:12px;}
.breadcrumb{font-size:12.5px; color:#777; margin-bottom:26px;}
.breadcrumb a:hover{color:var(--crimson);}
.pd-grid{display:grid; grid-template-columns:1fr 1fr; gap:60px;}
.pd-media{position:sticky; top:90px; align-self:start;}
.pd-media-main{aspect-ratio:1/1; border-radius:6px; overflow:hidden; background:var(--ink);}
.pd-media-main img{width:100%; height:100%; object-fit:cover;}
.pd-thumbs{display:flex; gap:10px; margin-top:12px;}
.pd-thumbs img{width:64px; height:64px; object-fit:cover; border-radius:4px; border:1.5px solid transparent; cursor:pointer;}
.pd-thumbs img.active{border-color:var(--crimson);}
.pd-cat{font-size:12px; color:var(--crimson); font-weight:700; letter-spacing:.06em; text-transform:uppercase; margin-bottom:10px;}
.pd-grid h1{font-size:clamp(26px,3vw,34px); max-width:16ch;}
.pd-price{font-family:var(--font-display); font-size:26px; margin:16px 0 4px;}
.pd-price .was{font-size:16px; color:#999; text-decoration:line-through; margin-left:10px; font-family:var(--font-body);}
.pd-stock{font-size:13px; font-weight:600; margin-bottom:22px;}
.pd-stock.in{color:#2e7d32;} .pd-stock.low{color:var(--crimson);} .pd-stock.back{color:var(--gold);}
.pd-short{color:#555; font-size:15px; margin-bottom:26px; max-width:48ch;}
.pd-attr{margin-bottom:26px;}
.pd-attr label{display:block; font-size:12.5px; font-weight:700; text-transform:uppercase; letter-spacing:.06em; margin-bottom:12px;}
.pd-attr label .sel{font-weight:500; text-transform:none; letter-spacing:0; color:#777;}
.swatches{display:flex; flex-wrap:wrap; gap:10px;}
.swatch{width:64px; cursor:pointer; text-align:center;}
.swatch img{width:64px; height:64px; object-fit:cover; border-radius:4px; border:2px solid transparent; opacity:.9;}
.swatch span{display:block; font-size:10.5px; margin-top:6px; color:#666; line-height:1.2;}
.swatch.active img{border-color:var(--crimson); opacity:1;}
.swatch.active span{color:var(--ink); font-weight:600;}
.swatch.oos{opacity:.4; cursor:not-allowed;}
.pd-qty-row{display:flex; gap:14px; margin-bottom:16px; flex-wrap:wrap;}
.qty-stepper{display:flex; align-items:center; border:1.5px solid var(--line); border-radius:var(--radius);}
.qty-stepper button{width:42px; height:48px; background:none; border:none; font-size:17px;}
.qty-stepper input{width:44px; text-align:center; border:none; font-size:15px; font-family:inherit; background:none;}
.pd-accordion{margin-top:36px; border-top:1px solid var(--line);}
.acc-item{border-bottom:1px solid var(--line);}
.acc-head{display:flex; justify-content:space-between; align-items:center; padding:18px 2px; font-weight:600; font-size:14.5px; cursor:pointer;}
.acc-head svg{width:16px;height:16px;stroke:var(--ink);fill:none;stroke-width:2; transition:transform .2s ease;}
.acc-item.open .acc-head svg{transform:rotate(45deg);}
.acc-body{max-height:0; overflow:hidden; transition:max-height .25s ease;}
.acc-item.open .acc-body{max-height:600px;}
.acc-body p{padding:0 2px 18px; font-size:14px; color:#555; line-height:1.65;}
@media(max-width:860px){ .pd-grid{grid-template-columns:1fr;} .pd-media{position:static;} }
.badge-new{display:inline-block; background:var(--gold); color:var(--ink); font-size:10.5px; font-weight:700; letter-spacing:.05em; padding:3px 8px; border-radius:3px; text-transform:uppercase; margin-bottom:12px;}
.placeholder-note{background:var(--crimson-tint); border:1px solid rgba(172,16,21,.25); color:var(--crimson-deep); font-size:13px; padding:12px 14px; border-radius:4px; margin-bottom:20px; line-height:1.5;}
.toast{position:fixed; bottom:24px; left:50%; transform:translateX(-50%) translateY(20px); background:var(--ink); color:var(--paper); padding:14px 22px; border-radius:6px; font-size:14px; opacity:0; pointer-events:none; transition:.25s ease; z-index:80; display:flex; align-items:center; gap:10px;}
.toast.show{opacity:1; transform:translateX(-50%) translateY(0);}
.toast svg{width:16px;height:16px;stroke:var(--gold);fill:none;stroke-width:2;}
.page-hero{background:var(--ink); color:var(--paper); padding:56px 0 44px;}
.page-hero h1{color:var(--paper); font-size:clamp(28px,4vw,42px);}
.page-hero p{color:rgba(251,247,240,.7); margin-top:10px; max-width:52ch;}
::selection{background:var(--crimson); color:#fff;}
.sr-only{position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0);}
@media(prefers-reduced-motion:reduce){ *{animation:none!important; transition:none!important;} }
.mobmenu{position:fixed; top:0; left:0; height:100%; width:340px; max-width:86vw; background:var(--paper); z-index:71; transform:translateX(-100%); transition:transform .3s ease; display:flex; flex-direction:column; box-shadow:20px 0 60px rgba(0,0,0,.2);}
.mobmenu.open{transform:translateX(0);}
.mobmenu-body{flex:1; overflow-y:auto; padding:12px 10px;}
.mobmenu-link, .mobmenu-head{display:flex; align-items:center; justify-content:space-between; width:100%; background:none; border:none; text-align:left; font-family:inherit; font-size:15.5px; font-weight:600; padding:15px 12px; border-bottom:1px solid var(--line); cursor:pointer; color:var(--ink);}
.mobmenu-head svg{width:14px;height:14px;stroke:var(--ink);fill:none;stroke-width:2.2; transition:transform .2s ease;}
.mobmenu-group.open .mobmenu-head svg{transform:rotate(180deg);}
.mobmenu-sub{max-height:0; overflow:hidden; transition:max-height .25s ease; display:flex; flex-direction:column; background:var(--paper-dim);}
.mobmenu-group.open .mobmenu-sub{max-height:400px;}
.mobmenu-sub a{padding:12px 26px; font-size:14.5px; font-weight:500; border-bottom:1px solid var(--line);}
.mobmenu-link .soon{font-size:9.5px;}
.btn-buynow{background:var(--ink); color:var(--paper); flex:1;}
.btn-buynow:hover{background:#000;}
.pd-cta-row{display:flex; gap:12px; margin-bottom:14px;}
.pd-cta-row .btn{flex:1;}
.badge-preorder{display:inline-flex; align-items:center; gap:6px; background:var(--ink); color:var(--gold); font-size:11px; font-weight:700; letter-spacing:.05em; text-transform:uppercase; padding:5px 10px; border-radius:3px; margin-bottom:14px; border:1px solid var(--gold);}
.checkout-top{height:14px; background-image:radial-gradient(circle at 8px 0, transparent 8px, var(--crimson) 8.5px); background-size:16px 16px; background-repeat:repeat-x; background-position:top;}
.checkout-wrap{display:grid; grid-template-columns:1.15fr .85fr; gap:48px; align-items:start; padding:48px 28px 90px;}
.checkout-coupon{grid-column:1/-1; font-size:13.5px; margin-bottom:8px;}
.checkout-coupon a{text-decoration:underline; color:var(--crimson); font-weight:600; cursor:pointer;}
.co-section-title{font-size:12px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--ink-soft); margin-bottom:20px; border-bottom:1px solid var(--line); padding-bottom:12px;}
.co-field{margin-bottom:18px;}
.co-field label{display:block; font-size:13px; font-weight:600; margin-bottom:6px;}
.co-field label .req{color:var(--crimson);}
.co-field input, .co-field select, .co-field textarea{width:100%; padding:12px 14px; border:1.5px solid var(--line); border-radius:3px; font-family:inherit; font-size:14.5px; background:#fff;}
.co-field input:focus, .co-field select:focus, .co-field textarea:focus{outline:2px solid var(--crimson); outline-offset:1px; border-color:var(--crimson);}
.order-card{background:var(--paper-dim); border-radius:8px; padding:28px; position:sticky; top:96px;}
.order-card h3{font-size:13px; letter-spacing:.08em; text-transform:uppercase; text-align:center; margin-bottom:20px; color:var(--ink-soft);}
.pay-method{display:flex; align-items:center; gap:12px; border:1.5px solid var(--line); border-radius:6px; padding:14px 16px; margin-top:12px; cursor:pointer; transition:.15s ease;}
.pay-method.active{border-color:var(--crimson); background:var(--crimson-tint);}
.pay-method.disabled{opacity:.42; cursor:not-allowed; background:#f5f5f5;}
.pay-method input{width:17px; height:17px; accent-color:var(--crimson);}
.pay-method .pm-info{flex:1;}
.pay-method .pm-name{font-size:14px; font-weight:700;}
.pay-method .pm-sub{font-size:11.5px; color:#777; margin-top:2px;}
.preorder-note{background:var(--ink); color:var(--gold); font-size:12.5px; padding:12px 14px; border-radius:5px; margin:16px 0 20px; line-height:1.5; border:1px solid var(--gold);}
@media(max-width:900px){ .checkout-wrap{grid-template-columns:1fr;} .order-card{position:static;} }
