/* === MODERN CSS RESET === */
/* Bu kod, tüm tarayıcıların varsayılan stillerini sıfırlayarak tutarlı bir temel oluşturur. */

/*
  1. Tüm elemanlar için daha sezgisel bir kutu boyutlandırma modeli kullan.
     Bu, genişlik ve yükseklik hesaplamalarına padding ve border'ı dahil eder.
*/
*, *::before, *::after {
  box-sizing: border-box;
}

/*
  2. Tarayıcıların elementlere verdiği varsayılan, tutarsız dış boşlukları (margin) kaldır.
*/
* {
  margin: 0;
}

/*
  3. Yüzde tabanlı yüksekliklerin doğru çalışmasına izin ver.
*/
/* Ana CSS dosyanızın en başına (reset kodundan sonra) ekleyin */

html, body {
  height: 100%;
  font-size: 62.5%;
}

/*
  4. Erişilebilir satır yüksekliği ekle ve metin render kalitesini artır.
*/
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/*
  5. Resim gibi medya elemanlarının varsayılan davranışlarını iyileştir.
*/
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/*
  6. Form elemanlarının tarayıcılar tarafından atanan farklı font stillerini sıfırla.
*/
input, button, textarea, select {
  font: inherit;
}

/*
  7. Metinlerin, kutularından taşmasını önle.
*/
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

.references-logos .logo-box img {
    height:10rem;
    width: 19.5rem;
    /* Bu satır logonun en boy oranını korur, bozulmasını engeller. 
       Mevcut kodunuzda zaten olabilir, ama burada olması önemlidir. */
    object-fit: contain; 
}

.html, body {
  scroll-behavior: smooth; /* Bu satır sayfa içi bağlantılar için yumuşak kaydırma sağlar */
  font-size: 1.6rem; /* Temel font boyutunu 16px yapar */
}



:root {
  --primary-color: rgb(46, 107, 198);
  --secondary-color: #444;
  --blue-color:#00AEEF;
  --text-color: #003366;
  --background-color : #f5f5f5; 
  --shadow: 0 5px 15px rgba(0,0,0,0.1); /* Ortak gölge tanımı */
  --transition: all 0.3s ease; /* Ortak geçiş tanımı */
}

main {
  position: relative;
  z-index: 2; /* İçeriği öne al */
}

body, html {
  font-family: 'Segoe UI', sans-serif;
  scroll-behavior: smooth;
  background-color : var(--background-color); /* root'tan kullanıldı */
}

/* Navbar */
.navbar {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  z-index: 1000;

}

.navbar .logo a img {
  width: 15rem;
  max-width: 100%;
  height: auto;
  transition: var(--transition);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1rem;
  z-index: 1001;
}

.menu-toggle .bar {
  display: block;
  width: 2.5rem;
  height: .3rem;
  background-color: var(--text-color); /* root'tan kullanıldı */
  margin: .5rem 0;
  transition: var(--transition);
}

.navbar nav ul {
  list-style: none;
  display: flex;
  gap: 3rem;
}

.navbar nav ul li a {
  text-decoration: none;
  color: var(--text-color); /* root'tan kullanıldı */
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  padding: .5rem 0;
}

.navbar nav ul li a:hover {
  color: var(--background-color); /* root'tan kullanıldı */
}

.navbar nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: .2rem;
  background-color: var(--background-color); /* root'tan kullanıldı */
  transition: var(--transition);
}

.navbar nav ul li a:hover::after {
  width: 100%;
}

/* Aktif Navigasyon Linki */
.navbar nav ul li a.active-link {
  color: var(--blue-color); /* Root'tan mavi renk */
  font-weight: 700;
}

.navbar nav ul li a.active-link::after {
  width: 100%;
  background-color: var(--blue-color);
}


