:root {
  --bg: #FAFAF8;
  --surface: #FFFFFF;
  --ink: #1E1E1E;
  --accent: #E85D3A;
  --accent-2: #6B4C3B;
  --line: rgba(30,30,30,0.12);
  --line-strong: rgba(30,30,30,0.22);
  --header-h: 72px;
  --max-w: 1240px;
  --radius: 4px;
  --font-head: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', system-ui, sans-serif;
  --font-body: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-mono: ui-monospace, 'Cascadia Code', 'Fira Code', 'Menlo', monospace;
  interpolate-size: allow-keywords;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
html, body { overflow-x: hidden; max-width: 100vw; margin: 0; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color 240ms cubic-bezier(.4,0,.2,1); }
a:hover { color: var(--accent-2); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.15; color: var(--ink); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }

/* ── Skip Link ── */
.skip-link {
  position: fixed; top: -100%; left: 16px;
  background: var(--ink); color: var(--surface);
  padding: 8px 18px; border-radius: var(--radius);
  font-size: 14px; font-weight: 600; z-index: 9999;
  transition: top 200ms;
}
.skip-link:focus { top: 12px; }

/* ── Container ── */
.container {
  width: 100%; max-width: var(--max-w); margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

/* ── Dot Grid Background ── */
.dot-grid {
  background-image: radial-gradient(circle, rgba(30,30,30,0.07) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px; font-family: var(--font-head); font-weight: 700;
  font-size: 15px; letter-spacing: 0.02em; border-radius: var(--radius);
  transition: background 240ms cubic-bezier(.4,0,.2,1), color 240ms cubic-bezier(.4,0,.2,1), transform 200ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms;
  text-decoration: none; cursor: pointer; position: relative; overflow: hidden;
  min-height: 48px;
}
.btn-primary { background: var(--ink); color: var(--surface); }
.btn-primary:hover, .btn-primary:focus-visible { background: var(--accent); color: var(--surface); transform: translateY(-2px); box-shadow: 0 8px 24px -8px rgba(232,93,58,0.35); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line-strong); }
.btn-ghost:hover, .btn-ghost:focus-visible { background: var(--surface); color: var(--ink); border-color: var(--ink); }
.btn-accent { background: var(--accent); color: var(--surface); }
.btn-accent:hover, .btn-accent:focus-visible { background: var(--accent-2); color: var(--surface); transform: translateY(-2px); }
.btn-sm { padding: 10px 22px; font-size: 13px; min-height: 40px; }

.btn-primary::after {
  content: '';
  position: absolute; bottom: 0; left: 50%; width: 0; height: 3px;
  background: var(--accent-2);
  border-radius: 2px 2px 0 0;
  transition: width 300ms cubic-bezier(.2,.7,.2,1), left 300ms cubic-bezier(.2,.7,.2,1);
}
.btn-primary:hover::after { width: 60%; left: 20%; }

/* ── Header ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1080;
  background: rgba(250,250,248,0.92);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: background 240ms ease, box-shadow 240ms ease, padding 240ms ease;
  padding: 0;
}
.site-header.scrolled {
  background: rgba(250,250,248,0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,0.18);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); max-width: var(--max-w); margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
}
.site-header.scrolled .header-inner { height: 60px; }

.logo {
  font-family: var(--font-head); font-weight: 700; font-size: 22px;
  color: var(--ink); text-decoration: none; display: flex; align-items: center; gap: 10px;
  z-index: 1100;
}
.logo svg { flex-shrink: 0; }
.logo:hover { color: var(--accent); }
.logo-accent { color: var(--accent); }

/* ── Desktop Nav ── */
.nav-desktop { display: flex; align-items: center; gap: 6px; }
.nav-desktop a {
  padding: 8px 16px; font-size: 14px; font-weight: 500; color: var(--ink);
  position: relative; border-radius: var(--radius);
  transition: color 240ms cubic-bezier(.4,0,.2,1), background 240ms;
}
.nav-desktop a::after {
  content: ''; position: absolute; bottom: 2px; left: 16px; right: 16px;
  height: 2px; background: var(--accent); border-radius: 1px;
  transform: scaleX(0); transition: transform 280ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop a:hover { color: var(--accent); }
.nav-desktop a:hover::after { transform: scaleX(1); }
.nav-desktop a.is-active { color: var(--accent); }
.nav-desktop a.is-active::after { transform: scaleX(1); }
.nav-desktop .nav-cta {
  background: var(--ink); color: var(--surface); padding: 10px 22px;
  border-radius: var(--radius); margin-left: 10px; font-weight: 700;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover { background: var(--accent); color: var(--surface); }

@media (max-width: 1024px) { .nav-desktop { display: none; } }

/* ── Hamburger ── */
.nav-toggle {
  display: none; width: 48px; height: 48px;
  align-items: center; justify-content: center;
  z-index: 1100; position: relative; background: none; border: none; cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block; width: 24px; height: 2.5px; background: var(--ink);
  border-radius: 2px; position: absolute;
  left: 50%; top: 50%; margin-left: -12px; margin-top: -1.25px;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), opacity 200ms;
}
.nav-toggle span:nth-child(1) { transform: translateY(-7px); }
.nav-toggle span:nth-child(2) { transform: translateY(0); }
.nav-toggle span:nth-child(3) { transform: translateY(7px); }
.nav-toggle.is-active span:nth-child(1) { transform: rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: rotate(-45deg); }

@media (max-width: 1024px) { .nav-toggle { display: flex; } }

/* ── Mobile Drawer ── */
.drawer-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,0.55);
  z-index: 1040; opacity: 0; pointer-events: none;
  transition: opacity 240ms ease;
}
.drawer-backdrop.is-open { opacity: 1; pointer-events: auto; }

.mobile-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw); z-index: 1050;
  background: var(--surface);
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  display: flex; flex-direction: column;
  padding: calc(var(--header-h) + 24px) 32px 32px;
  overflow-y: auto;
}
.mobile-drawer.is-open { transform: translateX(0); }
.drawer-close {
  position: absolute; top: 16px; right: 16px;
  width: 44px; height: 44px; min-width: 44px; min-height: 44px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; line-height: 1; color: var(--ink);
  background: none; border: none; cursor: pointer;
  border-radius: var(--radius);
  transition: color 200ms cubic-bezier(.4,0,.2,1), background 200ms;
  z-index: 1;
}
.drawer-close:hover { color: var(--accent); background: rgba(30,30,30,0.06); }
.mobile-drawer a {
  display: block; padding: 14px 0; font-size: 18px; font-weight: 600;
  color: var(--ink); border-bottom: 1px solid var(--line);
  font-family: var(--font-head);
  transition: color 200ms, transform 200ms;
}
.mobile-drawer a:hover { color: var(--accent); transform: translateX(4px); }
.mobile-drawer a.is-active { color: var(--accent); }
.mobile-drawer .drawer-cta {
  margin-top: 24px; display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent); color: var(--surface); padding: 14px 28px;
  border-radius: var(--radius); font-weight: 700; font-size: 16px;
  text-align: center;
}
.mobile-drawer .drawer-cta:hover { background: var(--accent-2); color: var(--surface); transform: none; }

