:root {
  interpolate-size: allow-keywords;

  --bg: #FDF2F8;
  --surface: #FCE7F3;
  --surface-2: #F5D0E6;
  --ink: #4A1942;
  --ink-soft: #6B3A62;
  --accent: #EC4899;
  --accent-2: #8B5CF6;
  --line: rgba(74,25,66,0.12);
  --line-strong: rgba(74,25,66,0.25);
  --white: #fff;
  --radius: 14px;
  --radius-sm: 8px;
  --header-h: 72px;
  --container: 1320px;
  --font-heading: 'Quicksand', 'Trebuchet MS', sans-serif;
  --font-body: 'Poppins', 'Segoe UI', sans-serif;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

html.no-js .reveal { opacity: 1; transform: none; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100vw;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

html, body { overflow-x: hidden; max-width: 100vw; }

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); }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--accent); outline-offset: 2px;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.012em;
  color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

p { margin-bottom: 1em; }

.eyebrow {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  display: inline-block;
}

.skip-link {
  position: fixed; top: -100%; left: 16px; z-index: 10000;
  background: var(--ink); color: var(--white); padding: 8px 18px;
  border-radius: var(--radius-sm); font-size: 0.9rem;
}
.skip-link:focus { top: 12px; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

main { padding-top: var(--header-h); }

section {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

/* ── Dot-grid background pattern ── */
.dot-grid-bg {
  background-image: radial-gradient(circle, var(--accent) 0.8px, transparent 0.8px);
  background-size: 22px 22px;
  background-position: 11px 11px;
}

.dot-grid-bg-subtle {
  background-image: radial-gradient(circle, rgba(236,72,153,0.15) 0.8px, transparent 0.8px);
  background-size: 22px 22px;
  background-position: 11px 11px;
}

/* ── Washi tape accent ── */
.washi-tape {
  height: 7px;
  border-radius: 2px;
  background: repeating-linear-gradient(
    -45deg,
    var(--accent),
    var(--accent) 4px,
    var(--accent-2) 4px,
    var(--accent-2) 8px
  );
  opacity: 0.45;
}

.washi-divider {
  width: clamp(120px, 20vw, 240px);
  margin: 2rem auto;
}

/* ── Stitch decoration ── */
.stitch-line {
  display: block;
  width: clamp(80px, 16vw, 200px);
  height: 2px;
  margin: 1.5rem auto;
  background: repeating-linear-gradient(
    90deg,
    var(--accent) 0, var(--accent) 8px,
    transparent 8px, transparent 14px
  );
  opacity: 0.5;
}

/* ═══════════════════════════════════
   HEADER
   ═══════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  background: rgba(253, 242, 248, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 240ms ease, box-shadow 240ms ease, padding 240ms ease;
  height: var(--header-h);
  display: flex;
  align-items: center;
}

.site-header.scrolled {
  background: rgba(253,242,248,0.98);
  box-shadow: 0 8px 24px -16px rgba(74,25,66,0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
}

.logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--ink);
  letter-spacing: -0.01em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.logo:hover { color: var(--accent); }

.logo-dot {
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
  animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

/* Nav desktop */
.nav-desktop {
  display: none;
  align-items: center;
  gap: clamp(18px, 2.5vw, 32px);
  list-style: none;
}

.nav-desktop a {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color 240ms cubic-bezier(.4,0,.2,1);
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  border-radius: 1px;
  transition: width 280ms cubic-bezier(.2,.7,.2,1);
}

.nav-desktop a:hover { color: var(--accent); }
.nav-desktop a:hover::after,
.nav-desktop a.is-active::after { width: 100%; }
.nav-desktop a.is-active { color: var(--accent); }

.nav-desktop .nav-cta {
  background: var(--ink);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
}

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px; height: 44px;
  background: none; border: none; cursor: pointer;
  z-index: 1100;
  position: relative;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), opacity 200ms;
}
.nav-toggle span:nth-child(1) { margin-bottom: 6px; }
.nav-toggle span:nth-child(3) { margin-top: 6px; }

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (min-width: 1024px) {
  .nav-toggle { display: none; }
}

/* ── 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;
}

.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--bg);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  padding: calc(var(--header-h) + 24px) 28px 40px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
}
.drawer.is-open {
  transform: translateX(0);
}

.drawer a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: block;
  transition: color 200ms, padding-left 200ms cubic-bezier(.2,.7,.2,1);
}
.drawer a:hover { color: var(--accent); padding-left: 8px; }
.drawer a.is-active { color: var(--accent); }

.drawer .drawer-cta {
  margin-top: 18px;
  background: var(--ink);
  color: var(--white);
  text-align: center;
  padding: 14px 24px;
  border-radius: 100px;
  border-bottom: none;
  font-size: 1rem;
}
.drawer .drawer-cta:hover {
  background: var(--accent);
  color: var(--white);
  padding-left: 0;
}

/* ═══════════════════════════════════
   HERO
   ═══════════════════════════════════ */