/* Mobil menü stil */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  .navbar nav ul {
    position: fixed;
    top: 80px; /* Navbar yüksekliğine göre ayarlandı */
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: white;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    box-shadow: var(--shadow);
    z-index: 999;
    overflow-y: auto;
    
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), 
                opacity 0.5s ease,
                visibility 0.5s ease;
  }
  
  .navbar nav ul.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
  
  .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .navbar nav ul li {
    width: 100%;
    text-align: center;
    padding: 15px 0;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.4s ease;
  }

  .navbar nav ul.active li {
    opacity: 1;
    transform: translateX(0);
  }

  /* Menü öğelerine sıralı animasyon */
  .navbar nav ul.active li:nth-child(1) { transition-delay: 0.1s; }
  .navbar nav ul.active li:nth-child(2) { transition-delay: 0.15s; }
  .navbar nav ul.active li:nth-child(3) { transition-delay: 0.2s; }
  .navbar nav ul.active li:nth-child(4) { transition-delay: 0.25s; }
  .navbar nav ul.active li:nth-child(5) { transition-delay: 0.3s; }
}
@media (max-width: 576px) {
  .navbar {
    padding: 15px;
  }
  
  .navbar .logo a img {
    width: 120px;
  }
}

/* Hero Section (Eğer index.html için hala kullanılıyorsa) */
.hero {
  background-image: url('assets/img/hero-2.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Content */
.content {
  display: grid;
    padding: 5rem 3rem 10rem 3rem;
    text-align: center;
    position: relative;
    z-index: 1000;
    justify-items: stretch;
    margin: 0 3.8rem 0 3.8rem;
}

.content h2 {
  font-size: 3.2rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.content p {
  font-size: 1.92rem;
  margin-bottom: 4rem;
  color: var(--secondary-color);
}

/* Düzeltilmiş ve Güçlendirilmiş Kod///////////////////////////////////////////////////////////////////////////////////////////////////// */
.box-container {
  margin: 0;
  gap: 3rem;
  display: flex;
  justify-content: center;
  flex-wrap: nowrap; /* nowrap -> wrap olarak değiştirildi */
}

.product-item h3{
  font-size: 3rem;
}

.box {
  position: relative;
  background-color: white;
  padding: 3rem 0 3rem 0;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  flex: 1 1 30rem; /* Eklendi: Kutulara esneklik ve temel genişlik verildi */
  max-width: 35rem; /* Eklendi: Kutuların aşırı büyümesi engellendi */
}

.content .box a {
  text-decoration: none;
  color: var(--text-color);
}

.box {
  position: relative;
  background-color: white;
  padding: 2rem 0 2rem 0;
  border-radius: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  overflow: hidden;
}

.box:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.box-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  border-radius: 10px;
  opacity: 0.7;
}

.box-text {
  position: relative;
  color:var(--text-color);
  font-size: 1.6rem;
  padding: 2rem;
}

.product-groups {
  background-color: var(--background-color);
  text-align: center;
  position: relative;
  z-index: 1000;
  padding: 5rem 5rem 10rem 5rem;
}

.product-groups h2 {
  font-size: 3.2rem;
  color: var(--text-color);
  margin-bottom: 4rem;
}

/* Düzeltilmiş Kod ////////////////////////////////////////*/
.product-list {
  margin: 0 auto; /* Kenar boşlukları daha esnek hale getirildi */
  padding: 0 2rem; /* Kenarlara küçük boşluklar eklendi */
  display: flex;
  flex-wrap: wrap; /* nowrap -> wrap olarak değiştirildi */
  gap: 2rem;
  justify-content: center; /* space-between -> center olarak değiştirildi */
}

.product-item {
  width: 16rem;
}

.product-item img {
  width: 100%;
  object-fit: contain;
  background-color: #f9f9f9;
  border: .1rem solid #ddd;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
  margin-bottom: 15px;
  transition: transform 0.3s;
  border-radius: 1rem;
}

.product-item img:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}


.product-item h3 {
  font-size: 1.6rem;
  margin-bottom: .5rem;
  color: var(--text-color);
}

.product-item p {
  font-size: 0.9rem;
  color: var(--secondary-color);
}

.container {
    width: 100%;
    text-align: center;
    padding: 5rem 5rem 10rem 5rem;
    position: relative;
}

.main-title {
    font-size: 3.2rem;
    color:var(--text-color); 
    margin-bottom: 1rem;
    font-weight: 700;
}

.cards-container {
    margin: 0 2rem 0 2rem;
    display: flex;
    gap: 3rem;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.feature-card {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 3rem;
    width: 30rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: left;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.15);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: .5rem;
}

.card-number {
    font-size: 1.5rem;
    font-weight: 700;
    color:var(--blue-color);
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.card-description {
    color: var(--secondary-color);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.card-icon {
    font-size: 2.5rem;
    color: var(--blue-color);
    margin-top: 2rem;
}

main .main-description {
    font-size: 1.9rem;
    color:var(--secondary-color);
    margin-bottom: 4rem;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .cards-container {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-card {
        width: 100%;
        max-width: 350px;
        }
}

.modern-slider {
  position: relative;
  max-width: 120rem;
  margin: 0 19rem 0 22rem;
  overflow: hidden;
  border-radius: 1.2rem;
  box-shadow: 0 1rem 3rem rgba(0,0,0,0.1);
}

.slides-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 50rem;
}

.slide {
  min-width: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: white;
  padding: 3rem;
  padding-top: 6rem;
}

.slide-content h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

/* Navigation Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  border: none;
  color: white;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.slider-arrow:hover {
  background: rgba(255,255,255,0.4);
}

.slider-arrow svg {
  width: 2.4rem;
  height: 2.4rem;
  fill: currentColor;
}

.prev-arrow {
  left: 2rem;
}

.next-arrow {
  right: 2rem;
}

/* Dot Navigation */
.slider-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 10;
}

.dot {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: white;
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
  .slides-container {
    height: 400px;
  }
  
  .slide-content {
    padding: 20px;
    padding-top: 40px;
  }
  
  .slide-content h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .slides-container {
    height: 300px;
  }
  
  .slider-arrow {
    width: 40px;
    height: 40px;
  opacity: 0.8;
  }
  
  .slider-dots {
    bottom: 10px;
  }
}

.cover-letter{
  margin-top: 20px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  align-items: center;
}

.cover-letter h1{
  margin-top: 1rem;
  text-align: center;
  font-size: 3.2rem;
  color: var(--text-color);
}

.cover-letter p {
  text-align: center;
  font-size: 1.32rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.cover-letter a {
  margin-top: 40px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
}

.cover-letter a img {
  width: 100%;
  height: auto;
  max-width: 20rem;
  margin: 0 auto;
}

.light-footer {
  background-color: var(--background-color);
  color: var(--text-color);
  padding: 4rem 2rem;
  font-family: 'Segoe UI', sans-serif;
  border-top: .2rem solid var(--primary-color);
}

.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 120rem;
  margin: auto;
}

.footer-left {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.footer-left h2 {
  color: var(--text-color);
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  gap: 6rem;
  flex-wrap: wrap;
}

.footer-links h4 {
  margin-bottom: 1rem;
  color: var(--text-color);
  font-size: 1.76rem;
}

.footer-links a {
  display: block;
  color: var(--text-color);
  text-decoration: none;
  margin-bottom: .6rem;
  font-size: 1.52rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--blue-color);
}

.footer-bottom {
  margin-top: 3rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--secondary-color);
}

.references-section {
  background-color: var(--background-color);
  padding: 5rem 0rem;
  text-align: center;
  margin-bottom: 10rem;
}

.references-title {
  color: var(--text-color);
  font-size: 3.2rem;
  margin-bottom: 3rem;
  font-weight: 600;
}

.references-logos {
  margin-right: 7rem;
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  margin-left: 7rem;
}

.logo-box {
  border-radius: 1rem;
  background: white;
  padding: 2rem;
  width: 25rem;
  height: 15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s;
}

.navbar nav ul li img {
  display: none;
  visibility: hidden;
}

.logo-box img {
  max-width: 100%;
  max-height: 10rem;
  object-fit: contain;
}

.logo-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 .4rem 1.2rem rgba(0, 0, 0, 0.1);
}

