/* ============================================================
   Saygın Ticaret — Site stilleri
   Design token'lar: design_handoff README "Design Tokens" bölümü
   ============================================================ */

:root {
  --navy: #2e3192;
  --navy-hover: #232575;
  --red: #db1221;
  --red-hover: #b90e1c;
  --dark: #212654;
  --body: #5a6072;
  --secondary: #3a4060;
  --muted: #8a90a8;
  --placeholder: #9aa0b5;
  --bg: #f6f7fa;
  --card: #ffffff;
  --border: #e4e7ef;
  --divider: #eef0f6;
  --hover-bg: #f2f4fa;
  --chip-bg: #eceffb;
  --on-navy: #c3c6e8;
  --breadcrumb: #8f93cf;
  --footer-link: #a9adde;
  --on-red: #ffd2d6;
  --success: #1e7a44;
  --success-bg: #e8f7ee;
  --success-border: #bfe8cf;
  --wa-green: #1fae55;
  --wa-dot: #3ddc6e;
  --input-border: #d3d7e4;
  --input-bg: #f9fafc;
  --font-head: 'Archivo', sans-serif;
  --font-body: 'Instrument Sans', sans-serif;
  --shadow-card: 0 14px 34px rgba(33, 38, 84, .12);
  --shadow-dropdown: 0 18px 40px rgba(33, 38, 84, .14);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
}

body {
  font-family: var(--font-body);
  color: #1c2033;
  min-height: 100vh;
}

img { max-width: 100%; }

a { color: inherit; }

input::placeholder, textarea::placeholder { color: var(--placeholder); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Butonlar ---------- */
.btn {
  display: inline-block;
  font-weight: 600;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  border: none;
  font-family: var(--font-body);
  transition: background .2s, border-color .2s, color .2s;
}

.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-hover); }

.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-hover); }

.btn-outline {
  border: 1.5px solid var(--input-border);
  color: var(--dark);
  background: #fff;
  padding: 13.5px 26.5px;
}
.btn-outline:hover { border-color: var(--navy); color: var(--navy); }

.btn-outline.btn-outline-red-hover:hover { border-color: var(--red); color: var(--red); }

.btn-outline-light {
  border: 1.5px solid rgba(255, 255, 255, .4);
  color: #fff;
  background: transparent;
  padding: 13.5px 26.5px;
}
.btn-outline-light:hover { border-color: #fff; }

/* ---------- Topbar ---------- */
.topbar { background: var(--navy); color: #fff; font-size: 13px; }
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.topbar-left { display: flex; gap: 22px; align-items: center; }
.topbar-left span { opacity: .9; }
.topbar-wa {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}
.topbar-wa .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--wa-dot);
  display: inline-block;
}

/* ---------- Header ---------- */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 84px;
}
.site-logo { display: block; }
.site-logo img { height: 40px; display: block; }

.site-nav { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 14px;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  border-radius: 8px;
  cursor: pointer;
}
.nav-link:hover, .nav-link.active { color: var(--red); }
.nav-link .caret { font-size: 10px; color: var(--placeholder); }

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-dropdown);
  padding: 8px 0;
  display: none;
  z-index: 60;
}
.nav-item:hover .nav-dropdown { display: block; }
.nav-dropdown a {
  display: block;
  padding: 11px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--secondary);
  text-decoration: none;
  white-space: nowrap;
}
.nav-dropdown a:hover { background: var(--hover-bg); color: var(--navy); }

.header-cta {
  background: var(--red);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s;
}
.header-cta:hover { background: var(--red-hover); }

/* ---------- Kicker / bölüm başlıkları ---------- */
.kicker {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 36px;
  color: var(--dark);
  text-wrap: balance;
  margin: 0;
}