.hero {
  min-height: clamp(540px, 80vh, 780px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(139,92,246,0.10) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .hero-inner { grid-template-columns: 1fr 1fr; gap: 48px; }
}

.hero-text { max-width: 600px; }

.hero-text .eyebrow {
  position: relative;
  padding-left: 36px;
}
.hero-text .eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 26px; height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.hero-text h1 {
  margin-bottom: 1.2rem;
  line-height: 1.12;
}

.hero-text h1 .letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(18px);
  animation: letterIn 400ms cubic-bezier(.2,.7,.2,1) forwards;
}

@keyframes letterIn {
  to { opacity: 1; transform: none; }
}

.hero-text .sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 2rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  background: var(--surface);
  color: var(--ink);
  padding: 7px 14px;
  border-radius: 100px;
  border: 1px solid var(--line);
}

.hero-badge svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--accent); }

.hero-visual {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  perspective: 800px;
}

.hero-swatch {
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  position: relative;
  cursor: pointer;
  transition: transform 360ms cubic-bezier(.2,.7,.2,1), box-shadow 360ms;
  overflow: hidden;
}

.hero-swatch::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.3) 1px, transparent 1px);
  background-size: 12px 12px;
  opacity: 0.5;
  pointer-events: none;
}

.hero-swatch:hover {
  transform: translateY(-6px) rotateY(-4deg);
  box-shadow: 0 16px 40px -12px rgba(74,25,66,0.25);
}

.hero-swatch:nth-child(2) { transform: translateY(24px); }
.hero-swatch:nth-child(2):hover { transform: translateY(18px) rotateY(-4deg); }
.hero-swatch:nth-child(5) { transform: translateY(16px); }
.hero-swatch:nth-child(5):hover { transform: translateY(10px) rotateY(-4deg); }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 240ms, color 240ms, transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms;
}

.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -8px rgba(236,72,153,0.35);
}

.btn-primary svg { width: 18px; height: 18px; transition: transform 200ms; }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 26px;
  border-radius: 100px;
  border: 2px solid var(--line-strong);
  cursor: pointer;
  text-decoration: none;
  transition: background 240ms, color 240ms, border-color 240ms, transform 240ms;
}

.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════
   SECTION HEADING
   ═══════════════════════════════════ */
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-head p {
  color: var(--ink-soft);
  font-size: 1rem;
}

/* ═══════════════════════════════════
   STATS BAR
   ═══════════════════════════════════ */
.stats-bar {
  background: var(--ink);
  color: var(--white);
  padding: 2.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item .stat-num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--accent);
  display: block;
  line-height: 1.1;
}

.stat-item .stat-label {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-top: 4px;
}

/* ═══════════════════════════════════
   KOLEKSIYON (Collection)
   ═══════════════════════════════════ */
#koleksiyon { background: var(--bg); }

.color-picker-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 2.5rem;
}

.color-dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid transparent;
  transition: transform 240ms, border-color 240ms, box-shadow 240ms;
  position: relative;
}
.color-dot:hover, .color-dot.is-active {
  transform: scale(1.15);
  border-color: var(--ink);
  box-shadow: 0 4px 12px rgba(74,25,66,0.2);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), box-shadow 320ms;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -12px rgba(236,72,153,0.18);
}

.product-card-cover {
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  transition: background-color 400ms cubic-bezier(.4,0,.2,1);
}

.product-card-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.25) 1px, transparent 1px);
  background-size: 10px 10px;
  opacity: 0;
  transition: opacity 360ms;
}

.product-card:hover .product-card-cover::after { opacity: 1; }

.product-card-cover .page-type-badge {
  position: absolute;
  bottom: 12px; left: 12px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(4px);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  color: var(--ink);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-card-body {
  padding: 18px;
}

.product-card-body h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.product-card-body .card-meta {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 8px;
}

.product-card-body .card-price {
  font-family: 'Consolas', 'Courier New', monospace;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent);
}

.product-card-body .card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  margin-top: 10px;
  transition: color 200ms, gap 200ms;
}
.product-card-body .card-link:hover { color: var(--accent); gap: 8px; }

/* Detail modal overlay */
.detail-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms;
  padding: 20px;
}
.detail-overlay.is-open { opacity: 1; pointer-events: auto; }

.detail-card {
  background: var(--white);
  border-radius: var(--radius);
  max-width: 520px;
  width: 100%;
  padding: 32px;
  transform: scale(0.92);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
}
.detail-overlay.is-open .detail-card { transform: scale(1); }

.detail-close {
  float: right;
  background: none; border: none; cursor: pointer;
  font-size: 1.5rem; color: var(--ink-soft);
  line-height: 1;
}
.detail-close:hover { color: var(--ink); }

/* ═══════════════════════════════════
   YORUMLAR (Testimonials) - Masonry
   ═══════════════════════════════════ */
