.product-list .col-xl-3 {
    margin-bottom: 0.5rem;
}

.prd-card {
    position: relative;
    padding: 0.75rem;
    padding-bottom: 2.25rem;
    background-color: white;
    border: 1px solid var(--card-border);
    height: 100%;
}

.prd-card:hover {
    box-shadow: 0 0 20px -3px #24242440;
}

.prd-img {
    border: 1px solid var(--card-border);
}

.prd-img img {
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    object-position: center;
    -o-object-position: center;
}

.prd-title {
    font-size: 1.125rem;
    text-transform: uppercase;
}

.prd-desc {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
}

.prd-card a {
    position: absolute;
    bottom: 1rem;
    left: 0;
    width: 100%;
}

@media screen and (min-width: 768px) {
    .prd-img {
        height: 130px;
    }
}

@media screen and (min-width: 992px) {
    .prd-img {
        height: 170px;
    }
}

@media screen and (min-width: 1200px) {
    .prd-img {
        height: 205px;
    }
}

@media screen and (min-width: 1440px) {
    .prd-img {
        height: 245px;
    }

    .prd-title {
        font-size: 1.25rem;
    }
}

@media screen and (min-width: 1680px) {
    .prd-img {
        height: 195px;
    }

    .prd-title {
        font-size: 1.3rem;
    }
}

@media screen and (min-width: 1920px) {
    .prd-img {
        height: 220px;
    }
}

@media screen and (max-width: 992px) {

    .product-list .col-xl-3 {
        padding: 0.35rem;
    }
}

@media screen and (min-width: 576px) and (max-width: 768px) {

    .prd-img {
        height: 145px;
    }
}


/* Detail Page CSS */
.prd-detail-img {
    border: 1px solid var(--card-border);
}

.prd-detail-title {
    font-size: 1.35rem;
}

.detail-sec .table th.table-title {
    color: white;
    font-size: 1.125rem;
    letter-spacing: 1px;
    background-color: var(--primary-color);
}



@media screen and (max-width: 768px) {
    .detail-sec .top-part .col-lg-6:first-child {
        order: 2;
    }
    .detail-sec .top-part .col-lg-6:last-child {
        order: 1;
    }
}

@media screen and (min-width: 768px) {

    .prd-detail-title {
        font-size: 1.5rem;
    }
}

@media screen and (min-width: 992px) {

    .prd-detail-title {
        font-size: 1.5rem;
    }
}

@media screen and (min-width: 1200px) {

    .prd-detail-title {
        font-size: 1.75rem;
    }
}

@media screen and (min-width: 1440px) {

    .prd-detail-title {
        font-size: 2rem;
    }
}

@media screen and (min-width: 1680px) {

    .prd-detail-title {
        font-size: 2.15rem;
    }
}