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


body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
  color: #222;
}

/* Ortak container: içerikleri ortalar, yanlarda boşluk bırakır */
.container {
  max-width: 1200px;    /* site geneli için sabit genişlik */
  margin: 0 auto;       /* ortala */
  padding: 0 2rem;      /* yan boşluk: 2rem (responsive) */
}


:root {
  --header-height: 100px;
  --menu-overlap: 39px;
}

.navbar {
  height: 100px;
  position: relative; /* ⭐ Bunu ekle */
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1a1a1a;
  padding: 1rem 2rem;
  color: white;
  gap: 2rem;
  z-index: 1000; /* Bu varsa harika! Yoksa ekleyelim */
}


.logo {
  font-size: 1.7rem;
  font-weight: bold;
  letter-spacing: 1px;
  white-space: nowrap;
}

.logo img {
  max-height: 60px;    /* navbar yüksekliğine göre ayarla, örn. 60px */
  width: auto;
  display: block;
}


.nav-links {
  display: flex;
  gap: 1.2rem;
  flex-wrap: nowrap;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
  font-size: 1rem;
  white-space: nowrap;
}

.nav-links a:hover {
  color: #ffcc00;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger i {
  font-size: 1.5rem;
}

/* Mobil Menü Ana Yapı */
.mobile-menu {
  display: none;
  flex-direction: column;
  background-color: #1a1a1a;
  color: white;
  padding: 1rem;
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  z-index: 3000;
  font-size: 1rem;
}

/* Menü Kapat Butonu */
.mobile-menu button#closeMenu {
  background: none;
  color: white;
  border: none;
  font-size: 1.5rem;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 1rem;
}

/* Menü Başlıkları (Accordion Başlıkları) */
.mobile-dropdown-header {
  font-weight: bold;
  cursor: pointer;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}

