/* ===== Design tokens ===== */
:root {
  --bg: #FAFAFC;
  --bg-alt: #EFF3FF;
  --ink: #17172E;
  --ink-soft: #55556E;
  --line: rgba(23, 23, 46, 0.1);

  --c-orange: #FF6B35;
  --c-cyan: #00B8D9;
  --c-magenta: #FF3D81;
  --c-yellow: #FFC93C;

  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'Space Mono', monospace;

  --radius: 16px;
  --shadow-soft: 0 10px 30px rgba(23, 23, 46, 0.08);
  --shadow-hover: 0 16px 40px rgba(23, 23, 46, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--font-display); margin: 0 0 0.5em; line-height: 1.15; }
p { margin: 0 0 1em; color: var(--ink-soft); }
a { text-decoration: none; color: inherit; }
ul { padding: 0; margin: 0; list-style: none; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--c-magenta);
  margin: 0 0 12px;
}
.eyebrow.center { text-align: center; }

.section-title { font-size: clamp(1.8rem, 3vw, 2.6rem); }
.section-title.center { text-align: center; }

.section-sub {
  max-width: 620px;
  font-size: 1.05rem;
}
.section-sub.center { margin: 0 auto 48px; text-align: center; }
.section-sub.left { margin: 0 0 28px; }

.section { padding: 96px 0; }
.section-alt { background: var(--bg-alt); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--c-orange);
  color: #fff;
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(255, 107, 53, 0.45); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn-outline:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }

.btn-mini {
  padding: 8px 18px;
  font-size: 0.85rem;
  background: var(--ink);
  color: #fff;
}
.btn-mini:hover { background: var(--c-magenta); }

.btn-full { width: 100%; padding: 16px; font-size: 1rem; }

.btn-whatsapp-small {
  background: #25D366;
  color: #fff;
  padding: 10px 20px;
  font-size: 0.88rem;
}
.btn-whatsapp-small:hover { transform: translateY(-2px); }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 252, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 4px 20px rgba(23,23,46,0.05); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}
.logo-mark {
  position: relative;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--c-orange), var(--c-magenta));
  display: block;
}
.logo-dot {
  position: absolute;
  top: 3px; left: 3px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #fff;
  animation: dotTravel 3s ease-in-out infinite;
}
@keyframes dotTravel {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(10px, 10px); }
}

