/*========================================
            INDEX PAGE STYLE
=========================================*/
.home-index-slider .dandik {
  right: 30px;
}

.home-index-slider .bamdik {
  left: 30px;
}

.home-index-slider .slick-dots {
  bottom: 50px;
}

.banner-part {
  padding: 0;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
  min-height: 705px;
  display: flex;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.banner-part::before {
  position: absolute;
  content: '';
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: rgba(0, 0, 0, 0.1);
}

.banner-part .container {
  padding: 50px 15px 60px;
  width: 100%;
}

.banner-part .row {
  align-items: center;
}

.banner-content h1 {
  text-transform: capitalize;
  margin-bottom: 22px;
}

.banner-content p {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 50px;
}

.banner-btn .btn {
  margin-right: 15px;
}

.banner-img {
  height: 100%;
  display: flex;
  align-items: center;
}

.banner-img img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 767px) {
  .banner-part {
    min-height: 560px;
  }
  .banner-part .container {
    padding: 30px 15px;
  }
  .banner-content h1 {
    font-size: 38px;
    line-height: 48px;
  }
  .banner-img {
    display: none;
  }
  .banner-btn .btn {
    margin: 8px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .banner-part {
    min-height: 500px;
  }
  .banner-part .container {
    padding: 40px 15px;
  }
  .banner-content h1 {
    font-size: 32px;
    line-height: 42px;
  }
  .banner-btn .btn {
    padding: 14px 22px;
    margin-right: 10px;
  }
}

@media (min-width: 992px) and (max-width: 1399px) {
  .banner-part {
    min-height: 550px;
  }
}

@media (min-width: 1400px) {
  .banner-part {
    min-height: 705px;
  }
}

.suggest-slider li {
  margin: 0px 10px;
}

/* Yeni Kategori Kartı Stilleri */
.suggest-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  position: relative;
  padding: 20px;
}

.suggest-card::before {
  display: none;
}

.suggest-card .category-circle {
  position: relative;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
  background: white;
}

.suggest-card .category-images {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.suggest-card .category-images img {
  position: absolute;
  object-fit: contain;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.15));
  transform: translateX(0) rotate(0deg);
}

/* Hover Efekti */
.suggest-card:hover .category-images img {
  transform: translateX(0) translateY(-10px) rotate(0deg) scale(1.15);
}

.suggest-card:hover .category-circle {
  transform: scale(1.05);
}

.suggest-card h5 {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  color: #333;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  text-shadow: none;
  margin-top: 10px;
  transition: color 0.3s ease;
}

.suggest-card h5 span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #888;
  margin-top: 3px;
}

.suggest-card:hover h5 {
  color: var(--primary);
  font-weight: 600;
}

@media (max-width: 1024px) {
  .suggest-card .category-circle {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 575px) {
  .suggest-slider li {
    margin: 0px 5px;
  }

  .suggest-card {
    padding: 10px;
  }

  .suggest-card .category-circle {
    width: 150px;
    height: 150px;
  }

  .suggest-card h5 {
    font-size: 14px;
  }
}

.promo-img {
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
}

.promo-img a {
  width: 100%;
}

.promo-img a img {
  width: 100%;
  border-radius: 8px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.promo-img a img:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

@media (max-width: 767px) {
  .promo-img {
    margin: 12px 0px;
  }
}

.new-slider li {
  margin: 0px 12px;
}

@media (max-width: 575px) {
  .new-slider .product-card {
    width: 220px;
  }
}

.testimonial-slider .slick-slide {
  opacity: 0.3;
  -webkit-transform: scale(0.75);
  transform: scale(0.75);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.testimonial-slider .slick-center {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.testimonial-slider .dandik,
.testimonial-slider .bamdik {
  opacity: 1;
  visibility: visible;
}

.testimonial-slider .dandik {
  right: 50px;
}

.testimonial-slider .bamdik {
  left: 50px;
}

.brand-slider .dandik,
.brand-slider .bamdik {
  top: 35%;
}

.blog-slider .blog-card {
  margin: 0px 15px 25px;
}

.blog-slider .dandik,
.blog-slider .bamdik {
  top: 43%;
}

@media (max-width: 767px) {
  .blog-slider .blog-card {
    margin: 0px 10px 25px;
  }

  /* Öne Çıkan Ürünler - Mobil için product-actions düzeni */
  .feature-part .product-actions {
    flex-direction: column;
    gap: 10px;
  }

  .feature-part .product-add {
    width: 100%;
  }
}
