:root {
  --bg: #f4f5ef;
  --surface: #ffffff;
  --surface-2: #eef0e9;
  --ink: #131512;
  --muted: #697067;
  --line: rgba(19, 21, 18, 0.1);
  --accent: #d9ff00;
  --accent-ink: #11140c;
  --hero: linear-gradient(145deg, #ffffff, #eef1e8);
  --stage: linear-gradient(145deg, #f8f9f4, #e8ece4);
  --shadow: 0 28px 80px rgba(16, 20, 14, 0.12);
  --radius: 30px;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.28;
  mask-image: linear-gradient(#000, transparent 80%);
}
body.drawer-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
[hidden] { display: none !important; }

.container { width: min(1180px, calc(100% - 34px)); margin-inline: auto; }
.skip-link {
  position: fixed;
  left: 16px;
  top: -90px;
  z-index: 500;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg);
}
.skip-link:focus { top: 16px; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

.demo-bar {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 7px 16px;
  background: var(--ink);
  color: var(--bg);
  font: 700 9px/1.4 var(--mono);
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}
.demo-bar i { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 16px var(--accent); }

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.header-wrap { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 8px; font: 800 17px/1 var(--mono); letter-spacing: 0.11em; text-transform: uppercase; }
.brand i { color: var(--accent); font-style: normal; text-shadow: 0 0 16px var(--accent); }
.nav { display: flex; align-items: center; gap: 27px; color: var(--muted); font-size: 13px; }
.nav a { transition: color 0.2s; }
.nav a:hover { color: var(--ink); }
.header-actions { display: flex; align-items: center; gap: 9px; }
.icon-button, .bag-button, .menu-button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 82%, transparent);
  cursor: pointer;
}
.bag-button { display: inline-flex; align-items: center; gap: 9px; padding: 0 15px; font: 750 10px/1 var(--mono); letter-spacing: 0.08em; text-transform: uppercase; }
.bag-count { min-width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; background: var(--accent); color: var(--accent-ink); }
.menu-button { display: none; width: 42px; padding: 0; place-items: center; font-size: 18px; }

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  font: 800 10px/1 var(--mono);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 16px 32px color-mix(in srgb, var(--accent) 25%, transparent); }
.button.secondary { background: transparent; border-color: var(--line); color: var(--ink); }
.button.dark { background: var(--ink); color: var(--bg); }
.button.small { min-height: 42px; padding: 0 15px; }

.kicker { display: inline-flex; align-items: center; gap: 9px; font: 800 10px/1 var(--mono); letter-spacing: 0.14em; color: var(--muted); text-transform: uppercase; }
.kicker::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 14px var(--accent); }
.section { padding: clamp(72px, 9vw, 118px) 0; }
.section-head { display: grid; grid-template-columns: 1fr minmax(280px, 0.65fr); gap: 40px; align-items: end; margin-bottom: 34px; }
.section-head h2 { margin: 11px 0 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(46px, 6vw, 82px); font-weight: 400; line-height: 0.92; letter-spacing: -0.055em; }
.section-head p { margin: 0; color: var(--muted); line-height: 1.75; }

.hero { padding: 18px 0 0; }
.hero-shell {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid var(--line);
  border-radius: 42px;
  background: var(--hero);
  box-shadow: var(--shadow);
}
.hero-shell::after {
  content: "";
  position: absolute;
  right: -12%;
  top: -35%;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  border: 1px solid var(--line);
  box-shadow: 0 0 0 90px color-mix(in srgb, var(--accent) 6%, transparent), 0 0 0 180px color-mix(in srgb, var(--accent) 3%, transparent);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 0.86fr 1.14fr; gap: clamp(30px, 6vw, 76px); align-items: center; }