#yorumlar {
  background: var(--surface);
}

.masonry-grid {
  columns: 1;
  column-gap: 20px;
}

@media (min-width: 640px) { .masonry-grid { columns: 2; } }
@media (min-width: 1024px) { .masonry-grid { columns: 3; } }

.testimonial-card {
  break-inside: avoid;
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 28px);
  margin-bottom: 20px;
  border: 1px solid var(--line);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), box-shadow 320ms;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -10px rgba(236,72,153,0.15);
}

.testimonial-card .tc-stars {
  color: var(--accent);
  font-size: 0.85rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial-card .tc-text {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-card .tc-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tc-author .tc-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent);
  flex-shrink: 0;
}

.tc-author .tc-name {
  font-weight: 600;
  font-size: 0.88rem;
}

.tc-author .tc-detail {
  font-size: 0.75rem;
  color: var(--ink-soft);
}

/* Large card variant */
.testimonial-card.tc-large {
  padding: clamp(24px, 4vw, 36px);
}
.testimonial-card.tc-large .tc-text {
  font-size: 1.05rem;
}

/* ═══════════════════════════════════
   KİŞİSELLEŞTİR (Customize)
   ═══════════════════════════════════ */
#kisisellestir {
  background: var(--bg);
  position: relative;
}

.customize-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  position: relative;
}

@media (min-width: 768px) {
  .customize-steps { grid-template-columns: repeat(3, 1fr); }
}

.custom-step {
  text-align: center;
  position: relative;
}

.custom-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  position: relative;
}

.custom-step-num::after {
  content: '';
  position: absolute;
  width: 68px; height: 68px;
  border-radius: 50%;
  border: 2px dashed var(--accent);
  opacity: 0.3;
  animation: stepPulse 3s ease-in-out infinite;
}

@keyframes stepPulse {
  0%,100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.12); opacity: 0.15; }
}

.custom-step h3 {
  margin-bottom: 0.6rem;
}

.custom-step p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  max-width: 280px;
  margin: 0 auto;
}

.custom-step .step-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 1rem;
}

.step-option {
  font-size: 0.78rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  cursor: default;
  transition: background 200ms, border-color 200ms;
}

.step-option:hover {
  background: var(--surface);
  border-color: var(--accent);
}

/* Thread connector between steps */
@media (min-width: 768px) {
  .custom-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 28px;
    right: -20px;
    width: 40px;
    height: 2px;
    background: repeating-linear-gradient(
      90deg,
      var(--accent) 0, var(--accent) 6px,
      transparent 6px, transparent 11px
    );
    opacity: 0.4;
  }
}

/* ═══════════════════════════════════
   SAYFA TİPLERİ (Page Types)
   ═══════════════════════════════════ */
#sayfa-tipleri {
  background: var(--surface);
}

.page-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.page-type-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--line);
  text-align: center;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), box-shadow 320ms;
  position: relative;
  overflow: hidden;
}

.page-type-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -12px rgba(139,92,246,0.18);
}

.page-type-card .pt-preview {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

/* Dot grid preview */
.pt-preview.dots {
  background-image: radial-gradient(circle, var(--ink-soft) 1.2px, transparent 1.2px);
  background-size: 16px 16px;
  background-position: 8px 8px;
}

/* Lined preview */
.pt-preview.lined {
  background-image: repeating-linear-gradient(
    0deg,
    transparent, transparent 19px,
    rgba(74,25,66,0.12) 19px, rgba(74,25,66,0.12) 20px
  );
}

/* Grid/kareli preview */
.pt-preview.gridded {
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 15px, rgba(74,25,66,0.10) 15px, rgba(74,25,66,0.10) 16px),
    repeating-linear-gradient(90deg, transparent, transparent 15px, rgba(74,25,66,0.10) 15px, rgba(74,25,66,0.10) 16px);
}

/* Blank preview */
.pt-preview.blank {
  border: 1px solid var(--line);
}

.page-type-card h4 { margin-bottom: 6px; }
.page-type-card p { font-size: 0.85rem; color: var(--ink-soft); margin: 0; }

/* ═══════════════════════════════════
   HEDİYE (Gift)
   ═══════════════════════════════════ */
#hediye { background: var(--bg); }

.gift-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .gift-layout { grid-template-columns: 5fr 7fr; }
}

.gift-visual {
  background: var(--surface);
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.gift-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(139,92,246,0.08) 1px, transparent 1px);
  background-size: 18px 18px;
}

.gift-box-icon {
  width: 120px; height: 120px;
  position: relative;
  z-index: 1;
}

.gift-content h3 { margin-bottom: 1rem; }
.gift-content p {
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}

.gift-features {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 2rem;
}

.gift-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
}

.gift-features li svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 3px;
}