/* ── Scroll Progress ── */
.scroll-progress {
  position: absolute; bottom: 0; left: 0; height: 2px;
  background: var(--accent); width: 0%;
  transition: none; pointer-events: none; z-index: 1;
}

/* ── Main ── */
main { padding-top: var(--header-h); }

/* ── Section Common ── */
.section { padding: clamp(60px, 10vw, 100px) 0; }
.section-eyebrow {
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent);
  display: block; margin-bottom: 12px;
}
.section-title { margin-bottom: 16px; }
.section-sub { font-size: 17px; color: rgba(30,30,30,0.65); max-width: 540px; margin-bottom: 40px; }

/* ── Hero / Konfigurator ── */
.hero-konfig {
  padding-top: clamp(32px, 6vw, 60px);
  padding-bottom: clamp(48px, 8vw, 80px);
  position: relative;
}
.hero-konfig .dot-grid-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(30,30,30,0.06) 1px, transparent 1px);
  background-size: 24px 24px;
}
.hero-intro { position: relative; z-index: 1; margin-bottom: 40px; }
.hero-intro .section-eyebrow { margin-bottom: 14px; }
.hero-intro h1 { margin-bottom: 16px; }
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius);
  font-size: 13px; font-weight: 500; font-family: var(--font-mono);
}
.hero-badge svg { color: var(--accent); flex-shrink: 0; }

