@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;1,100;1,200&display=swap');


:root{
    --main-color:#ffffff;
    --black-color: #000000;
    --secondary-color: #fff1d6;
    --border: 0.1rem solid ngba(255, 255, 255 0.4);
}
*{
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    text-transform: capitalize;
    transition: 0.2s ease;
}



/*! base html codes  */
html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 9rem ;
    scroll-behavior: smooth;
}




.logo  {
    height: 15rem;
}

body {
    background-color: var(--main-color);
    height: 200vh;
}

section{
    padding: 3.5rem 7%;
}

.btn {
    margin-top: 1rem;
    display: inline-block;
    padding: 2rem 3.75rem;
    border-radius: 30rem;
    font-size: 1.7rem;
    color: #ffffff;
    background-color: var(rgb(0, 0, 0));
    cursor: pointer;

}

section {
  padding: 3.5rem 7%;
  position: relative; /* çizgi için referans */
}
/*! heading start */
.heading {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  text-transform: uppercase;
  color: var(--black-color, #000);
  width: 100%;
  margin: 3rem 0;
}
body.header-white .header {
  background-color: white !important;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.heading span {
  padding: 0 2rem;
  background-color: var(--main-color, #fff);
  position: relative;
  z-index: 1;
}

.heading::before,
.heading::after {
  content: "";
  flex-grow: 1;
  border-bottom: 0.15rem solid var(--black-color, #000);
  margin: 0 1rem;
}
/* Arama formunu start */
.navbar .search-form {
  position: absolute;
  right: 3%;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}


.search-form input[type="text"] {
  padding: 6px 12px;
  border-radius: 20px 0 0 20px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 1.4rem;
  width: 180px;
  transition: border-color 0.3s ease;
}

.search-form input[type="text"]:focus {
  border-color: #007bff;
}



.search-form button:hover {
  background-color: #0056b3;
}
.search-form input[type="text"] {
  width: 180px;
  opacity: 0;
  height: 40px;
  padding: 6px 12px;
  border-radius: 0 ;
  border: 1px solid #ccc;
  border-top: none;
  position: absolute;
  top: 180%;
  right: 0;
  box-sizing: border-box;
  font-size: 1.4rem;
  background-color: white;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  opacity: 0;
}

/* Arama kutusu aktif olduğunda */
.search-form input[type="text"].active {
  width: 500px;
   height: 60px;
  opacity: 1;
  padding: 6px 16px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background-color:  white;;
  pointer-events: auto;
}

/* Arama butonu */
#searchToggleBtn,
#favori-btn{
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1.8rem;
  color: black;;
  position: relative;
  z-index: 10;
  vertical-align: middle;
   margin-right: 30px;
}


/* Sağdan açılır panel favoriler start */

.favori-panel {
  position: fixed;
  top: 0rem;
  right: -100%;
  width: 320px;
  height: 100%;
  background-color: white;
  overflow-y: auto;
  box-shadow: -2px 0 10px rgba(0,0,0,0.1);
  z-index: 2000;
  padding: 2rem;
  transition: right 0.3s ease;
  outline: none;
}

.favori-panel.active {
  right: 0;
}

.favori-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 2rem;
  color: black;;
  position: relative;
  z-index: 10;
  vertical-align: middle;
  right :-50rem;
  margin-top: -0.2rem;
}
.favori-baslik {
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 15px 0;
  border-bottom: 2px solid #ccc;
  margin: 0 0 10px 0;
  color: black;
}
.favori-liste .favori-urun {
  display: flex;
  align-items: center;
  margin-bottom: 0rem;
  padding-top: 30px;
  border-top: 1px solid #ccc;
  padding: 10px 0;
}

.favori-liste .favori-urun img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  margin-right: 1rem;
}

.favori-ekle-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 2.4rem;
  color: #888;
  transition: color 0.3s ease;
  z-index: 10;
}

.favori-ekle-btn:hover {
  color: #dfd6cb;
}

