@charset "UTF-8";

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark:  #266431;
  --green-mid:   #42a046;
  --green-light: #5cba60;
  --white:       #ffffff;
  --off-white:   #f7faf7;
  --gray-light:  #e8f0e9;
  --gray-text:   #4a5568;
  --gray-mid:    #718096;
  --shadow-sm:   0 2px 8px rgba(38,100,49,.12);
  --shadow-md:   0 8px 32px rgba(38,100,49,.18);
  --shadow-lg:   0 20px 60px rgba(38,100,49,.22);
  --radius:      14px;
  --radius-lg:   22px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--gray-text); background: var(--white); overflow-x: hidden; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-light);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  height: 68px;
  box-shadow: var(--shadow-sm);
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo svg { height: 36px; }
.nav-cta {
  background: var(--green-dark); color: var(--white);
  padding: 10px 24px; border-radius: 50px; font-weight: 700; font-size: .9rem;
  text-decoration: none; transition: .2s;
  box-shadow: 0 4px 14px rgba(38,100,49,.35);
}
.nav-cta:hover { background: var(--green-mid); transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding-top: 68px;
  background: linear-gradient(135deg, #0d2b11 0%, var(--green-dark) 40%, var(--green-mid) 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
  padding: 60px 5%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center;
}
.hero-text h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900; color: var(--white);
  line-height: 1.15; margin-bottom: 20px;
}
.hero-text h1 span { color: #a8f0ab; }
.hero-text p {
  font-size: 1.1rem; color: rgba(255,255,255,.85);
  line-height: 1.7; margin-bottom: 30px;
}

/* ── SOCIAL PROOF ── */
.social-proof {
  display: flex; align-items: center; gap: 8px;
  background: #edf7ed;
  border: 1.5px solid #b8e0b8;
  border-radius: 50px;
  padding: 6px 14px;
  color: #266431;
  font-size: .8rem; font-weight: 600;
  width: fit-content;
  margin: 0 0 16px 0;
}
.social-proof .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #42a046;
  animation: blink 1.4s infinite;
  flex-shrink: 0;
}
@keyframes blink { 0%,100%{ opacity:1; } 50%{ opacity:.3; } }

/* ── FORM CARD ── */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  border: 1.5px solid var(--gray-light);
}
.form-card::before { display: none; }
.form-card h2 { font-size: 1.4rem; font-weight: 800; color: var(--green-dark); margin-bottom: 6px; }
.form-card .form-sub { font-size: .9rem; color: var(--gray-mid); margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--green-dark); margin-bottom: 6px; }
.form-group input,
.form-group select {
  width: 100%; padding: 13px 16px;
  border: 2px solid var(--gray-light);
  border-radius: 10px;
  font-family: 'Inter', sans-serif; font-size: .95rem;
  color: var(--gray-text); background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  appearance: none; -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(66,160,70,.15);
}
.select-wrap { position: relative; }
.select-wrap::after {
  content: '\25BC'; font-size: .7rem; color: var(--green-dark);
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  pointer-events: none;
}
.form-btn {
  width: 100%; padding: 16px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  color: var(--white); font-family: 'Inter', sans-serif;
  font-size: 1rem; font-weight: 800;
  border: none; border-radius: 10px; cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 6px 20px rgba(38,100,49,.4); margin-top: 6px;
}
.form-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(38,100,49,.5); }
.form-btn:active { transform: translateY(0); }
.form-note { text-align: center; font-size: .78rem; color: var(--gray-mid); margin-top: 12px; }
.form-note span { color: var(--green-dark); font-weight: 600; }
.success-msg {
  display: none; text-align: center; padding: 20px;
  background: #e8f8e8; border-radius: 10px;
  color: var(--green-dark); font-weight: 700; margin-top: 16px;
}