.dropdown-icon {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

/* Açıkken simge yukarı döner */
.mobile-dropdown-header.active .dropdown-icon {
  transform: rotate(180deg);
}


.mobile-dropdown-header:hover {
  color: #ffcc00;
}

/* Alt Menü Bağlantıları */
.mobile-dropdown-content {
  display: none;
  flex-direction: column;
  padding-left: 1rem;
  margin-bottom: 0.5rem;
}

.mobile-dropdown-content li {
  padding: 0.3rem 0;
}

.mobile-dropdown-content a {
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.mobile-dropdown-content a:hover {
  color: #ffcc00;
}

/* Direkt bağlantılar (altı olmayanlar) */
.mobile-menu ul > li > a {
  display: block;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  text-decoration: none;
}

.mobile-menu ul > li > a:hover {
  color: #ffcc00;
}



.mobile-menu a {
  color: white;
  text-decoration: none;
  padding: 0.7rem 0;
  font-weight: 500;
}

/* Mobil dropdown */
.mobile-dropdown-header {
  padding: 0.7rem 0;
  color: white;
  cursor: pointer;
  font-weight: bold;
}

.mobile-dropdown-content {
  display: none;
  flex-direction: column;
  padding-left: 1rem;
}

.mobile-dropdown-content a {
  padding: 0.5rem 0;
  color: #ccc;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  background-color: #1a1a1a;
  padding: 0.5rem 0;
  min-width: 180px;
  z-index: 1000;
}

.dropdown-content a {
  display: block;
  padding: 0.5rem 1rem;
  color: white;
  text-decoration: none;
}

.dropdown-content a:hover {
  background-color: #333;
}

/* Mega Menü */

.mega-dropdown:hover {
  display: flex;
}

/* .mega-left a {
  display: block;
  color: white;
  text-decoration: none;
  margin-bottom: 0.5rem;
} */

/* .mega-left a:hover {
  color: #ffcc00;
} */

.mega-left a {
  display: block;
  color: white;
  text-decoration: none;
  margin-bottom: 0.5rem;
  padding: 0.4rem 0.6rem;
  font-weight: 500;          /* sabit font kalınlığı */
  min-width: 240px;          /* sabit genişlik için */
  font-size: 0.95rem;           /* sabit font boyutu */
  transition: background-color 0.3s, color 0.3s;
  border-radius: 4px;
}

.mega-left a:hover {
  color: #ffcc00;
  background-color: rgba(255, 255, 255, 0.1);
}



.mega-right p {
  font-size: 0.9rem;
  color: #ccc;
  max-width: 300px;
  line-height: 1.5;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1024px) {
  .nav-links a {
    font-size: 0.9rem;
  }
}

/* 1005px ve altı: nav-links gizlensin, hamburger görünsün */
@media (max-width: 850px) {
  .nav-links {
    display: none !important;
  }
  .hamburger {
    display: block !important;
  }
}

/* 1006px ve üstü: hamburger gizlensin, nav-links görünsün */
@media (min-width: 851px) {
  .hamburger {
    display: none !important;
  }
  .nav-links {
    display: flex !important;
  }
}


@media (min-width: 769px) {
  .dropdown:hover .dropdown-content {
    display: block;
  }
  .nav-links a {
    font-size: 1rem;
  }
}


@media (max-width: 768px) {
  
  .mega-menu {
    display: none !important;
    position: static;
    flex-direction: column;
    padding: 1rem;
  }
  
  .container {
    padding: 0 1rem;
  }

  .top-right {
    display: none;
  }
  .top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 1rem;    /* yatay padding’i 2rem → 1rem’e indirdik */
  }
  
  .top-left {
    text-align: center;
    width: 100%;
  }

  .top-link {
    margin-left: 2rem;      /* Önceden 1.5rem’di, şimdi biraz daha açık */
  }
  
  .social {
    margin-left: 1.5rem;    /* Önceden 1rem’di, hafif arttırdık */
    font-size: 1.1rem;
  }

  .top-bar-inner {
    padding: 0.4rem 0.5rem;
  }

}


.mega-left,
.mega-right {
  flex: 1;
}
.mega-left {
  flex: 1;
  min-width: 280px;
  display: flex;             /* ekle */
  flex-direction: column;    /* ekle */
  justify-content: center;   /* ekle */
}

.mega-right {
  flex: 1;
  display: flex;            /* img’i ortalamak için */
  width: 100%;
  max-width: 400px;
  min-height: 300px;        /* Yüksekliği sabit tutalım */
  flex-direction: column;
  justify-content: flex-start; /* Üstten hizala */
  align-items: center;
  gap: 1rem;
  flex-direction: column;
  transition: all 0.3s ease-in-out;
}

.mega-right img {
    max-width: 200px;   /* Mobilde biraz daha küçük tut */
  }

.mega-desc {
  min-height: 60px;       /* Her açıklama için alan sabit */
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
}

.mega-img {
  max-width: 100%;
  max-height: 220px;
  object-fit: contain;
  transition: all 0.3s ease;
  transition: transform 0.3s ease-in-out;
}

.mega-link:hover ~ .mega-right .mega-img {
  transform: scale(1.02);  /* Hafif zoom efekti */
}


.mega-right img {
  display: block;
  width: 100%;          /* ya da 350-400px istersen */
  max-width: 300px;       /* küçük ekranlarda taşmasın */
  height: auto;          /* orantıyı koru */
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 1rem;
  transition: opacity 0.3s ease;
  opacity: 1;
}


/* .mega-right img {
  display: block;
  max-height: 200px;
  width: auto;
  object-fit: contain;
  max-width: 100%;
  height: 250px;
  border-radius: 8px;
  margin-bottom: 1rem;
  transition: opacity 0.3s ease;
  opacity: 1;
} */

/* Responsive */

/* ==================== MEGA MENÜ DÜZENLEMESİ ==================== */
.mega-menu {
  display: none !important;
  position: absolute;
  top: calc(100% - 39px);
  left: 0;
  right: 0;
  max-width: 1400px;       /* 🔄 Eskisi: 1200px */
  width: 100%;
  margin: 0 auto;
  background-color: #1a1a1a;
  color: white;
  padding: 2rem 3rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  z-index: 2000;
  gap: 3rem;
  justify-content: space-between;
  align-items: flex-start;  /* daha düzgün hizalama için */
  flex-wrap: nowrap;        /* alt alta kaymasın */
}


.mega-dropdown:hover .mega-menu,
.mega-dropdown.active .mega-menu {
  display: flex !important;
  align-items: center;
}



.nav-links .mega-dropdown:hover .mega-menu,
.nav-links .mega-dropdown .mega-menu:hover {
  display: flex !important;
}





/* Mobil Uyumluluk */

.container {
  /* artık container’ın max-width’i devreden çıksın: */
  max-width: none !important;
}



.hero-image {
  position: relative;
  width: 100%;
  height: 60vh; /* isteğe göre ayarla */
  background: url('../img/hero-sprayer.png') center/cover no-repeat;
}

.hero-image__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4); /* metni okunur kılmak için */
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero-text {
  color: white;
  font-size: 3rem;
  text-align: center;
}