.logo-box{
  pointer-events: click;
}

/* Genel Responsive Ayarlar */
@media (max-width: 1200px) {
  .references-logos {
    margin-left: 10rem;
    margin-right: 10rem;
  }
  
  .product-list {
    margin: 0 8rem;
  }
}

@media (max-width: 992px) {
  .references-logos {
    margin-left: 5rem;
    margin-right: 5rem;
  }

  .navbar nav ul li img {
    display: block;
    visibility: visible;
    margin-bottom: 30px;
}
  
  .product-list {
    margin: 0 4rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .navbar {
    position: relative;
    padding: 15px 20px;
  }
  .cover-letter img {
    display: none;
  }
  
  .navbar .logo a img {
    width: 50%;
  }
  
  .box-container {
    flex-wrap: wrap;
  }
  
  .box {
    max-width: 250px;
    min-width: 250px;
    margin-bottom: 20px;
  }
  .hero {
    display: none;
  }
}

@media (max-width: 768px) {
  .references-logos {
    margin-left: 2rem;
    margin-right: 2rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .cover-letter img {
    display: none;
  }
  
  .logo-box {
    width: 200px;
    height: 120px;
    margin-bottom: 15px;
  }
  
  .product-list {
    margin: 0 1rem;
    gap: 20px;
  }
  
  .product-item {
    width: 140px;
  }
  
  .product-item img {
    height: 80px;
  }
  
  /* Mobil menü butonu */
  .menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
  } 
  
  .hero {
    height: 70vh;
    background-attachment: scroll;
  }
  
  .content, .product-groups, .container {
    padding: 30px 20px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 20px;
  }
  .hero {
    display: none;
  }
}

@media (max-width: 576px) {
  .references-logos {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  
  .logo-box {
    width: 150px;
    height: 100px;
    padding: 10px;
  }
  
  .product-list {
    margin: 0;
    justify-content: space-around;
  }
  
  .product-item {
    width: 120px;
  }
  
  .product-item img {
    height: 182px;
  }
  
  .cover-letter h1 {
    font-size: 1.5rem;
  }
  
  .cover-letter p {
    font-size: 1rem;
  }
  
  .content h2, .product-groups h2, .main-title {
    font-size: 1.5rem;
  }
  
  .card-title {
    font-size: 1.2rem;
  }
  
  .card-description {
    font-size: 0.9rem;
  }
  
  .footer-left, .footer-links {
    width: 100%;
  }
      .footer-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    .hero {
    display: none;
  }
}

/* Mobil menü açıkken body scroll'unu engelle */
body.menu-open {
  overflow: hidden;
  height: 100vh;
}

/* Tüm resimler responsive olsun */
img {
  max-width: 100%;
  height: auto;
}

/* Hero section responsive ayarı */
.hero {
  background-size: cover;
  background-position: center;
}

/* Ürün kartları */
@media (max-width: 768px) {
  .product-item {
    width: calc(50% - 20px);
  }
}

@media (max-width: 480px) {
  .product-item {
    width: 100%;
  }
}

/* Flex container'lar için */
.flex-container {
  display: flex;
  flex-wrap: wrap;
}

/* Grid düzenleri için */
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

/* Kartlar için responsive ayar */
@media (max-width: 768px) {
  .cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .cards-container {
    grid-template-columns: 1fr;
  }
}


/* Ürünler Sayfası Giriş Bölümü */
.products-page-intro {
  padding: 12rem 5% 6rem 5%; /* Navbar'ın altından başla */
  text-align: center;
  background-color: white; /* Arka plan rengi */
  border-bottom: 1px solid #eee;
}

.products-page-intro h1 {
  margin-top: 3rem;
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
  color: var(--text-color); /* root'tan renk kullanıldı */
}

.products-page-intro p {
  font-size: 1.3rem;
  max-width: 90rem;
  margin: 0 auto;
  line-height: 1.6;
  color: var(--secondary-color); /* root'tan renk kullanıldı */
}

/* Kategori Filtreleme Bölümü */
.category-filter-section {
  padding: 3rem 5%;
  background-color: var(--background-color); /* root'tan renk kullanıldı */
  border-bottom: 1px solid #ddd;
  text-align: center;
}

.category-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  max-width: 90rem;
  margin: 0 auto;
}

.category-button {
  background-color: white;
  color: var(--text-color); /* root'tan renk kullanıldı */
  border: 1px solid var(--primary-color); /* root'tan renk kullanıldı */
  padding: 1.2rem 2.5rem;
  border-radius: 3rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap; /* Buton metninin tek satırda kalmasını sağlar */
}

.category-button:hover {
  background-color: var(--primary-color); /* root'tan renk kullanıldı */
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 .4rem 1rem rgba(0,0,0,0.1);
}

.category-button.active {
  background-color: var(--blue-color); /* root'tan renk kullanıldı */
  color: white;
  border-color: var(--blue-color);
  box-shadow: 0 .4rem 1rem rgba(0,0,0,0.15);
}

/* Ürün Grid Ayarları (Mevcut stillerle birleşecek) */
.products-grid {
  padding: 6rem 5%;
  background-color: var(--background-color);
}

.product-category {
  margin-bottom: 6rem;
  /* JavaScript ile gizlenecek/gösterilecek */
}

/* Kartların Kapsayıcısı */
.product-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  justify-content: center;
  align-items: stretch; /* Kartların eşit yükseklikte olmasını sağlar */
}

