/*
Theme Name: Norm Concept
Description: Custom theme for normconcept.com
Version: 1.0
*/
/* ============================================================
   NORM CONCEPT — Monochrome editorial furniture store
   Black & white. Hairlines. Big type. Real photography.
   ============================================================ */

:root {
  --ink: #0E0E0E;
  --paper: #FFFFFF;
  --bone: #F3F2EF;       /* warm-neutral off-white */
  --char: #131313;       /* dark sections */
  --line: #DCDBD6;       /* hairline */
  --line-dk: #2A2A2A;    /* hairline on dark */
  --mute: #8C8B85;
  --mute-dk: #9A988F;

  --pad: clamp(20px, 5vw, 64px);
  --maxw: 1480px;

  --sans: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --serif: 'Newsreader', Georgia, serif;

  --t-fast: .35s cubic-bezier(.22,.61,.36,1);
  --t: .6s cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01";
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
::selection { background: var(--ink); color: var(--paper); }

h1,h2,h3,h4 { font-weight: 400; line-height: 1; letter-spacing: -.02em; }
.serif-it { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: 0; }

/* labels / eyebrows */
.label {
  font-size: 11px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--mute);
}
.label-ink { color: var(--ink); }
.idx { font-variant-numeric: tabular-nums; }

.shell { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }

/* generic link with arrow underline */
.tlink {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  padding-bottom: 6px; border-bottom: 1px solid var(--ink); transition: gap var(--t-fast);
}
.tlink:hover { gap: 18px; }
.tlink svg { transition: transform var(--t-fast); }
.tlink:hover svg { transform: translateX(4px); }

/* square buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 56px; padding: 0 34px; background: var(--ink); color: var(--paper);
  font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  border: 1px solid var(--ink); transition: background var(--t-fast), color var(--t-fast);
}
.btn:hover { background: var(--paper); color: var(--ink); }
.btn-out { background: transparent; color: var(--ink); }
.btn-out:hover { background: var(--ink); color: var(--paper); }
.btn-block { width: 100%; }
.btn-pale { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn-pale:hover { background: transparent; color: var(--paper); }

/* ---------- Utility bar ---------- */
.util {
  background: var(--ink); color: var(--paper);
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  text-align: center; padding: 9px 16px; font-weight: 500;
}
.util span { opacity: .55; margin: 0 12px; }

/* ---------- Header ---------- */
.head {
  position: sticky; top: 0; z-index: 60; background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.head-in {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  height: 76px;
}
/* full-width header — content spans edge to edge, inner padding kept */
.head .shell.head-in { max-width: none; }
.wordmark {
  font-size: 19px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 9px; white-space: nowrap;
}
.wordmark b { width: 7px; height: 7px; background: var(--ink); display: inline-block; }
.mainnav { display: flex; gap: 38px; justify-self: center; }
.mnav-close { display: none; }
.mainnav a {
  font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  position: relative; padding: 8px 0; color: var(--ink);
}
.mainnav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0; background: var(--ink);
  transition: width var(--t-fast);
}
.mainnav a:hover::after { width: 100%; }
.head-act { display: flex; gap: 22px; justify-self: end; align-items: center; }
.head-act a, .head-act button {
  font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 7px;
}
.cart-n { font-variant-numeric: tabular-nums; }
.burger { display: none; }

/* ---------- Header icon buttons (search / account / cart) ---------- */
.hicon {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; color: var(--ink);
}
.hicon svg { display: block; transition: transform var(--t-fast), opacity var(--t-fast); }
.hicon:hover svg { transform: translateY(-1px) scale(1.06); opacity: .72; }
.cart-badge {
  position: absolute; top: -2px; right: -4px; min-width: 16px; height: 16px; padding: 0 3px;
  border-radius: 999px; background: var(--ink); color: var(--paper);
  font-size: 10px; font-weight: 700; line-height: 16px; text-align: center;
  font-variant-numeric: tabular-nums; transition: transform .25s var(--ease), opacity .2s;
}
.cart-badge[hidden] { display: none; }
.cart-badge.bump { animation: badgeBump .35s var(--ease); }
@keyframes badgeBump { 0% { transform: scale(1); } 40% { transform: scale(1.35); } 100% { transform: scale(1); } }

/* ---------- Hero ---------- */
.hero { border-bottom: 1px solid var(--line); position: relative; }
.hero-grid { display: grid; grid-template-columns: 1fr 0.92fr; min-height: min(82vh, 760px); }
.hero-l { display: flex; flex-direction: column; justify-content: space-between; padding: clamp(28px,4vw,60px) var(--pad) clamp(28px,4vw,60px) 0; }
.hero-top { display: flex; justify-content: space-between; align-items: baseline; }
.hero-h {
  font-size: clamp(44px, 6.6vw, 96px); line-height: .92; letter-spacing: -.035em;
  font-weight: 300; margin: clamp(18px,3.5vw,30px) 0;
}
.hero-h .serif-it { font-weight: 300; }
.hero-b { max-width: 42ch; display: flex; flex-direction: column; gap: 26px; align-items: flex-start; }
.hero-b p { font-size: clamp(15px,1.3vw,17px); color: #444; max-width: 40ch; }
.hero-r { position: relative; overflow: hidden; background: transparent; }
.hero-r img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.03); }
.hero-tag {
  position: absolute; left: 22px; bottom: 22px; color: var(--paper);
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase; font-weight: 600;
  mix-blend-mode: difference;
}

/* ---------- Marquee ---------- */
.marquee { background: var(--ink); color: var(--paper); overflow: hidden; border-bottom: 1px solid var(--ink); }
.marquee-track { display: flex; gap: 0; white-space: nowrap; animation: slide 32s linear infinite; }
.marquee-track span {
  font-size: 13px; letter-spacing: .2em; text-transform: uppercase; font-weight: 600;
  padding: 16px 0; display: inline-flex; align-items: center;
}
.marquee-track span::after { content: "—"; opacity: .4; margin: 0 34px; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- Section scaffold ---------- */
.sec { padding-block: clamp(64px, 9vw, 132px); }
.sec-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: clamp(36px,5vw,64px); }
.sec-head .h { display: flex; flex-direction: column; gap: 18px; }
.sec-head h2 { font-size: clamp(30px, 4.4vw, 60px); letter-spacing: -.03em; font-weight: 300; }
.sec-head h2 .serif-it { font-weight: 300; }

/* ---------- Product grid ---------- */
.pgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.pcard { background: var(--paper); padding: 0; position: relative; display: flex; flex-direction: column; }
.pcard .ph { position: relative; overflow: hidden; aspect-ratio: 4/5; background: #fff; }
.pcard .ph img { width: 100%; height: 100%; object-fit: contain; filter: contrast(1.03); transition: transform var(--t); }
.pcard:hover .ph img { transform: scale(1.045); }
.pcard .ph img.img1, .pcard .ph img.img2 { position: absolute; inset: 0; }
.pcard .ph img.img2 { opacity: 0; transition: opacity .5s var(--ease), transform var(--t); }
.pcard:hover .ph img.img2 { opacity: 1; }
.pcard .flag {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  background: var(--paper); color: var(--ink); padding: 6px 10px;
}
.pcard .flag.dark { background: var(--ink); color: var(--paper); }
.pcard .quick {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  background: var(--ink); color: var(--paper); text-align: center;
  font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  padding: 16px; transform: translateY(101%); transition: transform var(--t-fast);
}
.pcard .ph:hover .quick { transform: translateY(0); }
.pinfo { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding: 20px 20px 26px; }
.pinfo .nm { font-size: 16px; font-weight: 500; letter-spacing: -.01em; }
.pinfo .meta { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--mute); margin-top: 6px; }
.pinfo .pr { font-size: 15px; font-weight: 500; font-variant-numeric: tabular-nums; white-space: nowrap; }
.pinfo .pr s { color: var(--mute); margin-right: 8px; font-weight: 400; }

/* ---------- Editorial split ---------- */
.edit { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.edit-media { aspect-ratio: 1/1; overflow: hidden; background: var(--bone); }
.edit-media img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.03); }
.edit-body { display: flex; flex-direction: column; justify-content: center; gap: 30px; padding: clamp(40px,6vw,96px); }
.edit-body.pad-l { padding-left: clamp(40px,7vw,120px); }
.edit-body h2 { font-size: clamp(28px, 3.4vw, 50px); line-height: 1.04; font-weight: 300; letter-spacing: -.025em; }
.edit-body p { color: #4a4a4a; max-width: 44ch; font-size: 16px; }
.edit-dark { background: var(--char); color: var(--paper); }
.edit-dark h2, .edit-dark p { color: var(--paper); }
.edit-dark p { color: var(--mute-dk); }

/* ---------- Category tiles ---------- */
.cats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border-block: 1px solid var(--line); }
.cat { position: relative; overflow: hidden; aspect-ratio: 3/4; background: var(--bone); display: block; }
.cat img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.02) brightness(.92); transition: transform var(--t); }
.cat:hover img { transform: scale(1.05); }
.cat-cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 24px; color: var(--paper);
  display: flex; justify-content: space-between; align-items: center;
  text-shadow: 0 1px 12px rgba(0,0,0,.5);
}
.cat-cap .nm { font-size: clamp(18px,1.6vw,24px); font-weight: 500; letter-spacing: -.01em; }
.cat-cap .ar { font-size: 18px; transition: transform var(--t-fast); }
.cat:hover .cat-cap .ar { transform: translateX(5px); }
.cat::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 38%, rgba(0,0,0,.28) 70%, rgba(0,0,0,.7)); }
.cat-cap { position: relative; z-index: 1; }

/* ---------- Category collage (white float, editorial) ---------- */
.cc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px,3vw,48px); align-items: start; }
.cc-item { display: block; }
.cc-item.cc-down { margin-top: clamp(40px,8vw,130px); }
.cc-img { aspect-ratio: 4/5; display: grid; place-items: center; padding: clamp(14px,2.4vw,38px); }
.cc-img img { max-width: 100%; max-height: 100%; object-fit: contain; filter: contrast(1.04) drop-shadow(0 26px 34px rgba(0,0,0,.17)); transition: transform .65s var(--ease); will-change: transform; }
.cc-item:hover .cc-img img { transform: scale(1.05) translateY(-7px); }
.cc-cap { padding: 10px 4px 0; display: flex; flex-direction: column; gap: 16px; }
.cc-cap h3 { font-size: clamp(21px,1.75vw,28px); font-weight: 400; letter-spacing: -.015em; line-height: 1.12; max-width: 15ch; }
.cc-cap .shop { font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; border-bottom: 1px solid var(--ink); padding-bottom: 6px; align-self: flex-start; transition: letter-spacing .3s var(--ease); }
.cc-item:hover .cc-cap .shop { letter-spacing: .24em; }
@media (max-width: 860px) { .cc-grid { grid-template-columns: 1fr 1fr; } .cc-item.cc-down { margin-top: 0; } }
@media (max-width: 520px) { .cc-grid { grid-template-columns: 1fr; gap: 12px; } .cc-img { aspect-ratio: 1/1; } }

/* ---------- Lookbook band ---------- */
.look { position: relative; min-height: 78vh; display: flex; align-items: flex-end; overflow: hidden; }
.look img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: contrast(1.04) brightness(.78); }
.look-in { position: relative; z-index: 1; color: var(--paper); padding: clamp(40px,7vw,110px) var(--pad); max-width: 900px; display: flex; flex-direction: column; gap: 30px; align-items: flex-start; }
.look-in h2 { font-size: clamp(30px,4.6vw,68px); line-height: 1.02; font-weight: 300; letter-spacing: -.03em; }
.look-in .tlink { border-color: var(--paper); color: var(--paper); }

/* ---------- Values row ---------- */
.vals { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--ink); }
.val { padding: 40px 28px 48px; border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: 16px; }
.val:last-child { border-right: none; }
.val .n { font-size: 12px; font-weight: 700; letter-spacing: .1em; font-variant-numeric: tabular-nums; }
.val h4 { font-size: 19px; font-weight: 500; letter-spacing: -.01em; }
.val p { font-size: 14px; color: var(--mute); }

