/* Mengatur halaman produk */
.category-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 5px 0;
    margin-bottom: 15px;

}

.category-nav .nav-link {
    color: #000000; /* WARNA TULISAN NORMAL (Gambar 1) */
    padding: 10px 15px;
    font-size: 0.9rem;
    text-decoration: none;
    
    /* HAPUS KOTAK HITAM */
    background-color: transparent;
    /* Garis bawah transparan (agar tidak lompat saat hover) */
    border-bottom: 2px solid transparent; 
    
    transition: color 0.2s, border-bottom-color 0.2s;
}

.category-nav .nav-link:hover,
.category-nav .nav-link.active {
    
    /* TULISAN JADI EMAS (Gambar 2) */
    color: #eab94e; 
    
    background-color: transparent; /* Pastikan tetap transparan */
    
    /* GARIS BAWAH JADI EMAS (Gambar 2) */
    border-bottom-color: #eab94e; 
}
/* = Konten Produk (Kotak Putih) =*/
.product-section {
    background-color: #ffffff; /* Kotak putih seperti di gambar */
    color: #111;
    padding: 30px;
    border-radius: 15px;
}

.product-section h2 {
    color: #333;
    font-weight: bold;
}

.product-card {
    border: 1px solid #eee;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    color: #333; /* Pastikan teks di dalam card berwarna gelap */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.product-card .card-img-top {
    height: 200px !important;
    object-fit: contain !important; 
    width: 100%;
    aspect-ratio: 1 / 1;
}

.product-card .card-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-card .card-text {
    font-size: 0.9rem;
    font-weight: bold;
    color: #555;
}

/* Tombol Kuning (sesuai gambar) */
.btn-warning-custom {
    background-color: #eab94e; /* Warna emas/kuning */
    color: #1a1a1a; /* Teks hitam */
    font-weight: bold;
    border: none;
    padding: 8px 12px;
    font-size: 0.9rem;
}
.btn-warning-custom:hover {
    background-color: #d4a946;
    color: #ffffff;
}

/* Styling Paginasi (Opsional, agar cocok) */
.pagination .page-link {
    color: #eab94e;
}
.pagination .page-item.active .page-link {
    background-color: #eab94e;
    border-color: #eab94e;
    color: #000000;
}

