.bg-gradient-dark {
background: linear-gradient(to bottom, #000000, #434343);
color: white; /* Menyesuaikan warna teks dengan latar belakang */
}

.cta-section .btn-primary {
background-color: #007bff; /* Warna tombol */
border-color: #007bff;
}

.cta-section .btn-primary:hover {
background-color: #0056b3; /* Warna tombol saat hover */
border-color: #004085;
}



/* Media query untuk tampilan mobile */
@media (max-width: 767.98px) {
    .product-card-body {
        padding: 0.5rem; /* Padding lebih kecil untuk mobile */
    }

    .product-card-title {
        font-size: 1rem; /* Ukuran font lebih kecil untuk mobile */
    }

    .product-card-text {
        font-size: 0.875rem; /* Ukuran font lebih kecil untuk mobile */
    }

    .product-card-btn {
        font-size: 0.75rem; /* Ukuran font tombol lebih kecil untuk mobile */
    }

    .product-card-rating {
        font-size: 0.875rem; /* Ukuran font bintang rating lebih kecil untuk mobile */
    }

    .product-card-progress-bar {
        font-size: 0.625rem; /* Ukuran font progress bar lebih kecil untuk mobile */
    }

    .d-flex {
        flex-direction: column; /* Mengatur flex-direction untuk mobile */
        align-items: flex-start; /* Mengatur alignment untuk mobile */
    }
}

/* Media query untuk tampilan tablet */
@media (min-width: 768px) and (max-width: 991.98px) {
    .product-card-title {
        font-size: 1.125rem; /* Ukuran font sedikit lebih kecil untuk tablet */
    }

    .product-card-text {
        font-size: 0.9375rem; /* Ukuran font sedikit lebih kecil untuk tablet */
    }

    .product-card-btn {
        font-size: 0.8125rem; /* Ukuran font tombol sedikit lebih kecil untuk tablet */
    }

    .product-card-rating {
        font-size: 0.9375rem; /* Ukuran font bintang rating sedikit lebih kecil untuk tablet */
    }

    .product-card-progress-bar {
        font-size: 0.6875rem; /* Ukuran font progress bar sedikit lebih kecil untuk tablet */
    }
}

/* Media query untuk tampilan desktop dan laptop */
@media (min-width: 992px) {
    .product-card-title {
        font-size: 1.25rem; /* Ukuran font default untuk desktop dan laptop */
    }

    .product-card-text {
        font-size: 0.75rem; /* Ukuran font lebih kecil untuk desktop */
    }

    .product-card-btn {
        font-size: 0.7rem; /* Ukuran font tombol untuk desktop dan laptop */
    }

    .product-card-rating {
        color: #ffc107;
        font-size: 0.75rem; /* Ukuran font bintang rating untuk desktop dan laptop */
    }

    .product-card-progress-bar {
        font-size: 0.75rem; /* Ukuran font progress bar untuk desktop dan laptop */
    }

    .d-flex {
        flex-direction: row; /* Mengatur flex-direction untuk desktop dan laptop */
        align-items: center; /* Mengatur alignment untuk desktop dan laptop */
    }
}



.mobile-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    border-top: 1px solid #ddd;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}
.mobile-menu a {
    text-decoration: none;
    color: #555;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.mobile-menu a.active {
    color: #007bff;
}
.mobile-menu a .icon {
    font-size: 24px;
}
.mobile-menu a.active .icon {
    color: #007bff;
}