/* ---------- Newsletter ---------- */
.news { background: var(--char); color: var(--paper); }
.news-in { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 22px; max-width: 620px; margin-inline: auto; padding-block: clamp(64px,8vw,120px); }
.news-in .label { color: var(--mute-dk); }
.news h2 { font-size: clamp(30px,4vw,54px); font-weight: 300; letter-spacing: -.03em; }
.news h2 .serif-it { font-weight: 300; }
.nform { display: flex; flex-direction: column; gap: 16px; width: 100%; max-width: 460px; margin-top: 6px; }
.nrow { display: flex; align-items: center; border-bottom: 1px solid #3a3a3a; }
.nrow input {
  flex: 1; background: none; border: none; outline: none; color: var(--paper);
  font-family: var(--sans); font-size: 17px; padding: 14px 0; letter-spacing: .01em;
}
.nrow input::placeholder { color: #6f6e68; }
.nrow button { font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; padding: 14px 0 14px 20px; white-space: nowrap; }
.news small { color: #8f8e86; font-size: 12px; letter-spacing: .04em; }

/* ---------- Footer ---------- */
.foot { background: var(--ink); color: var(--paper); padding-top: clamp(56px,7vw,96px); }
.foot-word { font-size: clamp(23px,5.5vw,80px); font-weight: 700; letter-spacing: -.02em; line-height: .82; text-transform: uppercase; padding-bottom: 32px; border-bottom: 1px solid var(--line-dk); }
.foot-cols { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-block: 56px; }
.foot-cols h5 { font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--mute-dk); margin-bottom: 22px; }
.foot-cols ul { list-style: none; display: grid; gap: 12px; }
.foot-cols a, .foot-cols li { font-size: 14px; color: #c9c8c2; }
.foot-cols a:hover { color: var(--paper); }
.foot-intro { font-size: 15px; color: #c9c8c2; max-width: 34ch; line-height: 1.7; }
.foot-bot { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; padding-block: 28px; border-top: 1px solid var(--line-dk); font-size: 12px; letter-spacing: .04em; color: var(--mute-dk); }
.foot-bot .pay { display: flex; gap: 18px; }
.foot-bot .pay span { letter-spacing: .12em; }

/* ---------- PDP (product.html) ---------- */
.crumb { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--mute); padding: 26px 0; }
.crumb a:hover { color: var(--ink); }
.pdp { display: grid; grid-template-columns: 1.15fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.pdp-gal { background: var(--paper); display: grid; grid-template-columns: 1fr 1fr; gap: 1px; }
.pdp-gal .g { background: var(--bone); aspect-ratio: 4/5; overflow: hidden; }
.pdp-gal .g.tall { grid-column: 1 / -1; aspect-ratio: 16/12; }
.pdp-gal img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.03); }

/* clickable gallery: big image + thumbnail row */
.pdp-gal2 { background: var(--paper); }
.pdp-main { aspect-ratio: 4/5; background: var(--bone); overflow: hidden; }
.pdp-main img { width: 100%; height: 100%; object-fit: contain; background: #fff; filter: contrast(1.03); transition: opacity .3s var(--ease); }
.pdp-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border-top: 1px solid var(--line); }
.pdp-thumbs button { aspect-ratio: 1/1; background: var(--bone); overflow: hidden; padding: 0; border: 2px solid transparent; }
.pdp-thumbs button img { width: 100%; height: 100%; object-fit: contain; background: #fff; filter: contrast(1.03); opacity: .68; transition: opacity .2s; }
.pdp-thumbs button.on img, .pdp-thumbs button:hover img { opacity: 1; }
.pdp-thumbs button.on { border-color: var(--ink); }
.pdp-stock { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin: 8px 0 0; }
.pdp-stock.out { color: #b4432f; }
.pdp-stock.in { color: #3b6d4a; }
.pdp-sku { font-size: 12px; color: var(--mute); margin-top: 6px; }
.btn[disabled] { opacity: .45; cursor: not-allowed; }
.btn[disabled]:hover { background: var(--ink); color: var(--paper); }

/* sold-out flag on cards */
.pcard.is-out .ph::after { content: ""; position: absolute; inset: 0; background: rgba(255,255,255,.5); z-index: 1; }
.pcard.is-out .flag.sold { background: var(--ink); color: var(--paper); }
.pcard .flag.sold { top: 16px; right: 16px; left: auto; }
.pdp-side { background: var(--paper); padding: clamp(28px,3.5vw,56px); position: sticky; top: 76px; align-self: start; }
.pdp-side h1 { font-size: clamp(30px,3.4vw,46px); font-weight: 300; letter-spacing: -.025em; margin: 16px 0 18px; line-height: 1; }
.pdp-price { display: flex; align-items: baseline; gap: 14px; font-size: 20px; font-weight: 500; font-variant-numeric: tabular-nums; }
.pdp-price s { color: var(--mute); font-weight: 400; font-size: 16px; }
.pdp-desc { color: #4a4a4a; margin: 24px 0; max-width: 46ch; }
.opt { margin: 26px 0; }
.opt .ol { font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--ink); margin-bottom: 14px; display: flex; justify-content: space-between; }
.opt .ol span { color: var(--mute); }
.swl { display: flex; gap: 10px; }
.swl button { width: 42px; height: 42px; border: 1px solid var(--line); padding: 3px; }
.swl button i { display: block; width: 100%; height: 100%; }
.swl button.on { border-color: var(--ink); }
.sizes { display: flex; gap: 8px; flex-wrap: wrap; }
.sizes button { min-width: 52px; height: 44px; padding: 0 14px; border: 1px solid var(--line); font-size: 13px; letter-spacing: .04em; }
.sizes button.on { border-color: var(--ink); background: var(--ink); color: var(--paper); }
.buy { display: flex; gap: 1px; margin: 30px 0 14px; background: var(--line); border: 1px solid var(--line); }
.qty { display: flex; align-items: center; background: var(--paper); }
.qty button { width: 52px; height: 56px; font-size: 18px; }
.qty span { width: 40px; text-align: center; font-variant-numeric: tabular-nums; font-weight: 500; }
.acc details { border-top: 1px solid var(--line); }
.acc details:last-child { border-bottom: 1px solid var(--line); }
.acc summary { list-style: none; cursor: pointer; padding: 22px 0; display: flex; justify-content: space-between; align-items: center; font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.acc summary::-webkit-details-marker { display: none; }
.acc .sign { font-size: 18px; transition: transform var(--t-fast); }
.acc details[open] .sign { transform: rotate(45deg); }
.acc .ac { padding: 0 0 24px; color: #555; font-size: 15px; max-width: 52ch; }
.acc .ac .spec { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--line); }
.acc .ac .spec:last-child { border: none; }
.acc .ac .spec span { color: var(--mute); }
.pdp-trust { display: flex; gap: 26px; margin-top: 22px; flex-wrap: wrap; }
.pdp-trust div { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--mute); }

/* ---------- Reveal on scroll (progressive enhancement) ---------- */
.js .rv { opacity: 0; transform: translateY(24px); transition: opacity 1s ease, transform 1s cubic-bezier(.16,1,.3,1); }
.js .rv.in { opacity: 1; transform: none; }

/* ============================================================
   MOTION SYSTEM
   ============================================================ */
:root { --ease: cubic-bezier(.16,1,.3,1); }

/* intro loader curtain (CSS-timed, no JS dependency) */
.loader {
  position: fixed; inset: 0; z-index: 200; background: var(--ink);
  display: grid; place-items: center;
  animation: introOut .9s cubic-bezier(.76,0,.24,1) forwards 1s;
}
.loader .lw {
  overflow: hidden; color: var(--paper);
  font-size: clamp(20px,3.4vw,40px); font-weight: 700; letter-spacing: .26em; text-transform: uppercase;
}
.loader .lw span { display: inline-block; transform: translateY(110%); animation: lineUp .9s var(--ease) forwards .15s; }
.loader .lbar { position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--paper); animation: lbar 1s ease forwards .1s; }
@keyframes introOut { to { transform: translateY(-101%); visibility: hidden; } }
@keyframes lbar { to { width: 100%; } }
body.loading { overflow: hidden; }

/* hero line-mask reveal (pure CSS, plays after curtain) */
.hero-h .line { display: block; overflow: hidden; }
.hero-h .line > span { display: block; transform: translateY(115%); animation: lineUp 1.05s var(--ease) forwards; }
.hero-h .line:nth-child(1) > span { animation-delay: 1.02s; }
.hero-h .line:nth-child(2) > span { animation-delay: 1.14s; }
.hero-h .line:nth-child(3) > span { animation-delay: 1.26s; }
@keyframes lineUp { to { transform: none; } }

.hero-l .hero-top { animation: fadeUp .9s var(--ease) both .95s; }
.hero-l .hero-b   { animation: fadeUp 1s var(--ease) both 1.45s; }
.hero-r img { animation: heroImg 1.7s var(--ease) both 1s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes heroImg { from { transform: scale(1.16); } to { transform: scale(1); } }

/* image clip-wipe reveal (added via JS) */
.js .reveal-img { clip-path: inset(0 0 100% 0); }
.js .reveal-img.in { clip-path: inset(0 0 0% 0); transition: clip-path 1.15s var(--ease); }
.js .reveal-img img { transform: scale(1.14); transition: transform 1.5s var(--ease); }
.js .reveal-img.in img { transform: scale(1); }

/* lookbook parallax frame */
.look img { top: -12%; height: 124%; will-change: transform; }

/* header hide on scroll-down / show on up + blur when scrolled */
.head { transition: transform .45s var(--ease), background .3s ease, border-color .3s ease; }
.head.hide { transform: translateY(-100%); }
.head.scrolled { background: rgba(251,248,243,0); }
.head.scrolled { background: rgba(255,255,255,.72); backdrop-filter: saturate(140%) blur(12px); }

/* marquee pause on hover */
.marquee:hover .marquee-track { animation-play-state: paused; }

/* product card subtle lift */
.pcard { transition: transform .5s var(--ease); }
.pgrid:hover .pcard:not(:hover) { opacity: .62; }
.pgrid .pcard { transition: transform .5s var(--ease), opacity .4s ease; }

/* magnetic links keep transition */
.tlink, .btn { will-change: transform; }

/* respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .loader { display: none !important; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-delay: 0s !important; transition-duration: .001ms !important; }
  .js .reveal-img { clip-path: none !important; }
  .hero-h .line > span { transform: none !important; }
  .hero-r { clip-path: none !important; }
  .hero-r-media { animation: none !important; }
  .hero-grain, .hero-sheen, .tw-caret { display: none !important; }
}

/* ============================================================
   HERO ENHANCEMENTS — reveal + living image (loop)
   ============================================================ */
.hero-r { animation: heroReveal 1.4s var(--ease) both 1s; overflow: hidden; }
@keyframes heroReveal { from { clip-path: inset(0 0 100% 0); } to { clip-path: inset(0 0 0 0); } }

/* gentle chair sway — soft glide-rock, bottom-anchored (transparent cutout) */
.hero-r-media { position: absolute; inset: 0; padding: clamp(24px,4vw,64px); animation: heroSway 4.5s ease-in-out infinite; transform-origin: 50% 96%; will-change: transform; }
.hero-r-media img { width: 100%; height: 100%; object-fit: contain; object-position: center; filter: contrast(1.04) drop-shadow(0 30px 40px rgba(0,0,0,.14)); transition: transform .6s ease-out; will-change: transform; }
@keyframes heroSway { 0%, 100% { transform: rotate(-1.1deg) scale(1.015); } 50% { transform: rotate(1.1deg) scale(1.03); } }

/* animated film grain */
.hero-grain {
  position: absolute; inset: -20%; z-index: 1; pointer-events: none; opacity: .10; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px; animation: grain 1.1s steps(6) infinite;
}
@keyframes grain { 0%{transform:translate(0,0)} 20%{transform:translate(-6%,4%)} 40%{transform:translate(5%,-5%)} 60%{transform:translate(-4%,6%)} 80%{transform:translate(6%,2%)} 100%{transform:translate(0,0)} }

/* occasional light sweep */
.hero-sheen {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(115deg, transparent 38%, rgba(255,255,255,.16) 50%, transparent 62%);
  transform: translateX(-130%); animation: sheen 8s ease-in-out infinite;
}
@keyframes sheen { 0%,70% { transform: translateX(-130%); } 86%,100% { transform: translateX(130%); } }

.hero-tag { z-index: 3; animation: fadeUp 1s var(--ease) both 1.8s; }

/* ── WP-ported rich hero: ghost type + halo + signature card + trust badges ── */
/* giant ghost word behind the chair (Newsreader italic, very faint, demo palette) */
.hero-ghost {
  position: absolute; right: -4%; top: 50%; transform: translateY(-50%);
  z-index: 0; pointer-events: none; user-select: none; white-space: nowrap;
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(11rem, 26vw, 30rem); line-height: .8; letter-spacing: -.04em;
  color: var(--line); opacity: .55;
  animation: fadeUp 1.2s var(--ease) both 1.2s;
}
/* soft grounding halo behind chair */
.hero-halo {
  position: absolute; inset: 8% 4% 10%; z-index: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 56% at 52% 48%, rgba(140,139,133,.22) 0%, rgba(140,139,133,.07) 46%, transparent 72%);
  filter: blur(6px);
}
.hero-r-media { z-index: 2; }
.hero-slide { z-index: 2; }

/* floating "signature model" card — white, demo type */
.hero-card {
  position: absolute; left: -2%; bottom: clamp(20px,7vw,64px); z-index: 4;
  display: grid; gap: 3px; padding: 15px 20px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(12px);
  border: 1px solid var(--line); box-shadow: 0 20px 48px rgba(14,14,14,.14);
  animation: floatCard 5.5s ease-in-out infinite, fadeUp 1s var(--ease) both 1.8s;
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.hero-card:hover { box-shadow: 0 26px 56px rgba(14,14,14,.2); }
@keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.hero-card-kicker { font-size: 9px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--mute); }
.hero-card strong { font-family: var(--serif); font-style: italic; font-size: 1.2rem; font-weight: 500; color: var(--ink); letter-spacing: -.01em; }
.hero-card em { font-style: normal; font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--mute); }

/* trust badges under the left copy */
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 8px 10px; list-style: none; margin-top: 4px;
}
.hero-badges li {
  font-size: 10px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--mute);
  padding: 6px 13px; border: 1px solid var(--line); border-radius: 999px; background: var(--paper);
}

/* typewriter caret */
.tw-caret { display: inline-block; width: .045em; min-width: 3px; height: .78em; background: var(--ink); margin-left: .08em; vertical-align: baseline; transform: translateY(.06em); animation: caret 1.05s steps(1) infinite; }
@keyframes caret { 50% { opacity: 0; } }
#twWord { white-space: nowrap; }

/* scroll cue */
.hero-cue {
  position: absolute; left: var(--pad); bottom: 26px; display: flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--mute);
  animation: fadeUp 1s var(--ease) both 2s;
}
.hero-cue .ln { width: 46px; height: 1px; background: var(--ink); position: relative; overflow: hidden; opacity: .5; }
.hero-cue .ln::after { content: ""; position: absolute; inset: 0; width: 40%; background: var(--paper); animation: cue 1.8s var(--ease) infinite; }
@keyframes cue { 0% { transform: translateX(-120%);} 60%,100% { transform: translateX(320%);} }