#hero-text {
  color: #fff;
  font-size: 2.5rem;
  font-weight: bold;
  font-family: 'Segoe UI', sans-serif;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
  white-space: nowrap;
}

/* ---------- ÜST BAR STİLİ ---------- */
.top-bar {
  background-color: #800000; /* bordo */
  color: #fff;
  font-size: 0.9rem;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 2rem;
}
.top-left {
  font-weight: 500;
}
.top-right {
  display: flex;
  align-items: center;
}
.top-link {
  color: #fff;
  text-decoration: none;
  margin-left: 1.5rem;
  white-space: nowrap;
}
.social {
  color: #fff;
  margin-left: 1rem;
  font-size: 1.1rem;
}
.social:hover {
  color: #ffcc00;
}

/* ---------- RESPONSIVE AYARLAR ---------- */
/* Sağ kısım gizlenince üst bar içeriği ortalansın */

/* Gerekirse farklı kırılma için de ekleyebilirsin: */
/*
@media (max-width: 1005px) {
  .top-right { display: none; }
  .top-bar-inner { justify-content: center; }
}
*/

/* 1005px altı: biraz daha dar yan boşluk */
@media (max-width: 1005px) {
  .top-bar-inner {
    padding: 0.4rem 0.8rem;
  }
}


/* === Top-bar içindeki .container’ı full-width’leştir === */
.top-bar .container {
  max-width: none !important;  /* artık 1200px’i devre dışı bırak */
  width: 100% !important;      /* tam ekran genişliği */
  margin: 0 !important;        /* ortalamayı kapat */
  padding: 0.4rem 1rem;        /* iç boşluk yine istediğin gibi */
}

/* 668px’e inince üst bar sağı gizle, soldaki ortala */
@media (max-width: 668px) {
  /* Üst bar’ın içindeki item’lar arası mesafe ve küçültme */
  .top-bar {
    padding: 0.2rem 1rem;
    z-index: 1000;
  }

  /* Sol ve sağ elemanları kenarlara yasla */
  .top-bar-inner {
    display: flex;
    justify-content: space-between !important;
    align-items: center;
  }

  /* Sağdaki linkler/sosyal ikonlar artık asla wrap olmaz, hep yatayda kalır */
  .top-right {
    display: flex !important;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;        /* dilediğiniz kadar küçültün */
    overflow-x: auto;        /* çok taşarsa yatay scroll çıkar */
  }

  /* Link ve ikon padding/margin’lerini ufalt */
  .top-right .top-link {
    padding: 0 0.25rem;
  }
  .top-right .social {
    margin: 0 0.25rem;
  }
}
@media (max-width: 668px) {
  /* .top-right {
    display: none !important;
  } */
   .top-bar {
    padding: 0.2rem 0.5rem;
    position: relative;
    z-index: 1000;
  }
  .top-bar .top-right {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.75rem;
  }
  .top-bar .top-right .top-link {
    padding: 0 0.25rem;
  }
  .top-bar .top-right .social {
    margin: 0 0.25rem;
  }
  .top-bar-inner {
    justify-content: center !important;  /* space-between’i ortala ile değiştir */
  }
  .top-left {
    text-align: center;  /* metni ortaya hizala */
    width: 100%;         /* tam genişlik ver, container’ın kenar boşluğu kalmasın */
  }
}