.konfig-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 48px);
  position: relative; z-index: 1; align-items: start;
}
@media (max-width: 768px) { .konfig-grid { grid-template-columns: 1fr; } }

/* ── Konfigurator Form ── */
.konfig-form {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(20px, 3vw, 32px);
}
.konfig-progress { margin-bottom: 28px; }
.progress-track {
  height: 4px; background: var(--line); border-radius: 2px;
  margin-bottom: 16px; overflow: hidden;
}
.progress-fill {
  height: 100%; background: var(--accent); border-radius: 2px;
  transition: width 400ms cubic-bezier(.2,.7,.2,1);
}
.progress-steps { display: flex; gap: 4px; }
.progress-step {
  flex: 1; text-align: center; font-size: 12px; font-family: var(--font-mono);
  font-weight: 500; color: rgba(30,30,30,0.4); padding: 6px 4px;
  border-radius: var(--radius); cursor: pointer;
  transition: color 200ms, background 200ms;
}
.progress-step.active { color: var(--accent); background: rgba(232,93,58,0.08); }
.progress-step.done { color: var(--accent-2); }

.step-panel { display: none; }
.step-panel.active { display: block; }
.step-title {
  font-family: var(--font-head); font-size: 18px; font-weight: 700;
  margin-bottom: 20px;
}

/* Step 1: Box Size */
.size-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.size-card {
  background: var(--bg); border: 2px solid var(--line);
  border-radius: var(--radius); padding: 20px 16px;
  text-align: center; cursor: pointer;
  transition: border-color 200ms, transform 200ms cubic-bezier(.2,.7,.2,1), box-shadow 200ms;
}
.size-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.size-card.selected {
  border-color: var(--accent); background: rgba(232,93,58,0.05);
  box-shadow: 0 4px 16px -4px rgba(232,93,58,0.2);
  animation: micro-bounce 200ms cubic-bezier(.2,.7,.2,1);
}
.size-card .size-count {
  font-family: var(--font-head); font-size: 32px; font-weight: 700;
  color: var(--ink); display: block; margin-bottom: 4px;
}
.size-card .size-label {
  font-size: 13px; color: rgba(30,30,30,0.6); display: block; margin-bottom: 8px;
}
.size-card .size-price {
  font-family: var(--font-mono); font-size: 14px; font-weight: 700; color: var(--accent);
}

/* Step 2: Praline Selection */
.praline-counter {
  font-family: var(--font-mono); font-size: 13px;
  color: rgba(30,30,30,0.6); margin-bottom: 16px;
}
.praline-counter strong { color: var(--accent); }
.praline-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.praline-option {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; background: var(--bg);
  border: 1.5px solid var(--line); border-radius: var(--radius);
  cursor: pointer; transition: border-color 200ms, background 200ms;
  user-select: none;
}
.praline-option:hover { border-color: var(--accent-2); }
.praline-option.selected {
  border-color: var(--accent); background: rgba(232,93,58,0.05);
  box-shadow: 0 2px 8px -2px rgba(232,93,58,0.15);
  animation: micro-bounce 200ms cubic-bezier(.2,.7,.2,1);
}
.praline-option.disabled { opacity: 0.4; cursor: not-allowed; }
.praline-dot {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  border: 2px solid rgba(0,0,0,0.08);
}
.praline-name { font-size: 13px; font-weight: 500; line-height: 1.3; }
@media (max-width: 480px) { .praline-grid { grid-template-columns: 1fr; } }