.product-card {
  background-color: white;
  border-radius: 1.2rem;
  box-shadow: 0 .8rem 2.5rem rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%; /* Tüm kartların eşit yükseklikte olmasını sağlar */
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 1.5ren 3.5rem rgba(0, 0, 0, 0.15);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.product-card h3 {
  font-size: 1.8rem;
  color: var(--text-color);
  margin: 2rem 2rem 1rem 2rem;
}

.product-card p {
  font-size: 1rem;
  color: var(--secondary-color);
  padding: 0 2rem 2rem 20rem;
  flex-grow: 1; /* Açıklamanın boş alanı doldurmasını sağlar */
}

.product-card .btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 1.2rem 2.5rem;
  border-radius: .8rem;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin: 0 2rem 2rem 2rem;
  align-self: flex-start; /* Butonu sola hizalar */
}

.product-card .btn:hover {
  background-color: var(--blue-color);
  transform: translateY(-2px);
}

#backToTopBtn {
    display: none; /* JavaScript ile görünür yapacağız */
    position: fixed; /* Sayfa kaysa bile yerinde sabit kalır */
    bottom: 2rem; /* Ekranın altından 20px yukarıda */
    right: 3rem; /* Ekranın sağından 30px içeride */
    z-index: 99; /* Diğer tüm elemanların üzerinde kalır */
    border: none;
    outline: none;
    background-color: var(--primary-color); /* Ana tema rengi */
    color: white;
    cursor: pointer;
    padding: 1.5rem;
    border-radius: 50%; /* Yuvarlak bir buton */
    font-size: 1.8rem;
    width: 5rem;  /* Genişlik ve yüksekliği eşitleyerek tam daire yapıyoruz */
    height: 5rem;
    box-shadow: 0 .4rem 1rem rgba(0,0,0,0.2);
    
    /* Yumuşak bir belirip kaybolma efekti için */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, background-color 0.3s;
}

