/* ============================================================
   Yeşil Toptan Pazarlama — Kurumsal Site
   Palet: orman yeşili + krem + altın vurgu
   ============================================================ */

:root {
  --ink: #0f2415;
  --green-900: #14301c;
  --green-800: #1b4426;
  --green-700: #23582f;
  --green-600: #2e6d3a;
  --leaf: #8bc34a;
  --leaf-soft: #dcecc8;
  --cream: #f5f1e6;
  --paper: #fbfaf6;
  --white: #ffffff;
  --gold: #c9a227;
  --gold-deep: #a8841c;
  --wa: #1faa53;
  --text: #2b3a30;
  --text-soft: #5e6f63;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 2px 10px rgba(15, 36, 21, 0.06);
  --shadow-md: 0 10px 34px rgba(15, 36, 21, 0.10);
  --shadow-lg: 0 24px 60px rgba(15, 36, 21, 0.16);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  overscroll-behavior-x: none;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: min(1180px, 100% - 48px);
  margin-inline: auto;
}

/* ---------- Tipografi ---------- */
h1, h2, h3, .section-title, .hero-title, .page-title {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.section-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
}
.section-kicker.center { text-align: center; }

.section-title {
  font-size: clamp(28px, 4vw, 42px);
}

.lead {
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink);
}

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--green-800); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--green-700); box-shadow: var(--shadow-md); }

.btn-gold {
  background: linear-gradient(135deg, #d9b53a, var(--gold) 55%, var(--gold-deep));
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.35);
}
.btn-gold:hover { box-shadow: 0 12px 32px rgba(201, 162, 39, 0.5); }