/* ============================================================
   HEADER — mega menu
   ============================================================ */
.mainnav a.has-mega::after { display: none; }
.mega {
  position: absolute; left: 0; right: 0; top: 100%;
  background: var(--paper); border-bottom: 1px solid var(--line);
  padding: 0; opacity: 0; visibility: hidden; transform: translateY(-10px);
  transition: opacity .3s var(--ease), transform .35s var(--ease), visibility .3s;
  z-index: 55; box-shadow: 0 24px 40px rgba(0,0,0,.05);
}
.mega.open { opacity: 1; visibility: visible; transform: none; }
.mega-in { max-width: var(--maxw); margin: 0 auto; padding: 40px var(--pad) 48px; display: grid; grid-template-columns: 1fr 1fr 1.3fr; gap: 40px; }
.mega-col h6 { font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--mute); margin-bottom: 18px; }
.mega-col a { display: block; font-size: 17px; font-weight: 500; padding: 7px 0; color: var(--ink); transition: padding .25s var(--ease), opacity .2s; }
.mega-col a:hover { padding-left: 10px; }
.mega-feat { display: flex; gap: 16px; align-items: center; }
.mega-feat .mf-img { width: 116px; height: 140px; flex: none; overflow: hidden; background: var(--bone); }
.mega-feat .mf-img img { width: 100%; height: 100%; object-fit: contain; background: #fff; filter: contrast(1.03); }
.mega-feat .mf-b .label { display: block; margin-bottom: 8px; }
.mega-feat .mf-b .t { font-size: 18px; font-weight: 500; }
.mega-feat .mf-b .p { font-variant-numeric: tabular-nums; margin: 4px 0 14px; }

/* ============================================================
   SEARCH OVERLAY
   ============================================================ */
.search-ov {
  position: fixed; inset: 0; z-index: 130; background: rgba(251,250,248,.97); backdrop-filter: saturate(140%) blur(14px);
  opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s;
}
.search-ov.open { opacity: 1; visibility: visible; }
.search-in { max-width: 920px; margin: 0 auto; padding: clamp(60px,12vh,140px) var(--pad) 40px; }
.search-row { display: flex; align-items: center; gap: 18px; border-bottom: 1px solid var(--ink); padding-bottom: 16px; }
.search-row svg { flex: none; color: var(--ink); }
.search-row input {
  flex: 1; border: none; outline: none; background: none; font-family: var(--sans);
  font-size: clamp(22px,3vw,34px); font-weight: 300; letter-spacing: -.02em; color: var(--ink);
}
.search-row input::placeholder { color: var(--mute); }
.search-close { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; flex: none; }
.search-chips { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.search-chips button { border: 1px solid var(--line); padding: 9px 16px; border-radius: 999px; font-size: 13px; transition: border-color .2s, background .2s; }
.search-chips button:hover { border-color: var(--ink); background: var(--ink); color: var(--paper); }
.search-results { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 36px; }
.sr-card { display: block; }
.sr-card .sr-img { aspect-ratio: 1/1; background: var(--bone); overflow: hidden; }
.sr-card .sr-img img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.03); transition: transform .5s var(--ease); }
.sr-card:hover .sr-img img { transform: scale(1.05); }
.sr-card .sr-b { display: flex; justify-content: space-between; padding-top: 12px; font-size: 14px; }
.sr-card .sr-b .pr { font-variant-numeric: tabular-nums; }
.search-empty { margin-top: 36px; color: var(--mute); font-size: 15px; }

/* ============================================================
   CART DRAWER
   ============================================================ */
.scrim { position: fixed; inset: 0; z-index: 139; background: rgba(15,15,15,.42); opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s; }
.scrim.open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(440px, 92vw); z-index: 140;
  background: var(--paper); transform: translateX(100%); transition: transform .5s var(--ease);
  display: flex; flex-direction: column; box-shadow: -20px 0 60px rgba(0,0,0,.12);
}
.drawer.open { transform: none; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 24px var(--pad-d, 28px); border-bottom: 1px solid var(--line); }
.drawer-head h3 { font-family: var(--sans); font-size: 13px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.drawer-head button { font-size: 13px; letter-spacing: .1em; text-transform: uppercase; }
.ship-bar { padding: 16px 28px; border-bottom: 1px solid var(--line); font-size: 12px; letter-spacing: .04em; color: var(--ink-soft); }
.ship-bar .track { height: 3px; background: var(--line); margin-top: 10px; position: relative; overflow: hidden; }
.ship-bar .fill { position: absolute; inset: 0; right: auto; background: var(--ink); width: 0; transition: width .5s var(--ease); }
.drawer-items { flex: 1; overflow-y: auto; padding: 8px 28px; }
.ci { display: flex; gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--line-soft); }
.ci-img { width: 78px; height: 92px; flex: none; background: var(--bone); overflow: hidden; }
.ci-img img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.03); }
.ci-b { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.ci-b .nm { font-size: 15px; font-weight: 500; }
.ci-b .meta { font-size: 12px; color: var(--mute); }
.ci-b .row { margin-top: auto; display: flex; justify-content: space-between; align-items: center; }
.ci-qty { display: inline-flex; align-items: center; border: 1px solid var(--line); }
.ci-qty button { width: 30px; height: 30px; font-size: 15px; }
.ci-qty span { width: 30px; text-align: center; font-size: 13px; font-variant-numeric: tabular-nums; }
.ci-pr { font-size: 14px; font-variant-numeric: tabular-nums; }
.ci-rm { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--mute); }
.ci-rm:hover { color: var(--ink); }
.cart-empty { padding: 60px 28px; text-align: center; color: var(--mute); }
.cart-empty p { margin-bottom: 22px; font-size: 15px; }
.drawer-foot { padding: 22px 28px 28px; border-top: 1px solid var(--line); }
.drawer-foot .sub { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px; }
.drawer-foot .sub .l { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--mute); }
.drawer-foot .sub .v { font-size: 22px; font-weight: 500; font-variant-numeric: tabular-nums; }
.drawer-foot small { color: var(--mute); font-size: 12px; display: block; margin-bottom: 18px; }

/* ============================================================
   AI CONCIERGE
   ============================================================ */
.ai-fab {
  position: fixed; right: 26px; bottom: 26px; z-index: 118;
  height: 56px; padding: 0 22px 0 18px; border-radius: 999px; background: var(--ink); color: var(--paper);
  display: inline-flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; letter-spacing: .06em;
  box-shadow: 0 12px 30px rgba(0,0,0,.22); transition: transform .3s var(--ease), opacity .3s;
}
.ai-fab:hover { transform: translateY(-3px); }
.ai-fab .pulse { width: 8px; height: 8px; border-radius: 50%; background: #fff; position: relative; }
.ai-fab .pulse::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; border: 1px solid rgba(255,255,255,.6); animation: pulse 1.8s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(.6); opacity: 1; } 100% { transform: scale(1.6); opacity: 0; } }
.ai-fab.hidden { opacity: 0; visibility: hidden; transform: scale(.8); }