#backToTopBtn.visible {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
}

#backToTopBtn:hover {
    background-color: var(--blue-color); /* Üzerine gelince renk değişimi */
}

/* responsive düzenlemeleri */
@media (max-width: 992px) {

      .product-list {
        display: flex; /* Öğeleri yan yana dizer */
        flex-wrap: nowrap; /* Öğelerin alt satıra inmesini engeller */
        overflow-x: auto; /* Yatayda taşan içeriğin kaydırılmasını sağlar */
        
        /* Kartlar arasındaki boşluğu ve kenar boşluklarını ayarlar */
        gap: 15px;
        padding: 20px 0;
        
        /* Kaydırmanın daha akıcı olması için */
        scroll-snap-type: x mandatory;
        
        /* Kaydırma çubuğunun görünümünü iyileştirir (opsiyonel ama şık) */
        scrollbar-width: thin; /* Firefox için */
        scrollbar-color: var(--primary-color) #e0e0e0; /* Firefox için */
    }

    /* Chrome, Safari ve Edge için kaydırma çubuğu stilleri */
    .product-list::-webkit-scrollbar {
        height: 8px;
        background: #e0e0e0;
        border-radius: 10px;
    }

    .product-list::-webkit-scrollbar-track {
        background: #e0e0e0;
        border-radius: 10px;
    }

    .product-list::-webkit-scrollbar-thumb {
        background-color: var(--primary-color);
        border-radius: 10px;
    }

    .product-item {
        flex: 0 0 160px; 
        width: 160px;
    }

  .modern-slider {
    margin: 0 10px;
  }

  .products-page-intro h1 {
    font-size: 2.5rem;
  }
  .products-page-intro p {
    font-size: 1.1rem;
  }

  .menu-toggle {
    display: block;
    margin-right: -4rem;
  }
  .navbar nav ul {
    position: fixed;
    top: 75px;
    left: 0;
    width: 100%;
    height: calc(100vh - 75px);
    background: white;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 40px 20px;
    box-shadow: var(--shadow);
    z-index: 999;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    visibility: hidden;
  }
  .navbar nav ul.active {
      transform: translateX(0);
      visibility: visible;
  }
  .menu-toggle.active .bar:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
  }
  .menu-toggle.active .bar:nth-child(2) {
      opacity: 0;
  }
  .menu-toggle.active .bar:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
  }
  .navbar nav ul li {
      justify-items: center;
      width: 100%;
      text-align: center;
      padding: 10px 0;
  }
}