.favori-kapat-btn {
  position: absolute;
  top: 0.5rem;
  right: 1.3rem;
  background: transparent;
  border: none;
  font-size: 3rem;
  cursor: pointer;
  color: black;
  font-weight: regular;
  z-index: 1001;
}
/* Hafif karartma */
#favoriOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4); /* Hafif karartma */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
  z-index: 1000;
}

/* Overlay aktifken görünür */
#favoriOverlay.active {
  opacity: 1;
  visibility: visible;
}
/* Hover efekti */
#searchToggleBtn:hover {
  color: #dfd6cb;
}
/* Arama formunu end */
.slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 2rem 0;
}

.slider {
  display: flex;
  gap: 1rem;
  transition: transform 0.3s ease;
}

.card {
  flex: 0 0 23%;
  background: #fff;
  border: 0.1rem solid #ddd;
  border-radius: 0.5rem;
  padding: 1rem;
  box-sizing: border-box;
  text-align: center;
}

.card img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  color: black;
  border: none;
  padding: 1rem 1.5rem;
  cursor: pointer;
  font-size: 3rem;
  z-index: 10;
  user-select: none;
}

.slider-btn.prev {
  left: 2rem;
}

.slider-btn.next {
  right: 2rem;
}


.slider-btn i {
  font-size: 2.4rem;
  color: var(--black-color);
  transition: transform 0.3s ease, color 0.3s ease;
   }
.slider-btn:hover i {
  transform: scale(1.2);
  color: var(--black-color);
}

.slider-more {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 23%;
  background: #eee;
  color: var(--black-color);
  font-weight: bold;
  text-decoration: none;
  border-radius: 0.5rem;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 1rem;
}
/*! heading end */

/*! scroll button start */
.scroll-top-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #dfd6cb;
  color: #ffffff;
  border: none;
  padding: 1rem 1rem;

  border-radius: 0;
  cursor: pointer;
  font-size: 1.8rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 10000;
}

.scroll-top-btn.show {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top-btn:hover {
  background-color:#dfd6cb;
}

/*! scroll button end */


/*! header start */
header .logo img {
    height: 15rem;

}
.logo {
    position: absolute;
    left: 3%;
}

.buttons {
    position: absolute;
    right: 3%;
    display: flex;
    gap: 1rem;
}
.header {
    display: flex;
    align-items: center;
    padding: 1rem 3%;
    border-bottom: 0.2rem solid transparent;
    position: sticky;
    top: 0;
    z-index: 1000;
    justify-content: center; /
    gap: 3rem;
    background-color: transparent;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    height: 10rem;
    box-sizing: border-box;
}


.header.scrolled {
  background-color: #fff;
  border-color: rgba(0, 0, 0, 0.05);
  box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.1);
}
.header .navbar a{
    margin: 0 1rem;
    font-size: 1.6rem;
    color:var(--black-color);
    border-bottom: 0.1rem solid transparent;
    justify-content: center;
    gap: 2rem;
    flex: 1;
    text-align: center;


}
.header .navbar .active,
.header .navbar a:hover{
    border-color: var(--black-color);
    padding-bottom: 0.5rem;
    border-bottom-width: 0.2rem;
}

.header .buttons button {
    cursor: pointer;
    font-size: 1.5rem;
    margin-left: 1rem;
    background-color: transparent;
    flex: 0 0 auto;
}

.navbar .menu {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 2rem;
}

.navbar .menu-item {
    position: relative;
}

.navbar .menu-item a {
    padding: 1rem;
    margin: 0;
    display: inline-block;
    text-align: center;
    line-height: normal;
    vertical-align: middle;
    cursor: pointer;
}

/* Ana dropdown açıldığında göster */
.navbar .menu-item.dropdown:hover > .dropdown-menu {
    display: flex; /* flex yaparak yan yana sütunlar için */
}

/* Dropdown menü düzeni */
.dropdown-menu {
    display: none;
    position: fixed;
    top: 10rem;
    left: 0;
    width: 100vw;
    height: 75vh;
    background-color: #fff;
    z-index: 1000;
    padding: 3rem 2rem 3rem 5rem;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    flex-direction: row;
    gap: 3rem;
}

/* Ortadaki dikey çizgi */