.ai-panel {
  position: fixed; right: 26px; bottom: 26px; z-index: 119; width: min(380px, 92vw); height: min(560px, 78vh);
  background: var(--paper); border: 1px solid var(--line); display: flex; flex-direction: column;
  opacity: 0; visibility: hidden; transform: translateY(20px) scale(.98); transform-origin: bottom right;
  transition: opacity .3s var(--ease), transform .35s var(--ease), visibility .3s; box-shadow: 0 30px 70px rgba(0,0,0,.22);
}
.ai-panel.open { opacity: 1; visibility: visible; transform: none; }
.ai-head { display: flex; align-items: center; gap: 12px; padding: 18px 20px; border-bottom: 1px solid var(--line); }
.ai-head .av { width: 38px; height: 38px; border-radius: 50%; background: var(--ink); color: var(--paper); display: grid; place-items: center; flex: none; font-family: var(--serif); font-style: italic; font-size: 18px; }
.ai-head .ti { flex: 1; }
.ai-head .ti b { display: block; font-size: 14px; font-weight: 600; }
.ai-head .ti span { font-size: 11px; color: var(--sage); display: inline-flex; align-items: center; gap: 5px; }
.ai-head .ti span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--sage); }
.ai-head .x { font-size: 20px; color: var(--mute); }
.ai-msgs { flex: 1; overflow-y: auto; padding: 20px; display: flex; flex-direction: column; gap: 14px; }
.ai-msg { max-width: 84%; font-size: 14px; line-height: 1.55; padding: 12px 15px; }
.ai-msg.bot { background: var(--bone); color: var(--ink); align-self: flex-start; border-radius: 2px 14px 14px 14px; }
.ai-msg.user { background: var(--ink); color: var(--paper); align-self: flex-end; border-radius: 14px 2px 14px 14px; }
.ai-msg b { font-weight: 600; }
.ai-typing { align-self: flex-start; display: inline-flex; gap: 5px; padding: 14px 16px; background: var(--bone); border-radius: 2px 14px 14px 14px; }
.ai-typing i { width: 6px; height: 6px; border-radius: 50%; background: var(--mute); animation: blink 1.2s infinite; }
.ai-typing i:nth-child(2){ animation-delay: .2s; } .ai-typing i:nth-child(3){ animation-delay: .4s; }
@keyframes blink { 0%,60%,100% { opacity: .25; } 30% { opacity: 1; } }
.ai-chips { display: flex; gap: 8px; flex-wrap: wrap; padding: 0 20px 14px; }
.ai-chips button { border: 1px solid var(--line); padding: 8px 13px; border-radius: 999px; font-size: 12px; text-align: left; transition: border-color .2s, background .2s, color .2s; }
.ai-chips button:hover { border-color: var(--ink); background: var(--ink); color: var(--paper); }
.ai-input { display: flex; align-items: center; border-top: 1px solid var(--line); }
.ai-input input { flex: 1; border: none; outline: none; background: none; font-family: var(--sans); font-size: 14px; padding: 16px 20px; }
.ai-input button { padding: 16px 20px; font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

@media (hover: none), (pointer: coarse) { .ai-fab { right: 16px; bottom: 16px; } }
@media (max-width: 560px) { .ai-panel { right: 0; bottom: 0; width: 100vw; height: 86vh; } }

@media (prefers-reduced-motion: reduce) {
  .hero-cue .ln::after, .ai-fab .pulse::after { animation: none !important; }
}

/* ============================================================
   SUB-PAGES — shared page head
   ============================================================ */
.page-head { padding: clamp(36px,6vw,72px) 0 clamp(26px,3.5vw,40px); }
.page-head .crumb { padding: 0 0 20px; }
.page-head .ph-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }
.page-head h1 { font-size: clamp(40px,7vw,88px); font-weight: 300; letter-spacing: -.035em; line-height: .94; }
.page-head h1 .serif-it { font-weight: 300; }
.page-head .lead { color: var(--ink-soft); max-width: 48ch; margin-top: 18px; font-size: 16px; }

/* ---------- Shop filters ---------- */
.filters { position: sticky; top: 75px; z-index: 40; background: var(--paper); border-block: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 15px 0; flex-wrap: wrap; }
.filt-cats { display: flex; gap: 8px; flex-wrap: wrap; }
.filt-cats button { padding: 9px 17px; border: 1px solid var(--line); border-radius: 999px; font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; transition: background .2s, color .2s, border-color .2s; }
.filt-cats button:hover { border-color: var(--ink); }
.filt-cats button.on { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.filt-right { display: flex; align-items: center; gap: 20px; }
.filt-count { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--mute); }
.filt-sort select {
  border: 1px solid var(--line); padding: 10px 34px 10px 15px; font-family: var(--sans);
  font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--ink);
  -webkit-appearance: none; appearance: none; border-radius: 0; cursor: pointer; background-color: var(--paper);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6'><path d='M1 1l4 4 4-4' fill='none' stroke='black' stroke-width='1.3'/></svg>");
  background-repeat: no-repeat; background-position: right 13px center;
}
.shop-grid { margin-top: 0; border-top: none; }
.shop-empty { padding: 80px 0; text-align: center; color: var(--mute); }

/* ---------- Cart page ---------- */
.cart-wrap { display: grid; grid-template-columns: 1.6fr 1fr; gap: clamp(30px,5vw,72px); padding-block: clamp(36px,5vw,72px); align-items: start; }
.cart-lines { border-top: 1px solid var(--line); }
.cart-line { display: grid; grid-template-columns: 104px 1fr auto; gap: 22px; padding: 26px 0; border-bottom: 1px solid var(--line); align-items: start; }
.cart-line .cl-img { aspect-ratio: 4/5; background: var(--bone); overflow: hidden; }
.cart-line .cl-img img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.03); }
.cl-info { display: flex; flex-direction: column; gap: 8px; }
.cl-info .nm { font-size: 18px; font-weight: 500; letter-spacing: -.01em; }
.cl-info .meta { font-size: 13px; color: var(--mute); }
.cl-info .ci-qty { margin-top: 8px; }
.cl-info .rm { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--mute); margin-top: 12px; align-self: flex-start; }
.cl-info .rm:hover { color: var(--ink); }
.cl-price { font-size: 16px; font-variant-numeric: tabular-nums; white-space: nowrap; }
.cart-aside { border: 1px solid var(--line); padding: clamp(24px,3vw,34px); position: sticky; top: 110px; }
.cart-aside h3 { font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 20px; }
.sum-row { display: flex; justify-content: space-between; align-items: baseline; padding: 11px 0; font-size: 14px; color: var(--ink-soft); }
.sum-row .v { color: var(--ink); font-variant-numeric: tabular-nums; }
.sum-row.total { border-top: 1px solid var(--line); margin-top: 10px; padding-top: 18px; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--mute); }
.sum-row.total .v { font-size: 24px; font-weight: 500; letter-spacing: 0; }
.cart-aside .btn { margin-top: 22px; }
.cart-aside .note { font-size: 12px; color: var(--mute); margin-top: 14px; display: flex; gap: 8px; align-items: center; }
.empty-state { text-align: center; padding: clamp(60px,12vw,140px) 0; }
.empty-state h2 { font-size: clamp(28px,4vw,46px); font-weight: 300; margin-bottom: 14px; }
.empty-state p { color: var(--mute); margin-bottom: 28px; }

/* checkout */
.checkout-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(30px,5vw,72px); padding-block: clamp(36px,5vw,64px); align-items: start; }
.co-block { margin-bottom: 38px; }
.co-block h3 { font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 20px; display: flex; gap: 12px; align-items: center; }
.co-block h3 .n { width: 24px; height: 24px; border: 1px solid var(--ink); border-radius: 50%; display: grid; place-items: center; font-size: 11px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--mute); margin-bottom: 7px; }
.field input { width: 100%; border: 1px solid var(--line); padding: 14px 16px; font-family: var(--sans); font-size: 15px; background: var(--paper); border-radius: 0; }
.field input:focus { outline: none; border-color: var(--ink); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.co-summary { border: 1px solid var(--line); padding: clamp(24px,3vw,32px); position: sticky; top: 110px; }
.co-mini { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line-soft); }
.co-mini .m-img { width: 56px; height: 66px; background: var(--bone); overflow: hidden; flex: none; }
.co-mini .m-img img { width: 100%; height: 100%; object-fit: cover; }
.co-mini .m-b { flex: 1; font-size: 13px; }
.co-mini .m-b .nm { font-weight: 500; }
.co-mini .m-b .meta { color: var(--mute); font-size: 12px; }
.co-mini .m-pr { font-size: 13px; font-variant-numeric: tabular-nums; }
.confirm { text-align: center; padding: clamp(60px,12vw,150px) 0; max-width: 560px; margin: 0 auto; }
.confirm .tick { width: 64px; height: 64px; border-radius: 50%; background: var(--ink); color: var(--paper); display: grid; place-items: center; margin: 0 auto 28px; font-size: 28px; }
.confirm h1 { font-size: clamp(32px,5vw,56px); font-weight: 300; margin-bottom: 16px; }
.confirm p { color: var(--ink-soft); margin-bottom: 10px; }
.confirm .oid { font-variant-numeric: tabular-nums; font-weight: 600; }

/* ---------- About / Workshop ---------- */
.about-stmt { padding-block: clamp(40px,6vw,90px); border-bottom: 1px solid var(--line); }
.about-stmt h2 { font-size: clamp(28px,4.2vw,56px); font-weight: 300; letter-spacing: -.025em; line-height: 1.08; max-width: 20ch; }
.about-stmt h2 .serif-it { font-weight: 300; }
.stats { display: grid; grid-template-columns: repeat(4,1fr); border-bottom: 1px solid var(--line); }
.stat { padding: clamp(34px,4vw,56px) 24px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat .num { font-size: clamp(34px,4.4vw,60px); font-weight: 300; letter-spacing: -.03em; font-variant-numeric: tabular-nums; }
.stat .lab { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--mute); margin-top: 10px; }
.quote { padding-block: clamp(56px,9vw,130px); text-align: center; }
.quote p { font-family: var(--serif); font-style: italic; font-size: clamp(24px,3.6vw,46px); font-weight: 300; line-height: 1.25; max-width: 18ch; margin: 0 auto; letter-spacing: -.01em; }
.quote .by { font-family: var(--sans); font-style: normal; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--mute); margin-top: 30px; }

@media (max-width: 900px) {
  .cart-wrap, .checkout-grid { grid-template-columns: 1fr; }
  .cart-aside, .co-summary { position: static; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: none; }
  .stat { border-bottom: 1px solid var(--line); }
}
@media (max-width: 560px) {
  .filters { top: 60px; }
  .cart-line { grid-template-columns: 80px 1fr; }
  .cart-line .cl-price { grid-column: 2; }
  .field-row { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: none; }
}

/* ============================================================
   COLOR STUDIO — interactive finish picker
   ============================================================ */
.cst-sub { max-width: 46ch; color: #4a4a4a; font-size: 15px; margin-top: 4px; }
.cst-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); align-items: stretch; }
.cst-stage { position: relative; aspect-ratio: 1/1; background: var(--bone); overflow: hidden; margin: 0; }
.cst-slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; padding: clamp(20px,4vw,54px); opacity: 0; transition: opacity .5s var(--ease); filter: contrast(1.03) drop-shadow(0 26px 34px rgba(0,0,0,.15)); }
.cst-slide.is-active { opacity: 1; }
.cst-panel { background: var(--paper); padding: clamp(32px,4vw,56px); display: flex; flex-direction: column; }
.cst-panel .label { display: block; margin-bottom: 16px; }
.cst-panel h3 { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: clamp(26px,2.6vw,38px); letter-spacing: -.01em; margin-bottom: 10px; }
.cst-price { font-size: 16px; font-weight: 500; font-variant-numeric: tabular-nums; color: var(--mute); margin-bottom: 30px; }
.cst-swatches { display: flex; flex-wrap: wrap; gap: 11px; margin: auto 0 34px; list-style: none; }
.cst-swatches button { width: 38px; height: 38px; border-radius: 50%; padding: 3px; border: 1px solid var(--line); transition: border-color .2s var(--t-fast), transform .2s var(--t-fast); }
.cst-swatches button span { display: block; width: 100%; height: 100%; border-radius: 50%; background: var(--sw); }
.cst-swatches button.on, .cst-swatches button:hover { border-color: var(--ink); transform: scale(1.1); }
.cst-panel .btn { align-self: flex-start; }
@media (max-width: 900px) { .cst-grid { grid-template-columns: 1fr; } }

/* ============================================================
   ANATOMY OF QUIET — hotspot diagram
   ============================================================ */
