/* =========================================================
   SUTRA — Design Tokens
   Ink   #16130F   Parchment #F4EEDF   Gold #C6A46E
   Red   #8A2422   Maroon    #4F161A  Deep Ink #0D0B08
   Display: Cinzel  Body: Jost  Utility: JetBrains Mono
========================================================= */
:root{
  --ink:#16130F;
  --ink-deep:#0D0B08;
  --parchment:#F4EEDF;
  --parchment-dim:#E6DCC2;
  --gold:#C6A46E;
  --gold-bright:#E4C48E;
  --red:#8A2422;
  --red-bright:#B3312D;
  --maroon:#4F161A;
  --line:rgba(244,238,222,0.14);

  --font-display:'Cinzel', serif;
  --font-body:'Jost', sans-serif;
  --font-mono:'JetBrains Mono', monospace;

  --radius:14px;
  --transition: .35s cubic-bezier(.4,0,.2,1);
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:var(--font-body);
  background:var(--parchment);
  color:var(--ink);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  *{animation-duration:0.001ms !important; transition-duration:0.001ms !important;}
}

::selection{ background:var(--gold); color:var(--ink-deep); }

a{ color:inherit; text-decoration:none; }
:focus-visible{ outline:2px solid var(--gold-bright); outline-offset:3px; }

h1,h2,h3,h4{ font-family:var(--font-display); letter-spacing:.01em; margin:0; }
em{ font-style:normal; color:var(--red); }
.light em{ color:var(--gold-bright); }

.container{ max-width:1200px; }

/* =========================================================
   Signature element — the thread rail
========================================================= */
.thread-rail{
  position:fixed; left:18px; top:0; height:100vh; width:26px; z-index:5;
  pointer-events:none;
}
.thread-rail path{
  fill:none; stroke:var(--red); stroke-width:2.5;
  stroke-dasharray:9 9;
  opacity:.35;
}

/* =========================================================
   Navbar
========================================================= */
.sutra-navbar{
  background:rgba(22,19,15,0.0);
  padding:18px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.sutra-navbar.scrolled{
  background:rgba(22,19,15,0.92);
  backdrop-filter:blur(10px);
  padding:10px 0;
  box-shadow:0 8px 30px rgba(0,0,0,.25);
}
.brand-mark{ width:38px; height:38px; border-radius:50%; object-fit:cover; border:1.5px solid var(--gold); }
.brand-word{
  font-family:var(--font-display); font-weight:700; letter-spacing:.18em;
  font-size:1.15rem; color:var(--parchment);
}
.navbar-nav .nav-link{
  color:var(--parchment-dim) !important;
  font-family:var(--font-mono);
  font-size:.78rem;
  letter-spacing:.06em;
  text-transform:uppercase;
  padding:.5rem 1rem !important;
  position:relative;
}
.navbar-nav .nav-link:hover{ color:var(--gold-bright) !important; }
.toggler-line{ display:block; width:22px; height:2px; background:var(--parchment); margin:4px 0; }
.navbar-toggler{ border:none; padding:4px; }
.navbar-toggler:focus{ box-shadow:none; }
#navMenu.show, #navMenu.collapsing{
  background:var(--ink-deep); padding:1rem 1rem 1.5rem; border-radius:0 0 12px 12px;
}

/* =========================================================
   Buttons
========================================================= */
.btn{ border-radius:999px; font-family:var(--font-mono); font-size:.8rem; letter-spacing:.06em; text-transform:uppercase; padding:.7rem 1.6rem; border:1px solid transparent; transition:all var(--transition); }
.btn-sutra-primary{ background:var(--red); color:var(--parchment); border-color:var(--red); }
.btn-sutra-primary:hover{ background:var(--red-bright); border-color:var(--red-bright); color:#fff; transform:translateY(-2px); }
.btn-sutra-outline{ background:transparent; color:var(--parchment); border-color:var(--gold); }
#addToCartBtn{background: var(--gold) !important;}
.btn-sutra-outline:hover{ background:var(--gold); color:var(--ink-deep); }
.btn-sutra-ghost{ background:transparent; color:var(--ink); border-color:var(--ink); }
.btn-sutra-ghost:hover{ background:var(--ink); color:var(--parchment); transform:translateY(-2px); }
.section-market .btn, .section-craft .btn{ }
.btn-link{ color:var(--red); font-family:var(--font-mono); font-size:.8rem; text-decoration:underline; }

/* =========================================================
   Hero
========================================================= */
.hero{
  position:relative;
  min-height:100vh;
  display:flex; align-items:center;
  background:var(--ink);
  overflow:hidden;
  padding-top:120px; padding-bottom:80px;
}
.hero-bg{
  position:absolute; inset:0;
  background:
    radial-gradient(ellipse 60% 50% at 78% 30%, rgba(198,164,110,.16), transparent 60%),
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(138,36,34,.22), transparent 60%),
    linear-gradient(160deg, var(--ink-deep), var(--ink) 60%);
}
.hero-inner{ position:relative; z-index:2; }
.eyebrow{
  display:flex; align-items:center; gap:10px;
  font-family:var(--font-mono); font-size:.78rem; letter-spacing:.14em; text-transform:uppercase;
  color:var(--gold-bright); margin-bottom:1.25rem;
}
.eyebrow-line{ width:32px; height:1px; background:var(--gold); display:inline-block; }
.hero-title{
  font-size:clamp(2.4rem, 5vw, 4rem);
  line-height:1.08;
  color:var(--parchment);
  font-weight:700;
}
.hero-copy{
  color:var(--parchment-dim);
  font-size:1.08rem; line-height:1.75;
  max-width:520px; margin-top:1.5rem;
}
.hero-stats > div{ display:flex; flex-direction:column; }
.stat-num{ font-family:var(--font-display); font-size:1.6rem; color:var(--gold-bright); font-weight:700; }
.stat-label{ font-family:var(--font-mono); font-size:.7rem; letter-spacing:.08em; text-transform:uppercase; color:var(--parchment-dim); }