/* ===== Özellikler Bölümü ===== */
.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature i {
  font-size: 2.5rem;
  color: #ffcc00; /* vurgu rengi */
  flex-shrink: 0;
}

.feature-text h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.feature-text p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.4;
  margin: 0;
}

/* Mobilde tek sütun */
@media (max-width: 768px) {
  .features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ===== Özellikler Bölümü ===== */
.features {
  display: grid;
  /* min 300px, max eşit paylaştırılmış 1fr */
  grid-template-columns: repeat(2, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

/* 1210px ve üzeri: features bölümünü akışkan yap */
@media (min-width: 1210px) {
  .features.container {
    max-width: none;    /* 1200px sınırını sıfırla */
    width: 80%;         /* viewport’un %80’i kadar genişle */
    margin: 0 auto;     /* ortala */
  }
}

/* ===== Kategoriler Kartları ===== */
/* .categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
} */

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  border-radius: 8px;
  padding: 1.5rem 1rem;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.category-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.category-card img {
  width: 100%;
  max-width: 180px;
  height: auto;
  margin-bottom: 1rem;
}

.category-card h4 {
  font-size: 1.1rem;
  color: #1a1a1a;
  margin: 0;
}

/* Responsive: 2 sütun */
@media (max-width: 992px) {
  .categories {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive: 1 sütun */
@media (max-width: 600px) {
  .categories {
    grid-template-columns: 1fr;
  }
  .product-main-image img {
    max-width: 220px;
  }
}

.category-card img {
  width: 100%;
  max-width: 180px;
  height: 140px;           /* sabit yükseklik, tutarlı kartlar için */
  object-fit: cover;       /* görseli kırpmadan doldurur */
  border-radius: 4px;
  margin-bottom: 1rem;
}

/* ===== Categories bölümü full‐width (tam ekran) yap ===== */
.categories {
  width: 100vw;                              /* görüntü genişliğini tüm viewport olarak al */
  margin-left: calc(-50vw + 50%);            /* yatayda tam ortalamak için */
  margin-right: calc(-50vw + 50%);
  padding: 0 1rem;                           /* kenarlarda küçük boşluk */
}

.categories.container {
  max-width: none !important;                /* varsayılan 1200px sınırını kaldır */
}

/* ===== Kategoriler Başlığı ===== */
.section-header {
  grid-column: 1 / -1;
  text-align: center;
  margin-bottom: 2rem;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  color: #1a1a1a;
  display: inline-block;
  position: relative;
  padding-bottom: 0.5rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;           /* altındaki vurgu çizgisinin uzunluğu */
  height: 4px;           /* çizgi kalınlığı */
  background-color: #ffcc00;  /* vurgu rengi */
  border-radius: 2px;
}

.section-subtitle {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: #666;
}

/* Kartları artık category-grid’te göster */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

/* responsive media query’ler de category-grid’e taşı */
@media (max-width: 992px) {
  .category-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 600px) {
  .category-grid { grid-template-columns: 1fr; }
}

/* Footer altındaki telif çubuğu */
.footer-bottom {
  background-color: #1a1a1a;  /* koyu zemin */
  color: #fff;                /* beyaz metin */
  text-align: center;         
  padding: 0.75rem 0;         /* üst-alt boşluk */
  font-size: 0.9rem;          /* biraz küçük yazı */
}

.footer-bottom a {
  color: #fff;                /* link de beyaz */
  font-weight: bold;          /* markayı biraz vurgula */
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline; /* hover’da altını çiz */
}

/* Kart dropdown wrapper */
.category-dropdown {
  position: relative;
}

/* Alt kategori menüsü (mega-menu stilinin hafif versiyonu) */
.category-submenu {
  display: none;
  position: absolute;
  top: 100%;      /* kartın hemen altında */
  left: 0;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-radius: 6px;
  padding: 1rem;
  min-width: 220px;
  z-index: 100;
  flex-direction: column;
}

/* Link stili */
.category-submenu a {
  color: #1a1a1a;
  text-decoration: none;
  padding: 0.5rem 0;
  transition: color .2s;
}
.category-submenu a:hover {
  color: #ffcc00;
}

/* Hover veya focus içinde aç */


@media (max-width: 768px) {
  .category-submenu {
    position: static;        /* akışın içine al */
    width: 100%;             /* tam genişlik */
    margin-top: 0.5rem;      /* karttan biraz boşluk */
    box-shadow: none;
    background: transparent;
    padding: 0;
  }
  .category-submenu a {
    padding: 0.5rem 1rem;    /* iç boşlukla hizala */
    background: #f9f9f9;
    border-radius: 4px;
    margin-bottom: 0.5rem;
  }
}

/* ---- Modal Overlay & Blur ---- */
.modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 5000;
}

/* İçerik bloğu */
.modal-content {
  background: #fff;
  border-radius: 8px;
  display: flex;
  max-width: 800px;
  width: 90%;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* Kapat butonu */
.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: transparent;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* Sol sütun: link listesi */
.modal-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background: #fafafa;
}
.modal-left a {
  text-decoration: none;
  color: #333;
  padding: 0.5rem 0;
  transition: color .2s;
}
.modal-left a:hover {
  color: #ffcc00;
}

/* Sağ sütun: resim */
.modal-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
}
.modal-right img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

/* Responsive: dikey modal */
@media (max-width: 768px) {
  .modal-content {
    flex-direction: column;
  }
  .modal-left, .modal-right {
    width: 100%;
    padding: 1rem;
  }
}

@media (max-width: 668px) {
  /* ➤ Özellikler’i tek sütuna indir, gap’i küçült */
  .features {
    display: grid;
    grid-template-columns: 1fr !important; /* mutlaka tek sütun */
    gap: 1rem !important;                   /* sütunlar arası boşluğu azalt */
    margin: 1rem 0;                         /* üst-alt boşluğu biraz azalt */
  }

  /* ➤ Feature içindeki icon ve metinleri biraz küçült */
  .feature {
    align-items: center; /* dikeyde ortala */
  }
  .feature i {
    font-size: 2rem;     /* ikon boyutunu biraz indir */
  }
  .feature-text h3 {
    font-size: 1.1rem;   /* başlık boyutu */
  }
  .feature-text p {
    font-size: 0.9rem;   /* paragraf boyutu */
    line-height: 1.3;    /* satır aralığı */
  }

  /* ➤ Genel container padding’ini daralt */
  .container {
    padding: 0 0.5rem !important;
  }
}

/* ===== WhatsApp Destek Butonu ===== */
.whatsapp-chat {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  background-color: #25d366;      /* WhatsApp yeşili */
  color: #fff;
  font-size: 2rem;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 10000;
  transition: transform 0.2s;
  text-decoration: none;
}

.whatsapp-chat:hover {
  transform: scale(1.1);
  background-color: #1ebe57;
}

/* Dokunmatik cihazlarda kolay tıklama için */
@media (max-width: 600px) {
  .whatsapp-chat {
    bottom: 0.75rem;
    right: 0.75rem;
    width: 3rem;
    height: 3rem;
    font-size: 1.8rem;
  }
}

/* Breadcrumb */
.breadcrumb {
  font-size: 0.9rem;
  margin: 1rem 0;
}
.breadcrumb a { color: #666; text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: #333; font-weight: bold; }

/* Product Detail Grid */
/* --- Akıcı iki sütun: 350px altına inince otomatik tek sütuna geçer --- */
.product-detail {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  grid-template-areas: "info image";
  align-items: start;
  gap: 2rem;
  margin-bottom: 2rem;
}

/* Alan atamaları */
.product-info {
  grid-area: info;
}
.product-main-image {
  grid-area: image;
}

@media (max-width: 768px) {
  .product-detail {
    grid-template-columns: 1fr;
  }
}

/* Ürün bilgisi */
/* Başlık */
.product-info h1 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}
/* Açıklama */
.product-info p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  margin-bottom: 1.5rem;
}

/* Liste maddeleri */
.product-features li {
  font-size: clamp(0.9rem, 2vw, 1rem);
}
.product-features {
  list-style: disc;
  margin-left: 1.5rem;
  color: #444;
}

/* Ana görsel */
.product-main-image img {
  width: 100%;
  max-width: 320px;
  height: auto;
  margin: 0 auto;
  display: block;
  object-fit: contain;
}

/* Thumbnail galeri */
/* Küçük galeri: başlangıçta 3 sütun */
.product-thumbnails {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;               /* Görseller arası boşluk */
  margin-bottom: 2rem;
}

/* 992px altı: 2 sütuna düşür */
@media (max-width: 992px) {
  .product-thumbnails {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 600px altı: tek sütuna geçir */
@media (max-width: 600px) {
  .product-thumbnails {
    grid-template-columns: 1fr;
  }
}

.product-thumbnails img {
  width: 100%;
  cursor: pointer;
  border-radius: 4px;
  transition: transform .2s;
}
.product-thumbnails img:hover {
  transform: scale(1.05);
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  font-size: 0.9rem;               /* biraz daha küçük */
  color: #555;                     /* hafif koyu gri */
  margin: 1.5rem 0;                /* üst-alt boşluk */
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;                     /* öğeler arası boşluk */
  align-items: center;
}

.breadcrumb a {
  color: #007acc;                  /* link rengi (mavi ton) */
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: #005fa3;                  /* hover’da koyu mavi */
  text-decoration: underline;
}

.breadcrumb span {
  color: #333;                     /* aktif sayfa koyu metin */
  font-weight: 500;
}

/* Responsive: mobilde satırı daha sıkıştır */
@media (max-width: 600px) {
  .breadcrumb {
    font-size: 0.8rem;
    gap: 0.3rem;
  }
}



/* Özellikleri iki sütunda göster */
.product-features {
  list-style: none;
  columns: 2;             /* iki sütuna böl */
  column-gap: 2rem;       /* sütunlar arası boşluk */
  margin: 1.5rem 0;
  padding: 0;
}

.product-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  break-inside: avoid;    /* sütun kırılmasını önle */
}

/* ✓ işareti */
.product-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #28a745;
  font-size: 1rem;
  line-height: 1;
}

/* Mobilde tek sütun yap */
@media (max-width: 600px) {
  .product-features {
    columns: 1;
  }
}

@media (max-width: 770px) {
  .product-detail {
    grid-template-columns: 1fr;
    grid-template-areas:
      "image"
      "info";
  }
}

/* ===== ÜRÜN INTRO (başlık + alt başlık) ===== */
.product-intro {
  text-align: center;
  margin: 2rem auto;
}
.product-intro h1 {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  margin-bottom: 0.5rem;
}
.product-tagline {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: #555;
}

/* ===== ÜRÜN DETAY (özellikler + görsel) ===== */
.product-detail {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: start;
  margin-bottom: 3rem;
}

/* Özellikler listesi */
.product-features {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 2rem;
}
.product-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: clamp(0.9rem, 2vw, 1rem);
}
.product-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #28a745;
  font-size: 1rem;
}