/* Step 3: Packaging */
.packaging-options { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pack-card {
  border: 2px solid var(--line); border-radius: var(--radius);
  padding: 24px 20px; cursor: pointer; text-align: center;
  transition: border-color 200ms, transform 200ms cubic-bezier(.2,.7,.2,1);
}
.pack-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.pack-card.selected {
  border-color: var(--accent); background: rgba(232,93,58,0.05);
  box-shadow: 0 4px 16px -4px rgba(232,93,58,0.2);
  animation: micro-bounce 200ms cubic-bezier(.2,.7,.2,1);
}
.pack-card svg { margin: 0 auto 12px; display: block; color: var(--accent-2); }
.pack-card .pack-name { font-family: var(--font-head); font-weight: 700; font-size: 16px; margin-bottom: 6px; }
.pack-card .pack-desc { font-size: 13px; color: rgba(30,30,30,0.6); margin-bottom: 10px; }
.pack-card .pack-price { font-family: var(--font-mono); font-size: 14px; font-weight: 700; color: var(--accent); }

/* Step 4: Message */
.msg-textarea {
  width: 100%; min-height: 120px; padding: 14px 16px;
  border: 1.5px solid var(--line); border-radius: var(--radius);
  font-family: var(--font-body); font-size: 15px; resize: vertical;
  transition: border-color 240ms;
  background: var(--bg); color: var(--ink);
}
.msg-textarea:focus { outline: none; border-color: var(--accent); }
.msg-char-count {
  font-family: var(--font-mono); font-size: 12px;
  color: rgba(30,30,30,0.5); margin-top: 8px; text-align: right;
}

/* Nav Buttons */
.konfig-nav {
  display: flex; gap: 12px; margin-top: 28px; justify-content: space-between;
}
.konfig-nav .btn { flex: 1; }

/* ── Box Preview ── */
.konfig-preview { position: sticky; top: calc(var(--header-h) + 24px); }
.box-outer {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
}
.box-lid {
  background: var(--accent-2); color: var(--surface);
  padding: 16px 20px; text-align: center;
  font-family: var(--font-head); font-weight: 700; font-size: 15px;
  letter-spacing: 0.04em;
  transform-origin: top center;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.box-lid.is-open { transform: perspective(600px) rotateX(-25deg); }
.box-lid .lid-brand { display: block; font-size: 11px; font-weight: 400; opacity: 0.7; margin-top: 2px; font-family: var(--font-mono); }
.box-slots {
  display: grid; gap: 6px; padding: 20px;
  background: linear-gradient(135deg, #F5EDE4 0%, #EADDD2 100%);
  min-height: 180px;
}
.box-slots[data-size="6"] { grid-template-columns: repeat(3, 1fr); }
.box-slots[data-size="12"] { grid-template-columns: repeat(4, 1fr); }
.box-slots[data-size="24"] { grid-template-columns: repeat(6, 1fr); }

.box-slot {
  aspect-ratio: 1; border-radius: 50%;
  border: 2px dashed rgba(107,76,59,0.25);
  background: rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center;
  transition: background 300ms, border-color 300ms, transform 200ms;
}
.box-slot.filled {
  border: 2px solid rgba(0,0,0,0.1);
  animation: micro-bounce 200ms cubic-bezier(.2,.7,.2,1);
}
.box-slot.filled .slot-inner {
  width: 80%; height: 80%; border-radius: 50%;
}

.price-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-top: 1px solid var(--line);
  background: var(--surface);
}
.price-label { font-size: 14px; color: rgba(30,30,30,0.6); }
.price-value {
  font-family: var(--font-mono); font-size: 24px; font-weight: 700; color: var(--accent);
}
.price-note {
  font-family: var(--font-mono); font-size: 11px; color: rgba(30,30,30,0.45);
  text-align: right; padding: 6px 20px 12px; background: var(--surface);
}

/* ── Populer Section ── */
.populer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 768px) { .populer-grid { grid-template-columns: 1fr; } }

.combo-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms;
  position: relative;
}
.combo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -12px rgba(107,76,59,0.22), 0 0 0 1px rgba(107,76,59,0.06);
}
.combo-card::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transition: left 500ms cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
}
.combo-card:hover::after { left: 120%; }

