.card-produk {
    min-height: 410px; /* Atur tinggi minimum card */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-produk .card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-produk .card-body img {
    max-height: 150px; /* Atur tinggi maksimum gambar */
    object-fit: cover;
}

.card-produk .card-body .text-truncate {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
#preloader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #008000;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.hero-slider .banner-item {
    position: relative;
    overflow: hidden;
}

.hero-slider .banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
