/* Sıfır-bağımlılık menü + carousel (jQuery/Bootstrap JS yerine) */

/* ---- Tek font: system stack (Bootstrap'in zorladığı yerleri de override) ---- */
body, .table, .btn, .nav, input, button, select, textarea, .navbar, h1, h2, h3, h4, h5, h6, p, a, td, th, li, span, div {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ---- CSS-only mobil menü (checkbox hack) ---- */
/* checkbox ekrandan gizli ama erişilebilir kalır (label ile tetiklenir) */
#navToggle {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}
.navbar-toggle {
  display: none;
  cursor: pointer;
  color: #fff;
}
.navbar-toggle svg { vertical-align: middle; }

/* dil-değiştir bayrağı ile yazı arasına boşluk */
.navbar-nav img { margin-right: 4px; vertical-align: middle; }

/* Masaüstü: menü her zaman açık, hamburger gizli */
@media (min-width: 768px) {
  .navbar-collapse { display: block !important; height: auto !important; }
  .navbar-toggle { display: none !important; }
}

/* Mobil: menü varsayılan kapalı, hamburger (label) görünür */
@media (max-width: 767px) {
  .navbar-toggle {
    display: block;
    float: right;
    margin: 8px 15px 0 0;
  }
  .navbar-collapse { display: none; }
  #navToggle:checked ~ .navbar-collapse { display: block; }
  /* mobilde sol menü ile carousel alt alta gelir; carousel'i biraz ayır */
  #myCarousel { margin-top: 12px; }
}

/* ---- Vanilla carousel (Bootstrap .item/.active yerine opacity geçişi) ---- */
.carousel-inner .item {
  display: none;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}
.carousel-inner .item.active {
  display: block;
  opacity: 1;
}
/* indicator (nokta) — kendi stilimiz (Bootstrap default'u override) */
.carousel-indicators {
  position: absolute !important;
  bottom: 10px !important;
  left: 0 !important;
  right: 0 !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none;
  text-align: center !important;
  z-index: 15;
}
.carousel-indicators li {
  display: inline-block !important;
  width: 12px !important;
  height: 12px !important;
  margin: 0 4px !important;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid #c0392b;
  cursor: pointer;
  text-indent: -9999px;
}
.carousel-indicators li.active {
  background: #c0392b;
  width: 12px !important;
  height: 12px !important;
}

/* carousel prev/next ok butonları (Lucide SVG içine) */
.carousel-control {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  opacity: 0.7;
  background: rgba(0, 0, 0, 0.15);
  z-index: 15;
}
.carousel-control:hover { opacity: 1; }
.carousel-control.left { left: 0; }
.carousel-control.right { right: 0; }
.carousel-control svg { width: 32px; height: 32px; stroke: #fff; }

/* carousel sarmalayıcı konumlandırma (mutlak konumlu çocuklar için) */
#myCarousel.carousel.slide { position: relative; overflow: hidden; }

/* ---- ürünler bloğu ---- */
.products { padding-top: 18px; }
.products-h1 {
  font-size: 26px;
  font-weight: 700;
  color: #222;
  margin: 0 0 4px;
}
/* malzeme notu — ikonlu satır (kutusuz; net okunur ama ürün başlığına benzemez) */
.product-note-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 24px;
  padding: 0 2px;
  font-size: 14px;
  font-weight: 500;
  color: #444;
}
.product-note-line .note-icon { flex-shrink: 0; color: #c0392b; }

/* kategori açıklaması (maddeli — hightech gibi) — kutu */
.product-note-box {
  background: #fafafa;
  border-left: 3px solid #c0392b;
  border-radius: 0 4px 4px 0;
  padding: 12px 16px;
  margin: 0 0 26px;
}
.product-note-box h4 { margin: 0; font-size: 14px; font-weight: 600; color: #333; line-height: 1.5; }
.product-note-box ul { margin: 8px 0 0; padding-left: 20px; }
.product-note-box li { font-size: 14px; color: #555; margin-bottom: 4px; }

/* ürün satırı: desktop 2'li (col-md-5 + col-md-2 + col-md-5 = 12), mobil alt alta */
.product-row { margin-bottom: 28px; }
.product-item { padding: 0 12px 8px; }
/* H2 ürün adı — açık gri zemin + koyu yazı (sade, agresif değil); semantik h2, makul boyut */
.product-name {
  font-size: 16px;
  font-weight: 700;
  color: #222;
  background: #f5f5f5;
  border-left: 3px solid #c0392b;   /* ince marka dokunuşu */
  padding: 10px 14px;
  margin: 0 0 14px;
  line-height: 1.3;
}
.product-img {
  max-width: 100%;
  height: auto;
  margin: 0 auto 14px;
  display: block;
}
/* ferah + sade modern tablo */
.product-table {
  width: 100%;
  margin-bottom: 14px;
  border-collapse: collapse;
}
.product-table thead th {
  background: #fff;            /* başlık satırı beyaz */
  color: #888;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  text-align: left;
  padding: 9px 14px;
  border-bottom: 2px solid #e5e5e5;
}
.product-table tbody td {
  font-size: 14px;
  color: #333;
  padding: 10px 14px;
  border-bottom: 1px solid #eee;
}
/* zebra: 1. detay satırı gri, 2. beyaz, 3. gri ... */
.product-table tbody tr:nth-child(odd) td { background: #f5f5f5; }
.product-table tbody tr:nth-child(even) td { background: #fff; }
.product-table tbody tr:last-child td { border-bottom: none; }
.product-badge {
  display: inline-block;
  background: #f5f5f5;
  border: 1px solid #e8e8e8;
  border-radius: 3px;
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 600;
  color: #555;
}
/* orta dikey kesikli çizgi (sadece desktop) */
.product-divider {
  display: flex;
  justify-content: center;
  padding: 0;
}
.product-divider .vline {
  width: 1px;
  align-self: stretch;
  margin: 10px 0;
  border-left: 1px dashed #ddd;
}
@media (max-width: 991px) {
  .product-divider { display: none; }   /* mobil/tablet: çizgi gizle, ürünler alt alta */
  .product-item { margin-bottom: 20px; }
}

/* ---- lup spec tablosu (büyüteç — boyutlar × özellikler matrisi) ---- */
.lup-row { margin-bottom: 36px; }
.lup-img-col { padding: 0 12px; }
.lup-img { max-width: 100%; height: auto; margin: 0 auto 14px; display: block; }
.lup-spec-col { padding: 0 12px; }
.lup-spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 4px;
}
.lup-spec-table th, .lup-spec-table td {
  padding: 10px 14px;
  font-size: 14px;
  text-align: center;
  border: 1px solid #eee;
}
.lup-spec-table thead th {
  background: #fff;            /* başlık satırı beyaz */
  color: #555;
  font-size: 13px;
  font-weight: 600;
  border-bottom: 2px solid #e5e5e5;
}
.lup-spec-table .spec-label {
  color: #333;
  font-weight: 600;
  text-align: left;
}
.lup-spec-table tbody td { color: #333; }
/* zebra: 1. özellik satırı gri, 2. beyaz ... (sol etiket th + değer td birlikte) */
.lup-spec-table tbody tr:nth-child(odd) th,
.lup-spec-table tbody tr:nth-child(odd) td { background: #f5f5f5; }
.lup-spec-table tbody tr:nth-child(even) th,
.lup-spec-table tbody tr:nth-child(even) td { background: #fff; }

/* ---- iğne cetveli (tek ürün + kumaş tipine göre çoklu ölçü tablosu) ---- */
.needle-row { margin-bottom: 28px; }
.needle-img-col { padding: 0 12px; }
.needle-img {
  max-width: 100%;
  height: auto;
  margin: 6px auto 18px;
  display: block;
}
.needle-spec-col { padding: 0 12px; }
/* kumaş tipi başlığı (h2) — sade gri zemin + ince kırmızı çizgi (product-name ile aynı dil) */
.needle-table-title {
  font-size: 16px;
  font-weight: 700;
  color: #222;
  background: #f5f5f5;
  border-left: 3px solid #c0392b;
  padding: 10px 14px;
  margin: 0 0 12px;
  line-height: 1.3;
}
.needle-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 28px;
}
.needle-table thead th {
  background: #fff;            /* başlık satırı beyaz */
  color: #888;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  text-align: left;
  padding: 9px 14px;
  border-bottom: 2px solid #e5e5e5;
}
.needle-table tbody td {
  font-size: 14px;
  color: #333;
  padding: 9px 14px;
  border-bottom: 1px solid #eee;
}
/* zebra: 1. satır gri, 2. beyaz ... */
.needle-table tbody tr:nth-child(odd) td { background: #f5f5f5; }
.needle-table tbody tr:nth-child(even) td { background: #fff; }
.needle-table tbody tr:last-child td { border-bottom: none; }
.needle-table tbody tr:last-of-type td { border-bottom: none; }

/* ---- gramaj aleti (h1 + hero set görseli + ürünler alt alta: görsel solda, metin sağda) ---- */
.gramaj-hero {
  max-width: 87%;            /* üst set görseli ~%13 küçültüldü, ortalı */
  height: auto;
  margin: 14px auto 18px;
  display: block;
}
@media (max-width: 767px) {
  .gramaj-hero { max-width: 100%; }   /* mobilde tam genişlik kalsın */
}
.gramaj-row { margin-bottom: 28px; }
.gramaj-img-col { padding: 0 12px; }
.gramaj-img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}
.gramaj-text-col { padding: 0 12px; }
.gramaj-text-col p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
  margin: 0 0 10px;
}
.gramaj-text-col ul {
  margin: 0 0 10px;
  padding-left: 20px;
}
.gramaj-text-col li {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 4px;
}
@media (max-width: 991px) {
  .gramaj-img-col { margin-bottom: 14px; }   /* mobil: görsel üstte, metin altta */
}

/* ---- gramaj hesaplama rehberi (ürünlerin altında bilgi/SEO bloğu) ---- */
.gramaj-guide { max-width: 820px; margin: 0 auto; padding: 0 12px; }
.gramaj-guide-h2 {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  margin: 8px 0 18px;
  line-height: 1.3;
}
.gramaj-guide-h3 {
  font-size: 17px;
  font-weight: 600;
  color: #c0392b;            /* alt-başlıklar marka kırmızısı — bölüm ayrımı net */
  margin: 22px 0 8px;
  line-height: 1.3;
}
.gramaj-guide p {
  font-size: 14px;
  color: #444;
  line-height: 1.7;
  margin: 0 0 10px;
}
.gramaj-guide ol {
  margin: 0 0 12px;
  padding-left: 22px;
}
.gramaj-guide li {
  font-size: 14px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 6px;
}
/* hesaplama formülü — vurgulu kutu (featured snippet dostu) */
.gramaj-formula {
  background: #fafafa;
  border: 1px solid #e5e5e5;
  border-left: 3px solid #c0392b;
  border-radius: 0 4px 4px 0;
  padding: 14px 18px;
  margin: 12px 0 16px;
  font-size: 16px;
  color: #222;
  text-align: center;
}
.gramaj-formula-not {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 400;
  color: #888;
}

/* ---- iletişim sayfası (h1 + --- + sol: adres/iletişim, sağ: logo) ---- */
.contact { padding-top: 18px; }
.contact-h1 {
  font-size: 26px;
  font-weight: 700;
  color: #222;
  margin: 0 0 4px;
}
.contact-info-col { padding: 0 12px; }
.contact-logo-col { padding: 0 12px; }
.contact-logo {
  max-width: 240px;
  width: 100%;
  height: auto;
  display: block;
  margin-left: auto;          /* sağ sütunun sağına yasla */
}
@media (max-width: 991px) {
  .contact-logo-col {
    margin-top: 20px;        /* mobil: logo adresin altına */
    text-align: center;
  }
  .contact-logo {
    width: auto;             /* %100 değil; max-width'e göre daralsın */
    margin: 0 auto;          /* ortala */
  }
}

/* ---- kurumsal (hakkımızda) — h1 + --- + sol metin / sağ logo ---- */
.about { padding-top: 18px; }
.about-h1 {
  font-size: 26px;
  font-weight: 700;
  color: #222;
  margin: 0 0 4px;
}
.about-h2 {
  font-size: 18px;
  font-weight: 700;
  color: #222;
  margin: 22px 0 8px;
}
.about-text-col { padding: 0 12px; }
.about-text-col p {
  font-size: 15px;
  color: #444;
  line-height: 1.8;
  margin: 0 0 14px;
}
.about-logo-col { padding: 0 12px; }
.about-logo {
  max-width: 220px;
  width: 100%;
  height: auto;
  display: block;
  margin-left: auto;          /* sağ sütunun sağına yasla */
}
@media (max-width: 991px) {
  .about-logo-col {
    margin-top: 20px;        /* mobil: logo metnin altına, ortalı */
    text-align: center;
  }
  .about-logo { width: auto; margin: 0 auto; }
}

/* ---- 404 sayfası (sade, ortalı: logo + 404 + mesaj + ana sayfa butonu) ---- */
.error404 {
  max-width: 560px;
  margin: 0 auto;
  padding: 80px 20px;
  text-align: center;
}
.error404-logo {
  max-width: 200px;
  width: 100%;
  height: auto;
  margin: 0 auto 32px;
  display: block;
}
.error404-code {
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  color: #c0392b;
  margin: 0 0 8px;
}
.error404-title {
  font-size: 24px;
  font-weight: 700;
  color: #222;
  margin: 0 0 12px;
}
.error404-text {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin: 0 0 4px;
}
.error404-en { color: #999; font-size: 14px; margin-bottom: 28px; }
.error404-actions { margin: 0; }
.error404-btn {
  display: inline-block;
  background: #c0392b;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  padding: 11px 26px;
  border-radius: 4px;
  margin: 0 6px 8px;
}
.error404-btn:hover { background: #a93226; color: #fff; }
.error404-btn-alt {
  background: #fff;
  color: #c0392b;
  border: 1px solid #c0392b;
}
.error404-btn-alt:hover { background: #f7f7f7; color: #c0392b; }
.contact-address {
  font-style: normal;            /* address varsayılan italiğini iptal et */
  font-size: 15px;
  line-height: 1.9;
  color: #444;
  margin: 0 0 14px;
}
.contact-address strong { color: #222; }
.contact-address a { color: #c0392b; text-decoration: none; }
.contact-address a:hover { text-decoration: underline; }
.contact-map-link a {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  color: #c0392b;
  text-decoration: none;
}
.contact-map-link a:hover { text-decoration: underline; }


/* ---- iconfest: ürün kategorileri ikon şeridi (tek satır, ortalı) ---- */
.iconfest-strip {
  margin-top: 24px;
  padding: 36px 0;          /* üst-alt eşit, dikey ortalı his */
  background: #fff;
  border-top: 1px solid #e5e5e5;
}
/* CTA'dan hemen sonra gelen iconfest CTA'ya bitişsin (sadece ana sayfa).
   Not: </main> ikisini farklı parent'a aldığı için adjacent-sibling (+)
   eşleşmez; ana sayfa iconfest'ine .iconfest-after-cta sınıfı verildi. */
.iconfest-after-cta { margin-top: 0; }
.iconfest-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 4%;
  flex-wrap: nowrap;            /* mobilde de tek satır */
  text-align: center;
}
.iconfest-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 0;
  max-width: 180px;
  min-width: 0;
}
.iconfest-img {
  width: 100%;
  max-width: 90px;
  height: auto;
  object-fit: contain;
}
.iconfest-title {
  margin-top: 10px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #222;
  line-height: 1.2;
}
.iconfest-sub {
  margin-top: 3px;
  font-size: 12px;
  color: #888;
  line-height: 1.3;
}
/* mobilde ikonlar küçülür ama tek satır kalır */
@media (max-width: 767px) {
  .iconfest-row { gap: 2%; }
  .iconfest-img { max-width: 56px; }
  .iconfest-title { font-size: 11px; letter-spacing: 0; }
  .iconfest-sub { display: none; }   /* mobilde altyazı gizle, sığsın */
}

/* ---- 4-sütun footer (Lup footer mantığı, header ile uyumlu KOYU tema) ---- */
.site-footer {
  background: #222;            /* header navbar ile aynı koyu zemin */
  border-top: 3px solid #c0392b;
  color: #b8b8b8;
}
.site-footer .footer-cols { padding: 38px 0 18px; }
.site-footer .footer-head {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff;
  margin: 0 0 14px;
}
.site-footer .footer-links,
.site-footer .footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer .footer-links li,
.site-footer .footer-contact li { margin-bottom: 8px; }
.site-footer .footer-links a,
.site-footer .footer-contact a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.15s;
}
.site-footer .footer-links a:hover,
.site-footer .footer-contact a:hover { color: #fff; }
.site-footer .footer-contact li { font-size: 13px; color: #b0b0b0; }
/* diğer sitelerimiz alt-başlığı — h3 değil, hafif etiket; iletişim listesinden ayrı dursun */
.site-footer .footer-subhead {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #aaa;
  margin: 0 0 10px;
}
.site-footer .footer-sites-head { margin-top: 22px; }

/* marka sütunu */
.site-footer .footer-logo {
  display: inline-block;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  margin-bottom: 10px;
}
.site-footer .footer-logo strong { color: #fff; }
.site-footer .footer-tagline {
  font-size: 13px;
  color: #aaa;
  line-height: 1.5;
  margin: 0 0 14px;
  max-width: 240px;
}
.site-footer .footer-lang a {
  display: inline-block;
  padding: 3px 10px;
  margin-right: 6px;
  border: 1px solid #555;
  border-radius: 3px;
  font-size: 12px;
  color: #b0b0b0;
  text-decoration: none;
  transition: all 0.15s;
}
.site-footer .footer-lang a.active,
.site-footer .footer-lang a:hover {
  border-color: #c0392b;
  color: #fff;
  background: #c0392b;
}
/* marka sütunundaki hızlı erişim linkleri (dil butonlarından ayrı) */
.site-footer .footer-quick {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

/* alt bar */
.site-footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 14px 0;
  font-size: 12px;
  color: #aaa;
}
.site-footer .footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.site-footer .footer-me strong { color: #aaa; }

/* mobilde sütunlar alt alta, biraz boşluk */
@media (max-width: 767px) {
  .site-footer .footer-cols > div { margin-bottom: 22px; }
  .site-footer .footer-bottom .container { justify-content: center; text-align: center; }
}

/* ===== ANA SAYFA (index / index-en) ===== */

/* ---- kısa tanıtım: sol metin / sağ logo ---- */
.home-intro { padding-top: 18px; }
.home-h1 {
  font-size: 26px;
  font-weight: 700;
  color: #222;
  margin: 0 0 4px;
}
.home-h2 {
  font-size: 20px;
  font-weight: 700;
  color: #222;
  margin: 0 0 4px;
}
.home-intro-text { padding: 0 12px; }
.home-intro-text p {
  font-size: 15px;
  color: #444;
  line-height: 1.8;
  margin: 0 0 14px;
}
.home-intro-more a {
  font-weight: 600;
  color: #c0392b;
  text-decoration: none;
}
.home-intro-more a:hover { text-decoration: underline; }
.home-intro-logo { padding: 0 12px; }
.home-logo {
  max-width: 200px;
  width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
}
@media (max-width: 991px) {
  .home-intro-logo { margin-top: 18px; text-align: center; }
  .home-logo { width: auto; margin: 0 auto; }
}

/* ---- ürün kategorileri kartları ---- */
.home-cats { padding-top: 28px; }
.home-cats-row { display: flex; flex-wrap: wrap; }
/* masaüstü: 2 sütun (yarım genişlik); mobil: tam genişlik */
.home-cat { flex: 0 0 50%; max-width: 50%; padding: 8px 12px; display: flex; }
@media (max-width: 767px) {
  .home-cat { flex: 0 0 100%; max-width: 100%; }
}
.home-cat-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-left: 3px solid #c0392b;
  border-radius: 4px;
  padding: 16px 18px;
  text-decoration: none;
  transition: box-shadow .15s, border-color .15s;
}
.home-cat-card:hover {
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  border-color: #c0392b;
}
.home-cat-title {
  font-size: 16px;
  font-weight: 700;
  color: #222;
  margin-bottom: 6px;
}
.home-cat-text {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* ---- markalarımız ---- */
.home-brands { padding-top: 28px; }
.home-brands-row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.home-brand {
  padding: 16px 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* sabit yükseklikli logo alanı: 3 marka da aynı baseline'da hizalansın */
.home-brand-logo-wrap {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.home-brand-logo {
  max-width: 150px;
  max-height: 110px;
  width: auto;
  height: auto;
}
.home-brand-name {
  font-size: 34px;
  font-weight: 800;
  color: #222;
  margin: 0;
}
.home-brand-text {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* ---- iletişim CTA şeridi: açık gri zemin, sol metin / sağ butonlar ---- */
.home-cta {
  margin-top: 32px;
  margin-bottom: 0;
  background: #f0f0f0;
  border-top: 1px solid #e5e5e5;
  padding: 44px 0;
}
.home-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.home-cta-text { text-align: left; }
.home-cta-title {
  font-size: 22px;
  font-weight: 800;
  color: #222;
  margin: 0 0 4px;
}
.home-cta-sub {
  font-size: 15px;
  color: #666;
  margin: 0;
}
.home-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0;
}
/* telefon: ana aksiyon, dolu kırmızı */
.home-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #c0392b;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 4px;
  border: 1px solid #c0392b;
}
.home-cta-btn svg { flex-shrink: 0; }
.home-cta-btn:hover { background: #a93226; color: #fff; }
/* WhatsApp (TR): orijinal marka yeşili (#25D366) */
.home-cta-btn-ghost {
  background: #25D366;
  color: #fff;
  border: 1px solid #25D366;
}
.home-cta-btn-ghost:hover { background: #1da851; color: #fff; }
/* Email (EN): ikincil, beyaz zemin + kırmızı çerçeve */
.home-cta-btn-mail {
  background: #fff;
  color: #c0392b;
  border: 1px solid #c0392b;
}
.home-cta-btn-mail:hover { background: #f7f7f7; color: #c0392b; }
/* mobil: dikey, ortalı; butonlar tam genişlik + eşit boy */
@media (max-width: 767px) {
  .home-cta-inner { flex-direction: column; text-align: center; }
  .home-cta-text { text-align: center; }
  .home-cta-actions { flex-direction: column; align-items: stretch; width: 100%; }
  .home-cta-actions .home-cta-btn { width: 100%; justify-content: center; }
}
