.ced-header {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    background-color: transparent;
}

.banner-section {
    z-index: 1;
    overflow: hidden;
    background-image: url(https://cdn.shopify.com/s/files/1/0636/9329/1754/files/Group_48257.png?v=1728281957);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}

.main-card-head,
.main-card-subhead {
    color: var(--ced-grey-60);
}


.search-wrapper {
    min-height: 44px;
}

.form-control:focus {
    box-shadow: none;
}

.search-wrapper .form-control,
.search-wrapper .input-group-text {
    border-radius: 30px;
    background-color: var(--ced-white-color);
    border: 0;
}

.search-wrapper .form-control {
    font-size: 14px;
    font-family: var(--ced-montserrat-sb);
    padding: 0 20px;
}

.search-wrapper .form-control::placeholder {
    color: #B0B0B0;
}

.search-wrapper .input-group-text {
    width: 50px;
    cursor: pointer;
}

.search-wrapper {
    max-width: 540px;
    margin: auto;
}

/* RESPONISVE START  */

@media screen and (min-width:1400px) {
    .main-card-head {
        font-size: 62px;
        line-height: 75px;
    }

    .banner-content {
        max-width: 70%;
    }
}

@media screen and (min-width:1200px) and (max-width:1399px) {
    .main-card-head {
        font-size: 55px;
        line-height: 70px;
    }

    .banner-content {
        max-width: 80%;
    }
}

@media screen and (min-width:992px) and (max-width:1199px) {
    .main-card-head {
        font-size: 46px;
        line-height: 60px;
    }

    .banner-content {
        max-width: 90%;
    }
}

@media screen and (min-width:992px) {
    .banner-section {
        padding: 240px 0 100px;
    }
}

@media screen and (min-width:768px) and (max-width:991px) {

    .main-card-head {
        font-size: 40px;
        line-height: 55px;
    }

    .banner-section {
        padding: 170px 0 100px;
    }
}

@media screen and (min-width:576px) and (max-width:767px) {
    .banner-section {
        padding: 140px 0 60px;
    }

    .main-card-head {
        font-size: 36px;
        line-height: 46px;
    }

}

@media screen and (min-width: 576px) {
    .main-card-subhead {
        line-height: 28px;
    }
}

@media screen and (max-width:575px) {
    .banner-section {
        padding: 130px 0 60px;
    }

    .main-card-subhead {
        font-size: 14px;
        line-height: 24px;
    }

    .main-card-head {
        font-size: 30px;
        line-height: 40px;
    }
}

/*end banner section */

.trending-products {
    background-color: var(--ced-grey-color);
}

.product-item {
    background-color: #F5F5FEB2;
    padding: 76px 20px 30px;
    border-radius: 20px;
}

.trending-row {
    margin-top: 110px;
}

.product-item:hover::before {
    opacity: 1;
}

.product-item::before {
    bottom: -15px;
    width: 70%;
}

.product-item:before {
    position: absolute;
    height: 100px;
    background-image: conic-gradient(from 7deg at 25.05% 71.78%, rgba(106, 215, 150, 0.4) 0deg, rgba(65, 59, 188, 0.3) 360deg);
    filter: blur(25px);
    -webkit-filter: blur(35px);
    transition: all 0.5s;
    opacity: 0;
    content: "";
    z-index: -1;
    border-radius: 50px;
}

.product-item-title {
    font-size: 17px;
    font-family: var(--ced-montserrat-sb);
    color: var(--ced-grey-60);
}

.product-item-desc {
    color: var(--ced-grey-60);
}

.product-item-cta {
    padding: 7px 18px;
    border-radius: 8px;
    font-size: 14px;
    color: var(--ced-white-color);
    border: 2px solid var(--ced-blue-60);
    font-family: var(--ced-montserrat-sb);
    background-color: var(--ced-blue-60);
}

.product-item-cta:hover {
    color: var(--ced-blue-60);
    background-color: transparent;
}

.product-item-img {
    position: absolute;
    top: -50px;
    box-shadow: 0px 0px 10px 0px #DEDEDE;
    padding: 0 10px;
    border-radius: 20px;
    background: var(--ced-grey-color);
    overflow: hidden;
}

.more-products {
    margin-top: 50px;
}

.products-row {
    display: grid;

}

@media screen and (min-width:992px) {

    .products-row {
        grid-template-columns: 1fr 1fr 1fr;
        column-gap: 20px;
        row-gap: 90px;
    }

    .more-products .row.g-4+.row.g-4 {
        margin-top: 68px;
    }
}

@media screen and (min-width: 576px) {
    .product-item-desc {
        line-height: 26px;
        font-size: 15px;
    }
}

@media screen and (min-width:768px) and (max-width:991px) {
    .products-row {
        grid-template-columns: 1fr 1fr;
        column-gap: 20px;
        row-gap: 90px;
    }

    .trending-row {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 575px) {
    .product-item-desc {
        font-size: 14px;
        line-height: 24px;
    }
}

@media screen and (max-width:767px) {
    .products-row {
        row-gap: 80px;
    }
}

/*end trending section*/


/*end trending section*/