/* ================= KATEGORI SECTION ================= */
.kategori-section {
  padding: 20px 0 40px 0;
  background: #ffffff;
}

/* ================= INNER WRAP ================= */
.kategori-inner {
  position: relative;
  display: flex;
  align-items: center;
}

/* ================= WRAPPER ================= */
.kategori-wrapper {
  overflow: hidden; /* Sembunyikan scrollbar bawaan pembungkus */
  width: 100%;
}

/* ================= CAROUSEL ================= */
.kategori-carousel {
  display: flex;
  gap: 20px; /* Jarak antar item */
  padding: 15px 5px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -ms-overflow-style: none; /* IE/Edge */
  scrollbar-width: none; /* Firefox */
}

.kategori-carousel::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

/* ================= ITEM CARD (ALA MITRA10) ================= */
.kategori-item {
  flex: 0 0 auto;
  width: 130px; /* Lebar per kategori */
  background: transparent; /* Hilangkan background kotak */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none !important;
  transition: all 0.25s ease;
  border: none; /* Hilangkan border */
  box-shadow: none; /* Hilangkan shadow bawaan card */
}

/* BOX GAMBAR PRODUK */
.kategori-img-box {
  width: 110px; /* Sesuaikan ukuran kotak gambar */
  height: 110px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}

.kategori-img-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; /* Menjaga rasio gambar produk */
}

/* TEXT JUDUL KATEGORI */
.kategori-item p {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
  color: #445271; /* Warna biru abu-abu khas Mitra10 */
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Maksimal 2 baris teks */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ================= HOVER EFFECT ================= */
.kategori-item:hover .kategori-img-box {
  transform: scale(1.08); /* Efek zoom pada gambar saat di-hover */
}

.kategori-item:hover p {
  color: #e31e24; /* Teks berubah merah saat hover */
}

/* ================= NAV BUTTON (DESKTOP) ================= */
.kategori-btn {
  position: absolute;
  top: 40%; /* Posisikan sejajar dengan gambar */
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  transition: all 0.2s;
}

.kategori-btn.left {
  left: -20px;
}
.kategori-btn.right {
  right: -20px;
}

.kategori-btn:hover {
  background: #e31e24;
  color: #fff;
}

/* ================= MOBILE OPTIMIZATION ================= */
@media (max-width: 768px) {
  .kategori-section {
    padding: 10px 0 20px 0;
  }

  .kategori-carousel {
    gap: 5px;
    padding-left: 8px; /* Margin kiri agar sejajar dengan slider/info bar */
  }

  .kategori-item {
    width: 90px;
  }

  .kategori-img-box {
    width: 70px;
    height: 70px;
  }

  .kategori-item p {
    font-size: 9px;
  }

  .kategori-btn {
    display: none !important; /* Tombol navigasi hilang di mobile */
  }
}