/* ---------- Hero (Varyant A: Açık) ---------- */
.hero { background: #fff; border-bottom: 1px solid var(--border); }
.hero-inner { position: relative; max-width: 1200px; margin: 0 auto; height: 540px; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .6s ease;
}
.hero-slide.active { opacity: 1; pointer-events: auto; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  height: 100%;
  padding: 0 24px;
}
.hero-kicker {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.hero-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 50px;
  line-height: 1.08;
  color: var(--dark);
  margin: 0 0 20px 0;
  text-wrap: balance;
}
.hero-text {
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-buttons { display: flex; gap: 14px; }
.hero-visual {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.hero-visual img { max-width: 100%; max-height: 100%; object-fit: contain; }
.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 24px;
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--input-border);
  cursor: pointer;
  transition: all .3s;
  border: none;
  padding: 0;
}
.hero-dot.active { width: 28px; background: var(--red); }

/* ---------- Hero (Varyant B: Lacivert) ---------- */
.hero-b { background: linear-gradient(135deg, #2e3192 0%, #232575 100%); border-bottom: none; }
.hero-b .hero-inner { height: 520px; }
.hero-b .hero-grid { grid-template-columns: 1.2fr 1fr; }
.hero-b .hero-kicker { color: #ff8b93; }
.hero-b .hero-title { color: #fff; }
.hero-b .hero-text { color: var(--on-navy); max-width: 500px; }
.hero-b .hero-visual { background: #fff; border: none; height: 380px; }
.hero-b .hero-dot { background: rgba(255, 255, 255, .35); }
.hero-b .hero-dot.active { background: var(--red); }

/* ---------- Anasayfa: Hakkımızda bloğu ---------- */
.home-about { padding: 88px 24px 44px 24px; max-width: 1200px; margin: 0 auto; }
.home-about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.home-about-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--border);
}
.home-about p { font-size: 16px; line-height: 1.7; color: var(--body); margin: 0 0 14px 0; }
.home-about .title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 36px;
  line-height: 1.15;
  color: var(--dark);
  margin: 0 0 20px 0;
  text-wrap: balance;
}
.stats-row { display: flex; gap: 32px; margin: 28px 0 32px 0; }
.stats-row .sep { width: 1px; background: var(--border); }
.stat-value {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 30px;
  color: var(--navy);
}
.stat-label { font-size: 13px; color: var(--muted); }
.link-red {
  display: inline-block;
  color: var(--red);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
}

/* ---------- Bölümler ---------- */
.section { max-width: 1200px; margin: 0 auto; padding: 88px 24px; }
.section-head-center { text-align: center; max-width: 640px; margin: 0 auto 48px auto; }
.section-head-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}
.link-navy {
  color: var(--navy);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  white-space: nowrap;
  padding-bottom: 6px;
}

/* ---------- Hizmet kartları ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: block;
  transition: box-shadow .2s, transform .2s;
}
.service-card:hover { box-shadow: var(--shadow-card); transform: translateY(-3px); }
.service-card-visual {
  height: 180px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-bottom: 1px solid var(--divider);
}
.service-card-visual img { max-height: 100%; max-width: 100%; object-fit: contain; }
.service-card-body { padding: 22px 24px 26px 24px; }
.service-card-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 19px;
  color: var(--dark);
  margin-bottom: 8px;
}
.service-card-text { font-size: 14px; line-height: 1.6; color: var(--body); margin-bottom: 14px; }
.service-card-link { color: var(--red); font-weight: 600; font-size: 14px; }

/* ---------- CTA bandı ---------- */
.cta-band { background: var(--navy); }
.cta-band-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 30px;
  color: #fff;
  margin: 0 0 8px 0;
  text-wrap: balance;
}
.cta-band-text { font-size: 16px; color: var(--on-navy); }
.cta-band-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Kategori kartları (anasayfa 4'lü) ---------- */
.categories-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.category-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: block;
  transition: box-shadow .2s, transform .2s;
}
.category-card:hover { box-shadow: var(--shadow-card); transform: translateY(-3px); }
.category-card-visual {
  height: 150px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.category-card-visual img { max-height: 100%; max-width: 100%; object-fit: contain; }
.category-card-body { padding: 16px 18px 20px 18px; border-top: 1px solid var(--divider); }
.category-card-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  color: var(--dark);
  margin-bottom: 4px;
}
.category-card-count { font-size: 13px; color: var(--muted); }

.category-cta-card {
  background: var(--red);
  border-radius: 16px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  gap: 10px;
  text-decoration: none;
  transition: background .2s;
}
.category-cta-card:hover { background: var(--red-hover); }
.category-cta-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 19px;
  color: #fff;
  text-wrap: balance;
}
.category-cta-text { font-size: 14px; color: var(--on-red); line-height: 1.5; }
.category-cta-link { color: #fff; font-weight: 600; font-size: 14px; }

/* ---------- Haberler (anasayfa slider) ---------- */
.news-band { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.news-nav { display: flex; gap: 10px; }
.news-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--input-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--dark);
  font-size: 18px;
  background: #fff;
  transition: border-color .2s, color .2s;
}
.news-nav button:hover { border-color: var(--navy); color: var(--navy); }
.news-scroller {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.news-scroller::-webkit-scrollbar { display: none; }
.news-card {
  min-width: 360px;
  max-width: 360px;
  scroll-snap-align: start;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: block;
  transition: box-shadow .2s;
}
.news-card:hover { box-shadow: var(--shadow-card); }
.news-card img { width: 100%; height: 190px; object-fit: cover; display: block; }
.news-card-body { padding: 20px 22px 24px 22px; }
.news-date { font-size: 13px; color: var(--red); font-weight: 600; margin-bottom: 8px; }
.news-card-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  color: var(--dark);
  margin-bottom: 10px;
  text-wrap: balance;
}
.news-card-excerpt { font-size: 14px; line-height: 1.6; color: var(--body); }