/* Dropdown aktifken flex */
.dropdown-menu.show {
    display: flex;
}

/* Dropdown menüdeki liste elemanları */
.dropdown-menu li {
    margin-bottom: 1rem;
    list-style: none;
    position: relative;
}

/* Linkler */
.dropdown-menu li a {
    color: var(--black-color);
    font-size: 1.6rem;
    padding: 1rem 0;
    text-align: left;
    display: block;
}

/* Alt menü (submenu) */
.submenu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    background: #fff;
    min-width: 200px;
    padding: 1rem 1.5rem;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
    border-radius: 0 6px 6px 6px;
    z-index: 1100;
}

/* Alt menüyü gösterme (hover ile) */
.menu-item.dropdown-submenu:hover > .submenu {
    display: block;
}

/* Dropdown submenu elemanı */
.dropdown-menu > li.menu-item.dropdown-submenu {
    position: relative;
    padding-right: 1.5rem;
    width: fit-content;
}


.katalog-icerik {
    display: flex;
    width: 100%;
    height: 100%;
}
/* Alt menü başlığı */
.dropdown-submenu > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Ok ikonu */
.dropdown-submenu > a i {
    margin-left: 4rem;
    font-size: 0.7rem;
    color: #888;
}

/* Menü içeriği düzeni (ana kategori ve alt kategori bölümleri) */
.katalog-icerik {
    display: flex;
    height: 100%;
}

/* Sol sütun - ana kategoriler */
.katalog-sol {
    width: 30%;
    padding-right: 4rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
     border-right: 1px solid #ccc;



}
.katalog-sag {
    padding-left: 10rem; /* çizgiden uzaklaştırır */
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Ana kategori başlığı ve linkleri */
.katalog-sol .kategori {
    font-size: 2rem;
    cursor: pointer;
}

/* Sağ sütun - alt kategoriler */
.katalog-sol .kategori-item > a,
.katalog-sag a {
    font-size: 1.6rem;
    color: var(--black-color);
    text-decoration: none;
    padding: 0.5rem 0;
    display: block;
    cursor: pointer;

}

.katalog-sol .kategori-item > a:hover,
.katalog-sag a:hover {
    font-weight: 600;
    color: #000;

}

/* Alt kategori listesi */
.altkategori {
    display: flex; /* Dropdown menüde görünür olsun */
    flex-direction: column;
    gap: 1rem;
}

/* Alt kategori linkleri */
.altkategori a {
    color: var(--black-color);
    font-size: 1.5rem;
    text-decoration: none;
}

/* Hover efekti linklerde */
.dropdown-menu li a:hover,
.altkategori a:hover {
    color: #000;
    font-weight: 600;
}
/*! header end */
/*! home start */
.home{
    min-height: 100vh;
    no-repeat;
    background-size: cover;
    background-position: center;
    margin-top: -11.5rem;
    display: flex;
    align-items: center;

}
.home .content {
    max-width: 60rem;
}
.home .content h3{
    font-size: 6rem;
    color: #ffffff;
}
/*! home end */

/*! kategori sayfası start */
.kategori-sayfasi {
  padding: 3.5rem 7%;
}

.urun-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.urun-card {
  background-color: transparent;
  position: relative;
  border: none;
  padding: 0;
  text-align: center;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.urun-card img {
  width: 100%;
  height: 40rem;
  object-fit: cover;
  border-radius: 0;
    object-position: center;
  display: block;
  margin-bottom: 1rem;
}

.urun-card h3 {
  font-size: 1.7rem;
  margin: 0.5rem 0;
  color: var(--black-color);
font-weight: 300;
}

.urun-card p {
  font-size: 1rem;
  color: #555;
font-weight: 300;
}

.urun-card:hover {
  transform: scale(1.02);
  box-shadow: transparent;
}
.urun-kart-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
/*! kategori sayfası end */


/*! ürün detay sayfası start */
.urun-detay-container {
  display: flex;
  gap: 10rem;
  max-width: 100rem;
  margin: 8rem auto;
  align-items: flex-start;
}

/* Ürün slider container */
.urun-slider {
  position: relative;
  width: 600px;
  height: 550px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 0rem;
}

.urun-slider .slide {
  display: none;
  width: 100%;
  height: 100%;

}
.urun-slider .slide.active {
  display: block;
}
.urun-slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;       /* kırpma ve zoom */
  object-position: center; /* ortala */
  display: block;
}

/* Navigasyon butonları */
.urun-slider .prev,
.urun-slider .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  padding: 0.5rem 1rem;
  color: #888;
  background-color: transparent;
  border: none;
  cursor: pointer;
  z-index: 100;
  border-radius: 1rem;
  width: 4rem

}
.urun-slider .prev { left: 1rem; }
.urun-slider .next { right: 1rem; }
.urun-slider .next:hover {
  background: #dfd6cb;
}
.urun-slider .prev:hover {
  background: #dfd6cb;
}