.hero-copy h1 { margin: 18px 0 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(58px, 7.7vw, 112px); font-weight: 400; line-height: 0.86; letter-spacing: -0.065em; }
.hero-copy h1 em { color: var(--accent); font-weight: inherit; }
.hero-copy > p { max-width: 560px; margin: 24px 0 0; color: var(--muted); font-size: 16px; line-height: 1.75; }
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin-top: 30px; }
.hero-stat { padding: 14px; border: 1px solid var(--line); border-radius: 18px; background: color-mix(in srgb, var(--surface) 68%, transparent); }
.hero-stat small { display: block; color: var(--muted); font: 700 9px/1.4 var(--mono); letter-spacing: 0.08em; text-transform: uppercase; }
.hero-stat strong { display: block; margin-top: 7px; font-size: 20px; letter-spacing: -0.04em; }
.hero-visual { position: relative; min-height: 590px; border: 1px solid var(--line); border-radius: 30px; background: var(--stage); overflow: hidden; }
.hero-visual > img { width: 100%; height: 100%; min-height: 590px; object-fit: cover; object-position: top center; }
.visual-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(280px, calc(100% - 36px));
  padding: 17px;
  border: 1px solid color-mix(in srgb, var(--line) 60%, transparent);
  border-radius: 20px;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(16px);
}
.visual-card small { font: 750 9px/1 var(--mono); letter-spacing: 0.1em; color: var(--muted); text-transform: uppercase; }
.visual-card strong { display: block; margin-top: 7px; font-size: 20px; }
.visual-card p { margin: 8px 0 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.availability { display: inline-flex; align-items: center; gap: 7px; margin-top: 12px; font: 700 9px/1 var(--mono); letter-spacing: 0.08em; text-transform: uppercase; }
.availability::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #4bd47b; box-shadow: 0 0 12px #4bd47b; }

.trust-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 18px; overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: var(--line); }
.trust-item { padding: 20px; background: var(--surface); }
.trust-item b { display: block; font-size: 14px; }
.trust-item span { display: block; margin-top: 5px; color: var(--muted); font-size: 11px; line-height: 1.45; }

.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.filter-button {
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  font: 750 9px/1 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}
.filter-button[aria-pressed="true"] { background: var(--ink); color: var(--bg); }
.catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.product-card { display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: var(--surface); box-shadow: 0 18px 45px rgba(15, 18, 13, 0.06); }
.product-visual { position: relative; min-height: 300px; overflow: hidden; background: var(--stage); }
.product-visual::before, .product-visual::after { content: ""; position: absolute; border-radius: 50%; }
.product-visual::before { width: 210px; height: 210px; right: -30px; top: -40px; background: color-mix(in srgb, var(--accent) 20%, transparent); filter: blur(2px); }
.product-visual::after { width: 170px; height: 170px; left: -50px; bottom: -70px; border: 1px solid color-mix(in srgb, var(--ink) 14%, transparent); box-shadow: 0 0 0 36px color-mix(in srgb, var(--ink) 3%, transparent); }
.product-visual img { position: relative; z-index: 2; width: 100%; height: 300px; object-fit: cover; transition: transform 0.45s ease; }
.product-card:hover .product-visual img { transform: scale(1.025); }
.product-badge { position: absolute; z-index: 3; left: 14px; top: 14px; padding: 8px 10px; border-radius: 999px; background: color-mix(in srgb, var(--surface) 88%, transparent); font: 750 8px/1 var(--mono); letter-spacing: 0.08em; text-transform: uppercase; backdrop-filter: blur(10px); }
.product-body { display: flex; flex: 1; flex-direction: column; padding: 19px; }
.product-meta { display: flex; align-items: start; justify-content: space-between; gap: 16px; }
.product-meta small { color: var(--muted); font: 700 9px/1.4 var(--mono); letter-spacing: 0.08em; text-transform: uppercase; }
.product-meta strong { display: block; margin-top: 5px; font-size: 22px; letter-spacing: -0.04em; }
.price { font-weight: 750; white-space: nowrap; }
.product-body > p { margin: 13px 0 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.option-group { display: flex; align-items: center; gap: 7px; flex-wrap: wrap; margin-top: 16px; }
.option-label { width: 100%; color: var(--muted); font: 700 8px/1 var(--mono); letter-spacing: 0.1em; text-transform: uppercase; }
.option-button { min-width: 34px; min-height: 34px; padding: 0 10px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface-2); font-size: 11px; cursor: pointer; }
.option-button[aria-pressed="true"] { border-color: var(--ink); background: var(--ink); color: var(--bg); }
.swatch { width: 31px; min-width: 31px; padding: 0; background: var(--swatch, var(--surface-2)); box-shadow: inset 0 0 0 5px var(--surface); }
.swatch[aria-pressed="true"] { outline: 2px solid var(--ink); outline-offset: 2px; background: var(--swatch); }
.product-actions { display: grid; grid-template-columns: 1fr auto; gap: 8px; margin-top: auto; padding-top: 19px; }
.product-actions .button { width: 100%; }
.heart-button { width: 48px; min-width: 48px; min-height: 48px; border: 1px solid var(--line); border-radius: 50%; background: var(--surface); cursor: pointer; }
.heart-button[aria-pressed="true"] { background: var(--ink); color: var(--accent); }
.empty-filter { grid-column: 1 / -1; padding: 40px; border: 1px dashed var(--line); border-radius: 24px; color: var(--muted); text-align: center; }