.hero-crest-wrap{
  position:relative;
  display:inline-block;
  padding:24px;
}
.hero-crest-wrap::before{
  content:"";
  position:absolute; inset:0;
  border-radius:50%;
  border:1px dashed var(--gold);
  opacity:.4;
  animation:spin 40s linear infinite;
}
@keyframes spin{ to{ transform:rotate(360deg);} }
.hero-crest{
  width:min(420px, 78vw);
  border-radius:50%;
  border:2px solid var(--gold);
  box-shadow:0 30px 80px rgba(0,0,0,.5);
  animation:float 6s ease-in-out infinite;
}
@keyframes float{ 0%,100%{ transform:translateY(0);} 50%{ transform:translateY(-14px);} }

.scroll-cue{
  position:absolute; bottom:28px; left:50%; transform:translateX(-50%);
  width:26px; height:42px; border:1.5px solid var(--gold); border-radius:20px;
  display:flex; justify-content:center; padding-top:8px; z-index:2;
}
.scroll-cue span{ width:4px; height:8px; border-radius:2px; background:var(--gold-bright); animation:scrollcue 1.8s infinite; }
@keyframes scrollcue{ 0%{ opacity:1; transform:translateY(0);} 100%{ opacity:0; transform:translateY(14px);} }

/* =========================================================
   Section shells
========================================================= */
section{ padding:110px 0; position:relative; }
.section-eyebrow{
  font-family:var(--font-mono); font-size:.78rem; letter-spacing:.14em; text-transform:uppercase;
  color:var(--red); margin-bottom:.75rem;
}
.section-eyebrow.light{ color:var(--gold-bright); }
.section-title{ font-size:clamp(1.9rem, 3.4vw, 2.8rem); font-weight:700; }
.section-title.light{ color:var(--parchment); }
.section-sub{ color:#5c5648; max-width:640px; font-size:1.05rem; line-height:1.7; }
.section-sub.light{ color:var(--parchment-dim); }

/* =========================================================
   Product
========================================================= */
.section-product{ background:var(--parchment); }
.product-gallery{ position:sticky; top:100px; }
.gallery-frame{
  position:relative;
  background:linear-gradient(155deg,#fff, #ece3cd 120%);
  border:1px solid rgba(22,19,15,.08);
  border-radius:var(--radius);
  padding:2.5rem;
  display:flex; align-items:center; justify-content:center;
  min-height:420px;
}
.gallery-img{ max-height:460px; width:auto; filter:drop-shadow(0 30px 30px rgba(0,0,0,.15)); transition:opacity .25s ease; }
.badge-new{
  position:absolute; top:18px; left:18px;
  background:var(--ink); color:var(--gold-bright);
  font-family:var(--font-mono); font-size:.68rem; letter-spacing:.08em; text-transform:uppercase;
  padding:.4rem .8rem; border-radius:999px;
}
.thumb-row{ display:flex; gap:12px; margin-top:16px; }
.thumb-btn{
  border:1.5px solid rgba(22,19,15,.12); background:#fff; border-radius:10px; padding:6px;
  width:70px; height:70px; cursor:pointer; transition:border-color var(--transition), transform var(--transition);
}
.thumb-btn img{ width:100%; height:100%; object-fit:contain; }
.thumb-btn:hover{ transform:translateY(-3px); }
.thumb-btn.active{ border-color:var(--red); box-shadow:0 0 0 3px rgba(138,36,34,.12); }

.product-kicker{ font-family:var(--font-mono); font-size:.75rem; letter-spacing:.1em; color:var(--gold); text-transform:uppercase; margin-bottom:.4rem; }
.product-name{ font-size:2.1rem; margin-bottom:.6rem; }
.price-now{ font-family:var(--font-display); font-size:1.9rem; font-weight:700; color:var(--red); }
.price-was{ font-family:var(--font-mono); text-decoration:line-through; color:#a39d8a; }
.price-off{ font-family:var(--font-mono); font-size:.75rem; background:var(--maroon); color:var(--parchment); padding:.25rem .6rem; border-radius:6px; }
.product-desc{ color:#4a4638; line-height:1.75; max-width:520px; }

.chip-row{ display:flex; flex-wrap:wrap; gap:10px; }
.chip{
  font-family:var(--font-mono); font-size:.75rem; letter-spacing:.03em;
  background:#fff; border:1px solid rgba(22,19,15,.12); color:var(--ink);
  padding:.5rem .85rem; border-radius:999px; display:inline-flex; align-items:center; gap:6px;
}
.chip i{ color:var(--red); }

.option-label{ font-family:var(--font-mono); font-size:.78rem; letter-spacing:.06em; text-transform:uppercase; color:#6b6656; margin-bottom:.6rem; }
.option-label span{ color:var(--ink); font-weight:600; }

.swatch-row{ display:flex; gap:14px; }
.swatch{
  position:relative; width:42px; height:42px; border-radius:50%; cursor:pointer;
  border:2px solid rgba(22,19,15,.15);
  display:inline-flex; transition:transform var(--transition), border-color var(--transition);
}
.swatch input{ position:absolute; opacity:0; width:100%; height:100%; margin:0; cursor:pointer; }
.swatch::after{
  content:""; position:absolute; inset:-6px; border-radius:50%; border:1.5px solid transparent; transition:border-color var(--transition);
}
.swatch.active::after, .swatch:hover::after{ border-color:var(--gold); }
.swatch:hover{ transform:translateY(-2px); }
.swatch-black{ background:#1a1815; }
.swatch-white{ background:#f5f2eb; }
.swatch-red{ background:#96201e; }
.swatch-maroon{ background:#4f161a; }

.size-row{ display:flex; gap:10px; flex-wrap:wrap; }
.size-btn{
  width:52px; height:44px; border-radius:10px; border:1.5px solid rgba(22,19,15,.18);
  background:#fff; font-family:var(--font-mono); font-size:.85rem; cursor:pointer;
  transition:all var(--transition);
}
.size-btn:hover{ border-color:var(--red); }
.size-btn.active{ background:var(--ink); color:var(--parchment); border-color:var(--ink); }
.size-guide-note{ font-size:.8rem; color:#8a8471; margin-top:.6rem; margin-bottom:0; }

/* =========================================================
   Craft
========================================================= */
.section-craft{ background:var(--ink); }
.craft-copy{ color:var(--parchment-dim); line-height:1.8; font-size:1.05rem; }
.craft-card{
  background:rgba(244,238,222,.04);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:1.8rem;
  height:100%;
  transition:transform var(--transition), border-color var(--transition), background var(--transition);
}
.craft-card:hover{ transform:translateY(-6px); border-color:var(--gold); background:rgba(244,238,222,.07); }
.craft-card i{ font-size:1.5rem; color:var(--gold-bright); margin-bottom:.9rem; display:block; }
.craft-card h4{ font-size:1.05rem; color:var(--parchment); margin-bottom:.4rem; }
.craft-card p{ color:var(--parchment-dim); font-size:.92rem; margin:0; line-height:1.6; }

/* =========================================================
   Order form
========================================================= */
.section-order{ background:var(--parchment); }
.order-card{
  background:#fff;
  border:1px solid rgba(22,19,15,.08);
  border-radius:20px;
  padding:2.5rem;
  box-shadow:0 30px 70px rgba(22,19,15,.08);
}
.order-preview{ max-height:260px; }
.order-preview-caption{ font-family:var(--font-mono); font-size:.8rem; color:#6b6656; margin-top:.75rem; }
.order-preview-caption span{ color:var(--ink); font-weight:600; }

.form-label{ font-family:var(--font-mono); font-size:.75rem; letter-spacing:.05em; text-transform:uppercase; color:#6b6656; }
.form-label .opt{ text-transform:none; letter-spacing:0; color:#a39d8a; }
.sutra-input{
  border:1.5px solid rgba(22,19,15,.14);
  border-radius:10px;
  padding:.7rem .9rem;
  font-family:var(--font-body);
  background:#fdfbf6;
}
.sutra-input:focus{ border-color:var(--red); box-shadow:0 0 0 3px rgba(138,36,34,.1); background:#fff; }
.form-fineprint{ font-size:.8rem; color:#8a8471; margin-top:.7rem; margin-bottom:0; text-align:center; }

.thanks-icon{
  width:64px; height:64px; border-radius:50%; background:var(--red); color:#fff;
  display:flex; align-items:center; justify-content:center; font-size:1.8rem; margin:0 auto 1.2rem;
}
.thanks-copy{ color:#4a4638; max-width:460px; margin:0 auto 1rem; line-height:1.7; }
.thanks-name{ font-family:var(--font-mono); color:var(--gold); font-size:.85rem; letter-spacing:.03em; }

/* =========================================================
   Marketplaces
========================================================= */
.section-market{ background:var(--ink-deep); }
.market-card{
  display:block; height:100%;
  background:rgba(244,238,222,.03);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:2.2rem 1.8rem;
  transition:all var(--transition);
}
.market-card i{ font-size:1.9rem; color:var(--gold-bright); }
.market-card h4{ color:var(--parchment); font-size:1.3rem; margin:.8rem 0 .3rem; }
.market-card p{ color:var(--parchment-dim); margin-bottom:1.4rem; font-size:.92rem; }
.market-cta{ font-family:var(--font-mono); font-size:.78rem; letter-spacing:.04em; color:var(--gold-bright); display:inline-flex; align-items:center; gap:6px; }
.market-card:hover{ transform:translateY(-8px); border-color:var(--gold); box-shadow:0 20px 50px rgba(0,0,0,.35); }
.market-amazon:hover{ border-color:#FF9900; }
.market-flipkart:hover{ border-color:#2874F0; }
.market-meesho:hover{ border-color:#9F2089; }

/* =========================================================
   Footer
========================================================= */
.sutra-footer{ background:var(--ink); padding-top:80px; }
.footer-copy{ color:var(--parchment-dim); font-size:.92rem; line-height:1.7; max-width:280px; }
.footer-heading{ font-family:var(--font-mono); font-size:.78rem; letter-spacing:.08em; text-transform:uppercase; color:var(--gold-bright); margin-bottom:1rem; }
.footer-links{ list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:.65rem; }
.footer-links a, .footer-links li{ color:var(--parchment-dim); font-size:.92rem; }
.footer-links a:hover{ color:var(--gold-bright); }
.social-row{ display:flex; gap:12px; margin-top:1.2rem; }
.social-row a{
  width:38px; height:38px; border-radius:50%; border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center; color:var(--parchment-dim);
  transition:all var(--transition);
}
.social-row a:hover{ background:var(--gold); color:var(--ink-deep); border-color:var(--gold); }
.footer-rule{ border-color:var(--line); margin-top:3rem; }
.footer-fine{ font-family:var(--font-mono); font-size:.75rem; color:#7a7562; }

/* =========================================================
   Floating WhatsApp
========================================================= */
.wa-float{
  position:fixed; bottom:24px; right:24px; z-index:60;
  width:56px; height:56px; border-radius:50%;
  background:#25D366; color:#fff;
  display:flex; align-items:center; justify-content:center; font-size:1.6rem;
  box-shadow:0 12px 30px rgba(37,211,102,.4);
  animation:pulse 2.6s infinite;
}
@keyframes pulse{
  0%{ box-shadow:0 0 0 0 rgba(37,211,102,.45); }
  70%{ box-shadow:0 0 0 16px rgba(37,211,102,0); }
  100%{ box-shadow:0 0 0 0 rgba(37,211,102,0); }
}

/* =========================================================
   Responsive tweaks
========================================================= */
@media (max-width: 991.98px){
  .product-gallery{ position:static; }
  section{ padding:80px 0; }
  .hero{ padding-top:110px; }
}
@media (max-width: 575.98px){
  .order-card{ padding:1.5rem; }
  .gallery-frame{ padding:1.5rem; min-height:320px; }
  section{ padding:64px 0; }
  .hero-stats{ gap:1.6rem !important; }
}

/* =========================================================
   NEW PRODUCT CONFIGURATOR / CHECKOUT
   Scoped to .section-product and .section-order only.
========================================================= */
.section-product{background:var(--parchment);position:relative;overflow:hidden;}
.product-section-head{display:flex;align-items:flex-end;justify-content:space-between;gap:24px;margin-bottom:38px;}
.product-section-intro{max-width:620px;}
.product-cart-status{font-family:var(--font-mono);font-size:.74rem;letter-spacing:.08em;text-transform:uppercase;color:#6b6656;white-space:nowrap;padding:10px 14px;border:1px solid rgba(22,19,15,.12);border-radius:999px;background:rgba(255,255,255,.58);}
.product-cart-status i{color:var(--red);margin-right:7px;}
.product-selector{display:grid;grid-template-columns:minmax(0,1.12fr) minmax(390px,.88fr);gap:58px;align-items:start;}
.product-preview-column{min-width:0;position:sticky;top:105px;}
.product-main-frame{min-height:650px;padding:20px;background:#0b0a09;border:1px solid rgba(22,19,15,.16);border-radius:22px;overflow:hidden;}
.product-image-stage{width:100%;height:100%;min-height:610px;display:flex;align-items:center;justify-content:center;overflow:hidden;border-radius:15px;background:#090909;position:relative;}
.product-image-stage img{width:100%;height:610px;object-fit:contain;display:block;transition:opacity .24s ease,transform .16s ease;transform-origin:center center;user-select:none;will-change:transform;}
.product-zoom-wrap.zooming .product-image-stage img{cursor:zoom-in;}
.zoom-label{position:absolute;right:18px;bottom:18px;z-index:3;background:rgba(0,0,0,.72);color:#f4eedf;border:1px solid rgba(244,238,222,.18);border-radius:999px;padding:8px 12px;font-family:var(--font-mono);font-size:.65rem;letter-spacing:.07em;text-transform:uppercase;backdrop-filter:blur(8px);}
.zoom-label i{margin-right:5px;color:var(--gold-bright);}
.product-view-toggle{position:relative;display:flex;justify-content:center;gap:0;margin:-26px auto 0;width:max-content;z-index:4;padding:5px;border-radius:999px;background:rgba(10,9,8,.9);border:1px solid rgba(244,238,222,.15);box-shadow:0 12px 28px rgba(0,0,0,.2);}
.product-view-toggle .view-btn{min-width:94px;border:0;background:transparent;color:#aaa28e;font-family:var(--font-mono);font-size:.7rem;letter-spacing:.09em;text-transform:uppercase;padding:9px 17px;border-radius:999px;transition:all .22s ease;}
.product-view-toggle .view-btn.active{background:var(--gold);color:var(--ink-deep);}
.selected-product-mini{margin-top:18px;padding:14px 17px;border:1px solid rgba(22,19,15,.1);border-radius:14px;background:rgba(255,255,255,.64);display:flex;align-items:center;justify-content:space-between;gap:12px;font-family:var(--font-mono);font-size:.7rem;color:#6b6656;text-transform:uppercase;letter-spacing:.05em;}
.selected-product-mini strong{display:block;color:var(--ink);font-family:var(--font-body);font-size:.95rem;text-transform:none;letter-spacing:0;margin-top:2px;}
.mini-label{display:block;font-size:.62rem;color:var(--red);margin-bottom:2px;}
.product-config{min-width:0;padding-top:4px;}
.product-price-row{display:flex;align-items:center;gap:12px;flex-wrap:wrap;margin-bottom:17px;}
.product-config .product-name{font-size:clamp(2rem,3.2vw,3rem);line-height:1.06;margin-bottom:10px;}
.product-config .product-desc{max-width:620px;margin-bottom:20px;}
.product-feature-row{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:30px;}
.product-feature-row .chip{font-size:.69rem;padding:.45rem .7rem;}
.config-block{padding:21px 0;border-top:1px solid rgba(22,19,15,.11);}
.config-heading{display:flex;align-items:center;gap:10px;margin-bottom:14px;}
.config-heading>span{width:27px;height:27px;display:grid;place-items:center;border-radius:50%;background:var(--ink);color:var(--gold-bright);font-family:var(--font-mono);font-size:.62rem;}
.config-heading .option-label{color:#5e594b;}
.config-heading .option-label strong{color:var(--ink);}
.product-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;}
.product-card{position:relative;text-align:left;border:1px solid rgba(22,19,15,.13);background:#fff;border-radius:15px;padding:8px;cursor:pointer;overflow:hidden;transition:transform .24s ease,border-color .24s ease,box-shadow .24s ease,background .24s ease;}
.product-card:hover{transform:translateY(-3px);border-color:var(--gold);box-shadow:0 14px 30px rgba(22,19,15,.09);}
.product-card.active{border-color:var(--red);box-shadow:0 0 0 2px rgba(138,36,34,.09),0 14px 30px rgba(22,19,15,.08);background:#fffdfa;}
.product-card-image{display:block;height:130px;border-radius:10px;overflow:hidden;background:#0a0a0a;}
.product-card-image img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .35s ease;}
.product-card:hover .product-card-image img{transform:scale(1.035);}
.product-card-info{display:flex;align-items:center;justify-content:space-between;gap:8px;padding:10px 4px 4px;}
.product-card-info strong{font-size:.78rem;line-height:1.2;}
.product-card-info small{font-family:var(--font-mono);font-size:.68rem;color:var(--red);white-space:nowrap;}
.product-selected-mark{position:absolute;top:13px;right:13px;width:25px;height:25px;border-radius:50%;display:grid;place-items:center;background:var(--red);color:#fff;font-size:.7rem;opacity:0;transform:scale(.7);transition:all .2s ease;}
.product-card.active .product-selected-mark{opacity:1;transform:scale(1);}
.product-swatches{gap:18px;}
.product-swatches .swatch{width:38px;height:38px;}
.product-swatches .swatch.disabled{opacity:.28;cursor:not-allowed;filter:grayscale(1);}
.product-swatches .swatch.disabled input{cursor:not-allowed;}
.size-row{gap:9px;}
.size-btn{width:55px;height:45px;}
.quantity-block{display:flex;align-items:center;gap:20px;flex-wrap:wrap;}
.quantity-block .config-heading{margin-bottom:0;margin-right:auto;}
.quantity-control{display:flex;align-items:center;border:1px solid rgba(22,19,15,.14);border-radius:12px;overflow:hidden;background:#fff;}
.quantity-control button{width:42px;height:42px;border:0;background:transparent;font-size:1.1rem;color:var(--ink);transition:background .2s ease;}
.quantity-control button:hover{background:#f2eee5;}
.quantity-control span{min-width:44px;text-align:center;font-family:var(--font-mono);font-size:.8rem;}
.quantity-total{font-family:var(--font-mono);font-size:.7rem;text-transform:uppercase;letter-spacing:.06em;color:#7b7565;}
.quantity-total strong{color:var(--ink);font-size:.95rem;margin-left:5px;}
.product-cta-row{display:grid;grid-template-columns:1fr 1.15fr;gap:12px;padding-top:24px;}
.product-cta-row .btn{min-height:54px;font-size:.72rem;letter-spacing:.08em;}
.product-order-btn{box-shadow:0 12px 25px rgba(138,36,34,.18);}
.order-trust{font-family:var(--font-mono);font-size:.64rem;letter-spacing:.035em;color:#8a8471;text-align:center;margin:13px 0 0;}
.order-trust i{color:var(--red);margin-right:4px;}
.product-toast{position:fixed;left:50%;bottom:30px;z-index:100;transform:translate(-50%,20px);background:var(--ink-deep);color:var(--parchment);border:1px solid rgba(244,238,222,.16);border-radius:999px;padding:12px 18px;font-family:var(--font-mono);font-size:.68rem;letter-spacing:.05em;opacity:0;pointer-events:none;transition:all .25s ease;box-shadow:0 15px 35px rgba(0,0,0,.25);}
.product-toast.show{opacity:1;transform:translate(-50%,0);}

.section-order{position:relative;background:var(--parchment);}
.order-section-heading{margin-bottom:34px;}
.order-direct-card{display:grid;grid-template-columns:minmax(0,1fr) minmax(360px,.75fr);gap:34px;background:#fff;border:1px solid rgba(22,19,15,.09);border-radius:22px;padding:22px;box-shadow:0 25px 70px rgba(22,19,15,.08);}
.order-direct-preview{min-height:430px;border-radius:16px;overflow:hidden;background:#0b0a09;display:flex;flex-direction:column;}
.order-direct-image-wrap{flex:1;min-height:390px;display:flex;align-items:center;justify-content:center;overflow:hidden;}
.order-direct-image-wrap img{width:100%;height:100%;max-height:520px;object-fit:contain;display:block;}
.order-direct-caption{padding:13px 17px;background:#0e0d0c;color:#b7ae98;font-family:var(--font-mono);font-size:.68rem;text-transform:uppercase;letter-spacing:.08em;}
.order-direct-caption span{color:var(--gold-bright);}
.order-direct-summary{padding:30px 26px;display:flex;flex-direction:column;justify-content:center;}
.order-direct-summary h3{font-size:2rem;margin:5px 0 22px;}
.order-summary-lines{border-top:1px solid rgba(22,19,15,.11);margin-bottom:24px;}
.order-summary-lines>div{display:flex;align-items:center;justify-content:space-between;gap:18px;padding:12px 0;border-bottom:1px solid rgba(22,19,15,.08);font-family:var(--font-mono);font-size:.7rem;}
.order-summary-lines span{color:#8a8471;text-transform:uppercase;letter-spacing:.05em;}
.order-summary-lines strong{color:var(--ink);font-family:var(--font-body);font-size:.83rem;text-align:right;}
.order-summary-lines .order-summary-total strong{font-family:var(--font-display);font-size:1.35rem;color:var(--red);}

.checkout-modal{position:fixed;inset:0;z-index:200;display:none;align-items:center;justify-content:center;padding:20px;}
.checkout-modal.open{display:flex;}
.checkout-backdrop{position:absolute;inset:0;background:rgba(5,5,4,.78);backdrop-filter:blur(7px);}
.checkout-dialog{position:relative;z-index:2;width:min(720px,100%);max-height:calc(600px - 40px);overflow:auto;background:var(--parchment);border:1px solid rgba(244,238,222,.16);border-radius:22px;padding:28px;box-shadow:0 35px 90px rgba(0,0,0,.5);animation:checkoutIn .22s ease both;}
@keyframes checkoutIn{from{opacity:0;transform:translateY(14px) scale(.98)}to{opacity:1;transform:none}}
.checkout-close{position:absolute;top:18px;right:18px;width:38px;height:38px;border:1px solid rgba(22,19,15,.14);background:#fff;border-radius:50%;color:var(--ink);z-index:3;}
.checkout-header{padding-right:48px;margin-bottom:20px;}
.checkout-header h3{font-size:clamp(1.7rem,3vw,2.3rem);margin:3px 0 7px;}
.checkout-header p{color:#716b5c;margin:0;line-height:1.6;font-size:.92rem;}
.checkout-summary{display:flex;align-items:center;gap:15px;background:#fff;border:1px solid rgba(22,19,15,.09);border-radius:14px;padding:10px;margin-bottom:20px;}
.checkout-summary img{width:86px;height:86px;object-fit:cover;border-radius:10px;background:#0a0a0a;}
.checkout-summary div{display:flex;flex-direction:column;gap:4px;min-width:0;}
.checkout-summary strong{font-size:.9rem;}
.checkout-summary span{font-family:var(--font-mono);font-size:.66rem;color:#77705f;text-transform:uppercase;letter-spacing:.05em;}
.checkout-summary b{font-family:var(--font-display);font-size:1.15rem;color:var(--red);}
.checkout-success{text-align:center;padding:28px 10px 10px;}
.checkout-success .thanks-icon{margin-bottom:14px;}
.checkout-success h3{font-size:2rem;margin:7px 0 10px;}
.order-number{display:inline-block;font-family:var(--font-mono);font-size:.72rem;letter-spacing:.07em;color:#756f60;background:#fff;border:1px solid rgba(22,19,15,.1);border-radius:999px;padding:8px 12px;margin-bottom:18px;}
.order-number strong{color:var(--red);}
.success-summary{display:grid;gap:6px;max-width:360px;margin:0 auto 22px;padding:16px;background:#fff;border:1px solid rgba(22,19,15,.1);border-radius:14px;font-family:var(--font-mono);font-size:.7rem;}
.success-summary span{color:#756f60;}
.success-summary strong{font-family:var(--font-display);font-size:1.35rem;color:var(--red);}

@media (max-width: 991.98px){
  .product-selector{grid-template-columns:1fr;gap:35px;}
  .product-preview-column{position:static;}
  .product-main-frame{min-height:560px;}
  .product-image-stage{min-height:520px;}
  .product-image-stage img{height:520px;}
  .order-direct-card{grid-template-columns:1fr;}
}
@media (max-width: 575.98px){
  .product-section-head{align-items:flex-start;flex-direction:column;margin-bottom:26px;}
  .product-cart-status{align-self:flex-start;}
  .product-selector{gap:24px;}
  .product-main-frame{min-height:370px;padding:10px;border-radius:16px;}
  .product-image-stage{min-height:350px;border-radius:11px;}
  .product-image-stage img{height:350px;}
  .zoom-label{font-size:.55rem;padding:6px 9px;bottom:12px;right:12px;}
  .product-view-toggle .view-btn{min-width:82px;padding:8px 12px;}
  .product-grid{gap:9px;}
  .product-card-image{height:100px;}
  .product-card-info{align-items:flex-start;flex-direction:column;gap:3px;}
  .product-card-info strong{font-size:.7rem;}
  .product-card-info small{font-size:.62rem;}
  .product-cta-row{grid-template-columns:1fr;}
  .quantity-block{gap:13px;}
  .quantity-block .config-heading{width:100%;margin-right:0;}
  .order-direct-card{padding:10px;gap:12px;border-radius:16px;}
  .order-direct-preview{min-height:320px;}
  .order-direct-image-wrap{min-height:285px;}
  .order-direct-summary{padding:22px 14px 15px;}
  .order-direct-summary h3{font-size:1.65rem;}
  .checkout-dialog{padding:22px 15px 16px;border-radius:17px;}
  .checkout-header{padding-right:35px;}
  .checkout-summary img{width:70px;height:70px;}
}
body.checkout-open{overflow:hidden;}
.section-order .form-label{margin-bottom:6px;}
.section-order .sutra-input:invalid:not(:placeholder-shown){border-color:rgba(138,36,34,.55);}
.section-order .was-validated .sutra-input:invalid{border-color:var(--red);}

/* =========================================================
   Compact product/order layout — scoped only to these sections
========================================================= */
.section-product,
.section-order{padding:15px 0;}
.section-product .product-topbar{display:flex;align-items:center;justify-content:space-between;gap:20px;margin-bottom:12px;}
.section-product .product-topbar .section-eyebrow{margin-bottom:2px;}
.section-product .product-topbar .section-title{font-size:clamp(1.55rem,2.4vw,2.2rem);}
.product-top-actions{display:flex;align-items:center;gap:12px;}
.product-top-actions .product-cart-status{white-space:nowrap;}
.top-order-btn{min-height:42px;padding:9px 17px;font-size:.68rem;}
.choose-product-bar{background:rgba(255,255,255,.55);border:1px solid rgba(22,19,15,.09);border-radius:15px;padding:10px;margin-bottom:15px;}
.choose-product-heading{margin:0 0 8px;}
.choose-product-heading>span{width:24px;height:24px;}
.choose-product-bar .product-grid{grid-template-columns:repeat(4,minmax(0,1fr));gap:9px;}
.choose-product-bar .product-card{display:grid;grid-template-columns:62px 1fr auto;align-items:center;gap:9px;padding:6px;border-radius:11px;min-width:0;}
.choose-product-bar .product-card-image{height:62px;border-radius:8px;}
.choose-product-bar .product-card-info{padding:3px 0;display:flex;flex-direction:column;align-items:flex-start;gap:3px;min-width:0;}
.choose-product-bar .product-card-info strong{font-size:.69rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:100%;}
.choose-product-bar .product-card-info small{font-size:.62rem;}
.choose-product-bar .product-selected-mark{width:20px;height:20px;top:7px;right:7px;font-size:.58rem;}
.section-product .product-selector{grid-template-columns:minmax(0,1.1fr) minmax(360px,.9fr);gap:22px;align-items:start;}
.section-product .product-main-frame{min-height:475px;padding:10px;}
.section-product .product-image-stage{min-height:455px;}
.section-product .product-image-stage img{height:455px;}
.section-product .product-feature-row{margin-bottom:15px;}
.section-product .config-block{padding:12px 0;}
.section-product .config-heading{margin-bottom:9px;}
.section-product .product-config .product-desc{margin-bottom:12px;}
.section-product .product-cta-row{padding-top:14px;}
.section-product .order-trust{margin-top:7px;}
.compact-order-heading{margin-bottom:12px;}
.section-order .order-direct-card{grid-template-columns:minmax(0,1fr) minmax(330px,.7fr);gap:20px;padding:12px;border-radius:16px;}
.section-order .order-direct-preview{min-height:300px;}
.section-order .order-direct-image-wrap{min-height:260px;}
.section-order .order-direct-summary{padding:18px 20px;}
.section-order .order-direct-summary h3{font-size:1.7rem;margin:4px 0 13px;}
.section-order .order-summary-lines{margin-bottom:15px;}
.section-order .order-summary-lines>div{padding:8px 0;}
@media(max-width:991.98px){
  .choose-product-bar .product-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
  .section-product .product-selector{grid-template-columns:1fr;}
  .section-product .product-main-frame{min-height:500px;}
  .section-product .product-image-stage{min-height:480px;}
  .section-product .product-image-stage img{height:480px;}
  .section-order .order-direct-card{grid-template-columns:1fr;}
}
@media(max-width:575.98px){
  .section-product .product-topbar{align-items:flex-start;flex-direction:column;margin-bottom:10px;}
  .product-top-actions{width:100%;justify-content:space-between;}
  .choose-product-bar .product-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
  .choose-product-bar .product-card{grid-template-columns:52px 1fr;padding:5px;}
  .choose-product-bar .product-card-image{height:52px;}
  .choose-product-bar .product-selected-mark{display:none;}
  .section-product .product-main-frame{min-height:370px;}
  .section-product .product-image-stage{min-height:350px;}
  .section-product .product-image-stage img{height:350px;}
  .section-product .product-cta-row{grid-template-columns:1fr 1fr;}
  .section-product .product-cta-row .btn{min-height:48px;padding:8px 10px;font-size:.62rem;}
  .section-order .order-direct-card{padding:9px;}
}