/* Lightbox arka plan ve kutu */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(6px); /* arka plan blur */
  background-color: rgba(0,0,0,0.5);
  align-items: center;
  justify-content: center;
}

/* Lightbox görsel kutusu */
.lightbox-modal .lightbox-slider {
  position: relative;
  width: 600px;   /* ürün slider boyutu */
  height: 550px;  /* ürün slider boyutu */
}

/* Her bir slide */
.lightbox-modal .lightbox-slide {
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox-modal .lightbox-slide.active {
  display: flex;
}

/* Görseller */
.lightbox-modal .lightbox-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0.5rem;
}

/* Kapatma butonu */
.lightbox-modal .close-lightbox {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  z-index: 20;
}

/* Lightbox navigasyon butonları */
.lightbox-modal .prev,
.lightbox-modal .next {
position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  padding: 0.5rem 1rem;
  color: #888;
  background-color: transparent;
  border: none;
  cursor: pointer;
  z-index: 100;
  border-radius: 1rem;
  width: 4rem
}
.lightbox-modal .next:hover {
  background: #dfd6cb;
}
.lightbox-modal .prev:hover {
  background: #dfd6cb;
}
.lightbox-modal .prev { left: 1rem; }
.lightbox-modal .next { right: 1rem; }


.urun-detay-info {
  flex: 1;
}
.urun-detay-container.urun-detay-info h2 {

    font-size: 2.5rem;
  margin-bottom: 1rem;
}

.urun-detay-info p {
     font-family: "Poppins", sans-serif;
    font-weight: 200;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}


.urun-detay-info .add-to-cart {
  background-color: var(--black-color);
}