/* Görsel kutusu */
.product-main-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* ===== BREAKPOINT: Mobil (<770px) ===== */
@media (max-width: 770px) {

  /* intro blok biraz daha sıkışık */
  .product-intro {
    margin: 1.5rem auto;
  }

  /* tek sütuna geç */
  .product-detail {
    grid-template-columns: 1fr;
  }

  /* iki sütun listesini tek sütuna indir */
  .product-features {
    columns: 1;
  }
}

/* ===== Lightbox (Görsel Büyüteci) ===== */
/* ====== Lightbox Ortalı Responsive Görsel ====== */

/* === LIGHTBOX === */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox-overlay.show {
  display: flex;
}

.lightbox-content {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 1rem;
  box-sizing: border-box;
}

.lightbox-image {
  max-width: 95vw;
  max-height: 95vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(0,0,0,0.5);
  color: white;
  font-size: 2rem;
  border: none;
  cursor: pointer;
  padding: 0.5rem 1rem;
  z-index: 10;
}

.lightbox-close {
  top: 10px;
  right: 20px;
}

.lightbox-prev {
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

/* Mobilde daha düzgün görünüm */
@media (max-width: 768px) {
  .lightbox-content {
    padding: 0.5rem;
  }

  .lightbox-close,
  .lightbox-prev,
  .lightbox-next {
    font-size: 1.5rem;
    padding: 0.4rem 0.8rem;
  }
}


/* Ana görselin hover’da “büyüt” imleci çıkartsın */
.product-main-image img {
  cursor: zoom-in;
}

/* Görsel hafif fade efektiyle değişsin */

.mega-right img.fading {
  opacity: 0;
}



/* .mega-right img {
  display: block;           
  max-width: 100%;          
  max-height: 250px;        
  width: auto;
  height: auto;
  object-fit: contain;      
} */

/* ===== HAKKIMIZDA SAYFASI ===== */
.about {
  padding: 4rem 0;
}
.about-content {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}
.about-image {
  flex: 1 1 300px;
}
.about-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  object-fit: cover;
}
.about-text {
  flex: 2 1 400px;
}
.about-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
}
.about-text p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.btn {
  display: inline-block;
  background-color: #ffcc00;
  color: #1a1a1a;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  transition: background-color 0.3s;
}
.btn:hover {
  background-color: #e6b800;
}