.combo-preview {
  padding: 20px;
  background: linear-gradient(135deg, #F5EDE4 0%, #EADDD2 100%);
}
.combo-mini-grid {
  display: grid; gap: 4px; max-width: 160px; margin: 0 auto;
}
.combo-mini-grid[data-cols="3"] { grid-template-columns: repeat(3, 1fr); }
.combo-mini-grid[data-cols="4"] { grid-template-columns: repeat(4, 1fr); }
.combo-mini-dot {
  aspect-ratio: 1; border-radius: 50%; border: 1px solid rgba(0,0,0,0.08);
}
.combo-body { padding: 20px; }
.combo-tag {
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  color: var(--accent); letter-spacing: 0.05em; text-transform: uppercase;
  margin-bottom: 8px;
}
.combo-name { font-family: var(--font-head); font-weight: 700; font-size: 18px; margin-bottom: 6px; }
.combo-desc { font-size: 14px; color: rgba(30,30,30,0.6); margin-bottom: 14px; line-height: 1.5; }
.combo-footer { display: flex; align-items: center; justify-content: space-between; }
.combo-price { font-family: var(--font-mono); font-weight: 700; font-size: 18px; color: var(--accent); }

/* ── Malzeme Section ── */
.malzeme-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
@media (max-width: 768px) { .malzeme-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .malzeme-grid { grid-template-columns: repeat(2, 1fr); } }

.malzeme-item {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 24px 16px; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius);
  text-align: center;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms, border-color 300ms;
}
.malzeme-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px -8px rgba(107,76,59,0.22), 0 0 14px -4px rgba(232,93,58,0.08);
  border-color: var(--accent-2);
}
.malzeme-icon {
  width: 44px; height: 44px; color: var(--accent-2);
  transition: color 240ms, transform 240ms;
}
.malzeme-item:hover .malzeme-icon { color: var(--accent); transform: scale(1.08); }
.malzeme-name { font-weight: 600; font-size: 14px; }

/* ── Nasil Section ── */
.nasil-list { max-width: 640px; }
.nasil-step {
  display: flex; gap: 20px; padding: 28px 8px;
  border-bottom: 1px solid var(--line);
  border-radius: var(--radius);
  transition: background 240ms cubic-bezier(.4,0,.2,1);
}
.nasil-step:hover { background: rgba(107,76,59,0.03); }
.nasil-step:last-child { border-bottom: none; }
.nasil-num {
  font-family: var(--font-mono); font-size: 32px; font-weight: 700;
  color: var(--accent); line-height: 1; min-width: 44px;
  flex-shrink: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1);
}
.nasil-step:hover .nasil-num { transform: scale(1.08); }
.nasil-content h3 { font-size: 17px; margin-bottom: 6px; }
.nasil-content p { font-size: 15px; color: rgba(30,30,30,0.65); line-height: 1.55; }

/* ── Teslimat Section ── */
.teslimat-content {
  max-width: 680px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(24px, 4vw, 40px);
}
.teslimat-row {
  display: flex; gap: 16px; padding: 14px 8px;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
  border-radius: var(--radius);
  transition: background 240ms cubic-bezier(.4,0,.2,1), padding-left 240ms;
}
.teslimat-row:hover { background: rgba(107,76,59,0.03); padding-left: 12px; }
.teslimat-row:last-child { border-bottom: none; }
.teslimat-label {
  font-family: var(--font-head); font-weight: 700; font-size: 14px;
  min-width: 140px; flex-shrink: 0;
}
.teslimat-val { font-size: 15px; color: rgba(30,30,30,0.7); }