.urun-detay-baslik-underline {
  font-size: 2rem;
  font-weight: 600;
  padding-bottom: 0.1rem;
  border-bottom: 0.2rem solid var(--black-color);
  display: inline-block;
  text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.urun-detay-baslik {
  font-size: 2.8rem;
  margin-bottom: 3rem;
  margin-top: -2rem;
  font-weight: bold;
}
.urun-detay-sayfa .urun-detay-favori-container {
    position: relative; /* absolute için referans */
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 2rem;
}

.urun-detay-sayfa .urun-detay-favori-container .favori-ekle-btn {
    position: absolute;
    top: 0; /* üstten hizala */
    left: 0; /* soldan hizala */
    background-color: #dfd6cb;
    border: none;
    cursor: pointer;
    font-size: 2.4rem;
    color: #888;
    width: 5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    transition: color 0.3s ease, background-color 0.3s ease;
}



.urun-detay-favori-container .favori-ekle-btn:hover {
  color: #888; /* hover efekt rengi */
}
 /*! ürün detay sayfası end */

/* Benzer Ürünler Başlığı */

/*! blog_list sayfa start */
.blog-list {
  max-width: 990px; /* İstersen genişliği buradan ayarla */
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  box-sizing: border-box;
}

.blog-card {
  background: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  padding: 2rem;
  border-radius: 0;
}

.blog-card img {
  width: 100%;
  height: 50rem;
  object-fit: cover;
  margin-bottom: 1rem;
  border-radius: 0;
}

.blog-card h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.blog-card p {
  font-size: 1.4rem;
  color: #666;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-banner {
  width: 100%;
  height: 50rem;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: white;
  text-align: center;
  margin-bottom: 2rem;
}

/*! blog_list sayfa end */
/*! blog detay sayfa start */
.blog-detay-container {
  max-width: 1000px;
  margin: 3rem auto;
  padding: 0rem;
  background-color: #fff;
  box-shadow: none;
  border-radius: 1rem;
  font-size: 1.6rem;
  line-height: 1.7;
  color: #333;
}

.blog-detay-container h1 {
  font-size: 2.8rem;
  margin-bottom: 2rem;
  color: #111;
     text-align: center;
}

.blog-detay-container img {
  width: 100%;
  max-height: 900px;
  object-fit: cover;
  margin-bottom: 2rem;
  border-radius: 0rem;
    text-align: center;
}

.blog-detay-container p {
  margin-bottom: 2rem;
    text-align: center;
}

.blog-detay-container a {
  display: inline-block;
  margin-top: 2rem;
  color: #007BFF;
  text-decoration: none;
  font-weight: bold;
}

.blog-detay-container a:hover {
  text-decoration: underline;
}
/*! blog detay sayfa end */

.breadcrumb {
  font-size: 1.6rem;
  margin-top: 4rem;
  margin-bottom: 2rem;

  padding-left: 40px;
    text-transform: uppercase;

}

.breadcrumb a {
  color: #676767;
  text-decoration: none;
     margin-right: 0.8rem;
    margin-left: 0.8rem;
    text-transform: uppercase;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  color: #6c757d;
}

/*! anasayfa slider yeni gelener start */
/* Slider ana container */
/* Slider container */
.yeni-gelenler-slider {
  width: 100%;
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
}

/* Wrapper (flex ve yatay kaydırılabilir) */
.yeni-gelenler-swiper .swiper-wrapper {
  display: flex;
  transition: transform 0.3s ease;
  will-change: transform;
}

/* Slide kartları (3’lü genişlikte) */
.yeni-gelenler-swiper .swiper-slide {
  flex: 0 0 calc((100% / 3) - 16px);
  margin-right: 24px;
  box-sizing: border-box;
}

/* Son kartın margin sağını kaldırmak için */
.yeni-gelenler-swiper .swiper-slide:last-child {
  margin-right: 0;
}

/* Kartların kendi CSS’i (senin verdiğin) */
.yeni-gelenler-card {
  background: transparent;
  border: none;
  border-radius: 0rem;
  padding: 1rem;
  box-sizing: None;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.yeni-gelenler-card:hover {
  transform: translateY(-5px);
  box-shadow: transparent;
}

.yeni-gelenler-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 0rem;
  margin-bottom: 1rem;
  user-select: none;
}

.yeni-gelenler-card h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  color: #222;
  font-weight: 200;
}

.yeni-gelenler-card p {
  font-size: 1.3rem;
  color: #555;
  flex-grow: 1;
  user-select: none;
}

/* Navigasyon butonları */
.yeni-gelenler-prev,
.yeni-gelenler-next {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  background: transparent;
  border-radius: 0;
  box-shadow: 0;
  color: #000000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, color 0.3s ease;
  z-index: 10;
     font-size: 1.5rem;
}

.yeni-gelenler-prev:hover,
.yeni-gelenler-next:hover {
  background: #dfd6cb;
  color: #fff;
}

.yeni-gelenler-prev {
  left: 1rem;
}

.yeni-gelenler-next {
  right: 1rem;
}

/* Pagination */
.yeni-gelenler-pagination {
  text-align: center;
  margin-top: 1.5rem;
}