.anat { background: var(--bone); border-block: 1px solid var(--line); }
.anat-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,4vw,64px); align-items: center; }
.anat-fig { position: relative; aspect-ratio: 4/5; background: var(--paper); border: 1px solid var(--line); display: grid; place-items: center; overflow: hidden; padding: clamp(20px,3vw,44px); }
.anat-fig img { width: 100%; height: 100%; object-fit: contain; filter: contrast(1.03) drop-shadow(0 22px 30px rgba(0,0,0,.12)); }
.anat-pt {
  position: absolute; width: 26px; height: 26px; margin: -13px 0 0 -13px; border-radius: 50%;
  background: var(--paper); border: 1px solid var(--ink); display: grid; place-items: center;
  font-size: 11px; font-weight: 700; transition: transform .2s var(--t-fast), background .2s, color .2s;
}
.anat-pt::after { content: ""; position: absolute; inset: -8px; border-radius: 50%; border: 1px solid var(--ink); opacity: .4; animation: anatPulse 2.4s ease-out infinite; }
@keyframes anatPulse { 0% { transform: scale(.7); opacity: .55; } 100% { transform: scale(1.7); opacity: 0; } }
.anat-pt:hover, .anat-pt.on { background: var(--ink); color: var(--paper); transform: scale(1.12); }
.anat-card {
  position: absolute; z-index: 3; width: 216px; background: var(--paper); border: 1px solid var(--ink);
  padding: 16px 18px; transform: translate(-50%, 14px); opacity: 0; visibility: hidden;
  transition: opacity .25s var(--t-fast), visibility .25s;
}
.anat-card.on { opacity: 1; visibility: visible; }
.anat-card--l { transform: translate(4px, 14px); }
.anat-card--r { transform: translate(calc(-100% - 4px), 14px); }
.anat-card--ru { transform: translate(calc(-100% - 4px), calc(-100% - 32px)); }
.anat-card .k { font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--mute); display: block; margin-bottom: 6px; }
.anat-card b { display: block; font-size: 14px; font-weight: 500; margin-bottom: 4px; }
.anat-card span { font-family: var(--serif); font-style: italic; font-size: 13px; color: var(--mute); }
.anat-list { display: flex; flex-direction: column; gap: 22px; }
.anat-li { display: flex; gap: 18px; align-items: flex-start; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.anat-li:last-child { border-bottom: none; padding-bottom: 0; }
.anat-li .num { font-size: 12px; font-weight: 700; letter-spacing: .1em; font-variant-numeric: tabular-nums; padding-top: 3px; }
.anat-li b { display: block; font-size: 18px; font-weight: 500; letter-spacing: -.01em; margin-bottom: 4px; }
.anat-li span { font-size: 14px; color: var(--mute); }
@media (max-width: 900px) { .anat-wrap { grid-template-columns: 1fr; } .anat-card { width: 180px; } }
@media (max-width: 560px) { .anat-card { width: 150px; padding: 12px 14px; } .anat-card b { font-size: 13px; } .anat-card span { font-size: 12px; } }

/* ============================================================
   THE ATELIER — process band (dark)
   ============================================================ */
.proc { background: var(--char); color: var(--paper); }
.proc .sec-head h2 { color: var(--paper); }
.proc .sec-head .label { color: var(--mute-dk); }
.proc-row { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-dk); }
.proc-step { padding: 40px 28px 48px; border-right: 1px solid var(--line-dk); display: flex; flex-direction: column; gap: 18px; }
.proc-step:last-child { border-right: none; }
.proc-step .n { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: 40px; color: var(--mute-dk); line-height: 1; }
.proc-step h4 { font-size: 17px; font-weight: 500; letter-spacing: -.01em; }
.proc-step p { font-size: 13px; color: var(--mute-dk); }
@media (max-width: 1080px) { .proc-row { grid-template-columns: repeat(2, 1fr); } .proc-step:nth-child(2) { border-right: none; } .proc-step { border-bottom: 1px solid var(--line-dk); } }
@media (max-width: 560px) { .proc-row { grid-template-columns: 1fr; } .proc-step { border-right: none; } }

/* ============================================================
   TESTIMONIALS — loop slider
   ============================================================ */
.rev-wrap { position: relative; max-width: 780px; margin: 0 auto; text-align: center; }
.rev-mark { font-family: var(--serif); font-style: italic; font-size: 96px; line-height: 1; color: var(--line); display: block; margin-bottom: -18px; }
.rev-track { position: relative; min-height: 200px; }
.rev-item { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .5s var(--ease); display: flex; flex-direction: column; align-items: center; gap: 22px; }
.rev-item.is-active { opacity: 1; visibility: visible; position: relative; }
.rev-item .stars { letter-spacing: .14em; font-size: 13px; }
.rev-item p { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: clamp(20px,2.4vw,28px); line-height: 1.35; letter-spacing: -.01em; max-width: 32ch; }
.rev-item cite { font-style: normal; display: flex; flex-direction: column; gap: 4px; }
.rev-item cite b { font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.rev-item cite span { font-size: 12px; color: var(--mute); }
.rev-dots { display: flex; justify-content: center; gap: 10px; margin-top: 36px; }
.rev-dots button { width: 8px; height: 8px; border-radius: 50%; background: var(--line); transition: background .2s, transform .2s; }
.rev-dots button.on { background: var(--ink); transform: scale(1.25); }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .pgrid { grid-template-columns: repeat(2, 1fr); }
  .cats { grid-template-columns: repeat(2, 1fr); }
  .vals { grid-template-columns: repeat(2, 1fr); }
  .val:nth-child(2) { border-right: none; }
  .val { border-bottom: 1px solid var(--line); }
}
@media (max-width: 900px) {
  .head-in { grid-template-columns: auto 1fr auto; }
  .head-in .wordmark { font-size: 15px; letter-spacing: .12em; }
  .head-act { gap: 16px; }
  .hide-sm { display: none !important; }
  .mainnav { display: none; }
  .burger { display: inline-flex; }
  .mainnav.open {
    display: flex; position: fixed; inset: 0; top: 0; z-index: 70; background: var(--paper);
    flex-direction: column; justify-content: center; align-items: center; gap: 34px;
    justify-self: stretch; width: 100vw; height: 100vh;
  }
  .mainnav.open a { font-size: 22px; }
  .mnav-close { display: none; }
  .mainnav.open .mnav-close { display: inline-flex; position: absolute; top: 28px; right: var(--pad); font-size: 13px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-r { min-height: min(56vh, 460px); order: 2; }
  .hero-l { padding: 28px 0 34px; }
  .hero-cue, .mega { display: none; }
  .hero-ghost { font-size: 40vw; opacity: .4; right: -6%; }
  .hero-card { left: 12px; bottom: 12px; padding: 12px 16px; }
  .hero-card strong { font-size: 1.05rem; }
  .edit { grid-template-columns: 1fr; }
  .edit-media { aspect-ratio: 4/3; }
  .news-in { grid-template-columns: 1fr; gap: 30px; }
  .foot-cols { grid-template-columns: 1fr 1fr; }
  .pdp { grid-template-columns: 1fr; }
  .pdp-side { position: static; }
}
@media (max-width: 560px) {
  .pgrid { grid-template-columns: 1fr; }
  .cats { grid-template-columns: 1fr; }
  .vals { grid-template-columns: 1fr; }
  .val { border-right: none; }
  .pdp-gal { grid-template-columns: 1fr; }
  .foot-cols { grid-template-columns: 1fr; gap: 30px; }
  .util span:nth-child(2) { display: none; }
}

/* ============================================================
   V5 ADDITIONS — hero slider, anatomy carousel, PDP swatches,
   shop-card colour dots, contact page
   ============================================================ */

/* hero product slider (crossfade, replaces single static image) */
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s var(--ease); }
.hero-slide.is-active { opacity: 1; z-index: 2; }
.hero-slide img { width: 100%; height: 100%; object-fit: contain; object-position: center; filter: contrast(1.04) drop-shadow(0 30px 40px rgba(0,0,0,.14)); }
.hero-dots { position: absolute; right: clamp(20px,3vw,40px); bottom: clamp(20px,3vw,36px); display: flex; gap: 9px; z-index: 5; }
.hero-dots button { width: 9px; height: 9px; border-radius: 50%; background: rgba(30,28,26,.22); transition: background .2s, transform .2s; }
.hero-dots button.on { background: var(--ink); transform: scale(1.3); }
.hero-dots button:hover { background: var(--mute); }
@media (max-width: 900px) { .hero-dots { right: 16px; bottom: 14px; } }

/* anatomy carousel (replaces hotspot diagram) */
.anat-car { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,4vw,64px); align-items: center; }
.anat-car-fig { position: relative; aspect-ratio: 4/5; background: var(--paper); border: 1px solid var(--line); display: grid; place-items: center; overflow: hidden; padding: clamp(20px,3vw,44px); }
.anat-car-fig img { width: 100%; height: 100%; object-fit: contain; filter: contrast(1.03) drop-shadow(0 22px 30px rgba(0,0,0,.12)); transition: opacity .35s var(--ease); }
.anat-car-num { font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--mute); }
.anat-car-info h3 { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: clamp(26px,2.8vw,38px); margin: 14px 0 12px; letter-spacing: -.01em; transition: opacity .25s; }
.anat-car-info p { font-size: 15px; color: var(--mute); max-width: 34ch; transition: opacity .25s; }
.anat-nav { display: flex; align-items: center; gap: 18px; margin-top: 32px; }
.anat-arrow { width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; font-size: 18px; flex: none; transition: background .2s, color .2s, border-color .2s; }
.anat-arrow:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.anat-dots { display: flex; gap: 8px; }
.anat-dots button { width: 7px; height: 7px; border-radius: 50%; background: var(--line); transition: background .2s, transform .2s; }
.anat-dots button.on { background: var(--ink); transform: scale(1.3); }
@media (max-width: 900px) { .anat-car { grid-template-columns: 1fr; } }

/* PDP colour / finish swatches */
.pdp-swatches { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0 8px; }
.pdp-sw { border: 1px solid var(--line); transition: border-color .2s, background .2s, color .2s, transform .2s; }
.pdp-sw.is-text { padding: 9px 16px; border-radius: 999px; font-size: 12px; font-weight: 600; letter-spacing: .04em; }
.pdp-sw.is-text.on { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.pdp-sw.has-color { width: 38px; height: 38px; padding: 3px; border-radius: 50%; }
.pdp-sw.has-color span { display: block; width: 100%; height: 100%; border-radius: 50%; background: var(--sw); }
.pdp-sw.has-color.on { outline: 2px solid var(--ink); outline-offset: 2px; }
.pdp-sw:hover { transform: translateY(-1px); }

/* shop / index product-card colour dots */
.pcard-sw { display: flex; gap: 6px; flex-wrap: wrap; padding: 0 20px 18px; }
.sw-dot { width: 13px; height: 13px; border-radius: 50%; background: var(--sw); border: 1px solid rgba(30,28,26,.18); }
.sw-more { font-size: 11px; color: var(--mute); align-self: center; }

/* contact page */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(30px,5vw,80px); padding-block: clamp(30px,5vw,60px) clamp(60px,8vw,110px); }
.contact-info { display: flex; flex-direction: column; gap: 22px; }
.contact-row { display: flex; flex-direction: column; gap: 4px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.contact-row .k { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--mute); }
.contact-row a, .contact-row span.v { font-size: 17px; font-weight: 500; letter-spacing: -.01em; }
.contact-media { background: var(--bone); border: 1px solid var(--line); overflow: hidden; }
.contact-media img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.03); }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* home — collection category boxes (02) */
.collection-cats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px,2vw,24px); }
.cc-box { display: block; background: var(--bone); border: 1px solid var(--line); position: relative; }
.cc-box .cc-box-img { aspect-ratio: 1/1; overflow: hidden; }
.cc-box .cc-box-img img { width: 100%; height: 100%; object-fit: contain; background: #fff; filter: contrast(1.03); transition: transform .5s var(--ease); }
.cc-box:hover .cc-box-img img { transform: scale(1.05); }
.cc-box .cc-box-cap { padding: 14px 16px 20px; }
.cc-box .cc-box-cap h4 { font-size: 16px; font-weight: 500; letter-spacing: -.01em; }
.cc-box.is-soon { cursor: default; }
.cc-box.is-soon .cc-box-img { position: relative; }
.cc-box.is-soon .cc-box-img img { filter: grayscale(.35) contrast(1.02); }
.cc-box.is-soon .cc-box-img::after { content: ""; position: absolute; inset: 0; background: rgba(243,242,239,.5); }
.cc-box.is-soon .cc-box-cap h4 { color: var(--mute); }
.cc-soon-badge { position: absolute; top: 12px; right: 12px; z-index: 2; background: var(--ink); color: var(--paper); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 5px 9px; border-radius: 999px; }
@media (max-width: 860px) { .collection-cats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .collection-cats { grid-template-columns: 1fr; } }

/* nav "coming soon" item */
.nav-soon { opacity: .55; cursor: default; pointer-events: none; }
.nav-soon .soon-badge { display: inline-block; font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; background: var(--line); color: var(--ink); padding: 2px 6px; border-radius: 999px; margin-left: 6px; vertical-align: middle; }

/* journal / blog cards */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px,3vw,32px); }
.blog-card { display: block; }
.blog-card .bc-img { aspect-ratio: 4/3; background: var(--bone); overflow: hidden; margin-bottom: 16px; }
.blog-card .bc-img img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.03); transition: transform .5s var(--ease); }
.blog-card:hover .bc-img img { transform: scale(1.04); }
.blog-card .bc-date { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--mute); }
.blog-card h3 { font-size: clamp(18px,1.6vw,22px); font-weight: 500; letter-spacing: -.01em; margin: 8px 0 8px; line-height: 1.2; }
.blog-card p { font-size: 14px; color: var(--mute); line-height: 1.55; margin-bottom: 10px; }
@media (max-width: 860px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .blog-grid { grid-template-columns: 1fr; } }