.feature-split { display: grid; grid-template-columns: 1.15fr 0.85fr; overflow: hidden; border: 1px solid var(--line); border-radius: 34px; background: var(--surface); }
.feature-media { min-height: 560px; background: var(--stage); }
.feature-media img { width: 100%; height: 100%; min-height: 560px; object-fit: cover; }
.feature-copy { padding: clamp(30px, 6vw, 70px); align-self: center; }
.feature-copy h2 { margin: 15px 0 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(44px, 5vw, 72px); font-weight: 400; line-height: 0.92; letter-spacing: -0.05em; }
.feature-copy > p { margin: 20px 0 0; color: var(--muted); line-height: 1.75; }
.feature-list { display: grid; gap: 12px; margin-top: 25px; }
.feature-list div { display: grid; grid-template-columns: 34px 1fr; gap: 12px; align-items: start; padding-top: 12px; border-top: 1px solid var(--line); }
.feature-list i { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 9px; background: var(--accent); color: var(--accent-ink); font-style: normal; }
.feature-list b { display: block; font-size: 13px; }
.feature-list span { display: block; margin-top: 4px; color: var(--muted); font-size: 12px; line-height: 1.5; }

.action-shell { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 16px; padding: 16px; border-radius: 34px; background: var(--ink); color: var(--bg); }
.action-copy { padding: clamp(28px, 5vw, 58px); align-self: center; }
.action-copy .kicker { color: color-mix(in srgb, var(--bg) 65%, transparent); }
.action-copy h2 { margin: 16px 0 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(48px, 5.6vw, 76px); font-weight: 400; line-height: 0.9; letter-spacing: -0.055em; }
.action-copy p { color: color-mix(in srgb, var(--bg) 68%, transparent); line-height: 1.7; }
.demo-form { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; padding: clamp(22px, 4vw, 42px); border-radius: 25px; background: var(--surface); color: var(--ink); }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label, .field legend { color: var(--muted); font: 750 9px/1.3 var(--mono); letter-spacing: 0.09em; text-transform: uppercase; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface-2);
  color: var(--ink);
  padding: 0 14px;
}
.field textarea { min-height: 112px; padding-block: 14px; resize: vertical; }
.field input[type="range"] { padding: 0; }
.check { grid-column: 1 / -1; display: flex; align-items: flex-start; gap: 9px; color: var(--muted); font-size: 11px; line-height: 1.5; }
.check input { margin-top: 2px; accent-color: var(--accent); }
.form-actions { grid-column: 1 / -1; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.form-note { color: var(--muted); font-size: 10px; line-height: 1.5; }
.form-success { grid-column: 1 / -1; padding: 14px; border-radius: 14px; background: color-mix(in srgb, #39c86f 12%, var(--surface)); color: #176934; font-size: 12px; line-height: 1.55; }
.range-output { display: block; margin-top: 8px; font-size: 24px; font-weight: 750; }

.quiz-options { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.quiz-option { position: relative; }
.quiz-option input { position: absolute; opacity: 0; pointer-events: none; }
.quiz-option span { min-height: 88px; display: grid; align-content: center; gap: 6px; padding: 14px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface-2); cursor: pointer; }
.quiz-option b { font-size: 13px; }
.quiz-option small { color: var(--muted); line-height: 1.4; }
.quiz-option input:checked + span { border-color: var(--ink); box-shadow: inset 0 0 0 2px var(--ink); }
.quiz-result { grid-column: 1 / -1; padding: 20px; border: 1px solid var(--line); border-radius: 18px; background: var(--surface-2); }
.quiz-result strong { display: block; font-family: Georgia, serif; font-size: 28px; font-weight: 400; }
.quiz-result p { margin: 8px 0 0; color: var(--muted); line-height: 1.6; }

.drawer-backdrop { position: fixed; inset: 0; z-index: 199; background: rgba(0, 0, 0, 0.46); opacity: 0; visibility: hidden; transition: 0.25s; }
.drawer-backdrop.open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 200;
  width: min(430px, 100%);
  height: 100dvh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: var(--surface);
  box-shadow: -28px 0 70px rgba(0, 0, 0, 0.22);
  transform: translateX(105%);
  transition: transform 0.3s ease;
}
.drawer.open { transform: translateX(0); }
.drawer-head, .drawer-foot { padding: 20px; border-bottom: 1px solid var(--line); }
.drawer-foot { border-top: 1px solid var(--line); border-bottom: 0;
  /* ⚠️ Demolar viewport-fit=cover kullanıyor: çentikli telefonda görüntü
     alanı ana düğme çubuğunun altına uzanıyor. Bu dolgu olmadan
     "Siparişi tamamla" düğmesi çubuğun altında kalıyor. */
  padding-bottom: calc(20px + env(safe-area-inset-bottom, 0px)); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.drawer-head h2 { margin: 0; font-family: Georgia, serif; font-size: 30px; font-weight: 400; }
.drawer-close { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; background: var(--surface-2); cursor: pointer; }
.drawer-items { overflow: auto; padding: 12px 20px; }
.drawer-empty { padding: 48px 16px; color: var(--muted); line-height: 1.6; text-align: center; }
.drawer-item { display: grid; grid-template-columns: 1fr auto; gap: 12px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.drawer-item b { display: block; font-size: 14px; }
.drawer-item small { display: block; margin-top: 5px; color: var(--muted); }
.drawer-item button { margin-top: 9px; padding: 0; border: 0; background: none; color: var(--muted); font-size: 11px; text-decoration: underline; cursor: pointer; }
.drawer-total { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 14px; }
.drawer-total strong { font-size: 20px; }
.drawer-foot .button { width: 100%; }
.drawer-foot p { margin: 10px 0 0; color: var(--muted); font-size: 10px; line-height: 1.5; text-align: center; }

.toast { position: fixed; left: 50%; bottom: calc(20px + env(safe-area-inset-bottom, 0px)); z-index: 300; max-width: min(430px, calc(100% - 24px)); padding: 14px 18px; border-radius: 15px; background: var(--ink); color: var(--bg); box-shadow: var(--shadow); font-size: 12px; line-height: 1.5; transform: translate(-50%, 130%); transition: transform 0.28s ease; }
.toast.show { transform: translate(-50%, 0); }

.footer { padding: 34px 0; border-top: 1px solid var(--line); }
.footer-wrap { display: flex; align-items: center; justify-content: space-between; gap: 18px; color: var(--muted); font-size: 12px; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }

@media (max-width: 980px) {
  .nav { position: fixed; inset: 108px 14px auto; z-index: 120; display: grid; gap: 0; padding: 12px 20px; border: 1px solid var(--line); border-radius: 24px; background: var(--surface); box-shadow: var(--shadow); visibility: hidden; opacity: 0; transform: translateY(-10px); transition: 0.22s; }
  .nav.open { visibility: visible; opacity: 1; transform: none; }
  .nav a { padding: 15px 0; border-bottom: 1px solid var(--line); }
  .nav a:last-child { border-bottom: 0; }
  .menu-button { display: grid; }
  .hero-grid, .feature-split, .action-shell { grid-template-columns: 1fr; }
  .hero-visual { min-height: 520px; }
  .hero-visual > img { min-height: 520px; }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .feature-copy { order: -1; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 20px, 1180px); }
  .demo-bar { font-size: 8px; }
  .header-wrap { min-height: 64px; }
  .brand { font-size: 14px; }
  .bag-button { width: 42px; padding: 0; justify-content: center; }
  .bag-button > span:first-child { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .nav { top: 98px; }
  .hero { padding-top: 10px; }
  .hero-shell { padding: 24px 16px 16px; border-radius: 28px; }
  .hero-copy h1 { font-size: clamp(52px, 15vw, 70px); }
  .hero-copy > p { font-size: 13px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-visual, .hero-visual > img { min-height: 390px; }
  .hero-visual { border-radius: 22px; }
  .visual-card { left: 10px; right: 10px; bottom: 10px; width: auto; }
  .trust-strip { grid-template-columns: 1fr; }
  .section { padding: 68px 0; }
  .section-head { grid-template-columns: 1fr; gap: 16px; }
  .section-head h2 { font-size: 50px; }
  .catalog-grid { grid-template-columns: 1fr; }
  .product-visual, .product-visual img { min-height: 270px; height: 270px; }
  .feature-split { border-radius: 26px; }
  .feature-media, .feature-media img { min-height: 380px; }
  .action-shell { padding: 10px; border-radius: 27px; }
  .action-copy { padding: 27px 14px; }
  .demo-form { grid-template-columns: 1fr; padding: 18px; }
  .field.full, .field, .check, .form-actions, .form-success, .quiz-options, .quiz-result { grid-column: 1; }
  .quiz-options { grid-template-columns: 1fr; }
  .form-actions { display: grid; }
  .form-actions .button { width: 100%; }
  .footer-wrap { display: grid; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

/* Independent brand sites */
body.site-drive,
body.site-mode,
body.site-table,
body.site-atelier,
body.site-skin,
body.site-shelf,
body.site-terra,
body.site-enamel { background: var(--bg); }
body.site-drive::before,
body.site-mode::before,
body.site-table::before,
body.site-atelier::before,
body.site-skin::before,
body.site-shelf::before,
body.site-terra::before,
body.site-enamel::before { display: none; }

.header {
  position: sticky;
  top: 0;
  background: var(--bg);
  backdrop-filter: none;
}
.header-wrap { min-height: 80px; }
.brand {
  gap: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: .18em;
}
.brand i { margin-left: 2px; }
.nav { font-size: 12px; letter-spacing: .025em; }

.hero { padding: 0; }
.hero > .container { width: 100%; max-width: none; }
.hero-shell {
  min-height: calc(100svh - 80px);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: var(--hero);
  box-shadow: none;
  isolation: isolate;
}
.hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.38) 38%, rgba(0,0,0,.05) 70%);
  pointer-events: none;
}
.hero-shell::after { display: none; }
.hero-grid { min-height: inherit; display: block; }
.hero-copy {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100% - 34px));
  max-width: none;
  margin-inline: auto;
  padding: clamp(88px, 13vh, 150px) 0 76px;
}
.hero-copy > .kicker,
.hero-copy > h1,
.hero-copy > p,
.hero-copy > .hero-actions,
.hero-copy > .hero-stats { max-width: 610px; }
.hero-copy h1 { font-size: clamp(70px, 9.6vw, 142px); line-height: .82; }
.hero-copy > p { max-width: 540px; color: color-mix(in srgb, var(--ink) 76%, transparent); }
.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-height: 100%;
  border: 0;
  border-radius: 0;
}
.hero-visual > img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
}
.visual-card {
  right: max(18px, calc((100vw - 1180px) / 2));
  bottom: 36px;
  z-index: 4;
  width: min(300px, calc(100% - 36px));
  border-radius: 2px;
}
.trust-strip {
  width: min(1180px, calc(100% - 34px));
  margin: 18px auto 0;
  border-radius: 2px;
}
.product-card,
.feature-split { border-radius: 2px; box-shadow: none; }
.product-visual { min-height: 360px; }
.product-visual img { height: 360px; }
.product-visual::before,
.product-visual::after { display: none; }
.catalog-grid .product-card:nth-child(2) .product-visual img { object-position: 62% center; transform: scale(1.08); }
.catalog-grid .product-card:nth-child(3) .product-visual img { object-position: 78% center; transform: scale(1.14); }
.catalog-grid .product-card:nth-child(2):hover .product-visual img { transform: scale(1.105); }
.catalog-grid .product-card:nth-child(3):hover .product-visual img { transform: scale(1.165); }
.feature-media img { object-position: 68% center; }
.concept-note { font: 700 9px/1.5 var(--mono); letter-spacing: .08em; text-transform: uppercase; }

