/* ================================================
   PRODUCTS / PRODUK SECTION
   ================================================ */

#produk { background: var(--gray-800); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.product-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.product-img {
  height: 210px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.product-img-1 { background-image: linear-gradient(rgba(0,0,0,0.2), rgba(92,10,20,0.6)), url('../images/product\ 1.png'); }
.product-img-2 { background-image: linear-gradient(rgba(0,0,0,0.2), rgba(92,10,20,0.6)), url('../images/product\ 1.png'); }
.product-img-3 { background-image: linear-gradient(rgba(0,0,0,0.2), rgba(92,10,20,0.6)), url('../images/product\ 3.png'); }
.product-img-4 { background-image: linear-gradient(rgba(0,0,0,0.2), rgba(92,10,20,0.6)), url('../images/product\ 4.png'); }
.product-img-5 { background-image: linear-gradient(rgba(0,0,0,0.2), rgba(92,10,20,0.6)), url('../images/product\ 5.png'); }
.product-img-6 { background-image: linear-gradient(rgba(0,0,0,0.2), rgba(92,10,20,0.6)), url('../images/product\ 6.png'); }

.product-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--maroon-deep);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.product-body { padding: 22px; }
.product-name { color: var(--white); font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; }
.product-desc { color: rgba(255, 255, 255, 0.55); font-size: 0.85rem; line-height: 1.6; margin-bottom: 16px; }

.product-specs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.spec-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}
.spec-chip i { color: var(--gold); font-size: 0.7rem; }

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-price {
  color: var(--gold-light);
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
}
.btn-detail {
  background: var(--maroon-accent);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}
.btn-detail:hover { background: var(--maroon-light); }

/* SEARCH & FILTER */
.search-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 14px 22px;
  max-width: 460px;
  margin: 0 auto 40px;
}
.search-bar i { color: rgba(255, 255, 255, 0.4); }
.search-bar input {
  background: none;
  border: none;
  outline: none;
  color: var(--white);
  font-size: 0.95rem;
  width: 100%;
  font-family: 'Inter', sans-serif;
}
.search-bar input::placeholder { color: rgba(255, 255, 255, 0.35); }

.cat-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 32px;
}
.cat-btn {
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 0.83rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}
.cat-btn.active,
.cat-btn:hover {
  background: var(--maroon-accent);
  color: var(--white);
  border-color: var(--maroon-accent);
}