@media (max-width: 768px) {
  .modern-slider {
    margin: 0 10px;
  }
  .products-page-intro {
    padding-top: 100px;
  }
  .products-page-intro h1 {
    font-size: 2rem;
  }
  .products-page-intro p {
    font-size: 1rem;
  }
  .category-buttons {
    gap: 10px;
  }
  .category-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  .products-grid {
    padding: 40px 3%;
  }
  .product-category h2 {
    font-size: 1.8rem;
    gap: 10px;
  }
  .product-category h2 i {
    font-size: 2rem;
  }
  .product-cards-container {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 576px) {
  
    .modern-slider {
    margin: 0 10px;
  }

  .products-page-intro {
    padding-top: 90px;
    padding-bottom: 40px;
  }
  .products-page-intro h1 {
    font-size: 1.8rem;
  }
  .products-page-intro p {
    font-size: 0.9rem;
  }
  .category-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .category-button {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
  }
  .products-grid {
    padding: 30px 15px;
  }
  .product-category h2 {
    font-size: 1.5rem;
  }
  .product-category h2 i {
    font-size: 1.8rem;
  }
  .product-cards-container {
    grid-template-columns: 1fr;
  }
  .product-card {
    margin-left: auto;
    margin-right: auto;
    max-width: 350px;
  }
}