.homeSectionPopup {
    display: none;
}

.homeSectionPopup {
    position: fixed;
    background: rgba(0, 0, 0, .8);
    width: 100%;
    height: 100%;
    z-index: 7575;
    height: 100vh;
    top: 0;
    align-items: center;
    justify-content: center;
}

.homeSectionPopupContent {
    background: #fff;
    padding: 16px;
    max-width: 634px;
    margin: 0 auto;
    max-height: 584px;
    height: 100%;
    width: 100%;
    position: relative;
overscroll-behavior: contain;
}

.homeSectionPopupContent span.closeBtn {
    position: absolute;
    right: -13px;
    top: -13px;
    cursor: pointer;
    z-index: 75755;
}

body.popup-open,
html.popup-open {
    /* overflow: hidden !important; */
    height: 100% !important;
}
 

.home-product-grid {
    overflow: scroll;
    max-height: 300px;
}

.home-popup-product-card {
    margin-bottom: 18px;
}


.homeSectionPopupContent .hero {
    position: relative;
    overflow: hidden;
}

.homeSectionPopupContent .hero picture,
.homeSectionPopupContent .hero img {
    width: 100%;
    object-fit: cover;
    margin: 0;
    max-height: 200px;
}



.section__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: clamp(12px, 2.5vw, 18px);
}

.section__title {
    color: #292929;
    font-weight: 600;
    font-size: 16px;
    line-height: 35px;
    margin: 0;
}

.home-product-grid-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3%;
    max-height: 300px;
    overflow-y: auto;
overscroll-behavior: contain;
    padding-right: 10px;
}
/*
.home-product-grid-section::-webkit-scrollbar {
    display: none;
}
*/

.card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card__title {
    font-weight: 400;
    font-size: 13px;
    margin: 0;
    color: #292929;
    line-height: 1.4;
    margin-top: 5px;
}

.card__meta {
    font-weight: 600;
    font-size: 14px;
    color: #545454;
    line-height: 16px;
}

.price {
    font-weight: 700;
}

article.card.custom-product-item {
    width: 100%;
    margin-bottom: 15px;
}

@media(max-width: 600px) {
    .home-product-grid-section { 
    grid-template-columns: repeat(2, 1fr); 
}
}

@media(max-width: 350px) {
   .home-product-grid-section { 
    grid-template-columns: repeat(1, 1fr); 
}
    .home-product-grid-section{
        max-height: 400px;
    }
}


/* .card.custom-product-item img.popup-hoverImg {
    display: none;
}
article.card.custom-product-item .product-featured.card__media:hover img.hoverImg {
    display: block;
}
article.card.custom-product-item .product-featured.card__media:hover img.popup-frontImg {
    display: none;
} */