.gift-price {
  font-family: 'Consolas', 'Courier New', monospace;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.gift-disclaimer {
  font-size: 0.75rem;
  color: var(--ink-soft);
  font-style: italic;
}

/* ═══════════════════════════════════
   TOPLULUK (Community / UGC)
   ═══════════════════════════════════ */
#topluluk { background: var(--surface); }

.ugc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}

@media (min-width: 768px) {
  .ugc-grid { grid-template-columns: repeat(4, 1fr); }
}

.ugc-item {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--white);
}

.ugc-item .ugc-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  background: linear-gradient(135deg, var(--surface-2), var(--surface));
  transition: transform 400ms cubic-bezier(.2,.7,.2,1);
}

.ugc-item:hover .ugc-placeholder {
  transform: scale(1.04);
}

.ugc-item .ugc-placeholder svg {
  width: 28px; height: 28px;
  color: var(--accent);
  opacity: 0.6;
}

.ugc-item .ugc-placeholder span {
  font-size: 0.7rem;
  color: var(--ink-soft);
  font-weight: 500;
}

.ugc-item .ugc-overlay {
  position: absolute;
  inset: 0;
  background: rgba(74,25,66,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 280ms;
}

.ugc-item:hover .ugc-overlay { opacity: 1; }

.ugc-item .ugc-overlay span {
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
}

/* ═══════════════════════════════════
   PROCESS / NASIL ÇALIŞIYORUZ
   ═══════════════════════════════════ */
.process-section { background: var(--bg); }

.process-timeline {
  display: grid;
  gap: 0;
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.process-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  padding-bottom: 36px;
  position: relative;
}

.process-step:last-child { padding-bottom: 0; }

.process-step .step-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-marker .step-circle {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.step-marker .step-line {
  width: 2px;
  flex: 1;
  background: repeating-linear-gradient(
    180deg,
    var(--accent) 0, var(--accent) 6px,
    transparent 6px, transparent 11px
  );
  opacity: 0.35;
  margin-top: 8px;
}

.process-step:last-child .step-line { display: none; }

.process-step .step-body h4 {
  margin-bottom: 4px;
  padding-top: 8px;
}

.process-step .step-body .step-time {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 6px;
}

.process-step .step-body p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin: 0;
}

/* ═══════════════════════════════════
   PRICING
   ═══════════════════════════════════ */
.pricing-section { background: var(--surface); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid var(--line);
  position: relative;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), box-shadow 320ms;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -12px rgba(236,72,153,0.18);
}

.pricing-card.is-featured {
  border-color: var(--accent);
  box-shadow: 0 4px 20px -6px rgba(236,72,153,0.2);
}

.pricing-card.is-featured::before {
  content: 'En Popüler';
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pricing-card h4 {
  margin-bottom: 6px;
}

.pricing-card .price {
  font-family: 'Consolas', 'Courier New', monospace;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.pricing-card .price-note {
  font-size: 0.72rem;
  color: var(--ink-soft);
  font-style: italic;
  margin-bottom: 18px;
}

.pricing-card .included,
.pricing-card .not-included {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.pricing-card .included li,
.pricing-card .not-included li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
}

.pricing-card .included li svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 3px;
}

.pricing-card .not-included li {
  color: var(--ink-soft);
  text-decoration: line-through;
  opacity: 0.65;
}

.pricing-card .not-included li svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  color: var(--ink-soft);
  margin-top: 3px;
}

.pricing-card .delivery-time {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

/* ═══════════════════════════════════
   FAQ
   ═══════════════════════════════════ */
.faq-section { background: var(--bg); }

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  overflow: hidden;
}

.faq-item summary {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  padding: 18px clamp(18px, 3vw, 28px);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
  transition: color 200ms;
}

.faq-item summary:hover { color: var(--accent); }

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; content: ''; }

.faq-item summary .faq-icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  transition: transform 360ms cubic-bezier(.4,0,.2,1);
}

.faq-item[open] summary .faq-icon {
  transform: rotate(45deg);
}

.faq-item > .answer {
  height: 0;
  padding: 0 clamp(18px, 3vw, 28px);
  overflow: hidden;
  transition: height 360ms cubic-bezier(.4,0,.2,1),
              padding-block-end 360ms cubic-bezier(.4,0,.2,1);
}

.faq-item[open] > .answer {
  height: auto;
  padding-block-end: 22px;
}

@media (prefers-reduced-motion: reduce) {
  .faq-item > .answer { transition: none; }
}

.faq-item .answer p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0;
}

/* ═══════════════════════════════════
   ATÖLYE NOTLARI (News/blog micro)
   ═══════════════════════════════════ */
.news-section { background: var(--surface); }

.news-list {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.news-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  border: 1px solid var(--line);
}

.news-date {
  font-family: 'Consolas', 'Courier New', monospace;
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 600;
  white-space: nowrap;
  padding-top: 2px;
}

.news-item p {
  font-size: 0.88rem;
  color: var(--ink);
  margin: 0;
}

