/* Product Showcase Custom Styles */

/* Product Grid */
.card-img-top {
    height: 220px;
    object-fit: cover;
}

.card-body h5.card-title {
    font-size: 18px;
    font-weight: 600;
}

/* Swiper Main Image */
.mySwiper2 {
    width: 100%;
    height: 600px;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.mySwiper2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Thumbnail Slider */
.mySwiperThumbs {
    height: 100px;
    box-sizing: border-box;
    padding: 5px 0;
}

.mySwiperThumbs .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.6;
    cursor: pointer;
}

.mySwiperThumbs .swiper-slide-thumb-active {
    opacity: 1;
    border: 2px solid #007bff;
    border-radius: 5px;
}

.thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

/* Sizes as tags */
.ps-size {
    cursor: pointer;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 20px;
    transition: 0.2s ease;
}

.ps-size:hover {
    background-color: #e9ecef;
}