body.site-drive .hero-shell::before,
body.site-atelier .hero-shell::before {
  background: linear-gradient(90deg, rgba(248,249,245,.98) 0%, rgba(248,249,245,.86) 31%, rgba(248,249,245,.2) 61%, transparent 78%);
}
body.site-drive .hero-visual > img { object-position: 58% center; }
body.site-drive .hero-copy h1 {
  max-width: 700px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: -.075em;
  text-transform: uppercase;
}
body.site-drive .hero-copy h1 em { font-style: normal; }
body.site-drive .visual-card { background: rgba(250,251,247,.88); }
body.site-drive .product-visual img { object-position: 58% center; }

body.site-mode .brand { font-family: Georgia, "Times New Roman", serif; font-size: 24px; font-weight: 400; letter-spacing: .22em; }
body.site-mode .hero-copy h1 { font-size: clamp(82px, 11vw, 164px); }
body.site-mode .hero-visual > img { object-position: 60% center; }
body.site-mode .hero-shell::before { background: linear-gradient(90deg, rgba(5,6,7,.91) 0%, rgba(5,6,7,.54) 39%, rgba(5,6,7,.08) 70%); }
body.site-mode .hero-copy > p { color: rgba(244,239,231,.76); }
body.site-mode .visual-card { background: rgba(12,13,14,.76); }
body.site-mode .product-visual img { object-position: 59% center; }
body.site-mode .product-card:nth-child(2) .product-visual img { object-position: 64% 25%; }
body.site-mode .feature-split { grid-template-columns: .9fr 1.1fr; }