/* ═══════════════════════════════════
   FORM
   ═══════════════════════════════════ */
.form-block {
  max-width: 640px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

@media (min-width: 640px) {
  .form-row--2 { grid-template-columns: 1fr 1fr; }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--ink);
}

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 0.92rem;
  padding: 12px 16px;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  transition: border-color 240ms, box-shadow 240ms;
  width: 100%;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(236,72,153,0.12);
  outline: none;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field select {
  appearance: auto;
  cursor: pointer;
}

.field-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 14px 0;
}

.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);
  cursor: pointer;
}

.field-check label {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.5;
  cursor: pointer;
}

.form-submit {
  display: block;
  width: 100%;
  margin-top: 8px;
}

@media (min-width: 640px) {
  .form-submit { width: auto; }
}

/* ═══════════════════════════════════
   FOOTER
   ═══════════════════════════════════ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.8);
  padding: clamp(3rem, 6vw, 5rem) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }

.footer-col h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-col p {
  font-size: 0.85rem;
  line-height: 1.7;
}

.footer-col a {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  display: block;
  padding: 4px 0;
  transition: color 200ms, padding-left 200ms;
}
.footer-col a:hover { color: var(--accent); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.85rem;
}
.footer-contact-item svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 3px;
}

.footer-contact-item a {
  display: inline;
  padding: 0;
}

.footer-bottom {
  margin-top: 3rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

.footer-bottom a {
  font-size: 0.78rem;
  padding: 0;
  display: inline;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

/* ═══════════════════════════════════
   COOKIE BANNER
   ═══════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: 0 12px 40px -8px rgba(74,25,66,0.22);
  border: 1px solid var(--line);
  z-index: 9999;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
}

.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}

@media (min-width: 640px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}

.cookie-banner h4 {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.cookie-banner p {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 16px;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cookie-actions button {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 10px 18px;
  border-radius: 100px;
  cursor: pointer;
  transition: background 200ms, color 200ms, transform 200ms;
  border: none;
  min-height: 44px;
}

.cookie-actions .cookie-accept {
  background: var(--ink);
  color: var(--white);
}
.cookie-actions .cookie-accept:hover {
  background: var(--accent);
  color: var(--white);
}

.cookie-actions .cookie-reject {
  background: var(--surface);
  color: var(--ink);
}
.cookie-actions .cookie-reject:hover {
  background: var(--surface-2);
  color: var(--ink);
}

.cookie-actions .cookie-settings {
  background: transparent;
  color: var(--ink-soft);
}
.cookie-actions .cookie-settings:hover {
  color: var(--ink);
}

/* ═══════════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms cubic-bezier(.2,.7,.2,1), transform 600ms cubic-bezier(.2,.7,.2,1);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

.reveal[style*="--i"] {
  transition-delay: calc(var(--i) * 80ms);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ═══════════════════════════════════
   NICHE ANIMATIONS
   ═══════════════════════════════════ */

/* 1. Pen-stroke underline */
.pen-stroke {
  position: relative;
  display: inline;
}
.pen-stroke::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 100%; height: 3px;
  background: var(--accent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.pen-stroke.is-in::after {
  transform: scaleX(1);
}

/* 2. Page-flip card hover */
.page-flip-hover {
  transition: transform 400ms cubic-bezier(.2,.7,.2,1);
  transform-style: preserve-3d;
}
.page-flip-hover:hover {
  transform: rotateY(-6deg) translateY(-4px);
}

/* 3. Thread stitch ambient */
@keyframes stitchDash {
  to { stroke-dashoffset: -24; }
}

.stitch-svg {
  stroke-dasharray: 8 6;
  animation: stitchDash 4s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .stitch-svg { animation: none; }
}

/* 4. Binding spine breathing */
@keyframes spineBreath {
  0%,100% { transform: scaleY(1); }
  50% { transform: scaleY(1.02); }
}

.spine-breath {
  animation: spineBreath 6s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .spine-breath { animation: none; }
}

/* 5. Dot-grid reveal */
@keyframes dotReveal {
  from { opacity: 0; background-size: 24px 24px; }
  to { opacity: 1; background-size: 22px 22px; }
}

.dot-reveal-bg {
  animation: dotReveal 1.2s ease-out forwards;
}

@media (prefers-reduced-motion: reduce) {
  .dot-reveal-bg { animation: none; opacity: 1; }
}

/* Counter animation handled in JS */

/* ═══════════════════════════════════
   CAPACITY INDICATOR
   ═══════════════════════════════════ */
.capacity-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  border: 1px solid var(--line);
}

.capacity-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #34D399;
  animation: capacityPulse 2s ease-in-out infinite;
}

@keyframes capacityPulse {
  0%,100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ═══════════════════════════════════
   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%;
  font-size: 0.88rem;
}

th, td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

th {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  background: var(--surface);
  color: var(--ink);
}