/* single blog post */
.post-wrap { max-width: 68ch; margin: 0 auto; padding-block: clamp(20px,4vw,40px) clamp(60px,8vw,110px); }
.post-wrap .post-date { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--mute); }
.post-wrap h1 { font-size: clamp(32px,5vw,54px); font-weight: 300; letter-spacing: -.03em; line-height: 1.02; margin: 14px 0 26px; }
.post-cover { aspect-ratio: 16/9; background: var(--bone); overflow: hidden; margin-bottom: clamp(28px,4vw,48px); }
.post-cover img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.03); }
.post-body p { font-size: 16px; line-height: 1.75; color: #333; margin-bottom: 22px; max-width: 62ch; }
.post-back { margin-top: 30px; }

/* v7: footer wordmark square + textual blog cards */
.foot-word { display: flex; align-items: center; gap: 16px; }
.foot-word b { width: 14px; height: 14px; background: var(--paper); display: inline-block; flex-shrink: 0; }
.blog-card--txt { padding-top: 4px; }
.blog-grid { align-items: start; }

/* v8: hero slider WP-benzeri — küçük, zemine oturan, boşluklu, gri zemin yok */
.hero-r { background: transparent !important; }
.hero-slides { position: absolute; inset: 0; }
.hero-slide { inset: 0; display: flex; align-items: flex-end; justify-content: center;
  padding: clamp(20px,3vw,46px) clamp(30px,6vw,96px) clamp(26px,3vw,54px); }
.hero-slide img { width: auto !important; max-width: 100% !important; height: auto !important;
  max-height: min(60vh, 560px) !important; object-fit: contain !important; object-position: center bottom !important;
  filter: contrast(1.03) drop-shadow(0 30px 40px rgba(0,0,0,.14)) !important; }
@media (max-width: 900px){ .hero-slide img { max-height: min(42vh, 360px) !important; } .hero-slide { padding: 16px 24px 20px; } }

/* v9: hero sağ panel KESIN temiz beyaz (WP gibi) — gri overlay'leri kaldır */
.hero-r, .hero-r-media, .hero-slides, .hero-slide { background: transparent !important; }
.hero-halo { display: none !important; }      /* gri radial bulut kaldırıldı */
.hero-grain { display: none !important; }     /* gri film grain kaldırıldı */
.hero-sheen { display: none !important; }      /* parlaklık sweep kaldırıldı */
.hero-r img { object-fit: contain !important; }

/* v10: ghost kesilmesin — hero-r taşmaya izin ver, ghost ortala + sığdır; temiz sandalyeler */
.hero-r { overflow: visible !important; }
.hero-ghost { right: auto !important; left: 50% !important; transform: translateX(-50%) !important;
  font-size: clamp(9rem, 19vw, 22rem) !important; opacity: .5 !important; white-space: nowrap; z-index: 0 !important; }
body { overflow-x: hidden !important; }

/* v11: ghost "Comfort" — WP gibi büyük, sağa yaslı, okunur, kesilmez */
.hero-ghost {
  left: auto !important; right: -4% !important; transform: translateY(-50%) !important;
  top: 50% !important; font-size: clamp(12rem, 27vw, 30rem) !important;
  opacity: .5 !important; color: var(--line) !important; z-index: 0 !important;
}

/* v12: header nav — tek satır, sığdır, wordmark'tan ayrık */
@media (min-width: 981px){
  .mainnav { gap: 26px; }
  .mainnav a { white-space: nowrap; }
  .head-in { column-gap: 28px; }
  .wordmark { margin-right: 10px; }
}

/* v13 KOK COZUM: AI-kesim full-transparan sandalyeler + golge CSS'ten + ghost TAM gorunur */
.hero-slide img { filter: drop-shadow(0 30px 34px rgba(20,20,20,.16)); }
.hero-ghost {
  left: auto !important; right: 1.5% !important;
  top: 50% !important; transform: translateY(-50%) !important;
  font-size: clamp(7rem, 15.5vw, 17.5rem) !important;
  opacity: .55 !important; white-space: nowrap !important;
}

/* v18: 5-kategori grid + Price on request stili + responsive */
.collection-cats.cats-5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1100px){ .collection-cats.cats-5 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px){ .collection-cats, .collection-cats.cats-5 { grid-template-columns: repeat(2, 1fr); } }
.por { font-size: .92em; letter-spacing: .01em; color: var(--mute); font-style: italic; }
.pr .por { color: var(--ink); }

/* v21: PDP dikey büyük görsel galerisi (stack) + zoom lightbox — eski normconcept.com sistemi */
.pdp-stack { background: var(--paper); display: flex; flex-direction: column; gap: 1px; }
.pstk { position: relative; display: block; width: 100%; padding: 0; border: 0; background: #fff; cursor: zoom-in; overflow: hidden; }
.pstk img { width: 100%; height: auto; display: block; filter: contrast(1.02); transition: transform .6s var(--ease); }
.pstk:hover img { transform: scale(1.02); }
.pstk-zoom { position: absolute; right: 16px; bottom: 16px; width: 38px; height: 38px; border-radius: 999px;
  background: rgba(255,255,255,.86); color: var(--ink); display: grid; place-items: center;
  opacity: 0; transform: translateY(6px); transition: opacity .3s var(--ease), transform .3s var(--ease); backdrop-filter: blur(3px); }
.pstk:hover .pstk-zoom { opacity: 1; transform: none; }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(20,19,18,.94); display: none;
  align-items: center; justify-content: center; opacity: 0; transition: opacity .25s var(--ease); }
.lightbox.open { display: flex; opacity: 1; }
.lb-stage { max-width: 92vw; max-height: 90vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.lb-img { max-width: 92vw; max-height: 90vh; width: auto; height: auto; object-fit: contain; background: #fff;
  cursor: zoom-in; transition: transform .3s var(--ease); will-change: transform; }
.lb-img.zoomed { transform: scale(2.3); cursor: zoom-out; transition: transform .2s var(--ease); }
.lb-close { position: absolute; top: 22px; right: 26px; width: 46px; height: 46px; border: 0; background: none;
  color: #fff; font-size: 34px; line-height: 1; cursor: pointer; opacity: .8; }
.lb-close:hover { opacity: 1; }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 54px; height: 54px; border: 0; border-radius: 999px;
  background: rgba(255,255,255,.12); color: #fff; font-size: 30px; line-height: 1; cursor: pointer; transition: background .2s; }
.lb-nav:hover { background: rgba(255,255,255,.24); }
.lb-prev { left: 22px; } .lb-next { right: 22px; }
.lb-count { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); color: #fff; opacity: .8;
  font-size: 12px; letter-spacing: .14em; }
@media (max-width: 780px){
  .lb-nav { width: 44px; height: 44px; font-size: 24px; } .lb-prev { left: 8px; } .lb-next { right: 8px; }
  .pstk-zoom { display: none; }
}

/* v24: renk seçici — "Select colour" etiketi + küçük ürün foto ikonları */
.pdp-sw-label { display: flex; align-items: baseline; gap: 8px; margin: 22px 0 10px; }
.pdp-sw-label .swl-k { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--mute); }
.pdp-sw-label .swl-v { font-size: 14px; font-weight: 500; color: var(--ink); }
.pdp-swatches { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 8px; }
.pdp-sw.is-img { position: relative; width: 62px; height: 62px; padding: 0; border: 1px solid var(--line);
  border-radius: 8px; overflow: hidden; background: #fff; cursor: pointer; }
.pdp-sw.is-img img { width: 100%; height: 100%; object-fit: contain; display: block; background: #fff; }
.pdp-sw.is-img .sw-chip { position: absolute; left: 4px; bottom: 4px; width: 12px; height: 12px; border-radius: 50%;
  background: var(--sw); border: 1px solid rgba(255,255,255,.9); box-shadow: 0 0 0 1px rgba(30,28,26,.18); }
.pdp-sw.is-img:hover { border-color: var(--ink); transform: translateY(-1px); }
.pdp-sw.is-img.on { border-color: var(--ink); box-shadow: 0 0 0 1px var(--ink); }
.pdp-sw.is-img.is-out { opacity: .45; }
.pdp-sw.is-img.is-out::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top right, transparent 47%, rgba(30,28,26,.5) 47%, rgba(30,28,26,.5) 53%, transparent 53%); }
@media (max-width: 560px){ .pdp-sw.is-img { width: 54px; height: 54px; } }

/* ============================================================
   v25: HERO — WP "Quiet Atelier" düzeni birebir, bizim beyaz palet + Archivo/Newsreader
   (krem/brass yerine paper/bone/ink/mute; Cormorant yerine Newsreader)
   ============================================================ */
.hero {
  position: relative; min-height: calc(100vh - 76px - 41px); min-height: calc(100dvh - 76px - 41px);
  display: flex; align-items: center; padding-block: clamp(40px, 7vw, 88px);
  background: radial-gradient(ellipse 70% 55% at 78% 42%, rgba(220,219,214,.28) 0%, transparent 62%),
              linear-gradient(180deg, var(--paper) 0%, var(--bone) 100%);
  overflow: hidden;
}
.hero .hero-grain { position: absolute; inset: 0; opacity: .28; pointer-events: none; display: block;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E"); }
.hero .hero-ghost {
  position: absolute !important; right: -2% !important; left: auto !important; top: 50% !important;
  transform: translateY(-50%) !important; font-family: "Newsreader", Georgia, serif !important;
  font-style: italic !important; font-size: clamp(12rem, 30vw, 34rem) !important; font-weight: 400 !important;
  line-height: .8 !important; color: var(--line) !important; opacity: .5 !important;
  letter-spacing: -.04em !important; pointer-events: none; z-index: 0; user-select: none; white-space: nowrap !important;
}
.hero .hero-grid { position: relative; z-index: 1; display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1.1fr); gap: clamp(24px,5vw,64px); align-items: center; }
.hero .eyebrow { font-size: 11px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  color: var(--mute); margin-bottom: 14px; display: flex; align-items: center; }
.hero .eyebrow-dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--ink); margin-right: 9px; animation: pulseDot 2.4s ease-in-out infinite; }
@keyframes pulseDot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.45;transform:scale(.82)} }
.hero .hero-h { font-family: "Newsreader", Georgia, serif; font-size: clamp(3rem, 6.5vw, 5.2rem);
  font-weight: 400; line-height: 1.02; color: var(--ink); margin-bottom: 24px; letter-spacing: -.025em; }