/* ---------- SSS ---------- */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}
.faq-intro-text { font-size: 15px; line-height: 1.7; color: var(--body); margin-bottom: 24px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
}
.faq-question span { font-weight: 600; font-size: 16px; color: var(--dark); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--hover-bg);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  flex-shrink: 0;
  transition: all .25s;
}
.faq-item.open .faq-icon {
  background: var(--red);
  color: #fff;
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--body);
  transition: all .3s ease;
}
.faq-item.open .faq-answer { padding: 0 22px 20px 22px; max-height: 300px; }

/* ---------- Sayfa bandı (alt sayfalar) ---------- */
.page-band { background: var(--navy); padding: 56px 0; }
.page-band.compact { padding: 44px 0; }
.breadcrumb { font-size: 13px; color: var(--breadcrumb); margin-bottom: 10px; }
.breadcrumb a { color: var(--breadcrumb); text-decoration: none; cursor: pointer; }
.breadcrumb a:hover { color: #fff; }
.page-band-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 42px;
  color: #fff;
  margin: 0;
}
.page-band-desc { font-size: 16px; color: var(--on-navy); max-width: 560px; margin-top: 8px; }

/* ---------- Hakkımızda ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 72px;
}
.about-content h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 32px;
  color: var(--dark);
  margin: 0 0 20px 0;
  text-wrap: balance;
}
.about-content p { font-size: 16px; line-height: 1.75; color: var(--body); margin: 0 0 16px 0; }
.about-image {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--border);
}
.mvv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mvv-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}
.mvv-card-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 19px;
  color: var(--navy);
  margin-bottom: 10px;
}
.mvv-card-text { font-size: 14px; line-height: 1.65; color: var(--body); }

/* ---------- Hizmet detay ---------- */
.detail-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 48px;
  align-items: start;
}
.detail-visual {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  margin-bottom: 36px;
}
.detail-visual img { max-height: 100%; max-width: 100%; object-fit: contain; }
.detail-body p { font-size: 16px; line-height: 1.75; color: var(--body); margin: 0 0 16px 0; }
.detail-subtitle {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 22px;
  color: var(--dark);
  margin: 28px 0 16px 0;
}
.scope-list { display: flex; flex-direction: column; gap: 10px; }
.scope-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
}
.scope-item .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}
.scope-item span { font-size: 15px; color: var(--secondary); }

.sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}
.sidebar-card-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  color: var(--dark);
  margin-bottom: 14px;
}
.sidebar-links { display: flex; flex-direction: column; }
.sidebar-links a {
  padding: 11px 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--secondary);
  text-decoration: none;
  border-bottom: 1px solid var(--divider);
  cursor: pointer;
}
.sidebar-links a:hover { color: var(--red); }
.sidebar-cta {
  background: var(--navy);
  border-radius: 16px;
  padding: 26px;
}
.sidebar-cta-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 19px;
  color: #fff;
  margin-bottom: 10px;
}
.sidebar-cta-text { font-size: 14px; line-height: 1.6; color: var(--on-navy); margin-bottom: 18px; }
.sidebar-cta .btn { display: block; padding: 13px; font-size: 15px; }

/* ---------- Ürünlerimiz (kategori listesi) ---------- */
.catindex-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.catindex-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: block;
  transition: box-shadow .2s, transform .2s;
}
.catindex-card:hover { box-shadow: var(--shadow-card); transform: translateY(-3px); }
.catindex-visual {
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.catindex-visual img { max-height: 100%; max-width: 100%; object-fit: contain; }
.catindex-body { padding: 20px 24px 24px 24px; border-top: 1px solid var(--divider); }
.catindex-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 19px;
  color: var(--dark);
  margin-bottom: 6px;
}
.catindex-desc { font-size: 14px; line-height: 1.55; color: var(--body); margin-bottom: 12px; }
.catindex-foot { display: flex; align-items: center; justify-content: space-between; }
.catindex-count { font-size: 13px; color: var(--muted); }
.catindex-link { color: var(--red); font-weight: 600; font-size: 14px; }

/* ---------- Ürün kartları (kategori sayfası) ---------- */
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s;
}
.product-card:hover { box-shadow: var(--shadow-card); }
.product-card-visual {
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  cursor: pointer;
}
.product-card-visual img { max-height: 100%; max-width: 100%; object-fit: contain; }
.product-card-body {
  padding: 16px 18px 20px 18px;
  border-top: 1px solid var(--divider);
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.product-card-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  color: var(--dark);
  cursor: pointer;
  text-decoration: none;
}
.product-card-name:hover { color: var(--navy); }
.product-card-short { font-size: 13px; line-height: 1.55; color: var(--body); flex: 1; }
.product-card-actions { display: flex; gap: 8px; margin-top: 6px; }
.product-card-actions .btn-sm {
  flex: 1;
  text-align: center;
  font-weight: 600;
  font-size: 13px;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, border-color .2s, color .2s;
}
.btn-sm.teklif { background: var(--red); color: #fff; }
.btn-sm.teklif:hover { background: var(--red-hover); }
.btn-sm.incele { border: 1.5px solid var(--input-border); color: var(--dark); padding: 8.5px 10px; }
.btn-sm.incele:hover { border-color: var(--navy); color: var(--navy); }

/* ---------- Ürün detay ---------- */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 64px;
}
.product-detail-visual {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.product-detail-visual img { max-height: 100%; max-width: 100%; object-fit: contain; }
.product-thumbs { display: flex; gap: 10px; margin-top: 14px; }
.product-thumbs button {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  padding: 8px;
  cursor: pointer;
}
.product-thumbs button.active { border-color: var(--navy); }
.product-thumbs img { max-width: 100%; max-height: 100%; object-fit: contain; }
.category-chip {
  display: inline-block;
  background: var(--chip-bg);
  color: var(--navy);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
  text-decoration: none;
}
.product-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 38px;
  color: var(--dark);
  margin: 0 0 16px 0;
  text-wrap: balance;
}
.product-short { font-size: 16px; line-height: 1.7; color: var(--body); margin-bottom: 22px; }
.product-info-boxes { display: flex; gap: 12px; margin-bottom: 30px; flex-wrap: wrap; }
.info-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 18px;
}
.info-box-label { font-size: 12px; color: var(--muted); margin-bottom: 2px; }
.info-box-value { font-weight: 600; font-size: 15px; color: var(--dark); }
.product-actions { display: flex; gap: 14px; }
.product-actions .btn-red { padding: 15px 32px; }

