body .categories_img {
    margin-bottom: 1rem;
}
body .main-banner.fullBanner {
    margin-bottom: 20px !important;
    margin-bottom: 1rem !important;
}
/* Instagram Stories Slider Stili */
.instagram-stories-container {
  position: relative;
  max-width: 100%;
  margin: 20px auto;
  overflow: hidden;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 1px 0px 8px 5px rgba(0, 0, 0, 0.1);
}
.instagram-stories {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 25px 15px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.instagram-stories::-webkit-scrollbar {
  display: none;
}
.story-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: -20px 13px;
  cursor: pointer;
}
.story-circle {
  width: 150px;
  height: 150px;
  border-radius: 100%;
  background: orange;
  padding: 4px;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.story-circle img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 2px solid white;
  box-sizing: border-box;
}
.story-username {
  font-size: 14px;
  font-size: medium;
  margin: 5px;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #0e3604;
}
/* Story Popup Stili */
.story-popup-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.story-popup-content {
  position: relative;
  width: 500px;
  height: 700px;
  background-color: #ff9600;
  border-radius: 8px;
  overflow: hidden;
}
.story-popup-close {
  position: absolute;
  top: 20px;
  right: 5px;
  width: 40px;
  height: 40px;
  background-color: #ff9600;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  z-index: 10;
}
.story-popup-image {
  width: 500px;
  height: 700px;
  object-fit: cover;
}

/* Story Popup Navigasyon Butonlarý */
.story-popup-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: white;
  color: black;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 24px;
  z-index: 10;
  font-weight: bold;
}

.prev-story {
  left: 10px;
}

.next-story {
  right: 10px;
}

@media (max-width: 768px) {
  .story-circle {
    width: 50px;
    height: 50px;
  }
  .story-item {
     display: flex;
    width: 105px;
    margin: 5 10px;
    align-items: center;
     cursor: pointer;
  }
  
  
  
  .story-popup-content {
    width: 90%;
    height: auto;
    max-height: 80vh;
  }
  
  .story-popup-image {
    width: 100%;
    height: auto;
  }
  
  .story-popup-nav {
    width: 30px;
    height: 30px;
    font-size: 18px;
  }
}