.main-nav { display: flex; gap: 32px; }
.main-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}
.main-nav a:hover { color: var(--c-magenta); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ===== Hero ===== */
.hero { padding: 72px 0 100px; overflow: hidden; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero-title {
  font-size: clamp(2.2rem, 4.4vw, 3.5rem);
  font-weight: 700;
}
.underline-wrap { position: relative; display: inline-block; color: var(--c-orange); }
.underline-svg {
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 16px;
}
.underline-svg path {
  fill: none;
  stroke: var(--c-magenta);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  animation: drawUnderline 1.4s ease 0.5s forwards;
}
@keyframes drawUnderline { to { stroke-dashoffset: 0; } }

.hero-sub { font-size: 1.1rem; max-width: 520px; }

.hero-actions { display: flex; gap: 16px; margin: 28px 0 44px; flex-wrap: wrap; }

.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.hero-stats > div { display: flex; flex-direction: column; }
.stat-num { font-family: var(--font-mono); font-weight: 700; font-size: 1.3rem; color: var(--c-cyan); }
.stat-label { font-size: 0.8rem; color: var(--ink-soft); }

/* Hero visual: printing stack */
.hero-visual {
  position: relative;
  height: 400px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.print-bed {
  position: absolute;
  bottom: 40px;
  width: 220px;
  height: 14px;
  border-radius: 6px;
  background: var(--ink);
  opacity: 0.85;
}
.print-stack {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 4px;
  margin-bottom: 54px;
}
.layer {
  width: 160px;
  height: 20px;
  border-radius: 4px;
  background: var(--c);
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0;
  animation: growLayer 0.5s ease forwards;
  box-shadow: 0 4px 10px rgba(23,23,46,0.12);
}
.print-stack .layer:nth-child(1) { animation-delay: 0.1s; }
.print-stack .layer:nth-child(2) { animation-delay: 0.35s; width: 150px; }
.print-stack .layer:nth-child(3) { animation-delay: 0.6s; width: 140px; }
.print-stack .layer:nth-child(4) { animation-delay: 0.85s; width: 128px; }
.print-stack .layer:nth-child(5) { animation-delay: 1.1s; width: 114px; }
.print-stack .layer:nth-child(6) { animation-delay: 1.35s; width: 98px; }
.print-stack .layer:nth-child(7) { animation-delay: 1.6s; width: 80px; }
@keyframes growLayer { to { transform: scaleX(1); opacity: 1; } }

.nozzle {
  position: absolute;
  bottom: 190px;
  left: 50%;
  transform: translateX(-50%);
  animation: nozzleMove 3.2s ease-in-out 1.8s infinite;
}
.nozzle-body {
  width: 28px; height: 34px;
  background: var(--ink);
  border-radius: 4px 4px 8px 8px;
  margin: 0 auto;
}
.nozzle-drop {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-orange);
  margin: 2px auto 0;
}
@keyframes nozzleMove {
  0%, 100% { transform: translateX(-70px); }
  50% { transform: translateX(70px); }
}

/* ===== Cards / Services ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.service-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: color-mix(in srgb, var(--c) 15%, white);
  color: var(--c);
  margin-bottom: 18px;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 1.15rem; }
.service-card p { font-size: 0.95rem; margin: 0; }

.callout {
  background: linear-gradient(120deg, var(--c-orange), var(--c-magenta));
  border-radius: var(--radius);
  padding: 40px;
  color: #fff;
}
.callout h3 { font-size: 1.4rem; color: #fff; }
.callout p { color: rgba(255,255,255,0.92); margin: 0; max-width: 720px; }

/* ===== How it works ===== */
.layers-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.layer-step {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 22px;
  border-top: 4px solid var(--c-cyan);
  box-shadow: var(--shadow-soft);
}
.layer-step:nth-child(2) { border-top-color: var(--c-orange); }
.layer-step:nth-child(3) { border-top-color: var(--c-magenta); }
.layer-step:nth-child(4) { border-top-color: var(--c-yellow); }
.layer-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  display: block;
  margin-bottom: 10px;
}
.layer-step h3 { font-size: 1.05rem; }
.layer-step p { font-size: 0.92rem; margin: 0; }

/* ===== Shop / Products ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.product-thumb {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  overflow: hidden;
}
.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-thumb svg { width: 56px; height: 56px; opacity: 0.95; }
.product-body { padding: 22px; }
.product-body h3 { font-size: 1.05rem; }
.product-body p { font-size: 0.9rem; }

.product-desc {
  line-height: 1.5;
  max-height: 4.5em;   /* ~3 satır */
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.product-desc.expanded {
  max-height: 1000px;
}
.desc-toggle {
  display: inline-block;
  background: none;
  border: none;
  padding: 0;
  margin: 0 0 14px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--c-cyan);
  cursor: pointer;
}
.desc-toggle:hover { color: var(--c-magenta); }
.product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
}
.price { font-family: var(--font-mono); font-weight: 700; font-size: 1.05rem; color: var(--c-orange); }

/* ===== Quote form ===== */
.quote-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.quote-points li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.quote-points li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--c-cyan);
}

.quote-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-soft);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-field { margin-bottom: 20px; }
.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--bg);
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--c-cyan);
  box-shadow: 0 0 0 4px rgba(0, 184, 217, 0.15);
}
.form-field textarea { resize: vertical; }