.btn-outline { border-color: var(--green-800); color: var(--green-800); background: transparent; }
.btn-outline:hover { background: var(--green-800); color: #fff; }

.btn-ghost { border-color: rgba(255, 255, 255, 0.45); color: #fff; background: rgba(255, 255, 255, 0.06); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.16); }

.btn-wa { background: var(--wa); color: #fff; box-shadow: 0 6px 18px rgba(31, 170, 83, 0.35); }
.btn-wa:hover { background: #23c05f; }

.btn-lg { padding: 16px 34px; font-size: 16px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-block { width: 100%; }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 8px;
  gap: 16px;
}
.topbar a, .topbar span { display: inline-flex; align-items: center; gap: 7px; }
.topbar a:hover { color: var(--leaf); }
.topbar-left { display: flex; gap: 22px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 250, 246, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15, 36, 21, 0.07);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 14px;
  gap: 24px;
}

.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo-mark { width: 44px; height: 44px; flex-shrink: 0; object-fit: contain; }
.site-footer .logo-mark {
  background: #fff;
  border-radius: 50%;
  padding: 4px;
  box-sizing: border-box;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--green-800);
}
.logo-sub {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav > a:not(.btn) {
  font-weight: 500;
  font-size: 15px;
  color: var(--text);
  position: relative;
  padding-block: 6px;
  white-space: nowrap;
}
.main-nav > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.main-nav > a:not(.btn):hover::after,
.main-nav > a.active:not(.btn)::after { transform: scaleX(1); }
.main-nav > a.active:not(.btn) { color: var(--green-800); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(92vh, 1000px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1100px 600px at 85% 110%, rgba(174, 221, 96, 0.45), transparent 62%),
    radial-gradient(900px 500px at -10% -20%, rgba(201, 162, 39, 0.22), transparent 55%),
    linear-gradient(160deg, #256b33 0%, #318a44 45%, #46a457 100%);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/img/pattern.svg");
  background-size: 520px;
  opacity: 0.5;
  mix-blend-mode: soft-light;
}

.hero-inner { position: relative; padding-block: 110px 60px; max-width: 780px; }

.hero-kicker {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.hero-title {
  font-size: clamp(40px, 6.4vw, 74px);
  color: #fff;
  font-weight: 500;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: #d6f0a2;
}

.hero-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
  margin-bottom: 38px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(15, 36, 21, 0.28);
  backdrop-filter: blur(8px);
}
.hero-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-block: 26px;
  gap: 20px;
}
.stat { text-align: center; }
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  color: var(--gold);
  line-height: 1.1;
}
.stat strong::after { content: "+"; opacity: 0.75; }
.stat span {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

/* ---------- Vitrin girisi (e-ticaret ana sayfa) ---------- */
.shop-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding-block: 84px 66px;
  text-align: center;
}
.shop-hero-inner {
  position: relative;
  max-width: 820px;
}
.shop-hero-title {
  font-size: clamp(30px, 4.6vw, 52px);
  color: #fff;
  font-weight: 500;
  margin-block: 18px 30px;
}
.shop-hero-title em {
  font-style: italic;
  color: #d6f0a2;
}
.shop-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border-radius: 999px;
  padding: 8px 8px 8px 22px;
  box-shadow: 0 18px 50px rgba(15, 36, 21, 0.35);
  max-width: 640px;
  margin-inline: auto;
}
.shop-search svg { color: var(--green-700); flex-shrink: 0; }
.shop-search input {
  flex: 1;
  border: 0;
  outline: 0;
  font-family: inherit;
  font-size: 15.5px;
  color: var(--ink);
  background: transparent;
  min-width: 0;
}
.shop-search input::placeholder { color: #9aa79c; }
.shop-search .btn { padding: 12px 30px; }
.shop-hero-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}
.shop-hero-chips .chip {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  backdrop-filter: blur(4px);
}
.shop-hero-chips .chip:hover { background: #fff; border-color: #fff; color: var(--green-800); }
.shop-hero-chips .chip-hero-all { border-color: rgba(214, 240, 162, 0.7); color: #e7f5c9; font-weight: 600; }

/* ---------- Guven seridi ---------- */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid rgba(15, 36, 21, 0.08);
}
.trust-bar-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-block: 18px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--leaf-soft);
  color: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon-wa { background: #dff5e7; color: var(--wa); }
.trust-text { display: flex; flex-direction: column; line-height: 1.3; }
.trust-text strong {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}
.trust-text > span { font-size: 12.5px; color: var(--text-soft); }
a.trust-item:hover .trust-text strong { color: var(--green-700); }

/* Ana sayfa arama kutusu */
.home-search { padding: 30px 0 4px; }
.home-search-form {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1.5px solid rgba(15, 36, 21, 0.13);
  border-radius: 999px;
  padding: 7px 7px 7px 22px;
  max-width: 680px;
  margin-inline: auto;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.home-search-form:focus-within {
  border-color: var(--green-700);
  box-shadow: 0 0 0 4px rgba(46, 109, 58, 0.12);
}
.home-search-form svg { color: var(--green-700); flex-shrink: 0; }
.home-search-form input {
  flex: 1;
  border: 0;
  outline: 0;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: transparent;
  min-width: 0;
}
.home-search-form input::placeholder { color: #9aa79c; }
.home-search-form .btn { padding: 11px 28px; }

.section-categories { padding-top: 44px; }

/* ---------- Kategori baloncuklari ---------- */
.cat-bubbles-section { padding-top: 22px; }
.cat-bubbles {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  overflow-x: auto;
  padding: 6px 4px 10px;
  scrollbar-width: none;
}
.cat-bubbles::-webkit-scrollbar { display: none; }
.cat-bubble {
  flex: 0 0 auto;
  width: 96px;
  text-align: center;
}
.cat-bubble-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--leaf-soft);
  box-shadow: var(--shadow-sm);
  margin-inline: auto;
  background: var(--white);
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.cat-bubble:hover .cat-bubble-img { border-color: var(--gold); transform: translateY(-3px); }
.cat-bubble-img img { width: 100%; height: 100%; object-fit: cover; }
.cat-bubble-all { color: var(--green-700); background: var(--leaf-soft); }
.cat-bubble-name {
  display: block;
  margin-top: 8px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.02em;
}

/* ---------- Kampanya bannerlari ---------- */
.promo-section { padding-top: 14px; }
.slider-track.slider-track-banner > * { flex: 0 0 100%; }
.promo-slide {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.promo-slide img { width: 100%; height: auto; display: block; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* Buyuk kategori kartlari (ana sayfa girisi) */
.category-grid.category-grid-lg { grid-template-columns: repeat(2, 1fr); gap: 26px; }
.category-grid-lg .category-card { aspect-ratio: 16 / 9; }
.category-grid-lg .category-card-overlay { padding: 34px 32px; }
.category-grid-lg .category-card-overlay h3 { font-size: 32px; }
.category-grid-lg .category-card-overlay p { font-size: 15px; }

/* Urun slider'i (ana sayfa one cikanlar) */
.slider-wrap { position: relative; }
.slider-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 4px;
}
.slider-track::-webkit-scrollbar { display: none; }
.slider-track > * {
  flex: 0 0 calc((100% - 66px) / 4);
  scroll-snap-align: start;
}
/* Kategori slider'i: 3 genis kart */
.slider-track-cat > * { flex-basis: calc((100% - 44px) / 3); }
.slider-track-cat .category-card { aspect-ratio: 16 / 11; }
.slider-track-cat .category-card-overlay { padding: 28px 26px; }
.slider-track-cat .category-card-overlay h3 { font-size: 27px; }

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(15, 36, 21, 0.12);
  background: var(--white);
  color: var(--green-800);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, color 0.25s ease, opacity 0.25s ease;
}
.slider-btn:hover { background: var(--green-800); color: #fff; }
.slider-btn[disabled] { opacity: 0.3; pointer-events: none; }
.slider-prev { left: -16px; }
.slider-next { right: -16px; }

/* Alt sayfalarda istatistik satiri */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  background: var(--green-900);
  border-radius: var(--radius);
  padding: 44px 30px;
}
.stats-row .stat span { color: rgba(255,255,255,0.7); }

/* ---------- Bölümler ---------- */
.section { padding-block: 96px; }
.section-cream { background: var(--cream); }
.section-dark {
  background:
    radial-gradient(900px 500px at 90% -20%, rgba(139, 195, 74, 0.16), transparent 55%),
    var(--green-900);
}
.section-dark .section-title { color: #fff; }
.section-dark .section-kicker { color: var(--gold); }

.section-head { max-width: 620px; margin-bottom: 52px; }
.section-head-split {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

/* ---------- Kategori kartlari ---------- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.category-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.category-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.category-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.category-card:hover img { transform: scale(1.06); }
.category-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px 24px;
  background: linear-gradient(to top, rgba(15, 36, 21, 0.92) 0%, rgba(15, 36, 21, 0.35) 55%, transparent 100%);
  color: #fff;
}
.category-card-overlay h3 { color: #fff; font-size: 24px; margin-bottom: 6px; }
.category-card-overlay p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.category-card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.25s ease;
}
.category-card:hover .category-card-link { gap: 9px; }

/* ---------- Ürün kartlari ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15, 36, 21, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.product-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--white);
}
.product-card-media img {
  width: 100%; height: 100%;
  object-fit: contain; /* urun fotografi kirpilmadan tamami gorunsun */
  padding: 12px;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card-media img { transform: scale(1.05); }
.product-card-cat {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(15, 36, 21, 0.82);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.product-card-body {
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.product-card-body h3 { font-size: 18px; }
.product-card-body h3 a:hover { color: var(--green-700); }
.product-card-body p { font-size: 13.5px; color: var(--text-soft); flex: 1; }
.product-card-actions { display: flex; gap: 8px; margin-top: 4px; }
.product-card-actions .btn { flex: 1; }

/* ---------- Hakkimizda teaser ---------- */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: center;
}
.about-teaser-media { position: relative; }
.about-teaser-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.about-teaser-badge {
  position: absolute;
  bottom: -22px;
  right: -18px;
  background: var(--green-800);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  box-shadow: var(--shadow-md);
  text-align: center;
  border: 3px solid var(--paper);
}
.about-teaser-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--gold);
  line-height: 1;
}
.about-teaser-badge span { font-size: 12px; opacity: 0.85; }

.about-teaser-text p { margin-bottom: 22px; color: var(--text-soft); }
.about-teaser-text .section-title { margin-bottom: 20px; }

.check-list { list-style: none; margin-bottom: 32px; }
.check-list li {
  padding-left: 34px;
  position: relative;
  margin-bottom: 12px;
  font-weight: 500;
  color: var(--ink);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 3px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--leaf-soft) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%232e6d3a"><path d="M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z"/></svg>') center / 12px no-repeat;
}

/* ---------- Hedef kitle ---------- */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.audience-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 34px 28px;
  color: rgba(255, 255, 255, 0.8);
  transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}
.audience-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(201, 162, 39, 0.5);
  transform: translateY(-4px);
}
.audience-card svg { color: var(--gold); margin-bottom: 18px; }
.audience-card h3 { color: #fff; font-size: 21px; margin-bottom: 10px; }
.audience-card p { font-size: 14px; }

/* ---------- Markalar ---------- */
.section-brands { padding-block: 70px; }
.brands-marquee {
  margin-top: 34px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
}
.brands-track {
  display: flex;
  align-items: center;
  gap: 72px;
  width: max-content;
  animation: marquee 32s linear infinite;
  padding-inline: 36px;
}
.brands-marquee:hover .brands-track { animation-play-state: paused; }
.brands-track img {
  height: 44px;
  width: auto;
  opacity: 0.7;
  filter: grayscale(0.35);
  transition: opacity 0.3s ease, filter 0.3s ease;
}
.brands-track img:hover { opacity: 1; filter: none; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(700px 320px at 12% -40%, rgba(201, 162, 39, 0.25), transparent 60%),
    linear-gradient(140deg, var(--green-900), var(--green-800));
  color: #fff;
  padding-block: 72px;
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
}
.cta-title { color: #fff; font-size: clamp(26px, 3.4vw, 38px); margin-bottom: 10px; }
.cta-sub { color: rgba(255, 255, 255, 0.78); max-width: 520px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255, 255, 255, 0.75); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
  gap: 44px;
  padding-block: 68px 48px;
}
.footer-col h4 {
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 14.5px;
  margin-bottom: 10px;
}
.footer-col a:hover { color: var(--leaf); }
.footer-brand .logo { margin-bottom: 18px; }
.footer-brand .logo-name { color: #fff; }
.footer-brand p { font-size: 14px; max-width: 300px; }

.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); }
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding-block: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 90;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(31, 170, 83, 0.45);
  transition: transform 0.25s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(31, 170, 83, 0.55);
  animation: waPulse 2.2s ease-out infinite;
}
@keyframes waPulse {
  0% { transform: scale(0.85); opacity: 1; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* ---------- Alt sayfa hero ---------- */
.page-hero {
  background:
    radial-gradient(800px 400px at 90% 130%, rgba(139, 195, 74, 0.30), transparent 60%),
    linear-gradient(155deg, #17381f, #20492b 70%);
  color: #fff;
  padding-block: 86px 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/img/pattern.svg");
  background-size: 460px;
  opacity: 0.4;
  mix-blend-mode: soft-light;
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-title { color: #fff; font-size: clamp(34px, 5vw, 56px); }
.page-sub { margin-top: 16px; color: rgba(255, 255, 255, 0.8); max-width: 560px; }

/* ---------- Katalog ---------- */
.catalog-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.category-filter { display: flex; gap: 10px; flex-wrap: wrap; }
.chip {
  padding: 9px 20px;
  border-radius: 999px;
  border: 1.5px solid rgba(15, 36, 21, 0.14);
  font-size: 14px;
  font-weight: 500;
  background: var(--white);
  transition: all 0.25s ease;
}
.chip:hover { border-color: var(--green-700); color: var(--green-700); }
.chip-active {
  background: var(--green-800);
  border-color: var(--green-800);
  color: #fff;
}

.search-form {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1.5px solid rgba(15, 36, 21, 0.14);
  border-radius: 999px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.search-form:focus-within { border-color: var(--green-700); box-shadow: 0 0 0 4px rgba(46, 109, 58, 0.12); }
.search-form input {
  border: 0;
  outline: 0;
  padding: 10px 6px 10px 20px;
  font-size: 14px;
  font-family: inherit;
  width: 210px;
  background: transparent;
}
.search-form button {
  border: 0;
  background: transparent;
  padding: 10px 16px;
  color: var(--green-800);
  display: flex;
}

.empty-state {
  text-align: center;
  padding: 80px 24px;
  max-width: 520px;
  margin-inline: auto;
}
.empty-state h3 { font-size: 26px; margin-bottom: 14px; }
.empty-state p { color: var(--text-soft); margin-bottom: 26px; }

/* ---------- Ürün detay ---------- */
.product-detail { padding-top: 48px; }
.breadcrumb {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: var(--text-soft);
  margin-bottom: 38px;
}
.breadcrumb a:hover { color: var(--green-700); }
.breadcrumb span[aria-current] { color: var(--ink); font-weight: 500; }

.product-detail-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: start;
}

.product-gallery-main {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(15, 36, 21, 0.07);
  box-shadow: var(--shadow-md);
  aspect-ratio: 1;
}
.product-gallery-main img { width: 100%; height: 100%; object-fit: contain; padding: 24px; }

.product-gallery-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.thumb {
  width: 82px; height: 82px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid rgba(15, 36, 21, 0.08);
  background: var(--white);
  padding: 0;
  transition: border-color 0.25s ease;
}
.thumb img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.thumb-active, .thumb:hover { border-color: var(--gold); }

.product-title { font-size: clamp(30px, 3.6vw, 44px); margin-bottom: 20px; }
.product-desc p { margin-bottom: 16px; color: var(--text-soft); }

.product-cta-box {
  margin-top: 30px;
  background: var(--cream);
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: var(--radius);
  padding: 26px;
}
.product-cta-box p { font-size: 14.5px; margin-bottom: 18px; color: var(--text); }
.product-cta-box .btn + .btn { margin-top: 10px; }

.product-perks {
  list-style: none;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.product-perks li {
  font-size: 13px;
  font-weight: 600;
  color: var(--green-700);
  display: flex;
  align-items: center;
  gap: 7px;
}
.product-perks li::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

/* ---------- Hakkimizda ---------- */
.about-story {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-story-text p { margin-bottom: 20px; color: var(--text-soft); }
.about-story-text .lead { color: var(--ink); }
.about-story-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--gold);
}
.value-num {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--gold-deep);
  letter-spacing: 0.1em;
}
.value-card h3 { font-size: 23px; margin-block: 10px 12px; }
.value-card p { font-size: 14.5px; color: var(--text-soft); }

/* ---------- İletisim ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.contact-item { margin-bottom: 26px; }
.contact-item h3 {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 6px;
}
.contact-item a, .contact-item p { font-size: 17px; color: var(--ink); font-weight: 500; }
.contact-item a:hover { color: var(--green-700); }

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 10px;
}
.map-embed iframe { width: 100%; height: 300px; border: 0; display: block; }
.map-static {
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 24px;
  color: #fff;
  background:
    radial-gradient(500px 260px at 85% 115%, rgba(139, 195, 74, 0.3), transparent 60%),
    linear-gradient(150deg, var(--ink), var(--green-800));
}
.map-static svg { color: var(--gold); margin-bottom: 6px; }
.map-static strong { font-size: 17px; }
.map-static span { font-size: 14px; opacity: 0.8; }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 42px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(15, 36, 21, 0.05);
}
.contact-form-sub { color: var(--text-soft); margin-block: 10px 28px; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
}
.contact-form input, .contact-form textarea {
  border: 1.5px solid rgba(15, 36, 21, 0.14);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  background: var(--paper);
  resize: vertical;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: 0;
  border-color: var(--green-700);
  box-shadow: 0 0 0 4px rgba(46, 109, 58, 0.12);
}

/* ---------- Blog ---------- */
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.post-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15, 36, 21, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.post-card-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--leaf-soft);
  display: block;
}
.post-card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.post-card:hover .post-card-media img { transform: scale(1.05); }
.post-card-body {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.post-date {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.post-card-body h3 { font-size: 20px; line-height: 1.3; }
.post-card-body h3 a:hover { color: var(--green-700); }
.post-card-body p { font-size: 14px; color: var(--text-soft); flex: 1; }
.post-card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-700);
  transition: gap 0.25s ease;
}
.post-card:hover .post-card-link { gap: 9px; }

/* Yazi detay */
.post-article { padding-top: 48px; }
.post-container { max-width: 780px; }
.post-header { margin-bottom: 34px; }
.post-title {
  font-size: clamp(30px, 4.4vw, 48px);
  margin-block: 12px 16px;
}
.post-excerpt {
  font-size: 18px;
  color: var(--text-soft);
  line-height: 1.6;
}
.post-cover {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 40px;
}
.post-cover img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.post-body p {
  margin-bottom: 20px;
  font-size: 16.5px;
  line-height: 1.8;
  color: var(--text);
}
.post-body h2 {
  font-size: 26px;
  margin: 38px 0 16px;
  padding-left: 16px;
  border-left: 3px solid var(--gold);
}
.post-body h3 { font-size: 21px; margin: 28px 0 12px; }
.post-body ul, .post-body ol {
  margin: 0 0 20px 24px;
  font-size: 16.5px;
  line-height: 1.8;
  color: var(--text);
}
.post-body li { margin-bottom: 8px; }
.post-body blockquote {
  border-left: 3px solid var(--gold);
  padding-left: 16px;
  margin: 0 0 20px;
  font-style: italic;
  color: var(--text-soft);
}
.post-body a { color: var(--green-700); text-decoration: underline; }
.post-body img { border-radius: var(--radius-sm); margin-bottom: 20px; }

.post-share {
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid rgba(15, 36, 21, 0.1);
}

/* ---------- Hata sayfalari ---------- */
.error-page { text-align: center; padding-block: 120px; }
.error-code {
  font-family: var(--font-display);
  font-size: clamp(80px, 14vw, 150px);
  color: var(--leaf-soft);
  font-weight: 600;
  line-height: 1;
}
.error-page .section-title { margin-block: 10px 16px; }
.error-page p { color: var(--text-soft); margin-bottom: 30px; }
.error-page .hero-actions { justify-content: center; }

/* ---------- Reveal animasyonlari ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .brands-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .category-grid, .product-grid, .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .post-grid { grid-template-columns: repeat(2, 1fr); }
  .slider-track > *, .slider-track-cat > * { flex-basis: calc((100% - 22px) / 2); }
  .about-teaser, .about-story, .contact-grid, .product-detail-grid { grid-template-columns: 1fr; gap: 44px; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }

  /* Guven seridi: dokunmatik cihazlarda yana kaydirilabilir tek satir */
  .trust-bar { position: relative; }
  .trust-bar-inner {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    gap: 30px;
    padding-block: 14px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .trust-bar-inner::-webkit-scrollbar { display: none; }
  .trust-bar::after {
    content: "";
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 36px;
    background: linear-gradient(to left, var(--white), transparent);
    pointer-events: none;
  }
  .trust-item { flex-shrink: 0; scroll-snap-align: start; }
  .trust-text strong, .trust-text > span { white-space: nowrap; }

  .nav-toggle { display: flex; position: relative; z-index: 210; }
  .main-nav {
    position: fixed;
    top: 0; right: 0;
    height: 100dvh;
    width: min(320px, 84vw);
    background: var(--ink);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 36px;
    gap: 26px;
    transform: translateX(100%);
    visibility: hidden; /* kapaliyken kaydirmayla asla gorunmesin */
    transition: transform 0.35s ease, visibility 0s linear 0.35s;
    z-index: 200;
  }
  .main-nav.open {
    transform: translateX(0);
    visibility: visible;
    transition: transform 0.35s ease;
    box-shadow: -20px 0 60px rgba(0,0,0,0.35);
  }
  .main-nav > a:not(.btn) { color: #fff; font-size: 19px; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: #fff; }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: #fff; }
}

@media (max-width: 720px) {
  .container { width: min(1180px, 100% - 36px); }
  .section { padding-block: 64px; }
  .hide-mobile { display: none !important; }

  .hero { min-height: auto; }
  .hero-inner { padding-block: 84px 52px; }
  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-icon { width: 38px; height: 38px; }
  .shop-hero { padding-block: 60px 48px; }
  .shop-search { padding: 6px 6px 6px 16px; }
  .shop-search input { font-size: 14px; }
  .shop-search .btn { padding: 10px 20px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .category-grid, .category-grid.category-grid-lg { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .post-grid { grid-template-columns: 1fr; }
  .slider-track > *, .slider-track-cat > * { flex-basis: 82%; }
  .slider-track.slider-track-banner > * { flex: 0 0 100%; }
  .slider-btn { display: none; } /* mobilde parmakla kaydirma yeterli */

  .cat-bubbles { justify-content: flex-start; }
  .cat-bubble { width: 82px; }
  .cat-bubble-img { width: 72px; height: 72px; }
  .audience-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-form-wrap { padding: 28px 22px; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
  .wa-float { right: 18px; bottom: 18px; width: 54px; height: 54px; }
}

/* ============================================================
   toptantr tarzi yogun ana sayfa (2026-07-13)
   ============================================================ */

/* ---------- Header arama ---------- */
.header-search {
  flex: 1;
  max-width: 400px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid rgba(15, 36, 21, 0.14);
  border-radius: 999px;
  padding: 4px 4px 4px 18px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.header-search:focus-within {
  border-color: var(--green-600);
  box-shadow: 0 0 0 4px rgba(46, 109, 58, 0.12);
}
.header-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: none;
  background: transparent;
  font: inherit;
  font-size: 14px;
  color: var(--text);
}
.header-search input::placeholder { color: #9aa79c; }
.header-search button {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--green-800);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;
}
.header-search button:hover { background: var(--green-700); }

/* ---------- Kategori nav bari ---------- */
.cat-nav { background: var(--green-800); }
.cat-nav-inner {
  display: flex;
  align-items: center;
  gap: 2px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.cat-nav-inner::-webkit-scrollbar { display: none; }
.cat-nav-inner a {
  color: rgba(255, 255, 255, 0.92);
  font-size: 13.5px;
  font-weight: 600;
  padding: 10px 14px;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}
.cat-nav-inner a:hover { background: rgba(255, 255, 255, 0.14); color: #fff; }
.cat-nav-inner .cat-nav-all { margin-left: auto; color: #ffd76a; }

/* ---------- Promo alani: slider + yan sutun ---------- */
.promo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 16px;
  align-items: stretch;
}
.promo-main { min-width: 0; }
.promo-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}
.promo-mini {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.promo-mini:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.promo-mini img { width: 100%; height: auto; display: block; }

.spotlight-card {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid rgba(15, 36, 21, 0.09);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 12px 16px;
  min-height: 112px;
}
.spotlight-media {
  flex-shrink: 0;
  width: 86px;
  height: 86px;
  border: 1px solid rgba(15, 36, 21, 0.08);
  border-radius: var(--radius-sm);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}
.spotlight-media img { max-width: 100%; max-height: 100%; object-fit: contain; }
.spotlight-body { min-width: 0; display: flex; flex-direction: column; gap: 5px; }
.spotlight-kicker {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.spotlight-body h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.35;
  color: var(--ink);
}
.spotlight-body h3 a:hover { color: var(--green-700); }
.spotlight-actions { display: flex; gap: 8px; margin-top: 2px; }
.spotlight-actions .btn { padding: 6px 14px; font-size: 12px; }

/* ---------- Yogun urun seritleri ---------- */
.product-strip { padding-block: 30px 12px; }
.strip-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}
.strip-title {
  font-size: clamp(21px, 2.6vw, 26px);
  position: relative;
  padding-bottom: 10px;
}
.strip-title::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 64px;
  height: 3px;
  border-radius: 2px;
  background: var(--gold);
}
.strip-more {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 14px;
  font-weight: 600;
  color: var(--green-700);
  white-space: nowrap;
}
.strip-more:hover { color: var(--green-800); text-decoration: underline; }

/* ---------- 3'lu ara banner seridi ---------- */
.banner-strip-section { padding-block: 26px 8px; }
.banner-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.banner-strip a {
  display: block;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.banner-strip a:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.banner-strip img { width: 100%; height: auto; display: block; }

/* ---------- Cok satan rozeti ---------- */
.product-card-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--gold);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
}

/* ---------- Yeni bolumlerin responsive kurallari ---------- */
@media (min-width: 721px) {
  .home-search { display: none; } /* masaustunde arama header'da */
}
@media (max-width: 1024px) {
  .promo-grid { grid-template-columns: 1fr; }
  .promo-side { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
}
@media (max-width: 720px) {
  .header-search { display: none; } /* mobilde ana sayfadaki arama kutusu var */
  .promo-side { grid-template-columns: 1fr; }
  .banner-strip {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .banner-strip::-webkit-scrollbar { display: none; }
  .banner-strip a { flex: 0 0 78%; scroll-snap-align: start; }
  .strip-head { flex-wrap: wrap; row-gap: 4px; }
}

/* ---------- Haftanin urunu rotatoru (otomatik donen spot kart) ---------- */
.promo-section { padding-top: 26px; } /* kategori baloncuklari kalkti, ustte nefes payi */
.spotlight-card.slider-wrap { padding: 0; overflow: hidden; }
.slider-track.spotlight-track {
  padding: 0;
  width: 100%;
  height: 100%;
}
.slider-track.spotlight-track > .spotlight-item {
  flex: 0 0 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 12px 16px;
}

/* ---------- Serit icinde kompakt urun kartlari ---------- */
/* Bannerlarla orantili dursun diye: aciklama yok, masaustunde 5, mobilde 2 kart */
.product-strip .slider-track > * { flex: 0 0 calc((100% - 88px) / 5); }
.product-strip .product-card { border-radius: var(--radius-sm); }
.product-strip .product-card-body { padding: 12px 12px 14px; gap: 6px; }
.product-strip .product-card-body h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.35;
}
.product-strip .product-card-body p { display: none; }
.product-strip .product-card-actions { margin-top: 2px; gap: 6px; }
.product-strip .product-card-actions .btn { padding: 7px 8px; font-size: 12px; }
.product-strip .product-card-cat { top: 8px; left: 8px; font-size: 9px; padding: 3px 8px; }
.product-strip .product-card-badge { top: 8px; right: 8px; font-size: 9px; padding: 3px 8px; }
.product-strip .product-card-media img { padding: 8px; }

@media (max-width: 1024px) {
  .product-strip .slider-track > * { flex-basis: calc((100% - 44px) / 3); }
}
@media (max-width: 720px) {
  .product-strip .slider-track > * { flex-basis: calc((100% - 22px) / 2); }
  .product-strip .product-card-body h3 { font-size: 13px; }
  /* dar kartta tek net eylem: Fiyat Al (gorsel ve baslik zaten urune gidiyor) */
  .product-strip .product-card-actions .btn-outline { display: none; }
}