.hero .hero-h em { font-style: italic; font-weight: 400; color: var(--char); }
.hero .hero-type { white-space: nowrap; }
.hero .tw-caret { display: inline-block; width: 3px; height: .78em; margin-left: 4px; background: var(--ink);
  vertical-align: baseline; animation: caretBlink 1s steps(1) infinite; }
@keyframes caretBlink { 0%,49%{opacity:1} 50%,100%{opacity:0} }
.hero .hero-lead { font-size: clamp(15px,1.6vw,17px); line-height: 1.65; max-width: 44ch;
  margin-bottom: 32px; color: var(--mute); }
.hero .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
.hero .btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 30px; font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  border-radius: 0; transition: transform .3s var(--ease), background .3s, color .3s, border-color .3s, box-shadow .3s; }
.hero .btn-primary { background: var(--ink); color: var(--paper); box-shadow: 0 12px 28px rgba(26,25,23,.18); }
.hero .btn-primary:hover { background: var(--char); transform: translateY(-2px); box-shadow: 0 16px 34px rgba(26,25,23,.28); }
.hero .btn-primary:hover svg { transform: translateX(4px); }
.hero .btn-primary svg { transition: transform .3s var(--ease); }
.hero .btn-ghost { border: 1px solid rgba(26,25,23,.28); color: var(--ink); }
.hero .btn-ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.hero .hero-badges { display: flex; flex-wrap: wrap; gap: 8px 10px; list-style: none; padding: 0; margin: 0; }
.hero .hero-badges li { font-size: 10px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  color: var(--mute); padding: 6px 12px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.6); }
/* stage */
.hero .hero-stage { position: relative; display: flex; justify-content: center; align-items: center;
  min-height: clamp(360px,46vw,580px); margin: 0; }
.hero .hero-halo { position: absolute; inset: 6% 2% 10%; z-index: 0; pointer-events: none; filter: blur(4px);
  background: radial-gradient(ellipse 62% 58% at 52% 46%, rgba(220,219,214,.6) 0%, rgba(220,219,214,.16) 45%, transparent 72%); }
.hero .hero-floor { position: absolute; left: 8%; right: 8%; bottom: 11%; height: 44px; z-index: 1;
  pointer-events: none; filter: blur(9px);
  background: radial-gradient(ellipse 55% 100% at 50% 0%, rgba(26,25,23,.20) 0%, transparent 72%); }
.hero .hero-slides { position: relative; z-index: 2; width: 100%; height: min(62vh,560px);
  display: flex; align-items: flex-end; justify-content: center; background: transparent !important; }
.hero .hero-slide { position: absolute; inset: auto auto 0 50%; width: 92%; height: 100%;
  opacity: 0; transform: translateX(-50%) scale(.97); pointer-events: none; background: transparent !important;
  transition: opacity .7s var(--ease), transform .7s var(--ease); }
.hero .hero-slide img { width: 100%; height: 100%; object-fit: contain; object-position: center bottom;
  filter: drop-shadow(0 40px 50px rgba(26,25,23,.22)); }
.hero .hero-slide.is-active { opacity: 1; transform: translateX(-50%) scale(1); transform-origin: 50% 96%;
  animation: heroRock 4.5s ease-in-out .7s infinite; }
@keyframes heroRock { 0%,100%{rotate:0deg} 50%{rotate:-.7deg} }
/* card */
.hero .hero-card { position: absolute; left: -2%; bottom: 12%; z-index: 4; display: grid; gap: 3px;
  padding: 16px 20px; background: rgba(255,255,255,.92); backdrop-filter: blur(14px);
  border: 1px solid var(--line); box-shadow: 0 20px 48px rgba(26,25,23,.14);
  animation: floatCard 5.5s ease-in-out infinite; }
@keyframes floatCard { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }
.hero .hero-card-kicker { font-size: 9px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--mute); }
.hero .hero-card strong { font-family: "Newsreader", Georgia, serif; font-size: 1.2rem; font-weight: 500; color: var(--ink); }
.hero .hero-card em { font-style: normal; font-size: 11px; font-weight: 500; letter-spacing: .04em;
  text-transform: uppercase; color: var(--mute); }
/* dots */
.hero .hero-dots { position: absolute; bottom: 2%; right: 4%; z-index: 5; display: flex; gap: 9px; }
.hero .hero-dots button { width: 9px; height: 9px; padding: 0; border: none; border-radius: 50%;
  background: rgba(26,25,23,.2); cursor: pointer; transition: background .3s, transform .3s; }
.hero .hero-dots button.on, .hero .hero-dots button.is-active { background: var(--ink); transform: scale(1.25); }
.hero .hero-dots button:hover { background: var(--ink); }
/* scroll cue */
.hero .hero-scroll { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px; z-index: 3; }
.hero .hero-scroll span { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--mute); }
.hero .hero-scroll i { display: block; width: 1px; height: 42px; background: linear-gradient(var(--line), transparent); }
@media (max-width: 900px){
  .hero .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero .hero-ghost { font-size: clamp(8rem, 34vw, 16rem) !important; opacity: .38 !important; }
  .hero .hero-card { left: 0; bottom: 6%; }
  .hero .hero-scroll { display: none; }
}

/* v26: hero ghost buton düzeltmesi + ghost tipografi inceltme */
.hero .btn-ghost { background: transparent !important; color: var(--ink) !important; border: 1px solid rgba(26,25,23,.28) !important; }
.hero .btn-ghost:hover { background: var(--ink) !important; color: var(--paper) !important; border-color: var(--ink) !important; }
.hero .hero-ghost { opacity: .42 !important; }

/* v27: kesintisiz varyant geçişi (eski görseller yeni yüklenene kadar kalır) + band em italik */
.pdp-stack { transition: opacity .28s var(--ease); }
.pdp-stack.is-swapping { opacity: .5; }
.edit-body h2 em, .edit-body h2 .serif-it { font-family: "Newsreader", Georgia, serif; font-style: italic; font-weight: 400; }

/* v30: hero sahne kutusu görsel tuvaliyle (2000x1800 = 10/9) aynı orana getirildi
   → her ekranda letterbox yok, sandalyeler hem EŞİT hem BÜYÜK */
.hero .hero-slides { width: 100%; aspect-ratio: 10 / 9; height: auto;
  max-height: min(64vh, 620px); align-items: stretch; }
.hero .hero-slide { width: 100%; }
.hero .hero-slide img { object-position: center bottom; }
@media (max-width: 900px){ .hero .hero-slides { max-height: 46vh; } }

/* v31: eski `.hero-slide img { width/height:auto !important; max-height:... !important }`
   kuralı sahneyi kilitliyordu — hero içinde kesin olarak geçersiz kılınıyor. */
.hero .hero-slide img {
  width: 100% !important; height: 100% !important;
  max-width: none !important; max-height: none !important;
  object-fit: contain !important; object-position: center bottom !important;
}

/* ============================================================
   v32: HERO SAHNESİ — temiz sınıflar (.nc-hstage / .nc-hslide)
   Eski .hero-slide kuralları (6 adet, bazıları !important) artık
   dokunmuyor. Tüm kesimler 2000x1800 ortak tuvalde ve sandalye
   yüksekliği sabit olduğu için hepsi EŞİT ve BÜYÜK çizilir.
   ============================================================ */
.hero .nc-hstage { position: relative; z-index: 2; width: 100%;
  aspect-ratio: 10 / 9; max-height: min(66vh, 640px); margin-inline: auto; }
.hero .nc-hslide { position: absolute; inset: 0; opacity: 0;
  transform: scale(.97); transition: opacity .7s var(--ease), transform .7s var(--ease);
  pointer-events: none; background: transparent; }
.hero .nc-hslide img { width: 100%; height: 100%; object-fit: contain;
  object-position: center bottom; filter: drop-shadow(0 40px 50px rgba(26,25,23,.22)); }
.hero .nc-hslide.is-active { opacity: 1; transform: scale(1); transform-origin: 50% 96%;
  animation: heroRock 4.5s ease-in-out .7s infinite; }
@media (prefers-reduced-motion: reduce){ .hero .nc-hslide.is-active { animation: none; } }

/* v33: hero geçişinde ZOOM/SALLANMA YOK — sandalye sabit boyut, sadece opacity crossfade */
.hero .nc-hslide { transform: none !important; transition: opacity .7s var(--ease) !important; }
.hero .nc-hslide.is-active { transform: none !important; animation: none !important; }

/* v33: kategori-özel mega menü — foto ikonlu ürün listesi, bestseller yok */
.mega-in.mega-cat { display: block; max-width: 560px; }
.mega-cat h6 { font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--mute); margin: 0 0 14px; }
.mega-list { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 28px; }
.mega-item { display: flex; align-items: center; gap: 12px; padding: 7px 8px; margin: 0 -8px;
  transition: background .2s; }
.mega-item:hover { background: var(--bone); }
.mega-item .mi-img { flex: none; width: 52px; height: 52px; border: 1px solid var(--line);
  background: #fff; overflow: hidden; border-radius: 6px; }
.mega-item .mi-img img { width: 100%; height: 100%; object-fit: contain; background: #fff; }
.mega-item .mi-b { display: grid; gap: 1px; min-width: 0; }
.mega-item .mi-name { font-size: 13px; font-weight: 500; color: var(--ink); line-height: 1.3; }
.mega-item .mi-price { font-size: 11px; color: var(--mute); letter-spacing: .03em; }
.mega-all { margin-top: 14px; display: inline-flex; }

/* v34: KÖK ÇÖZÜM — daktilo kelimesi grid kolonlarını itiyordu (sandalye "nefes alıyordu").
   Kolonlar içerikten bağımsız kilitlendi + kelimeye sabit alan ayrıldı. */
.hero .hero-grid { grid-template-columns: minmax(0,1fr) minmax(0,1.1fr) !important; }
.hero .hero-copy { min-width: 0; }
.hero .hero-type { display: inline-block; min-width: 8ch; text-align: left; }
.hero .hero-h { min-height: 2.1em; }

/* v43: "Shop the chairs" — tüm ürünler kesintisiz loop slider */
.loop-slider { overflow: hidden; position: relative; }
.loop-slider::before, .loop-slider::after { content: ""; position: absolute; top: 0; bottom: 0; width: 60px; z-index: 2; pointer-events: none; }
.loop-slider::before { left: 0; background: linear-gradient(90deg, var(--paper), transparent); }
.loop-slider::after { right: 0; background: linear-gradient(270deg, var(--paper), transparent); }
.loop-track { display: flex; gap: clamp(16px, 2vw, 28px); width: max-content; will-change: transform; }
.loop-track .pcard { width: clamp(240px, 21vw, 310px); flex: none; }
.loop-slider.is-static { overflow-x: auto; -webkit-overflow-scrolling: touch; }
@media (max-width: 640px){ .loop-track .pcard { width: 74vw; } }

/* v44: loop slider okları */
.feat-right { display: flex; align-items: center; gap: 18px; }
.loop-nav { display: flex; gap: 8px; }
.loop-nav button { width: 42px; height: 42px; border-radius: 999px; border: 1px solid var(--line);
  background: var(--paper); color: var(--ink); font-size: 22px; line-height: 1; cursor: pointer;
  display: grid; place-items: center; padding-bottom: 3px;
  transition: background .2s, color .2s, border-color .2s, transform .2s; }
.loop-nav button:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); transform: translateY(-1px); }
.loop-nav button:active { transform: none; }
@media (max-width: 640px){ .loop-nav { display: none; } }

/* v46: shop grid — boş hücreler gri görünmesin; hairline çizgiler karta taşındı */
.pgrid { background: transparent !important; border: none !important; }
.pgrid .pcard { box-shadow: 0 0 0 1px var(--line); }

/* v49: shop values — 3 sütun hizalı */
.vals.vals-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px){ .vals.vals-3 { grid-template-columns: 1fr; } }
.vals.vals-3 .val:last-child { border-right: none; }