.form-note {
  margin: 16px 0 0;
  font-size: 0.9rem;
  min-height: 1.2em;
}
.form-note.success { color: #16a34a; font-weight: 600; }
.form-note.error { color: #dc2626; font-weight: 600; }

/* ===== Footer ===== */
.site-footer { background: var(--ink); color: #d8d8ea; padding: 64px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p { color: rgba(216,216,234,0.7); max-width: 300px; }
.logo-footer { color: #fff; margin-bottom: 14px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { color: #fff; font-size: 0.95rem; margin-bottom: 6px; }
.footer-col a, .footer-text { color: rgba(216,216,234,0.75); font-size: 0.92rem; }
.footer-col a:hover { color: var(--c-yellow); }
.footer-bottom {
  padding: 22px 24px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(216,216,234,0.55);
}

/* ===== Floating WhatsApp button ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  z-index: 200;
  transition: transform 0.2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: pulseRing 2s ease-out infinite;
}
@keyframes pulseRing {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* ===== Reveal on scroll ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .layers-timeline { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-wrap { grid-template-columns: 1fr; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { height: 280px; order: -1; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .main-nav {
    position: absolute;
    top: 76px; left: 0; right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 20px 24px;
    gap: 18px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-130%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .main-nav.open { transform: translateY(0); opacity: 1; }
  .nav-toggle { display: flex; }
  .header-actions { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .layers-timeline { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}
/* ===== Ödeme Modalı Tasarımı ===== */
.payment-modal {
  position: fixed;
  z-index: 999;
  inset: 0;
  background: rgba(23, 23, 46, 0.6); /* Arka planı hafif karartır */
  backdrop-filter: blur(8px); /* Arkadaki siteyi estetik şekilde puslandırır */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-content {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 600px;
  padding: 32px;
  position: relative;
  box-shadow: 0 20px 50px rgba(23, 23, 46, 0.25);
  animation: modalSlideUp 0.3s ease-out;
}

@keyframes modalSlideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.close-modal {
  position: absolute;
  top: 18px; right: 24px;
  font-size: 2rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--ink-soft);
  transition: color 0.2s;
}
.close-modal:hover { color: var(--c-magenta); }

#paytr_iframe_container iframe {
  width: 100%;
  min-height: 500px;
  border: none;
}
/* ===== Öne çıkanlar bölümü CTA butonları (index.html) ===== */
.section-cta-top {
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
}
.section-cta-bottom {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}

/* ===== Nav aktif sayfa göstergesi (magaza.html) ===== */
.main-nav a.nav-active {
  color: var(--c-magenta);
  font-weight: 700;
}

/* ===== Mağaza (magaza.html) sayfası ===== */
.store-hero {
  padding: 64px 0 32px;
}
.store-hero .section-title { margin-bottom: 14px; }
.store-hero .section-sub.left { margin-bottom: 32px; }

.store-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-bottom: 8px;
}
.store-search {
  flex: 1;
  min-width: 240px;
  max-width: 420px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: #fff;
  color: var(--ink);
}
.store-search:focus {
  outline: none;
  border-color: var(--c-cyan);
  box-shadow: 0 0 0 4px rgba(0, 184, 217, 0.15);
}
.store-count {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--ink-soft);
  white-space: nowrap;
}

.store-status {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: var(--ink-soft);
  padding: 24px 0;
  margin: 0;
}
.store-status:empty { display: none; }
.store-status-error { color: var(--c-magenta); font-weight: 600; }

.store-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--ink-soft);
  font-family: var(--font-mono);
  padding: 40px 0;
}

@media (max-width: 720px) {
  .store-toolbar { flex-direction: column; align-items: stretch; }
  .store-search { max-width: none; }
}

/* ===== Sabit Kargo Şeridi (header altı, her zaman görünür) ===== */
.shipping-strip {
  background: linear-gradient(90deg, var(--c-magenta), var(--c-orange));
  color: #fff;
  text-align: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}
.shipping-strip-sep {
  opacity: 0.7;
  font-weight: 400;
}

@media (max-width: 720px) {
  .shipping-strip {
    font-size: 0.82rem;
    flex-direction: column;
    gap: 4px;
    padding: 12px 16px;
  }
  .shipping-strip-sep { display: none; }
}

/* ===== Kampanya Banner (Karosel) — kurumsal, kontrollu, kart tarzi ===== */
.promo-section {
  padding: 32px 0 0;
}
.promo-carousel {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  height: 320px;
}
.promo-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}
.promo-slide {
  flex: 0 0 100%;
  height: 100%;
}

.promo-slide-solid {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 48px;
}
.promo-text {
  color: #fff;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.3rem;
  text-align: center;
  margin: 0;
  max-width: 700px;
}

.promo-slide-split {
  display: flex;
  height: 100%;
}
.promo-card-text {
  flex: 1 1 52%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  padding: 40px 48px;
  background: linear-gradient(150deg, #ffffff, var(--bg-alt));
}
.promo-text-lg {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  margin: 0;
}
.promo-text-lg strong { color: var(--c-magenta); }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }

.promo-card-image {
  flex: 1 1 48%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.promo-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.promo-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.9);
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  box-shadow: 0 4px 14px rgba(23,23,46,0.15);
  transition: background 0.2s ease, transform 0.2s ease;
}
.promo-nav:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.promo-prev { left: 16px; }
.promo-next { right: 16px; }