body.site-table .brand { font-family: Georgia, "Times New Roman", serif; font-size: 17px; font-weight: 400; letter-spacing: .16em; }
body.site-table .hero-visual > img { object-position: 64% center; }
body.site-table .hero-shell::before { background: linear-gradient(90deg, rgba(15,9,7,.93) 0%, rgba(15,9,7,.64) 39%, rgba(15,9,7,.13) 72%); }
body.site-table .hero-copy > p { color: rgba(244,233,220,.75); }
body.site-table .visual-card { background: rgba(28,18,14,.78); }
body.site-table .product-visual img { object-position: 57% center; }
body.site-table .catalog-grid { gap: 1px; background: var(--line); }
body.site-table .product-card { border: 0; }

body.site-atelier .brand { font-size: 18px; font-weight: 600; letter-spacing: .28em; }
body.site-atelier .hero-visual > img { object-position: 59% center; }
body.site-atelier .hero-copy h1 {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 300;
  line-height: .88;
  letter-spacing: -.065em;
}
body.site-atelier .visual-card { background: rgba(255,255,252,.86); }
body.site-atelier .product-visual img { object-position: 58% center; }
body.site-atelier .product-card { background: transparent; border-width: 0 0 1px; }
body.site-atelier .catalog-grid { gap: 28px; }