td { color: var(--ink-soft); }
tr:last-child td { border-bottom: none; }

/* ═══════════════════════════════════
   CONTACT PAGE CARDS
   ═══════════════════════════════════ */
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), box-shadow 320ms;
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px -8px rgba(236,72,153,0.15);
}

.contact-card .cc-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.contact-card .cc-icon svg {
  width: 22px; height: 22px;
  color: var(--accent);
}

.contact-card h4 {
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.contact-card .cc-value {
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.contact-card .cc-value a {
  color: var(--ink);
  word-break: break-all;
}

.contact-card .cc-sub {
  font-size: 0.75rem;
  color: var(--ink-soft);
}

/* Hours mini-card grid */
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

@media (min-width: 640px) {
  .hours-grid { grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); }
}

.hour-day {
  padding: 10px 14px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  font-variant-numeric: tabular-nums;
  font-size: 0.82rem;
}

.hour-day .day-name {
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--ink);
  display: block;
  margin-bottom: 2px;
}

.hour-day .day-time {
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.hour-day.is-closed {
  opacity: 0.5;
}

/* ═══════════════════════════════════
   PAGE TEMPLATES (privacy, terms, etc.)
   ═══════════════════════════════════ */
.page-hero {
  min-height: 240px;
  display: flex;
  align-items: center;
  background: var(--surface);
  padding: clamp(2rem, 6vw, 4rem) 0;
}

.page-content {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.page-content .prose {
  max-width: 740px;
  margin: 0 auto;
}

a[href^="mailto:"], a[href^="tel:"] { word-break: break-word; overflow-wrap: anywhere; }

section[id] { scroll-margin-top: calc(var(--header-h) + 12px); }

.prose h2 {
  font-size: 1.4rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.prose h3 {
  font-size: 1.15rem;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
}

.prose p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

.prose ul, .prose ol {
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
}

.prose li {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-bottom: 6px;
  line-height: 1.7;
}

.prose a { text-decoration: underline; }

/* ═══════════════════════════════════
   THANK YOU PAGE
   ═══════════════════════════════════ */
.thankyou-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 0;
}

.thankyou-content { max-width: 500px; }

.thankyou-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.thankyou-icon svg {
  width: 36px; height: 36px;
  color: var(--accent);
}

/* ═══════════════════════════════════
   404 PAGE
   ═══════════════════════════════════ */
.error-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 0;
}

.error-content { max-width: 460px; }

.error-code {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(5rem, 14vw, 10rem);
  color: var(--surface);
  line-height: 1;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 0 var(--accent);
}

/* ═══════════════════════════════════
   SITEMAP PAGE
   ═══════════════════════════════════ */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  max-width: 780px;
  margin: 0 auto;
}

.sitemap-group h3 {
  font-size: 1.05rem;
  margin-bottom: 0.8rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent);
}

.sitemap-group ul {
  list-style: none;
  display: grid;
  gap: 6px;
}

.sitemap-group a {
  font-size: 0.9rem;
  color: var(--ink-soft);
  padding: 4px 0;
  display: inline-block;
}

.sitemap-group a:hover { color: var(--accent); }

/* ═══════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════ */
@media (max-width: 640px) {
  .hero-visual {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    max-width: 320px;
    margin: 0 auto;
  }

  .hero-swatch:nth-child(n+7) { display: none; }

  .collection-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .page-types-grid { grid-template-columns: 1fr 1fr; }
  .ugc-grid { grid-template-columns: repeat(2, 1fr); }

  .process-step {
    grid-template-columns: 48px 1fr;
    gap: 14px;
  }

  .step-marker .step-circle {
    width: 36px; height: 36px;
    font-size: 0.85rem;
  }

  .contact-cards-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .page-types-grid { grid-template-columns: 1fr; }
  .hero-badges { gap: 6px; }
  .hero-badge { font-size: 0.72rem; padding: 5px 10px; }
}

@media (max-width: 390px) {
  :root { --header-h: 64px; }
  h1 { font-size: 2rem; }
  .hero { min-height: 480px; }
}

/* ═══════════════════════════════════
   PRINT
   ═══════════════════════════════════ */