.product-description-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 40px;
}
.product-description-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 24px;
  color: var(--dark);
  margin: 0 0 18px 0;
}
.product-description-card p { font-size: 15px; line-height: 1.75; color: var(--body); margin: 0 0 14px 0; }
.features-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--dark);
  margin: 24px 0 14px 0;
}
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg);
  border-radius: 10px;
  padding: 13px 16px;
}
.feature-item .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--navy);
  flex-shrink: 0;
}
.feature-item span { font-size: 14px; color: var(--secondary); }

/* ---------- Haberler listesi ---------- */
.newslist-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.newslist-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  display: grid;
  grid-template-columns: 220px 1fr;
  text-decoration: none;
  transition: box-shadow .2s;
}
.newslist-card:hover { box-shadow: var(--shadow-card); }
.newslist-card img { width: 100%; height: 100%; min-height: 180px; object-fit: cover; display: block; }
.newslist-body { padding: 22px 24px; }
.newslist-link { color: var(--red); font-weight: 600; font-size: 14px; }

/* ---------- Haber detay ---------- */
.newsdetail-grid {
  display: grid;
  grid-template-columns: 1.9fr 1fr;
  gap: 48px;
  align-items: start;
}
.newsdetail-image {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--border);
  margin-bottom: 32px;
}
.newsdetail-body p { font-size: 16px; line-height: 1.8; color: #4a5068; margin: 0 0 18px 0; }
.newsdetail-back {
  display: inline-block;
  margin-top: 12px;
  border: 1.5px solid var(--input-border);
  color: var(--dark);
  font-weight: 600;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: 8px;
  cursor: pointer;
  background: #fff;
  text-decoration: none;
  transition: border-color .2s, color .2s;
}
.newsdetail-back:hover { border-color: var(--navy); color: var(--navy); }
.other-news { display: flex; flex-direction: column; }
.other-news a {
  padding: 13px 0;
  border-bottom: 1px solid var(--divider);
  cursor: pointer;
  text-decoration: none;
}
.other-news .date { font-size: 12px; color: var(--red); font-weight: 600; margin-bottom: 4px; }
.other-news .title { font-size: 14px; font-weight: 600; color: var(--secondary); line-height: 1.4; }
.other-news a:hover .title { color: var(--navy); }
.page-band-meta { font-size: 14px; color: var(--on-navy); margin-top: 12px; }

/* ---------- İletişim ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
}
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 24px;
}
.contact-card-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}
.contact-card-value { font-size: 15px; line-height: 1.8; color: var(--secondary); }
.contact-map {
  width: 100%;
  height: 220px;
  border-radius: 14px;
  border: 1px solid var(--border);
  margin-bottom: 24px;
  display: block;
}
iframe.map-frame { border: 1px solid var(--border); }

.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}
.form-card-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 22px;
  color: var(--dark);
  margin: 0 0 6px 0;
}
.teklif-strip {
  background: var(--chip-bg);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 14px;
}
.site-form { display: flex; flex-direction: column; gap: 14px; margin-top: 14px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.site-form input,
.site-form select,
.site-form textarea {
  border: 1px solid var(--input-border);
  border-radius: 8px;
  padding: 13px 15px;
  font-size: 14px;
  font-family: var(--font-body);
  background: var(--input-bg);
  outline: none;
  width: 100%;
  color: #1c2033;
}
.site-form select { color: var(--secondary); }
.site-form textarea { resize: vertical; }
.site-form input:focus, .site-form select:focus, .site-form textarea:focus { border-color: var(--navy); }
.site-form .btn { border: none; }
.form-error { color: var(--red); font-size: 13px; margin: -8px 0 0 2px; }
.success-box {
  background: var(--success-bg);
  border: 1px solid var(--success-border);
  border-radius: 10px;
  padding: 18px 20px;
  font-size: 15px;
  color: var(--success);
  font-weight: 600;
  margin-top: 12px;
}
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ---------- Servis kayıt ---------- */
.service-form-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 48px;
  align-items: start;
}
.service-form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px;
}
.service-form-subtext { font-size: 14px; color: var(--body); margin-bottom: 24px; }
.success-panel { text-align: center; padding: 40px 20px; }
.success-check {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--success-bg);
  color: var(--success);
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px auto;
}
.success-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 24px;
  color: var(--dark);
  margin-bottom: 10px;
}
.success-text { font-size: 15px; line-height: 1.7; color: var(--body); margin-bottom: 24px; }
.steps { display: flex; flex-direction: column; gap: 14px; }
.step { display: flex; gap: 14px; align-items: start; }
.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--chip-bg);
  color: var(--navy);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-text { font-size: 14px; line-height: 1.55; color: var(--body); }