/* ── Footer ── */
.site-footer {
  background: var(--ink); color: rgba(255,255,255,0.75);
  padding: clamp(48px, 8vw, 80px) 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand .logo { color: var(--surface); margin-bottom: 14px; }
.footer-brand .logo:hover { color: var(--accent); }
.footer-brand p { font-size: 14px; line-height: 1.6; max-width: 280px; }
.footer-col h4 {
  color: var(--surface); font-size: 14px; font-family: var(--font-head);
  font-weight: 700; margin-bottom: 16px; letter-spacing: 0.04em;
}
.footer-col a {
  display: block; padding: 5px 0; font-size: 14px; color: rgba(255,255,255,0.6);
  transition: color 200ms, transform 200ms;
}
.footer-col a:hover { color: var(--accent); transform: translateX(4px); }
.footer-bottom {
  padding: 24px 0; text-align: center; font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ── Cookie Banner ── */
.cookie-banner {
  position: fixed; bottom: 16px; left: 16px; right: 16px;
  max-width: 520px; margin: 0 auto;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px 24px;
  box-shadow: 0 16px 48px -12px rgba(0,0,0,0.2);
  transform: translateY(140%); opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  z-index: 9999;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
@media (min-width: 1024px) { .cookie-banner { left: 24px; right: auto; max-width: 420px; } }

.cookie-banner h3 {
  font-size: 16px; margin-bottom: 8px; font-family: var(--font-head);
}
.cookie-banner p { font-size: 13px; color: rgba(30,30,30,0.65); margin-bottom: 16px; line-height: 1.5; }
.cookie-banner a { color: var(--accent); text-decoration: underline; }
.cookie-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.cookie-actions button {
  flex: 1; min-width: 100px; min-height: 44px;
  padding: 10px 16px; font-size: 13px; font-weight: 600;
  font-family: var(--font-head); border-radius: var(--radius);
  cursor: pointer; transition: background 200ms, color 200ms;
}
.cookie-actions .cookie-accept { background: var(--ink); color: var(--surface); border: none; }
.cookie-actions .cookie-accept:hover { background: var(--accent); color: var(--surface); }
.cookie-actions .cookie-reject { background: transparent; color: var(--ink); border: 1.5px solid var(--line-strong); }
.cookie-actions .cookie-reject:hover { background: var(--bg); color: var(--ink); border-color: var(--ink); }
.cookie-actions .cookie-settings { background: transparent; color: var(--ink); border: 1.5px solid var(--line-strong); }
.cookie-actions .cookie-settings:hover { background: var(--bg); color: var(--ink); }

/* ── Contact Page ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 60px); align-items: start; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-channels {
  display: grid; grid-template-columns: 1fr; gap: 0;
}
.contact-row {
  display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start;
  padding: 16px 0; border-bottom: 1px solid var(--line);
  transition: transform 240ms cubic-bezier(.4,0,.2,1), background 240ms;
  border-radius: var(--radius);
}
.contact-row:hover { transform: translateX(4px); background: rgba(232,93,58,0.02); }
.contact-row:last-child { border-bottom: none; }
.contact-row svg {
  width: 20px; height: 20px; color: var(--accent-2);
  transition: color 240ms, transform 240ms;
  margin-top: 2px;
}
.contact-row:hover svg { color: var(--accent); transform: scale(1.08); }
.contact-label {
  font-family: var(--font-head); font-weight: 700; font-size: 14px;
  margin-bottom: 4px;
}
.contact-val { font-size: 15px; color: rgba(30,30,30,0.7); word-break: break-word; overflow-wrap: anywhere; }
.contact-val a { color: var(--accent-2); }
.contact-val a:hover { color: var(--accent); }

/* ── Form ── */
.form-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(24px, 4vw, 36px);
}
.field { margin-bottom: 18px; }
.field label {
  display: block; font-size: 14px; font-weight: 600;
  margin-bottom: 6px; font-family: var(--font-head);
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--line); border-radius: var(--radius);
  font-size: 15px; background: var(--bg); color: var(--ink);
  transition: border-color 240ms;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent);
}
.field textarea { min-height: 120px; resize: vertical; }
.field select { cursor: pointer; }
.field-check {
  display: flex; align-items: flex-start; gap: 10px;
}
.field input[type="checkbox"] {
  appearance: auto; -webkit-appearance: auto;
  width: 18px; height: 18px; min-width: 18px; min-height: 18px;
  padding: 0; border: 0; margin: 2px 0 0;
  accent-color: var(--accent);
}
.field-check label { font-size: 13px; line-height: 1.5; font-weight: 400; }
.field-error { font-size: 12px; color: #D32F2F; margin-top: 4px; display: none; }
.field-error.is-visible { display: block; }
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

.form-success {
  display: none; text-align: center; padding: 40px 20px;
}
.form-success.is-visible { display: block; }
.form-success svg { margin: 0 auto 16px; color: #43A047; }
.form-success h3 { font-size: 20px; margin-bottom: 8px; }
.form-success p { color: rgba(30,30,30,0.6); }

/* ── Legal Pages ── */
.legal-page { padding-top: 32px; padding-bottom: 60px; }
.legal-page h1 { margin-bottom: 8px; font-size: clamp(1.6rem, 3.5vw, 2.2rem); }
.legal-date { font-family: var(--font-mono); font-size: 13px; color: rgba(30,30,30,0.5); margin-bottom: 32px; }
.legal-body { max-width: 740px; }
.legal-body h2 { font-size: 20px; margin: 32px 0 12px; padding-top: 16px; border-top: 1px solid var(--line); }
.legal-body h3 { font-size: 17px; margin: 20px 0 8px; }
.legal-body p { margin-bottom: 14px; color: rgba(30,30,30,0.78); line-height: 1.7; }
.legal-body ul, .legal-body ol { margin: 12px 0 14px 24px; }
.legal-body li { margin-bottom: 6px; color: rgba(30,30,30,0.78); line-height: 1.6; list-style: disc; }
.legal-body ol li { list-style: decimal; }
.legal-body a { color: var(--accent); text-decoration: underline; }

/* ── Table Scroll ── */
.table-scroll {
  display: block; width: 100%; max-width: 100%; min-width: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.table-scroll > table { margin: 0 !important; min-width: 480px; width: 100%; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }

table { border-collapse: collapse; width: 100%; }
th, td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--line); font-size: 14px; }
th { font-family: var(--font-head); font-weight: 700; font-size: 13px; background: var(--bg); }

/* ── 404 Page ── */
.page-404 { text-align: center; padding: clamp(80px, 15vw, 160px) 0; }
.page-404 h1 { font-size: clamp(4rem, 12vw, 8rem); color: var(--accent); margin-bottom: 8px; }
.page-404 p { font-size: 18px; color: rgba(30,30,30,0.6); margin-bottom: 32px; }

/* ── Sitemap Page ── */
.sitemap-list { max-width: 640px; }
.sitemap-list li { padding: 10px 0; border-bottom: 1px solid var(--line); }
.sitemap-list a { font-weight: 500; font-size: 15px; }

/* ── About Page ── */
.about-hero { padding: clamp(40px, 8vw, 80px) 0; }
.about-content { max-width: 720px; }
.about-content p { margin-bottom: 18px; font-size: 16px; line-height: 1.75; color: rgba(30,30,30,0.78); }
.about-values {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 48px;
}
@media (max-width: 640px) { .about-values { grid-template-columns: 1fr; } }
.value-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 24px; text-align: center;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms;
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px -8px rgba(107,76,59,0.22), 0 0 20px -6px rgba(232,93,58,0.1);
}
.value-card svg { margin: 0 auto 14px; display: block; color: var(--accent); }
.value-card h3 { font-size: 16px; margin-bottom: 8px; }
.value-card p { font-size: 14px; color: rgba(30,30,30,0.6); line-height: 1.55; }