.promo-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}
.promo-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  padding: 0;
  background: rgba(23,23,46,0.25);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}
.promo-dot.active {
  width: 24px;
  background: var(--c-magenta);
}

@media (max-width: 720px) {
  .promo-carousel { height: 480px; }
  .promo-slide-split { flex-direction: column; }
  .promo-card-text { padding: 24px; text-align: left; }
  .promo-card-image { flex: 1 1 auto; min-height: 200px; }
  .promo-text { font-size: 1.05rem; }
  .promo-nav { width: 34px; height: 34px; font-size: 1.2rem; }
}

/* ===== Yasal Sayfalar (KVKK, Sözleşmeler vb.) ===== */
.legal-wrap {
  max-width: 820px;
}
.legal-updated {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.legal-notice {
  background: var(--bg-alt);
  border-left: 4px solid var(--c-magenta);
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 40px;
}
.legal-notice code {
  background: rgba(23,23,46,0.08);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: var(--font-mono);
}
.legal-body h2 {
  font-size: 1.2rem;
  margin: 36px 0 12px;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body p, .legal-body li {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink-soft);
}
.legal-body ul, .legal-body ol {
  padding-left: 22px;
  margin: 0 0 16px;
}
.legal-body li { margin-bottom: 8px; }
.legal-body a { color: var(--c-magenta); font-weight: 600; }

/* ===== Hakkımızda ===== */
.about-wrap { max-width: 760px; }
.about-text {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--ink-soft);
  background: var(--bg-alt);
  border-left: 4px solid var(--c-cyan);
  border-radius: 8px;
  padding: 18px 22px;
}

/* ===== Müşteri Yorumları — avatarlı, ortası öne çıkan kayan kartlar ===== */
.testimonial-carousel {
  position: relative;
  overflow: hidden;
  margin-bottom: 8px;
  padding: 8px 0 56px;
}
.testimonial-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}
.testimonial-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 28px 28px;
  box-shadow: var(--shadow-soft);
  flex: 0 0 calc(33.333% - 16px);
  width: calc(33.333% - 16px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0.45;
  transform: scale(0.94);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.testimonial-card.is-active {
  opacity: 1;
  transform: scale(1);
}
.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ac1), var(--ac2));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 6px 16px rgba(23,23,46,0.15);
}
.testimonial-avatar svg { width: 30px; height: 30px; }
.testimonial-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  margin: 0 0 2px;
}
.testimonial-product {
  font-size: 0.78rem;
  color: var(--c-magenta);
  font-weight: 600;
  margin: 0 0 14px;
}
.testimonial-text {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 14px;
  line-height: 1.55;
}
.testimonial-stars {
  color: var(--c-yellow);
  font-size: 1.05rem;
  letter-spacing: 2px;
  margin-top: auto;
}

.testimonial-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  padding: 0;
  background: rgba(23,23,46,0.2);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}
.testimonial-dot.active {
  width: 24px;
  background: var(--c-magenta);
}

@media (max-width: 980px) {
  .testimonial-card { flex: 0 0 calc(50% - 12px); width: calc(50% - 12px); }
}
@media (max-width: 600px) {
  .testimonial-card { flex: 0 0 88%; width: 88%; }
}

/* ===== Gerçek Puan Şeridi (yazı yorumu olmayan ürünler) ===== */
.ratings-strip-label {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.ratings-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.rating-chip {
  background: #fff;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.82rem;
  color: var(--ink);
  box-shadow: var(--shadow-soft);
  white-space: nowrap;
}
.rating-chip strong { color: var(--c-magenta); }
.rating-chip em {
  font-style: normal;
  color: var(--ink-soft);
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

@media (max-width: 720px) {
  .rating-chip { white-space: normal; }
}

/* ===== SSS (FAQ) ===== */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  padding: 4px 22px;
}
.faq-item summary {
  cursor: pointer;
  padding: 16px 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--c-magenta);
  margin-left: 16px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.6;
  padding-bottom: 18px;
  margin: 0;
}
.faq-item a { color: var(--c-magenta); font-weight: 600; }

/* ===== Teklif Formu: KVKK Onay Kutusu ===== */
.form-field-checkbox { margin-bottom: 22px; }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.5;
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--c-magenta);
  cursor: pointer;
}
.checkbox-label a { color: var(--c-magenta); font-weight: 600; }