body.site-skin .brand { font-size: 17px; letter-spacing: .22em; }
body.site-skin .hero-visual > img { object-position: 62% center; }
body.site-skin .hero-shell::before { background: linear-gradient(90deg, rgba(6,4,12,.94) 0%, rgba(6,4,12,.6) 40%, rgba(6,4,12,.08) 72%); }
body.site-skin .hero-copy h1 { font-family: Arial, Helvetica, sans-serif; font-weight: 600; letter-spacing: -.075em; }
body.site-skin .hero-copy > p { color: rgba(243,239,255,.74); }
body.site-skin .visual-card { background: rgba(14,9,25,.76); }
body.site-skin .product-visual img { object-position: 60% center; }
body.site-skin .product-card { border-color: rgba(183,125,255,.22); }

body.site-drive .product-visual img { content: url("../assets/demos/drive/collection-site.webp"); }
body.site-mode .product-visual img { content: url("../assets/demos/mode/collection-site.webp"); }
body.site-table .product-visual img { content: url("../assets/demos/table/collection-site.webp"); }
body.site-atelier .product-visual img { content: url("../assets/demos/atelier/collection-site.webp"); }
body.site-skin .product-visual img { content: url("../assets/demos/skin/collection-site.webp"); }
body[class^="site-"] .catalog-grid .product-card:nth-child(1) .product-visual img { object-position: left center !important; transform: none; }
body[class^="site-"] .catalog-grid .product-card:nth-child(2) .product-visual img { object-position: center center !important; transform: none; }
body[class^="site-"] .catalog-grid .product-card:nth-child(3) .product-visual img { object-position: right center !important; transform: none; }
body[class^="site-"] .catalog-grid .product-card:hover .product-visual img { transform: scale(1.025); }

