.collection-item {
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collection-item img {
    object-fit: cover;
    width: 100%;
    /* height: auto; */
    height: 200px;
}

.collection-item.large img {
    height: auto !important;
}


.collection-title {
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 10px;
}

.collection-item:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.product_suggestion_slider_item {
    padding: 3px;
}

.product_suggestion_slider_item-img {
    object-fit: cover;
}

.swiper-button-prev,
.swiper-button-next {
    /* color: white !important; */
    font-size: 55px;
}


@media (min-width: 992px) and (max-width: 1199.98px) {
    .collection-item img {
        height: 400px !important;
    }
}

@media (min-width: 1200px) and (max-width: 1599.98px) {
    .collection-item img {
        height: 400px !important;
    }

    .collection-title {
        font-size: 1.5rem;
    }
}

@media (min-width: 1600px) {
    .collection-item img {
        height: 400px !important;
    }

    .collection-title {
        font-size: 1.5rem;
    }
}