.wa-button-white {
  display: block;
  text-decoration: none;
  background: #fff;
  color: var(--navy);
  text-align: center;
  font-weight: 600;
  font-size: 15px;
  padding: 13px;
  border-radius: 8px;
}

/* ---------- İletişim şeridi (footer üstü) ---------- */
.contact-strip { background: #fff; border-top: 1px solid var(--border); }
.contact-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 24px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}
.contact-strip-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 32px;
  color: var(--dark);
  margin: 0 0 24px 0;
  text-wrap: balance;
}
.contact-strip-info { display: flex; flex-direction: column; gap: 14px; font-size: 15px; color: var(--secondary); line-height: 1.6; }
.contact-strip-info b { font-weight: 600; color: var(--dark); }
.contact-strip-buttons { display: flex; gap: 14px; margin-top: 28px; }
.contact-strip-map {
  width: 100%;
  height: 320px;
  border-radius: 18px;
  border: 1px solid var(--border);
  display: block;
}

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); }
.site-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px 40px 24px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.footer-logo { height: 34px; margin-bottom: 18px; display: block; }
.footer-about { font-size: 14px; line-height: 1.7; color: var(--footer-link); }
.footer-col-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: var(--footer-link);
  text-decoration: none;
  cursor: pointer;
}
.footer-links a:hover { color: #fff; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; font-size: 14px; color: var(--footer-link); line-height: 1.6; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .12); }
.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  color: var(--breadcrumb);
  flex-wrap: wrap;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: var(--breadcrumb); text-decoration: none; cursor: pointer; }
.footer-bottom-links a:hover { color: #fff; }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 80;
  text-decoration: none;
  background: var(--wa-green);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 13px 20px;
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(31, 174, 85, .4);
  display: flex;
  align-items: center;
  gap: 9px;
}
.wa-float .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fff;
  display: inline-block;
}

/* ---------- Sayfalama ---------- */
.pagination-wrap { margin-top: 40px; display: flex; justify-content: center; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid, .home-about-grid, .faq-grid, .about-grid,
  .detail-grid, .product-detail-grid, .newsdetail-grid,
  .contact-grid, .service-form-grid, .contact-strip-inner { grid-template-columns: 1fr; }
  .hero-inner { height: auto; }
  .hero-slide { position: relative; display: none; }
  .hero-slide.active { display: block; }
  .hero-grid { padding: 48px 24px; gap: 32px; }
  .hero-title { font-size: 38px; }
  .services-grid, .catindex-grid, .mvv-grid { grid-template-columns: repeat(2, 1fr); }
  .categories-grid, .products-grid { grid-template-columns: repeat(2, 1fr); }
  .newslist-grid { grid-template-columns: 1fr; }
  .site-footer-inner { grid-template-columns: 1fr 1fr; }
  .site-nav { display: none; }
}

@media (max-width: 640px) {
  .services-grid, .catindex-grid, .categories-grid, .products-grid,
  .mvv-grid, .form-row-2 { grid-template-columns: 1fr; }
  .site-footer-inner { grid-template-columns: 1fr; }
  .section { padding: 56px 24px; }
  .hero-title { font-size: 32px; }
  .page-band-title { font-size: 32px; }
  .newslist-card { grid-template-columns: 1fr; }
  .newslist-card img { min-height: 160px; height: 160px; }
  .topbar-inner { flex-direction: column; gap: 4px; }
}