.yeni-gelenler-pagination .swiper-pagination-bullet {
  background: transparent;
  opacity: 1;
  width: 12px;
  height: 12px;
  margin: 0 5px !important;
  border-radius: 0;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.yeni-gelenler-pagination .swiper-pagination-bullet-active {
  background: #222;
  }

  .anasayfa-slider-alt-cizgi {
  width: 100%;
  height: 1px;
  background-color: #ddd;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-top: 1rem;
  margin-bottom: 1rem;
}
/* Hakkımızda start */

/* Banner */
.hakkımızdabanner {
  width: 100vw;
  height: 50vh;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.hakkımızdabanner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Hikayemiz */
.hikayemiz {
  text-align: center;
  margin: 3rem auto 5rem;
  max-width: 900px;
  font-size: 2.8rem;
  line-height: 1.7;
  color: #333;
}

.hikayemiz h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: #000;
  text-align: center;
}

.magazalar-section {
  max-width: 1200px;
  margin: 0 auto 4rem;
  padding: 0 1rem;
}

.magazalar-section h2 {
  font-size: 2.8rem;
  color: #000; /* var(--black) yerine doğrudan renk */
  text-align: center;
  margin-bottom: 1rem;
}

.section-divider {
  border: none;
  height: 2px;
  background-color: #ccc;
  margin-bottom: 2rem;
  width: 100%;
}

.magazalar-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: nowrap;
  margin-top: 4rem;
}

.magaza {
  flex: 0 0 40%;
  min-height: 400px;
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
  padding: 1rem 1.2rem 2rem;
  display: flex;
  flex-direction: column;
  cursor: default;
  transition: box-shadow 0.3s ease;
}

.magaza:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

.magaza h3 {
  font-size: 2rem;
  color: #000;
  margin-bottom: 1rem;
  text-align: center;
}

.magaza iframe {
  width: 100%;
  height: 350px;
  border-radius: 0px;
  border: none;
  margin-bottom: 1rem;
}

.magaza p {
  font-size: 1.5rem;
  color: #444;
  margin-top: 2rem;
  line-height: 1.4;
  text-align: center;
}

.search-form input:focus {
  outline: none;
  border-color: #0056b3;
}

.search-form button:hover {
  background-color: #0056b3;
}

/* === FİLTRE PANELİ === */
.filtre-form {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 30rem;
  max-width: 90%;
  height: 100vh;
  background-color: #fff;
  padding: 1.5rem 2rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
  overflow-y: auto;
  z-index: 1100;
  transition: transform 0.3s ease;

}

.filtre-form.active {
  display: block;
}

.filtreToggleBtn,
#filtreToggleBtn {
  position: relative;;
   width: 120px;
  left: 5rem;
  z-index: 900;
  padding: 0.4rem 0.8rem;
  background-color: #000000;
  color: white;
  border: none;
  border-radius: 0;
  cursor: pointer;
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 5rem;
}

/* === KARARTMA === */
.filtre-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1050;
  display: none;
}
.filtre-overlay.active {
  display: block;
}

/* === GRUP ÇİZGİLERİ === */
.filter-group::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #ccc;
  margin: 1rem 0;
}

/* === SEÇENEK PANELİ === */
.filter-options {
  display: none;
}
.filter-options.active {
  display: block;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  font-size: 1.3rem;
  border: 1px solid #ccc;
  border-radius: 0.6rem;
  margin-bottom: 0.6rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.filter-option:hover {
  background-color: #f0f0f0;
}

.filter-option.selected {
  background-color: #e2dcd2;
  border-color:#dfd6cb;
  font-weight: 200;
  position: relative;
}


/* === FİLTRE BAŞLIĞI: Altın Ayarı ve Renk düğmesi sade görünüm === */
.filter-header {
  all: unset;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.8rem;
  font-weight: 600;
  color: #000000;
  cursor: pointer;
  margin: 1rem 0;
}
/* === FİLTRELE Butonu === */
.apply-btn {
  display: block;
  width: 100%;
  padding: 1rem;
  margin-top: 2rem;
  background-color: #000000;
  color: white;
  font-size: 1.4rem;
  font-weight: 600;
  border: none;
  border-radius: 0.6rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.apply-btn:hover {
  background-color: #888;
}

/* === TEMİZLE Butonu === */
.clear-btn {
  display: block;
  width: 100%;
  padding: 1rem;
  margin-top: 1rem;
  background-color: transparent;
  color: #000000;
  font-size: 1.4rem;
  font-weight: 600;
  border: 1px solid #ccc;
  border-radius: 0.6rem;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.clear-btn:hover {
  background-color: #888;
}
/* === panigation start=== */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
  gap: 1rem;
  font-family: Arial, sans-serif;
  font-size: 1.2rem;
}

.pagination-previous,
.pagination-next {
  background-color: transparent;
  color: #000000;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  border: 1.8px solid #000000 ;
}

.pagination-previous.disabled,
.pagination-next.disabled {
  opacity: 0.5;
  cursor: default;
}

.pagination-list {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
}

.pagination-link {
  display: block;
  padding: 0.5rem 0.9rem;
  border-radius: 0px;
  background-color: #000000;;
  border: 1.8px solid black;
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.2s ease;
}

.pagination-link:hover {
  background-color: #dfd6cb;
}

.pagination-link.is-current {
  background-color: #transparent;
  color: white;
  cursor: default;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-wrapper > *:not(.site-footer) {
  flex-grow: 1;
}

/* ---------- footer ----------- */

.site-footer {
  background-color: #f5f5f5;
  color: #888;
  padding: 6rem 2rem;
  font-size: 1.4rem;
  margin-top: auto;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1)
}


.footer-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 120rem;
  margin: 0 auto;
  text-align: center;
}

.footer-column {
  flex: 1;
  min-width: 20rem;
}

.footer-column h4 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #000000;
  font-weight: bold;
  text-transform: uppercase;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin: 0 auto;
}

