.main-slider {
  width: 100%;
  background: #f0f0f0;
  padding: 40px 0;
}

.slider-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.slider-wrapper {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}

/* Asosiy rasm qismi */
.slider-main {
  flex: 1;
  height: 550px;
  background-color: #fff;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.slider-main .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.slider-main .slide.active {
  opacity: 1;
  z-index: 1;
}

.slider-main img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Rasm to‘liq va chiroyli chiqadi */
  background-color: #fff;
}

/* Thumbnail'lar o‘ng tomonda */
.slider-thumbnails {
  width: 140px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
  max-height: 550px;
}

.thumbnail {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  opacity: 0.6;
  border: 2px solid transparent;
  transition: 0.3s ease;
}

.thumbnail:hover,
.thumbnail.active {
  opacity: 1;
  border: 3px solid #007bff;
}

/* Responsivlik */
@media (max-width: 768px) {
  .slider-wrapper {
    flex-direction: column;
  }

  .slider-main {
    height: 300px;
  }

  .slider-thumbnails {
    flex-direction: row;
    width: 100%;
    max-height: none;
    overflow-x: auto;
  }

  .thumbnail {
    height: 60px;
    width: 100px;
  }
}



/* Kategoriyalar grid */
.category-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.category-box {
  width: 230px;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.category-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.category-box img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 15px;
}

.category-box .title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.category-box .title a {
  text-decoration: none;
  color: #0074cc;
}

.category-box .desc {
  font-size: 14px;
  color: #555;
}


.item-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 25px; /* ikonka joyiga bo‘sh joy */
}

.dropdown-arrow {
  font-size: 12px;
  color: #777;
  margin-left: 5px;
}

/* Agar absolute holat istasangiz, alternat variant */
.item-link .dropdown-arrow {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: #888;
}