/* ── Reveal ── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 600ms cubic-bezier(.2,.7,.2,1), transform 600ms cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
html.no-js .reveal { opacity: 1; transform: none; }

/* ── Niche Animations: Chocolate ── */
@keyframes micro-bounce {
  0% { transform: scale(1); }
  40% { transform: scale(1.12); }
  70% { transform: scale(0.96); }
  100% { transform: scale(1); }
}

@keyframes shimmer-sweep {
  0% { left: -100%; }
  100% { left: 120%; }
}

@keyframes cocoa-float {
  0% { transform: translateY(0) rotate(0deg) scale(0.8); opacity: 0; }
  15% { opacity: 0.6; }
  85% { opacity: 0.5; }
  100% { transform: translateY(-140px) rotate(200deg) scale(1); opacity: 0; }
}

@keyframes drip-reveal {
  0% { transform: scaleY(0); transform-origin: top; }
  60% { transform: scaleY(1.04); }
  100% { transform: scaleY(1); transform-origin: top; }
}

@keyframes choco-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(107,76,59,0.2); }
  50% { box-shadow: 0 0 0 8px rgba(107,76,59,0); }
}

.cocoa-particle {
  position: absolute; width: 8px; height: 10px; border-radius: 50% 50% 50% 0;
  background: var(--accent-2); opacity: 0; pointer-events: none;
  animation: cocoa-float 10s infinite;
}
.cocoa-particle:nth-child(2) { animation-delay: 2.5s; left: 15%; width: 6px; height: 8px; }
.cocoa-particle:nth-child(3) { animation-delay: 5s; left: 65%; width: 10px; height: 12px; }
.cocoa-particle:nth-child(4) { animation-delay: 7.5s; left: 80%; width: 5px; height: 7px; }
.cocoa-particle:nth-child(5) { animation-delay: 3.5s; left: 40%; width: 7px; height: 9px; }