.footer-column ul li {
text-align: center;
  margin-bottom: 0.8rem;
}

.footer-column ul li a {
  color: #888;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #000000;
}


.footer-logo-container {
  text-align: center;
  margin-top: 1rem;
}

.footerlogo {
  max-width: 20rem;
  height: auto;

}


.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 1.2rem;
  color: #888;
}
/* ---------- anasayfa banner kategori kartları ----------- */

.bileklikbanner {
  position: relative;
  width: 100%;
  height: 70vh;
  margin-top: 1rem;
  overflow: hidden;
  border-radius: 0rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.bileklikbanner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.bileklikbanner:hover img {
  transform: scale(1.02);
}

.bileklikbanner-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.bileklikbanner-overlay h2 {
  font-size: 3rem;
  margin-bottom: 3rem;
}

.kesfet-btn {
  display: inline-block;
  padding: 1rem 4rem;
  font-size: 1.6rem;
  color: white;
  background-color: transparent;
  border: 2px solid white;
  border-radius: 5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.kesfet-btn:hover {
  background-color: #dfd6cb;
  color: white;
  border-color: white;
}
.anasayfa-kategori-row {
  display: flex;
  height: 50%;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.anasayfa-kategori-box {
  position: relative;
  flex: 1 1 calc(50% - 1rem);
   width: 22rem;
  height: 35rem;
  overflow: hidden;
  border-radius: 0rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.anasayfa-kategori-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.anasayfa-kategori-box:hover img {
  transform: scale(1.03);
}

.anasayfa-kategori-icerik {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
}

.anasayfa-kategori-icerik h2 {
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.anasayfa-kesfet-btn {
  display: inline-block;
  padding: 1rem 4rem;
  font-size: 1.6rem;
  color: white;
  background-color: transparent;
  border: 2px solid white;
  border-radius: 5rem;
  text-decoration: none;
  transition: all 0.3s ease;

.anasayfa-kesfet-btn:hover {
  background-color: #dfd6cb;
}
.anasayfa-blog {
  padding: 3rem 2rem;
  background-color: #f9f9f9;
  text-align: center;
}

.anasayfa-blog > .heading {
  font-size: 2.4rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 2rem;
  position: relative;
}

.anasayfa-blog > .heading span {
  border-bottom: 3px solid #4db6ac; /* Turkuaz alt çizgi */
  padding-bottom: 0.5rem;
}

.anasayfa-blog-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.anasayfa-blog-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  max-width: 280px;
  flex: 1 1 280px;
  text-decoration: none;
  color: #333;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.anasayfa-blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.anasayfa-blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #ddd;
}

.anasayfa-blog-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  padding: 1rem;
  margin: 0;
}


