/* === BROWSE BY CATEGORY === */
body {
	background-color: #F8F8F8;
}

/* === CONTAINER UTAMA === */
.browse-container {
  display: flex;
  gap: 25px;
  padding: 30px;
  max-width: 1200px;
  margin: 0px auto 60px auto; /* jarak dari breadcrumb dan bawah */
}

/* === PANEL KATEGORI (KIRI) === */
.category-panel {
  flex: 0 0 250px;
  background-color: #fff;
  border: 1px solid #ddd;  
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.category-panel h4 {
  font-weight: 700;
  margin-bottom: 15px;
}

.category-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-panel li {
  margin-bottom: 8px;
}

.category-panel a {
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
}

.category-panel a:hover,
.category-panel a.active {
  color: #274732;
  font-weight: 600;
}

/* === PANEL PRODUK (KANAN) === */
.product-panel {
  flex: 1;
}

.product-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

/* === SEARCH BOX === */
.search-box {
  position: relative;
  width: 250px;
}

.search-box input {
  width: 100%;
  padding: 8px 12px 8px 36px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  transition: all 0.3s ease;
}

.search-box input:focus {
  border-color: #274732;
}

.search-box::before {
  content: "🔍";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  opacity: 0.7;
}

/* === GRID PRODUK === */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 per baris di desktop */
  gap: 25px;
}

/* === KARTU PRODUK === */
.product-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #eee;
  text-align: center;
  transition: all 0.3s ease;
}

.product-card:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: auto;
  margin-top:20px;
  
}

.product-card h5 {
  font-size: 1rem;
  font-weight: 600;
  margin: 12px 0 5px;
  color: #333;
}

.product-card a {
  display: inline-block;
  margin-bottom: 15px;
  color: #274732;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.product-card a:hover {
  border-bottom: 1px solid #274732;
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
  .browse-container {
    flex-direction: column;
    padding: 20px;
  }

  .category-panel {
    flex: none;
    width: 100%;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .search-box {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