.drip-accent {
  display: block; width: 4px; height: 24px; margin: 0 auto 20px;
  background: linear-gradient(to bottom, var(--accent), var(--accent-2)); border-radius: 0 0 4px 4px;
  animation: drip-reveal 800ms cubic-bezier(.2,.7,.2,1) forwards;
}

.box-slot.filled { animation: micro-bounce 200ms cubic-bezier(.2,.7,.2,1); }

.size-card:active, .praline-option:active, .pack-card:active {
  animation: choco-pulse 400ms cubic-bezier(.4,0,.2,1);
}

@media (prefers-reduced-motion: reduce) {
  .cocoa-particle { animation: none !important; opacity: 0 !important; }
  .drip-accent { animation: none !important; }
  .box-slot.filled { animation: none !important; }
  .size-card:active, .praline-option:active, .pack-card:active { animation: none !important; }
  .combo-card::after { transition: none !important; }
}

/* ── Stagger Reveal (child-level animation) ── */
.about-values.is-in > .value-card {
  animation: stagger-up 600ms cubic-bezier(.2,.7,.2,1) both;
}
.about-values.is-in > .value-card:nth-child(1) { animation-delay: 0ms; }
.about-values.is-in > .value-card:nth-child(2) { animation-delay: 100ms; }
.about-values.is-in > .value-card:nth-child(3) { animation-delay: 200ms; }

@keyframes stagger-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}


/* ── Enhanced Hover Micro-effects ── */
.hero-badge { transition: transform 200ms cubic-bezier(.2,.7,.2,1), box-shadow 200ms, border-color 200ms; }
.hero-badge:hover { transform: translateY(-2px); border-color: var(--accent); box-shadow: 0 4px 12px -4px rgba(232,93,58,0.15); }

.nav-desktop .nav-cta:hover { box-shadow: 0 4px 16px -4px rgba(232,93,58,0.3); }
.mobile-drawer .drawer-cta:hover { box-shadow: 0 4px 16px -4px rgba(232,93,58,0.3); }

.btn-accent:hover, .btn-accent:focus-visible { box-shadow: 0 8px 24px -8px rgba(232,93,58,0.35); }

.progress-step:hover { color: var(--accent-2); background: rgba(107,76,59,0.05); }

@media (max-width: 480px) { .teslimat-label { min-width: 90px; font-size: 13px; } }

@media (prefers-reduced-motion: reduce) {
  .hero-badge:hover { transform: none; }
  .nasil-step:hover .nasil-num { transform: none; }
  .teslimat-row:hover { padding-left: 8px; }
  .about-values.is-in > .value-card { animation: none; opacity: 1; transform: none; }
}

/* ── Focus ── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
a:focus:not(:focus-visible), button:focus:not(:focus-visible) { outline: none; }

/* ── Print ── */
@media print {
  .site-header, .site-footer, .cookie-banner, .nav-toggle, .mobile-drawer, .drawer-backdrop { display: none !important; }
  main { padding-top: 0 !important; }
  body { font-size: 12pt; color: #000; background: #fff; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