/* ── SECTION BASE ── */
section { padding: 80px 5%; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label { text-transform: uppercase; letter-spacing: 2px; font-size: .78rem; font-weight: 700; color: var(--green-mid); margin-bottom: 10px; }
.section-title { font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: 900; color: #1a2e1b; line-height: 1.2; margin-bottom: 16px; }
.section-title span { color: var(--green-mid); }
.section-desc { color: var(--gray-mid); font-size: 1rem; line-height: 1.7; max-width: 600px; }

/* ── STATS BAR ── */
.stats-bar { background: linear-gradient(135deg, var(--green-dark), var(--green-mid)); padding: 40px 5%; }
.stats-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-num { font-size: 2.4rem; font-weight: 900; color: var(--white); }
.stat-num span { font-size: 1.2rem; vertical-align: middle; line-height: 1; }
.stat-label { font-size: .85rem; color: rgba(255,255,255,.8); margin-top: 4px; }

/* ── TWO PATHS ── */
.two-paths { background: var(--off-white); }
.paths-header { text-align: center; margin-bottom: 50px; }
.paths-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.path-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s; }
.path-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.path-header { padding: 32px 32px 24px; background: linear-gradient(135deg, var(--green-dark), var(--green-mid)); }
.path-icon { font-size: 2.8rem; margin-bottom: 12px; display: block; }
.path-header h3 { font-size: 1.4rem; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.path-header p { font-size: .9rem; color: rgba(255,255,255,.85); line-height: 1.6; }
.path-body { padding: 28px 32px; }
.path-list { list-style: none; }
.path-list li { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; font-size: .95rem; color: var(--gray-text); border-bottom: 1px solid var(--gray-light); }
.path-list li:last-child { border-bottom: none; }
.path-list li::before { content: '\2713'; color: var(--green-mid); font-weight: 800; flex-shrink: 0; }
.path-btn { display: block; width: 100%; background: var(--green-dark); color: var(--white); text-align: center; padding: 14px; border-radius: 10px; font-weight: 700; text-decoration: none; transition: .2s; margin-top: 20px; }
.path-btn:hover { background: var(--green-mid); }

/* ── WHY HERBALIFE ── */
.why-header { text-align: center; margin-bottom: 50px; }
.why-header .section-desc { margin: 0 auto; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card { background: var(--white); border: 2px solid var(--gray-light); border-radius: var(--radius); padding: 30px 24px; text-align: center; transition: .3s; }
.why-card:hover { border-color: var(--green-mid); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.why-icon { width: 64px; height: 64px; background: linear-gradient(135deg, #e8f8e8, #c8edc8); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin: 0 auto 16px; }
.why-card h4 { font-size: 1rem; font-weight: 700; color: #1a2e1b; margin-bottom: 8px; }
.why-card p { font-size: .88rem; color: var(--gray-mid); line-height: 1.6; }

/* ── HOW IT WORKS ── */
.how-it-works { background: var(--off-white); }
.how-header { text-align: center; margin-bottom: 60px; }
.steps-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; }
.steps-track::before { content: ''; position: absolute; top: 40px; left: 20%; right: 20%; height: 2px; background: linear-gradient(90deg, var(--green-dark), var(--green-mid)); }
.step { text-align: center; padding: 0 20px; position: relative; }
.step-num { width: 80px; height: 80px; background: linear-gradient(135deg, var(--green-dark), var(--green-mid)); color: var(--white); font-size: 1.8rem; font-weight: 900; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; box-shadow: 0 8px 24px rgba(38,100,49,.35); position: relative; z-index: 1; }
.step h4 { font-size: 1.1rem; font-weight: 700; color: #1a2e1b; margin-bottom: 10px; }
.step p { font-size: .9rem; color: var(--gray-mid); line-height: 1.6; }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--white); }
.test-header { text-align: center; margin-bottom: 50px; }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.test-card { background: var(--off-white); border-radius: var(--radius); padding: 30px; position: relative; border-left: 4px solid var(--green-mid); transition: .3s; }
.test-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.test-quote { font-size: 2rem; color: var(--green-mid); line-height: 1; margin-bottom: 12px; font-family: Georgia, serif; }
.test-text { font-size: .95rem; color: var(--gray-text); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.test-author { display: flex; align-items: center; gap: 14px; }
.test-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--green-dark), var(--green-mid)); display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 800; font-size: 1.1rem; flex-shrink: 0; }
.test-name { font-weight: 700; color: #1a2e1b; font-size: .95rem; }
.test-role { font-size: .8rem; color: var(--gray-mid); }
.test-stars { color: #f6c90e; font-size: .9rem; margin-top: 2px; }

/* ── FAQ ── */
.faq { background: var(--off-white); }
.faq-header { text-align: center; margin-bottom: 50px; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--white); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; border: 2px solid transparent; transition: border-color .2s; }
.faq-item.open { border-color: var(--green-mid); }
.faq-q { padding: 20px 24px; font-weight: 700; font-size: .97rem; color: #1a2e1b; cursor: pointer; display: flex; justify-content: space-between; align-items: center; user-select: none; }
.faq-q .arrow { width: 28px; height: 28px; background: var(--gray-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .7rem; flex-shrink: 0; transition: transform .3s, background .2s; }
.faq-item.open .faq-q .arrow { transform: rotate(180deg); background: var(--green-mid); color: var(--white); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s; padding: 0 24px; }
.faq-a p { padding-bottom: 20px; font-size: .93rem; color: var(--gray-mid); line-height: 1.7; }
.faq-item.open .faq-a { max-height: 300px; }

/* ── FOOTER ── */
footer { background: linear-gradient(135deg, #0d2b11, var(--green-dark)); padding: 48px 5% 50px; color: rgba(255,255,255,.7); text-align: center; }
.footer-inner { max-width: 680px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 20px; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-logo img { height: 38px; }
.footer-tagline { font-size: .88rem; color: rgba(255,255,255,.65); line-height: 1.8; text-align: center; }
.footer-socials { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.footer-social-btn { display: flex; align-items: center; gap: 7px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: #fff; font-size: .82rem; font-weight: 600; padding: 8px 16px; border-radius: 50px; text-decoration: none; transition: .2s; }
.footer-social-btn:hover { background: rgba(255,255,255,.2); }
.footer-bottom { text-align: center; padding-top: 22px; font-size: .78rem; color: rgba(255,255,255,.45); max-width: 1200px; margin: 0 auto; }

/* ── FLOATING CTA (eski tekli buton — yeni .float-bar ile değiştirildi) ── */
.float-cta { display: none !important; }
@keyframes pulse { 0%, 100% { box-shadow: 0 8px 28px rgba(38,100,49,.5); } 50% { box-shadow: 0 8px 40px rgba(38,100,49,.7); } }

/* ── FLOATING ACTION BAR (herbalsepet stili, sadece mobil: Kayıt Formu • WhatsApp • Bizi Arayın) ── */
.float-bar {
  display: none;  /* desktopta gizli */
  position: fixed;
  left: 50%;
  bottom: calc(14px + env(safe-area-inset-bottom, 0px));
  transform: translateX(-50%);
  z-index: 999;
  width: calc(100% - 24px);
  max-width: 440px;
  margin-top: 24px;
  padding: 8px 14px;
  background: linear-gradient(135deg, #1f2937 0%, #0f172a 55%, #030712 100%);
  border-radius: 999px;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 8px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 14px 36px rgba(0,0,0,.4),
    0 4px 12px rgba(15,23,42,.22);
}
@media (max-width: 767.98px) {
  .float-bar { display: grid; }
}
.float-bar__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  text-decoration: none;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.1;
  padding: 4px 2px 6px;
  text-align: center;
  transition: color .15s, transform .15s;
  -webkit-tap-highlight-color: transparent;
}
.float-bar__btn:hover,
.float-bar__btn:active,
.float-bar__btn:focus-visible { color: #fff; transform: translateY(-1px); }
.float-bar__btn svg { width: 18px; height: 18px; display: block; stroke-width: 2; }
.float-bar__btn--whatsapp {
  position: relative;
  flex-direction: column;
  justify-content: flex-start;
  padding: 32px 0 6px;
  min-width: 78px;
  gap: 0;
}
.float-bar__btn--whatsapp:hover,
.float-bar__btn--whatsapp:active,
.float-bar__btn--whatsapp:focus-visible { transform: none; }
.float-bar__circle {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 4px rgba(37,211,102,.18),
    0 6px 16px rgba(37,211,102,.45);
  transition: transform .2s, box-shadow .2s;
  animation: fb-wa-pulse 2.4s ease-in-out infinite;
}
.float-bar__circle svg { width: 22px; height: 22px; color: #fff; }
.float-bar__circle::after {
  content: '';
  position: absolute;
  top: 4px;
  right: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ef4444;
  border: 2px solid #fff;
  box-shadow: 0 0 0 0 rgba(239,68,68,.6);
  animation: fb-wa-dot 1.6s ease-in-out infinite;
}
.float-bar__btn--whatsapp:hover .float-bar__circle,
.float-bar__btn--whatsapp:active .float-bar__circle,
.float-bar__btn--whatsapp:focus-visible .float-bar__circle {
  transform: translateX(-50%) scale(1.06);
  box-shadow:
    0 0 0 6px rgba(37,211,102,.22),
    0 8px 20px rgba(37,211,102,.55);
}
@keyframes fb-wa-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(37,211,102,.18), 0 6px 16px rgba(37,211,102,.45); }
  50%      { box-shadow: 0 0 0 8px rgba(37,211,102,.10), 0 6px 22px rgba(37,211,102,.55); }
}
@keyframes fb-wa-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239,68,68,.6); }
  50%      { box-shadow: 0 0 0 6px rgba(239,68,68,0); }
}
@media (prefers-reduced-motion: reduce) {
  .float-bar__circle,
  .float-bar__circle::after { animation: none; }
}
body { padding-bottom: env(safe-area-inset-bottom, 0); }

/* ── FADE-IN ── */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── SCROLL OFFSET ── */
#form { scroll-margin-top: 80px; }

/* ── SCROLL-DOWN OK (sadece masaüstü) ── */
.scroll-arrow {
  display: none;                          /* mobilde gizli */
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  width: 44px; height: 44px;
  border: 2px solid rgba(255,255,255,.45);
  border-radius: 50%;
  color: rgba(255,255,255,.75);
  align-items: center; justify-content: center;
  text-decoration: none;
  transition: color .2s, border-color .2s, background .2s;
  animation: arrowBounce 1.8s ease-in-out infinite;
  z-index: 2;
}
.scroll-arrow svg { width: 22px; height: 22px; }
.scroll-arrow:hover { color: #fff; border-color: rgba(255,255,255,.9); background: rgba(255,255,255,.1); }
@keyframes arrowBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}
@media (min-width: 961px) {
  .scroll-arrow { display: flex; }
}

/* ── STATS: her zaman içerik akışında, sabit bar kaldırıldı ── */
.stats-bar-original { display: block !important; }
.stats-fixed { display: none !important; }

/* ── RESPONSIVE 960px ── */
@media (max-width: 960px) {
  nav { justify-content: center; }
  .nav-cta { display: none !important; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-text { text-align: center; order: 2; }
  .form-card { order: 1; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .paths-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-track { grid-template-columns: 1fr; }
  .steps-track::before { display: none; }
  .steps-track .step:nth-child(2) { margin: 32px 0; }
  .hero-text p { margin-bottom: 0; }
  .test-grid { grid-template-columns: 1fr; }
}

/* ── RESPONSIVE 600px ── */
@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  nav { padding: 0 4%; }
  .form-card { padding: 28px 20px; }
}

/* ── BLOG PREVIEW (Ana Sayfa) ── */
.blog-preview { padding: 80px 0; background: var(--off-white); }
.blog-preview-header { text-align: center; margin-bottom: 36px; }
.blog-preview-header .section-desc { margin: 0 auto; }

/* Carousel container */
.blog-carousel {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
}
.blog-carousel__viewport {
  overflow: hidden;
  border-radius: calc(var(--radius) + 2px);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
}
.blog-carousel__track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 6px 24px;
  /* mantıklı bir tampon */
  scroll-padding-left: 24px;
}
.blog-carousel__track::-webkit-scrollbar { display: none; }

/* Card sizing — 3 / 2 / 1 sütun */
.blog-carousel .blog-preview-card {
  flex: 0 0 calc((100% - 44px) / 3); /* 3 kart + 2 gap */
  scroll-snap-align: start;
  min-height: 240px;
}
@media (max-width: 900px) {
  .blog-carousel .blog-preview-card {
    flex-basis: calc((100% - 22px) / 2); /* 2 kart */
  }
}
@media (max-width: 600px) {
  .blog-carousel { padding: 0 8px; }
  .blog-carousel__viewport {
    -webkit-mask-image: none;
            mask-image: none;
  }
  .blog-carousel__track { padding: 6px 12px; gap: 14px; }
  .blog-carousel .blog-preview-card {
    flex-basis: 88%; /* tek kart + bir sonrakinden ipucu */
  }
}

/* Prev / Next butonları */
.blog-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gray-light);
  background: var(--white);
  color: var(--green-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: background .15s ease, color .15s ease, transform .15s ease, opacity .15s ease;
  padding: 0;
}
.blog-carousel__btn svg { width: 22px; height: 22px; }
.blog-carousel__btn:hover { background: var(--green-dark); color: var(--white); }
.blog-carousel__btn:focus-visible { outline: 2px solid var(--green-mid); outline-offset: 2px; }
.blog-carousel__btn[disabled] { opacity: .35; cursor: default; pointer-events: none; }
.blog-carousel__btn--prev { left: -6px; }
.blog-carousel__btn--next { right: -6px; }
@media (max-width: 600px) {
  .blog-carousel__btn { display: none; }
}

/* Dot navigation */
.blog-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
  flex-wrap: wrap;
  padding: 0 16px;
}
.blog-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: rgba(26, 74, 32, 0.22);
  cursor: pointer;
  padding: 0;
  transition: background .2s ease, transform .2s ease, width .25s ease;
}
.blog-carousel__dot:hover { background: rgba(26, 74, 32, 0.45); }
.blog-carousel__dot:focus-visible { outline: 2px solid var(--green-mid); outline-offset: 2px; }
.blog-carousel__dot[aria-selected="true"] {
  background: var(--green-dark);
  width: 22px;
  border-radius: 6px;
}

/* Mevcut card stilleri (corousel ile uyumlu) */
.blog-preview-card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px; border: 1px solid var(--gray-light);
  text-decoration: none; color: inherit;
  transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.blog-preview-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-md);
}
.blog-preview-tag {
  display: inline-block; background: #e8f5e9; color: var(--green-dark);
  font-size: .75rem; font-weight: 700; text-transform: uppercase;
  padding: 4px 10px; border-radius: 6px; margin-bottom: 14px;
  letter-spacing: .03em; width: fit-content;
}
.blog-preview-card h3 {
  font-size: 1.15rem; font-weight: 700; color: var(--green-dark);
  margin-bottom: 10px; line-height: 1.35;
}
.blog-preview-card p {
  font-size: .92rem; color: var(--gray-mid); line-height: 1.6;
  margin-bottom: 16px; flex-grow: 1;
}
.blog-preview-link {
  font-size: .9rem; font-weight: 600; color: var(--green-mid);
}
@media (max-width: 600px) {
  .blog-preview { padding: 50px 0; }
  .blog-preview-card { padding: 22px; }
}

/* Otomatik animasyonu prefer-reduced-motion altında durdur */
@media (prefers-reduced-motion: reduce) {
  .blog-carousel__track { scroll-behavior: auto; }
}