/* Responsive */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
  }
  .about-image,
  .about-text {
    flex: 1 1 100%;
  }
}

/* Tam ekran modal */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
}

.modal-content {
  display: block;
  margin: auto;
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 36px;
  font-weight: bold;
  cursor: pointer;
}

/* Hakkımızda bölümü */
.about-section {
  padding: 4rem 1rem;
  text-align: center;
}

.about-section .section-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #1a1a1a;
}

.about-text {
  max-width: 800px;
  margin: 0 auto 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
}
/* Hakkımızda bölüm sonu */

/* Biz Kimiz ? */
.about-section {
  padding: 4rem 1rem;
  background: linear-gradient(180deg, #f9f9f9, #ffffff);
  text-align: center;
}

.about-header h1 {
  font-size: 2.8rem;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.about-header p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 3rem;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.about-card {
  background-color: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.about-card:hover {
  transform: translateY(-5px);
}

.about-card i {
  font-size: 3rem;
  color: #007b3a;
  margin-bottom: 1rem;
}

.about-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.about-card p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}
/* biz kimiz bölüm sonu */

/* Müşteri yorumları bölümü */

.testimonials-section {
  padding: 4rem 1rem;
  background-color: #f4f4f4;
  text-align: center;
  margin-top: 4rem;
}

.testimonials-title {
  font-size: 2rem;
  color: #1a1a1a;
  margin-bottom: 2rem;
}

.testimonials-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.testimonial-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
}

.avatar {
  background-color: #007b3a;
  color: white;
  font-weight: bold;
  font-size: 1.4rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-content {
  flex: 1;
}

.testimonial-text {
  font-size: 1rem;
  color: #444;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.testimonial-name {
  font-weight: bold;
  color: #1a1a1a;
}

.stars {
  color: #f1c40f;
  font-size: 1.2rem;
}

/* Müşteri yorumları bölüm sonu */

/* İletişim bölümü */

.contact-section {
  margin: 50px 0;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.contact-form, .contact-info {
  flex: 1 1 45%;
  background-color: #f9f9f9;
  padding: 25px;
  border-radius: 10px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.btn-submit {
  padding: 12px 25px;
  background-color: #198754;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-submit:hover {
  background-color: #146c43;
}

.contact-info h3 {
  margin-bottom: 15px;
}

.contact-info p {
  margin: 10px 0;
  font-size: 1.05rem;
}

.contact-info a {
  color: #198754;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.map-container {
  margin-top: 15px;
  border-radius: 10px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
  }
}
/* İletişim bölüm sonu */

/* Neden Aksan Tarım ? bölümü */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card i {
  font-size: 2.5rem;
  color: #2f7b46;
  margin-bottom: 1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.feature-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.feature-card i {
  font-size: 2.5rem;
  color: #1a8c3f;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.2rem;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.95rem;
  color: #444;
}

/* Neden aksan bölüm sonu */

.cta-highlight {
  background-color: #f9f9f9;
  border-left: 5px solid #28a745;
  padding: 2rem;
  margin: 3rem auto;
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.cta-highlight h2 {
  font-size: 1.8rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.cta-highlight p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

/* Fake H1 */
.fake-h1 {
  font-size: 44.8px !important;
  font-weight: 700 !important;
  text-align: center !important;
  font-family: "Segoe UI", sans-serif !important;
  margin: 0 0 8px 0 !important;
  line-height: 1.2 !important;
}



@media screen and (max-width: 768px) {
  .fake-h1 {
    font-size: 1.75rem;     /* Mobilde daha küçük ama başlık gibi */
  }
}
/* Fake H1 End */

/* Görünmeyen h etiketleri için */
.visually-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
/* Görünmeyen h etiketleri için end */

/* Mobil menü geçişleri güzel olsun diye */

/* Accordion animasyonu */
.mobile-dropdown-content {
  max-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding-left: 1rem;
  margin-bottom: 0.5rem;
  transition: max-height 0.4s ease-in-out, padding 0.3s ease-in-out;
}

/* Açık olduğunda eklenecek sınıf */
.mobile-dropdown-content.open {
  max-height: 1000px; /* Yeterli büyük, içeriğe göre */
  padding-top: 0.5rem;
}


/* Mobilde en üst kısmın (katalog-telefon-sosya lmedya iconları) Kötü Görünümünü Engellemek için  */

/* 480px ve altı */
@media (max-width: 480px) {
  .top-right {
    font-size: 0.7rem;    /* daha küçük puntolar */
    gap: 0.4rem;          /* linkler/ikonlar arası boşluk */
  }
  .top-right .top-link,
  .top-right .social {
    margin: 0 0.3rem;     /* yatay marjinler */
  }
  .top-right .social i {
    font-size: 1rem;      /* ikon boyutu */
  }
}

/* 360px ve altı */
@media (max-width: 360px) {
  .top-right {
    font-size: 0.6rem;
    gap: 0.3rem;
  }
  .top-right .top-link,
  .top-right .social {
    margin: 0 0.25rem;
  }
  .top-right .social i {
    font-size: 0.9rem;
  }
}

/* 320px ve altı */
@media (max-width: 320px) {
  .top-right {
    font-size: 0.55rem;
    gap: 0.2rem;
  }
  .top-right .top-link,
  .top-right .social {
    margin: 0 0.2rem;
  }
  .top-right .social i {
    font-size: 0.8rem;
  }
}

/* Mobilde en üst kısmın (katalog-telefon-sosya lmedya iconları) Kötü Görünümünü Engellemek için -son- */

@media (max-width: 668px) {
  .top-bar-inner {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.5rem;
  }

  .top-left {
    order: 2;
    text-align: center;
    width: 100%;
  }

  .top-right {
    order: 1;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    overflow-x: auto;
    white-space: nowrap;
    width: 100%;
  }

  .top-right .top-link,
  .top-right .social a {
    padding: 0 0.5rem;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
  }

  .top-right .social i {
    font-size: 1rem;
  }
}