@media (max-width: 980px) {
  .nav { top: 86px; }
  .hero-grid { min-height: inherit; display: block; }
  .hero-visual { min-height: 100%; }
  .hero-visual > img { min-height: 100%; }
  .hero-copy { padding-top: 92px; padding-bottom: 190px; }
  .hero-copy > .kicker,
  .hero-copy > h1,
  .hero-copy > p,
  .hero-copy > .hero-actions,
  .hero-copy > .hero-stats { max-width: 560px; }
  .visual-card { bottom: 24px; }
}

@media (max-width: 680px) {
  .header-wrap { min-height: 68px; }
  .brand { font-size: 13px; letter-spacing: .13em; }
  body.site-mode .brand { font-size: 18px; }
  body.site-table .brand { font-size: 13px; }
  body.site-atelier .brand { font-size: 13px; letter-spacing: .18em; }
  .nav { top: 74px; }
  .hero { padding: 0; }
  .hero-shell { min-height: calc(100svh - 68px); padding: 0; border-radius: 0; }
  .hero-copy { width: min(100% - 28px, 1180px); padding: 64px 0 212px; }
  .hero-copy h1,
  body.site-mode .hero-copy h1 { font-size: clamp(56px, 16vw, 78px); }
  .hero-copy > p { font-size: 13px; }
  .hero-actions { display: flex; }
  .hero-actions .button { width: auto; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .hero-stat { padding: 10px; background: color-mix(in srgb, var(--surface) 78%, transparent); }
  .hero-stat strong { font-size: 13px; }
  .hero-visual,
  .hero-visual > img { min-height: 100%; border-radius: 0; }
  .visual-card { left: 14px; right: 14px; bottom: 14px; width: auto; }
  .trust-strip { width: min(100% - 20px, 1180px); }
  .product-visual,
  .product-visual img { min-height: 350px; height: 350px; }
  body.site-drive .hero-visual > img { object-position: 64% center; }
  body.site-mode .hero-visual > img { object-position: 67% center; }
  body.site-table .hero-visual > img { object-position: 66% center; }
  body.site-atelier .hero-visual > img { object-position: 64% center; }
  body.site-skin .hero-visual > img { object-position: 69% center; }
  body.site-drive .hero-shell::before,
  body.site-atelier .hero-shell::before { background: linear-gradient(180deg, rgba(248,249,245,.98) 0%, rgba(248,249,245,.82) 48%, rgba(248,249,245,.12) 78%); }
  body.site-mode .hero-shell::before,
  body.site-table .hero-shell::before,
  body.site-skin .hero-shell::before { background: linear-gradient(180deg, rgba(6,5,8,.94) 0%, rgba(6,5,8,.72) 48%, rgba(6,5,8,.08) 79%); }
}

/* ═══ DOKUNMA HEDEFLERİ ═════════════════════════════════════════════
   Sekiz demoda da ölçüldü: seçenek düğmeleri 34px, filtreler 40px, marka
   ve alt bilgi bağlantıları 13–16px boyundaydı — parmakla ıskalanacak
   ölçüler. Kural "mobil uyum ultra olmalı"; hedefler 44px'e çıkarıldı.

   ⚠️ `pointer: coarse` ile sınırlı, `max-width` ile DEĞİL: fare kullanan
   dar pencerede tipografi olduğu gibi kalsın, büyütme yalnız gerçekten
   parmakla dokunulan cihazda olsun. Ölçü büyütülürken yazı boyutuna
   dokunulmuyor — düğmeler şişmiyor, yalnız dokunulabilir alan büyüyor.

   Açılır menüdeki bağlantılar (46px) ve sepet/menü düğmeleri (42px) zaten
   yeterliydi; yalnız 42'likler eşiğe tamamlandı.                        */
@media (pointer: coarse) {
  .option-button { min-height: 44px; min-width: 44px; }
  .filter-button { min-height: 44px; }
  .icon-button, .bag-button, .menu-button { min-height: 44px; }
  .menu-button { width: 44px; }
  .bag-button { min-width: 44px; }
  .drawer-close { width: 44px; height: 44px; }
  /* Sepetteki "Kaldır" 28×15'ti — satırın en kritik düğmesi en küçüğüydü.
     Dolgu satır yüksekliğini değil yalnız dokunma alanını büyütüyor. */
  .drawer-item [data-remove-index] { min-height: 44px; padding: 14px 0; }

  /*
    MİKRO ETİKETLER — 8–9px → 11px, 10px → 11,5px (kullanıcı kararı,
    16 Ağustos 2026). Bu etiketler mono, büyük harf ve geniş aralıklı;
    ölçü tasarımın parçası ama telefonda okunmuyordu.

    ⚠️ Yalnız `font-size` eziliyor. Kurallardaki `font:` kısayolu satır
    yüksekliğini SAYI olarak veriyor (`/1.4`), yani oran korunuyor ve
    satırlar orantılı büyüyor — elle satır yüksekliği ayarlamak gerekmiyor.

    ⚠️ Masaüstünde hiçbir şey değişmiyor.
  */
  .demo-bar,
  .hero-stat small,
  .visual-card small,
  .availability,
  .filter-button,
  .product-badge,
  .product-meta small,
  .field label,
  .field legend,
  .option-label,
  .concept-note { font-size: 11px; }

  /*
    ⚠️ BULANIK ZEMİN TELEFONDA KAPALI. `backdrop-filter` arkasındaki her
    pikseli her karede yeniden bulanıklaştırır; yapışkan başlıkta bu
    "her kaydırma karesinde" demek ve mobil GPU'da en pahalı işlerden biri.
    Yerine aynı rengin daha opak hâli konuyor — görünüş neredeyse aynı,
    maliyet sıfır. Masaüstünde bulanıklık duruyor.
  */
  .header { backdrop-filter: none; background: color-mix(in srgb, var(--bg) 97%, transparent); }
  .visual-card { backdrop-filter: none; background: color-mix(in srgb, var(--surface) 97%, transparent); }
  .product-badge { backdrop-filter: none; background: color-mix(in srgb, var(--surface) 96%, transparent); }

  .bag-button,
  .button,
  .kicker,
  .form-note,
  .drawer-foot p { font-size: 11.5px; }

  /* Metin bağlantılarında kutu değil, dokunma alanı büyüyor: dolgu
     ekleniyor, yazı yerinde kalıyor. */
  .brand { padding: 16px 0; }
  .footer-links a { padding: 14px 0; }
}

/* ═══════════════════════════════════════════════════════════════
   VİTRİN'E DÖNÜŞ ŞERİDİ (17 Ağustos 2026)

   ⚠️ NEDEN: sekiz demonun hiçbirinde Vitrin'e dönen bağlantı yoktu;
   doğrudan bağlantıyla gelen ziyaretçi çıkmaza giriyordu.

   ⚠️ AKIŞTA YER TUTUYOR, YÜZMÜYOR. `position: fixed` bir şerit demonun
   tasarımını sürekli örterdi; oysa bu sayfaların bütün işi kendi
   tasarımlarını göstermek. Şerit en üstte bir kez duruyor, kaydırınca
   yukarıda kalıyor.

   ⚠️ DEMONUN PALETİNİ KULLANMIYOR. Kasten yabancı: bu şerit demonun
   parçası değil, VİTRİNİN sayfanın üstüne koyduğu bir çerçeve. Demonun
   rengini giyseydi ziyaretçi onu o işletmenin menüsü sanırdı.       */
.vt-geri {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
  padding: 9px 20px;
  background: #0b0d09;
  color: #9aa196;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 999;
}
.vt-geri-baglanti {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d4ff00;
  font-weight: 700;
  text-decoration: none;
  /* Dokunma hedefi 44 pikselin altına inmemeli */
  padding: 6px 0;
  min-height: 32px;
}
.vt-geri-baglanti:hover { text-decoration: underline; }
.vt-geri-baglanti:focus-visible { outline: 2px solid #d4ff00; outline-offset: 3px; }
/* Not dar ekranda gizleniyor: bağlantı asıl iş, uyarı ikincil */
@media (max-width: 560px) { .vt-geri-not { display: none; } }
