  /* Reducing padding and margin to lower the overall height */
  .sticky-wrapper {
    padding-top: 1px;
    padding-bottom: 2px;
  }

  .sticky-active .container {
    padding-top: 0;
    padding-bottom: 0;
  }

  .header-logo {
    padding-top: 1px; /* Reduced padding */
    padding-bottom: 2px; /* Reduced padding */
  }

  .main-menu {
    padding-top: 1px; /* Reduced padding */
    padding-bottom: 2px; /* Reduced padding */
  }

  .header-btns {
    padding-top: 1px; /* Reduced padding */
    padding-bottom: 2px; /* Reduced padding */
  }

.shop-button button {
  background: linear-gradient(45deg, rgba(136, 34, 32, 0.8), rgba(207, 180, 10, 0.8)); /* Transparent color gradient */
  color: white; /* Text color white */
  font-size: 16px; /* Slightly smaller font size */
  padding: 8px 20px; /* Reduced padding */
  border: none; /* No border */
  border-radius: 50px; /* Rounded corners */
  font-weight: bold; /* Bold text */
  text-transform: uppercase; /* Uppercase text */
  cursor: pointer; /* Pointer cursor */
  transition: all 0.3s ease-in-out; /* Transition effect */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Shadow */
  width: auto; /* Automatic width */
}

.shop-button button:hover {
  transform: translateY(-5px); /* Hover effect: Move up */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); /* Hover effect: Grow shadow */
}

.shop-button button:active {
  transform: translateY(2px); /* Click effect */
}

/* For mobile screens */
@media screen and (max-width: 768px) {
  .shop-button button {
    display: block; /* Show the button */
    position: fixed; /* Fixed position at the bottom */
    bottom: 0; /* Stick to the bottom */
    left: 50%; /* Center it horizontally */
    transform: translateX(-50%); /* Adjust for exact centering */
    z-index: 9999; /* Ensure it appears above other elements */
    padding: 12px 24px; /* Adjust padding */
    border-radius: 30px; /* More rounded corners */
    width: auto; /* Automatic width */
  }
}

@media screen and (max-width: 480px) {
  .shop-button button {
    display: block; /* Show the button */
    position: fixed; /* Fixed position */
    bottom: 0; /* Stick to the bottom */
    left: 50%; /* Center it */
    transform: translateX(-50%); /* Adjust horizontal centering */
    z-index: 9999; /* Ensure it's above other content */
    padding: 10px 20px; /* Adjust padding for smaller screens */
    width: auto; /* Auto width */
  }
}


  .custom-container {
    font-family: Arial, sans-serif;
  }

  .custom-icon-box2 {
    position: relative;
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease;
    flex-shrink: 0;
    flex-basis: 18%;
  }

  .custom-icon-box2:hover {
    transform: scale(1.1);
  }

  .custom-icon-circle2 {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, rgba(255, 152, 0, 0.8), rgba(255, 235, 59, 0.8));
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    transition: box-shadow 0.3s ease-in-out, background 0.5s ease;
  }

  .custom-icon-box2:hover .custom-icon-circle2 {
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
    background: linear-gradient(45deg, rgba(255, 235, 59, 0.8), rgba(255, 152, 0, 0.8));
  }

  .custom-icon-circle2 .custom-icon2 {
    width: 80%;
    max-width: 70px;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(0);
  }

  .custom-text2 {
    font-size: 12px;
    margin-top: 8px;
    color: #333;
    line-height: 1.4;
  }

  @media (max-width: 768px) {
    .custom-icon-box2 {
      flex-basis: 18%;
      margin-right: 5px;
    }

    .custom-icon-box2:hover {
      transform: none;
    }

    .custom-text2 {
      font-size: 11px;
    }

    .custom-icon-circle2 {
      width: 50px;
      height: 50px;
    }

    .custom-icon-box2 {
      gap: 5px;
    }
  }

  @media (min-width: 769px) {
    .custom-icon-box2 {
      gap: 3px;
    }

    .custom-icon-circle2 {
      width: 120px;
      height: 120px;
    }

    .custom-icon-circle2 .custom-icon2 {
      max-width: 60px;
    }
  }
  
  .nav-tabs {
    display: flex;
    flex-wrap: nowrap; /* Kategorileri tek satırda göster */
    justify-content: center; /* Kategorileri yatayda ortala */
    align-items: center; /* Kategorileri dikeyde ortala */
}

.nav-tabs .nav-link {
    flex: 1 0 auto; /* Kategorilerin genişliği içerik kadar olacak */
    margin: 5px;
    padding: 10px;
    padding-left: 2px; /* 2px soldan boşluk ekle */
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #f8f8f8;
    transition: background 0.3s ease;
    display: flex; /* Allow text centering using flexbox */
    justify-content: center; /* Center text horizontally */
    align-items: center; /* Center text vertically */
}

.nav-tabs .nav-link.active {
    background-color: #ddd;
}

@media (max-width: 768px) {
    .nav-tabs .nav-link {
        flex: 1 0 30%; /* Orta boyutlu ekranlar için her kategori %30 genişlikte */
    }
}

@media (max-width: 576px) {
    .nav-tabs {
        flex-direction: column; /* Kategorileri dikey sıraya yerleştir */
        align-items: center; /* Kategorileri ortala */
    }

    .nav-tabs .nav-link {
        width: 100%; /* Her kategori %100 genişlikte olacak */
        margin-bottom: 10px; /* Kategoriler arasına boşluk ekle */
    }
}

  /* Hero Area Carousel */
  .hero-carousel2 {
    width: 100%;
    max-width: 1920px; /* Maksimum genişlik */
    margin: 0 auto;    /* Ortalamak için */
  }

  /* Her banner'ı üstte sıfırlamak için */
  .hero-style2 {
    background-size: cover;           /* Görsellerin boyutunu kaplayacak şekilde ayarla */
    background-position: top center;  /* Görseli üst kısma dayalı konumlandır */
    background-repeat: no-repeat;     /* Görseli tekrar ettirme */
    height: 600px;                    /* Banner boyutunu belirle */
    position: relative;
    margin-top: 0;                    /* Üst boşluğu kaldır */
    padding-top: 0;                   /* Üst padding'i kaldır */
  }

  /* İçeriği ayarlamak için */
  .hero-content {
    color: white;                    /* İçeriğin rengini beyaz yap */
  }

  /* Container içinde içerikleri ortalamak */
  .container {
    position: relative; /* İçeriği ortalamak için */
    z-index: 2;         /* İçeriğin üstte görünmesini sağlamak için */
  }

  /* Carousel noktalarının yerini ayarlamak */
  .vs-carousel .slick-dots {
    bottom: 20px;  /* Noktaların alt kısımda görünmesini sağlar */
  }

  .vs-carousel .slick-dots li button {
    background-color: #fff; /* Nokta rengi */
    border-radius: 50%;      /* Nokta şekli */
  }



  
  
