

/*---------------------------------- menu test---------------------------------------------*/
#contentContainer {
    padding-top: 20px;
    background: #666;
    padding-bottom: 50px;
}

.category-item:hover {
    background-color: #379e9e;
    cursor: pointer;
    font-weight: bold;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}


.category-side .card {
    border: none;
    border-radius: 10px;
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.category-side h3 {
    color: #379e9e;
    font-weight: bold;
}

.category-item {
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    border-radius: 5px;
    margin-bottom: 10px;
    background-color: #f8f9fa;
}

.category-item:hover {
    background-color: #379e9e;
    color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.price-filter {
    background-color: #f8f9fa;
    padding: 15px;
    /* border-radius: 10px; */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-attractive {
    background-color: #007bff;
    border: none;
    /* border-radius: 50px; */
    transition: background-color 0.3s ease;
}


.btn-attractive:hover {
    background-color: #0056b3;
}

.search-input {
    width: 100%;
    max-width: 300px;
    padding: 10px 20px;
    /* padding: 0.375rem 0.75rem; */
    border: 1px solid #ced4da;
    /* border-radius: 50px; */

    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.search-input:focus {
    border-color: #379e9e;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(55, 158, 158, 0.25);
}

.dropdown-toggle {

    background-color: #379e9e;
    border-color: #379e9e;
    color: white;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.dropdown-toggle:hover,
.dropdown-toggle:focus {
    background-color: #207f80;
    border-color: #207f80;
}

.card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card-title {
    color: #333;
    font-size: 1.1rem;
    font-weight: bold;
}

.card-text {
    color: #666;
    font-size: 1rem;
    font-weight: bold;
    flex-grow: 1;
}

.pagination {
    margin-top: 20px;
}

.pagination .page-item.active .page-link {
    background-color: #379e9e;
    border-color: #379e9e;
}

.pagination .page-link {
    color: #379e9e;
}

.pagination .page-link:hover {
    background-color: #379e9e;
    color: #fff;
    border-color: #379e9e;
}

.price-filter input[type="range"] {
    width: 100%;
}

.text-lightdark {
    color: #333;
}

@media (max-width: 992px) {
    .order-sm-first {
        order: -1;
    }

    .category-side {
        padding-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .col-lg-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-lg-3,
    .col-lg-9 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .search-input {
        width: 100%;
        max-width: 300px;
    }

    .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}


/* Add animations to cards */
@keyframes fadeInUp {
    from {
        transform: translate3d(0, 40px, 0);
        opacity: 0;
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

.card {
    animation: fadeInUp 0.5s ease both;
}



/*--------------------- Add to Cart button styling-------------------------------*/
.add-to-cart {
    font-size: 0.8rem;
    padding: 0.25rem 0.5rem;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: auto;
    /* Push button to the bottom of the card */
}

.add-to-cart:hover {
    background-color: #e7d910;
    color: #fff;
    border-color: #e7d910;
}

.price-filter {
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.price-filter h4 {
    margin-bottom: 10px;
}

.price-filter input[type="range"] {
    width: 100%;
}

#priceValue {
    font-weight: bold;
    color: #379e9e;
}