@media print {
  .site-header, .drawer, .drawer-backdrop, .nav-toggle, .cookie-banner,
  .skip-link, .btn-primary, .btn-ghost { display: none !important; }
  main { padding-top: 0; }
  body { background: #fff; color: #000; }
  a { color: #000; text-decoration: underline; }
}

.scroll-progress{position:fixed;top:0;left:0;height:3px;width:0;background:var(--accent);z-index:9998;transition:width 80ms linear;pointer-events:none}

/* form-reveal-opacity-fix */
main form.reveal, .form-section form.reveal, .contact-form.reveal, form[id*='iletisim'].reveal, form[class*='contact'].reveal { opacity: 1 !important; transform: none !important; translate: none !important; }
main form, .form-section form, .contact-form, form[id*='iletisim'], form[class*='contact'] { opacity: 1 !important; }

/* consent-checkbox-inline-fix */
main form label.checkbox, main form .form-checkbox, main form .consent, main form .kvkk, .contact-form label.checkbox, .contact-form .checkbox-group { display: flex !important; flex-direction: row !important; align-items: flex-start !important; gap: 10px !important; font-size: 14px !important; line-height: 1.5 !important; flex-wrap: nowrap !important; }
main form label.checkbox span, main form label.checkbox a, main form .form-checkbox span, main form .form-checkbox a, .contact-form label.checkbox span, .contact-form label.checkbox a { display: inline !important; flex: 1 1 auto; }
main form label.checkbox input[type='checkbox'], main form .form-checkbox input[type='checkbox'] { flex-shrink: 0 !important; width: 18px !important; height: 18px !important; margin-top: 3px !important; }

/* iletisim-form-responsive-guard v2 */
main form, .form-section form, .contact-form, .iletisim-form, form#contact-form, form[id*="iletisim"], form[class*="iletisim"], form[class*="contact"] {
  display: block;
  max-width: 720px;
  margin: 24px auto;
  padding: clamp(20px, 4vw, 36px);
  background: var(--surface, rgba(255,255,255,0.04));
  border: 1px solid var(--line, rgba(127,127,127,0.18));
  border-radius: 16px;
  box-shadow: 0 8px 32px -12px rgba(0,0,0,0.25);
  box-sizing: border-box;
}
main form .form-grid,
main form > .grid,
.contact-form .form-grid,
form[class*="contact"] .form-grid,
form[class*="iletisim"] .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
  width: 100%;
}
@media (max-width: 640px) {
  main form .form-grid,
  main form > .grid,
  .contact-form .form-grid,
  form[class*="contact"] .form-grid,
  form[class*="iletisim"] .form-grid {
    grid-template-columns: 1fr;
  }
}
main form .form-grid > .field-full,
main form .form-grid > .col-full,
main form .form-grid > [class*="full"] {
  grid-column: 1 / -1;
}
main form .field, main form label,
.contact-form .field, .contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}
main form input[type="text"],
main form input[type="email"],
main form input[type="tel"],
main form input[type="number"],
main form input[type="date"],
main form input[type="url"],
main form input[type="search"],
main form input:not([type]),
main form select,
main form textarea,
.contact-form input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=hidden]),
.contact-form select,
.contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  min-height: 44px;
  font-size: 16px;
  line-height: 1.4;
  font-family: inherit;
  border: 1px solid var(--line, rgba(127,127,127,0.22));
  border-radius: 10px;
  background: var(--input-bg, rgba(0,0,0,0.04));
  color: inherit;
  appearance: none;
  -webkit-appearance: none;
}
main form textarea, .contact-form textarea {
  min-height: 120px;
  resize: vertical;
}
main form input:focus, main form select:focus, main form textarea:focus,
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: 2px solid var(--accent, #5a8dee);
  outline-offset: 1px;
  border-color: transparent;
}
main form .checkbox, main form label.checkbox,
.contact-form .checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
}
main form input[type="checkbox"], main form input[type="radio"],
.contact-form input[type="checkbox"], .contact-form input[type="radio"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--accent, #5a8dee);
}
main form button[type="submit"],
main form input[type="submit"],
main form .btn-submit,
.contact-form button[type="submit"],
.contact-form .btn-submit {
  width: 100%;
  min-height: 48px;
  padding: 14px 28px;
  background: var(--accent, #5a8dee);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 8px;
  transition: filter 200ms ease, transform 120ms ease;
}
@media (min-width: 640px) {
  main form button[type="submit"],
  main form input[type="submit"],
  .contact-form button[type="submit"] {
    width: auto;
    min-width: 220px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
main form button[type="submit"]:hover,
.contact-form button[type="submit"]:hover {
  filter: brightness(1.05);
}
main form button[type="submit"]:active,
.contact-form button[type="submit"]:active {
  transform: translateY(1px);
}

/* product-card-cover-img */
.product-card-cover{position:relative;overflow:hidden}
.product-card-cover img{width:100%;height:100%;object-fit:cover;display:block;transition:transform 360ms cubic-bezier(.2,.7,.2,1)}
.product-card:hover .product-card-cover img{transform:scale(1.04)}
.product-card-cover .page-type-badge{position:absolute;top:12px;left:12px;background:rgba(0,0,0,.7);color:#fff;padding:4px 10px;border-radius:12px;font-size:12px;font-weight:600;z-index:2}


/* bookbinding-design-v1 */

/* ---------- Paper-grain background overlay ---------- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.05;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  background-size: 200px 200px;
}
body > * { position: relative; z-index: 2; }

/* ---------- Stitched divider between sections (decorative) ---------- */
section + section { position: relative; }
section + section::before {
  content: '';
  display: block;
  position: absolute;
  top: 0; left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(60px, 12vw, 120px);
  height: 2px;
  background-image: repeating-linear-gradient(
    to right,
    var(--accent, currentColor) 0 8px,
    transparent 8px 14px
  );
  opacity: 0.55;
  border-radius: 2px;
}

/* ---------- Gold-foil shimmer on .eyebrow + .logo ---------- */
.eyebrow {
  background: linear-gradient(
    100deg,
    var(--accent, #b8860b) 0%,
    #f4d57c 30%,
    var(--accent, #b8860b) 60%,
    #d4a017 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: bb-shimmer 8s ease-in-out infinite;
  font-weight: 600;
  letter-spacing: 0.12em;
}
@keyframes bb-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@media (prefers-reduced-motion: reduce) {
  .eyebrow { animation: none; }
}

/* ---------- Card hover: page-lift ---------- */
.product-card, .course-card, .gallery-item {
  transition: transform 350ms cubic-bezier(.2,.7,.2,1),
              box-shadow 350ms cubic-bezier(.2,.7,.2,1);
}
.team-card, .package-card, .feature-card, .case-card, .testimonial-card, .pricing-card {
  transition: transform 280ms ease, box-shadow 280ms ease;
}
.product-card:hover, .course-card:hover, .gallery-item:hover,
.team-card:hover, .package-card:hover, .feature-card:hover,
.case-card:hover, .testimonial-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 40px -16px rgba(0,0,0,0.18),
              0 4px 12px -4px rgba(0,0,0,0.08) !important;
}

/* ---------- Button: ink-blot ripple on hover ---------- */
.btn-primary, button[type="submit"], .nav-cta, .cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn-primary::after, button[type="submit"]::after,
.nav-cta::after, .cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at var(--mx, 50%) var(--my, 50%),
    rgba(255,255,255,0.25) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 240ms ease;
  pointer-events: none;
  z-index: -1;
}
.btn-primary:hover::after, button[type="submit"]:hover::after,
.nav-cta:hover::after, .cta:hover::after { opacity: 1; }

/* ---------- Smooth scroll site-wide ---------- */

/* ---------- Stitched section header underline ---------- */
section h2 {
  position: relative;
  padding-bottom: 0.5em;
}
section h2::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 64px;
  height: 2px;
  background-image: repeating-linear-gradient(
    to right,
    var(--accent, currentColor) 0 6px,
    transparent 6px 11px
  );
  opacity: 0.7;
  border-radius: 2px;
}
section[style*="text-align:center"] h2::after,
.section-head h2::after,
.text-center h2::after {
  left: 50%;
  transform: translateX(-50%);
}


/* per-site spice: page-corner curl hover on product cards */
.product-card { position: relative; overflow: visible; }
.product-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 28px; height: 28px;
  background: linear-gradient(225deg, rgba(255,255,255,0.95) 49%, rgba(0,0,0,0.12) 50%, transparent 51%);
  box-shadow: -2px 2px 4px rgba(0,0,0,0.08);
  transition: width 280ms ease, height 280ms ease;
  pointer-events: none;
  z-index: 3;
}
.product-card:hover::before { width: 44px; height: 44px; }

/* pt-preview-patterns */
.pt-preview {
  background-color: #FFF8F0;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: inset 0 1px 4px rgba(0,0,0,0.05);
}
.pt-preview.dots {
  background-image: radial-gradient(circle, rgba(0,0,0,0.35) 1px, transparent 1.5px);
  background-size: 16px 16px;
}
.pt-preview.lined {
  background-image: repeating-linear-gradient(to bottom, transparent 0 19px, rgba(0,0,0,0.25) 19px 20px);
}
.pt-preview.gridded {
  background-image:
    repeating-linear-gradient(to right, transparent 0 15px, rgba(0,0,0,0.2) 15px 16px),
    repeating-linear-gradient(to bottom, transparent 0 15px, rgba(0,0,0,0.2) 15px 16px);
}
.pt-preview.blank {
  background-color: #FFFEF7;
  background-image: linear-gradient(135deg, transparent 49%, rgba(0,0,0,0.04) 49.5%, rgba(0,0,0,0.04) 50%, transparent 50.5%);
  background-size: 28px 28px;
}

/* hide camera-icon span text if visible */
.ugc-placeholder span:not(:empty) { display: none; }

/* batch-overflow-guard */
html, body { overflow-x: hidden; max-width: 100vw; }
img, picture, svg, video { max-width: 100%; height: auto; }
.hero-visual, .split-visual, .gallery-item, .gallery-card, figure {
  overflow: hidden;
  max-width: 100%;
}
.hero-visual img, .split-visual img, .gallery-item img, .gallery-card img {
  max-width: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.hero, header.hero, .hero, [class*="hero"] { overflow-x: clip; }
.hero-content, .gallery-grid, .gallery { overflow-x: hidden; }
