.home-product-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    position: relative;
    width: 350px;
    height: 430px;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='518' height='628' viewBox='0 0 518 628' fill='none'><path d='M0 68.5051C0 43.2577 13.5334 19.9476 35.4591 7.42986V7.42986C53.1321 -2.65996 74.9375 -2.14129 92.1108 8.77739L121.832 27.674L282.945 144.845C286.364 147.331 290.482 148.67 294.709 148.67H440.03C446.304 148.67 452.215 145.726 455.994 140.717L496.16 87.493C503.006 78.4216 517.459 83.263 517.459 94.6277V94.6277V119.829V581C517.459 606.957 496.416 628 470.459 628H52C23.2812 628 0 604.719 0 576V68.5051Z' fill='%23AEAEC0' fill-opacity='0.25'/></svg>") no-repeat center;
    background-size: contain ;
    overflow: hidden;
    margin-right: 10px;
}

.card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: cover;
    pointer-events: none;
}

.product-container {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
}

.product-img {
    width: 220px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.home-product-card:hover .product-img {
    transform: scale(1.05);
    opacity: 0.9;
}

.product-info {
    margin-top:165px;
    font-family: "Poppins", serif;
    padding: 0 25px;
}

.product-info .product-title {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.product-info .product-content {
    font-weight: 300;
    font-size: 1.2rem;
    color: var(--grey-color);
}

.product-info .product-content li {
    padding-bottom: 5px
}

.price {
    font-family: "Poppins", serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--grey-color);
    justify-content: space-between;
    margin-top: 10px;
}

.price span {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: #6b7280;
}

.product-button {
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    padding-right: 25px;
    padding-left: 25px;
    margin-top: 10px;
}

.product-button .add {
    text-align: center;
    width: 70%;
    height: 50px;
    background-color: transparent;
    border: 1px solid var(--orange-color);
    border-radius: 10px;
    color: var(--orange-color);
    font-family: "Poppins", serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all .3s ease-in-out;
    cursor: pointer;
}

.product-button .add:hover {
    background-color:  var(--orange-color);
    border: 1px solidvar(--orange-color);
    color: var(--white-color);
}

.product-button .share {
    text-align: center;
    width: 20%;
    height: 50px;
    border: 1px solid #69b42e;
    cursor: pointer;
    border-radius: 10px;

}

.product-button .share:hover {
    background-color:  #69b42e;
    border: 1px solid #69b42e;
    color: white;
}


.share img {
    width:100%;
    height: 20px;
}

.product-heart {
    place-items: center;
    display: flex;
    justify-content: center;
    text-align: center;
    width: 20%;
    height: 50px;
    cursor: pointer;
    color: var(--white-color);
    transition: all .3s ease-in-out;
    border: 1px solid #69B42EFF ;
    border-radius: 10px;
}

.product-heart i {
    text-align: center;
    align-items: center;
}

.product-heart:hover {
    background-color: var(--error-color);
    color: var(--white-color);
}

.order-heart.active {
    background-color: var(--error-color);
    color: var(--white-color);
}

.background-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}


@media (max-width: 1389px) {
    .product-button .add {
        font-size: 0.9rem;
    }

    .product-button .add, .product-heart, .product-button .share {
        height: 30px;
    }

    .share img {
        width: 12px;
        height: 12px;
    }

}

@media (max-width: 1200px) {
    .home-product-card {
        width: 260px;
        height: 340px;
    }
    .product-img {
        width: 180px;
    }
    .product-info {
        padding: 0 20px;
    }
    .product-info .product-title {
        font-size: 1rem;
    }
    .product-info .product-content {
        font-size: 1rem;
    }
    .price {
        font-size: 1.3rem;
    }

}

@media (max-width: 992px) {
    .home-product-card {
        width: 220px;
        height: 300px;
    }
    .product-img {
        height: 100px;
        width: 120px;
    }
    .product-info .product-title {
        font-size: 1rem;
    }
    .product-info .product-content {
        font-size: 0.9rem;
    }
    .price {
        font-size: 1.2rem;
    }
    .product-button .add {
        font-size: 0.7rem;
    }
    .product-button .product-heart i {
        font-size: .9rem;
    }

}

@media (max-width: 768px) {
    .home-product-card {
        width: 190px;
        height: 270px;
    }
    .product-img {
        width: 130px;
    }
    .product-info {
        padding: 0 15px;
    }
    .product-info .product-title {
        font-size: .8rem;
    }
    .product-info .product-content {
        font-size: 0.8rem;
    }
    .price {
        font-size: .8rem;
    }

    .product-button .add {
        font-size: 0.6rem;
    }

    .product-button .add, .product-heart, .product-button .share {
        height: 20px;
    }

    .share img {
        width: 9px;
        height: 9px;
    }

}

@media (max-width: 875px) {
    .slider-container, .slider-title, .divider-end {
        display: none;
    }


}



.product-card-home-style{
    top: -50px;
    position: absolute;
    display: flex;
    align-items: start;
    justify-content: end;
}

.product-card-home-style img{
    width: 400px;
}
