.kategori-slider-section {
  padding: 40px 0;
  position: relative;
}

.kategori-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto 30px;
  font-size: 24px;
}

.slider-controls-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}

.navigation-buttons {
  display: flex;
  gap: 10px;
}

.slider-outer-wrap {
  position: relative;
  user-select: none;
}
.slider-outer-wrap > div {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.kategori-item {
  width: calc(25% - 20px);
}

.kategori-card {
  background: var(--krem, #f9f4ee);
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
}

.kategori-header {
  padding: 15px;
}

.kategori-header-ikili {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.kategori-btn {
  width: fit-content;
  font-size: 13px;
  line-height: 1;
  padding: 5px 20px;
  background: #fff;
  color: #333;
  border-radius: 20px;
  text-decoration: none;
  transition: all ease 0.3s;
}

.ilan-sayisi {
  width: fit-content;
  font-size: 12px;
  line-height: 1;
  padding: 5px 10px;
  background: var(--yesil);
  color: var(--mavi);
  border-radius: 20px;
}

.kategori-btn:hover {
  background: var(--mavi);
  color: #fff;
}

.kategori-header .baslik {
  display: block;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #444;
  transition: color 0.3s;
  user-select: none;
}

.kategori-header .baslik:hover {
  color: var(--mavi);
}

.kategori-header .aciklama {
  margin: 8px 0 24px;
  color: #666;
  font-size: 13px;
  line-height: 1.2;
  width: 85%;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.kategori-img img {
  width: 100%;
  height: 270px;
  object-fit: cover;
}

.kategori-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.kategori-img:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  background: linear-gradient(45deg, #4560FF, transparent, #E6FBB5);
  width: 100%;
  height: 100%;
}

.kategori-slider-header .navigation-buttons button {
  background: var(--mavi);
  color: #fff;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: opacity 0.3s, background-color 0.3s;
  line-height: 1;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kategori-slider-header .navigation-buttons button:hover:not(.disabled) {
  background-color: #666 !important;
}

.kategori-slider-header .navigation-buttons button.disabled {
  opacity: 0.5;
  cursor: default;
}

.navigation-progress__bar {
  width: 100px;
  height: 15px;
  background: #eee;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  display: inline-block;
}

.navigation-progress__fill {
  height: 100%;
  width: 0%;
  background: var(--mavi);
  border-radius: 50px;
  transition: width 300ms linear;
}

@media (max-width: 600px) {
  .navigation-progress__bar { width: 70px; height: 15px; }
}