/* style.css — Custom style tambahan di luar Bootstrap 5 */

body {
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
    background-color: #f8f9fa;
}

/* Kartu produk */
.product-card img {
    height: 220px;
    object-fit: cover;
}
.product-card .price-old {
    text-decoration: line-through;
    color: #adb5bd;
    font-size: 0.85rem;
}
.product-card .price-new {
    color: #dc3545;
    font-weight: 700;
}

/* Hero / banner home */
.hero-banner {
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    color: #fff;
    border-radius: 0.5rem;
}

/* Gallery grid + lightbox sederhana */
.gallery-item img {
    height: 200px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.2s ease;
}
.gallery-item img:hover {
    transform: scale(1.03);
}

/* Rating bintang testimoni */
.rating-stars {
    color: #ffc107;
}