/* v50: kart renk noktaları → PDP tarzı mini ürün foto ikonları */
.pcard-sw { display: flex; flex-wrap: wrap; gap: 6px; padding: 0 16px 16px; align-items: center; }
.sw-thumb { position: relative; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 6px;
  overflow: hidden; background: #fff; display: block; transition: border-color .2s, transform .2s; }
.sw-thumb img { width: 100%; height: 100%; object-fit: contain; background: #fff; display: block; }
.sw-thumb .sw-chip { position: absolute; left: 3px; bottom: 3px; width: 9px; height: 9px; border-radius: 50%;
  background: var(--sw); border: 1px solid rgba(255,255,255,.9); box-shadow: 0 0 0 1px rgba(30,28,26,.18); }
.sw-thumb:hover { border-color: var(--ink); transform: translateY(-1px); }
.pcard-sw .sw-more { font-size: 11px; font-weight: 600; color: var(--mute); padding: 0 4px; }
.pcard-sw .sw-more:hover { color: var(--ink); }

/* v60: .edit bölümleri dev ekranlarda kenardan kenara yayılmasın — 1760px cap + ortala */
.edit { grid-template-columns: minmax(0,1fr) minmax(0,1fr); width: 100%; max-width: 1760px; margin-inline: auto; }

/* v61: .edit görseli TAM ÇÖZÜM — kare oran kaldırıldı (uzun metinde görsel
   büyüyüp metnin üstüne taşıyordu); görsel kutuyu mutlak doldurur, taşamaz.
   Foto kolonu da hafif daraltıldı. */
.edit { grid-template-columns: minmax(0,.85fr) minmax(0,1.15fr); }
.edit-media { aspect-ratio: auto !important; position: relative; min-height: clamp(380px, 42vw, 640px); overflow: hidden; }
.edit-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
/* medya sağda olan varyantta (koyu bant) kolonlar ayna */
.edit > .edit-body:first-child + .edit-media { }

/* v62: contact — foto yerine tasarıma uygun form */
.contact-form-wrap { display: flex; flex-direction: column; gap: 18px; }
.cform { display: flex; flex-direction: column; gap: 18px; }
.cf-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.cf-field { display: flex; flex-direction: column; gap: 8px; }
.cf-field span { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--mute); }
.cf-field input, .cf-field textarea {
  border: 1px solid var(--line); background: var(--paper); padding: 14px 16px;
  font: inherit; font-size: 15px; color: var(--ink); border-radius: 0; resize: vertical;
  transition: border-color .2s; }
.cf-field input:focus, .cf-field textarea:focus { outline: none; border-color: var(--ink); }
.cform .btn { align-self: flex-start; }
.cf-note { font-size: 12px; color: var(--mute); }
@media (max-width: 560px){ .cf-row2 { grid-template-columns: 1fr; } }

/* v63: commercial-grade etiketi (3 chair) */
.pcard .flag.comm { background: var(--paper); color: var(--ink); border: 1px solid var(--ink); }
.pdp-comm { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink); margin: 6px 0 0; display: inline-block; border: 1px solid var(--line);
  padding: 6px 12px; border-radius: 999px; background: var(--bone); }

/* v65: MOBİL HERO — metin üstte, slider ALTA ve ferah; kart/dots akışta */
@media (max-width: 900px){
  .hero { min-height: auto !important; padding-block: 32px 48px; }
  .hero .hero-grid { gap: 36px; }
  .hero .hero-copy { text-align: left; }
  .hero .hero-h { font-size: clamp(2.4rem, 11vw, 3.4rem); }
  .hero .hero-stage { display: flex; flex-direction: column; align-items: stretch; min-height: auto; }
  .hero .nc-hstage { width: 100%; aspect-ratio: 10 / 9; max-height: none; }
  .hero .hero-halo { inset: 4% 0 6%; }
  .hero .hero-floor { bottom: 4%; }
  .hero .hero-ghost { font-size: clamp(7rem, 30vw, 12rem) !important; opacity: .3 !important; top: 38% !important; }
  .hero .hero-card { position: static; margin: 18px auto 0; width: fit-content;
    animation: none; text-align: center; }
  .hero .hero-dots { position: static; margin: 16px auto 0; justify-content: center; }
}

/* v65b: v34'ün !important kolon kuralı mobili eziyordu — mobilde tek kolona zorla */
@media (max-width: 900px){
  .hero .hero-grid { grid-template-columns: 1fr !important; }
}

/* v66: mobil hero sırası — başlık+metin, SONRA slider, EN ALTA butonlar */
@media (max-width: 900px){
  .hero .hero-copy { display: contents; }
  .hero .hero-h { order: 1; margin-bottom: 4px; }
  .hero .hero-lead { order: 2; margin-bottom: 0; }
  .hero .hero-stage { order: 3; }
  .hero .hero-actions { order: 4; margin: 4px 0 0; justify-content: center; }
  .hero .hero-grid { gap: 26px; }
}

/* v68: mobil hero slider görseli ~%25 küçük, ortalı */
@media (max-width: 900px){
  .hero .nc-hstage { width: 76%; margin-inline: auto; }
}

/* v69: policy sayfası */
.policy { display: flex; flex-direction: column; gap: clamp(36px,5vw,64px); padding-bottom: clamp(60px,8vw,110px); max-width: 820px; }
.policy-sec { display: flex; flex-direction: column; gap: 16px; border-top: 1px solid var(--line); padding-top: clamp(24px,3vw,40px); }
.policy-sec h2 { font-size: clamp(24px,2.6vw,38px); font-weight: 300; letter-spacing: -.02em; }
.policy-sec p { color: #4a4a4a; font-size: 16px; line-height: 1.7; max-width: 70ch; }
.policy-sec a { text-decoration: underline; text-underline-offset: 3px; }

/* v71: .edit bölümleri mobilde — görsel ÜSTTE ve kısa, yazı altında (her iki section) */
@media (max-width: 900px){
  .edit { grid-template-columns: 1fr !important; }
  .edit .edit-media { order: -1; min-height: 0 !important; height: clamp(200px, 52vw, 280px); }
  .edit .edit-body { padding: 28px 20px 36px; }
}

/* v73: "Shop the chairs" ile "The Blog" arasındaki boşluğu azalt */
#journal { padding-top: clamp(20px, 3vw, 44px); }

/* v73b: üstteki "Shop the chairs" alt boşluğunu da kıs → Blog başlığı yakınlaşsın */
#featured { padding-bottom: clamp(24px, 3vw, 48px); }

/* Woo sayfaları tema diline yaklaştır */
.wp-page-content .woocommerce { font-size: 15px; }
.wp-page-content .woocommerce a.button, .wp-page-content .woocommerce button.button,
.wp-page-content .wc-proceed-to-checkout a.checkout-button, .wp-page-content #place_order {
  background: var(--ink); color: var(--paper); border-radius: 0; text-transform: uppercase;
  letter-spacing: .1em; font-weight: 600; }
.wp-page-content .woocommerce table.shop_table { border: 1px solid var(--line); border-radius: 0; }
.wp-page-content .woocommerce-info, .wp-page-content .woocommerce-message { border-top-color: var(--ink); }

/* v76: hero başlık — üst satır dik ve bold, alt satır italik (eski slider tarzı) */
.hero .hero-h { font-style: normal !important; font-weight: 600 !important; }
.hero .hero-h em, .hero .hero-h .hero-type, .hero .tw-caret + * { font-style: italic; }
.hero .hero-h em { font-weight: 400 !important; }

/* v77: Woo cart/checkout cila */
.wp-page-content .woocommerce table.shop_table td, .wp-page-content .woocommerce table.shop_table th { padding: 14px 12px; }
.wp-page-content .woocommerce form .form-row input.input-text, .wp-page-content .woocommerce form .form-row textarea,
.wp-page-content .woocommerce form .form-row select { border: 1px solid var(--line); padding: 12px 14px; border-radius: 0; }

/* v78: cart/checkout/account son cila */
/* "Update cart" disabled durumda boş gri kutu görünmesin */
.wp-page-content .woocommerce button.button:disabled,
.wp-page-content .woocommerce button.button:disabled[disabled] {
  background: var(--ink); color: var(--paper); opacity: .35; padding: 12px 22px; }
.wp-page-content .woocommerce button[name="update_cart"] { padding: 12px 22px; }
/* kupon alanı */
.wp-page-content .woocommerce table.cart td.actions .coupon .input-text {
  width: 180px; border: 1px solid var(--line); padding: 11px 14px; border-radius: 0; margin-right: 8px; }
/* sepet ürün görseli — beyaz zemin, contain */
.wp-page-content .woocommerce table.cart img,
.wp-page-content .woocommerce table.shop_table img {
  width: 84px; height: 84px; object-fit: contain; background: #fff; border: 1px solid var(--line); }
/* sepet toplam kutusu */
.wp-page-content .cart-collaterals .cart_totals { border: 1px solid var(--line); padding: clamp(20px,3vw,30px); }
.wp-page-content .cart-collaterals .cart_totals h2 { font-weight: 300; letter-spacing: -.02em; margin-bottom: 12px; }
.wp-page-content .cart-collaterals .cart_totals table.shop_table { border: 0; }
/* my account */
.wp-page-content .woocommerce-MyAccount-navigation ul { list-style: none; padding: 0; margin: 0; border: 1px solid var(--line); }
.wp-page-content .woocommerce-MyAccount-navigation li { border-bottom: 1px solid var(--line); }
.wp-page-content .woocommerce-MyAccount-navigation li:last-child { border-bottom: 0; }
.wp-page-content .woocommerce-MyAccount-navigation li a { display: block; padding: 12px 16px; font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.wp-page-content .woocommerce-MyAccount-navigation li.is-active a { background: var(--ink); color: var(--paper); }
.wp-page-content .woocommerce-form-login, .wp-page-content .woocommerce-form-register {
  border: 1px solid var(--line) !important; border-radius: 0 !important; padding: clamp(22px,3vw,32px) !important; }
.wp-page-content .u-columns h2 { font-weight: 300; letter-spacing: -.02em; margin-bottom: 14px; }

/* v79: özel Woo cart tasarımı (statikle birebir) + bildirim cilası */
.nc-cart-form .cart-wrap { display: grid; grid-template-columns: 1.6fr 1fr; gap: clamp(30px,5vw,72px); align-items: start; padding-bottom: clamp(60px,8vw,110px); }
@media (max-width: 900px){ .nc-cart-form .cart-wrap { grid-template-columns: 1fr; } .nc-cart-form .cart-aside { position: static; } }
.nc-cart-form .cl-price { font-size: 16px; font-weight: 500; font-variant-numeric: tabular-nums; }
.nc-cart-form .ci-qty button { background: none; border: 0; cursor: pointer; }
.nc-cart-form .cl-img { aspect-ratio: 1/1; }
.cart-aside .btn-block { width: 100%; display: inline-flex; justify-content: center; text-align: center; }
.sum-row { display: flex; justify-content: space-between; font-size: 14px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.sum-row.total { font-size: 16px; font-weight: 600; border-bottom: 0; padding-top: 16px; }
.sum-row .v .woocommerce-Price-amount { font-variant-numeric: tabular-nums; }
/* Woo bildirimleri: mor/mavi çerçeve yerine ince tema çizgisi */
.woocommerce-notices-wrapper .woocommerce-message, .wp-page-content .woocommerce-message {
  border: 1px solid var(--line); border-top: 2px solid var(--ink); background: var(--bone, #faf8f5);
  color: var(--ink); border-radius: 0; margin-bottom: clamp(20px,3vw,32px); }
.woocommerce-notices-wrapper .woocommerce-message a.button, .wp-page-content .woocommerce-message a.button {
  background: var(--ink); color: var(--paper); border-radius: 0; text-transform: uppercase; letter-spacing: .1em; font-weight: 600; }

/* v80: sadece kart — boş Express Checkout kutusunu ve PayPal kalıntılarını gizle */
.wc-block-components-express-payment,
.wc-block-components-express-payment-continue-rule,
[data-block-name="woocommerce-paypal-payments/checkout-paylater-messages"],
.ppcp-messages, [data-pp-message] { display: none !important; }
