/* ============================================
   Products Section
   ============================================ */


.product-range-item {
    padding: 1rem;
    width: 100%;
    height: 450px;
}

.product-slide-image-wrapper {
    position: absolute;
    bottom: -24px;
}

.product-slide-image-wrapper img {
    width: 75%;
    height: 350px;
    object-fit: contain;
}

.product-slide-card {
    padding: 1rem 1rem 7rem 1rem;
    display: flex;
    justify-content: center;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    background: linear-gradient(270deg, var(--gradient-light) 0%, var(--white) 50%, var(--gradient-light) 100%);


}

.product-para {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 300;
    line-height: 22px;
    text-overflow: ellipsis;
}

.product-header {
    margin-bottom: 1rem;
    width: 100%;
    text-align: start;
}

.product-title {
    min-height: 2.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-grey);
    margin-bottom: 0.25rem;
}



