.home_row {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.shop_row {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 768px) {
    .home_row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .shop_row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .home_row {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .shop_row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.product-holder {
    display: flex;
    align-items: center;
    padding: 0;
}

.product-image {
    overflow: hidden;
}

.product_image {
    transition: transform 700ms ease;
    overflow: hidden;
}

.product-holder:hover .product_image {
    transform: scale(1.1);
}

.wishlist-container {
    width: 35px;
    height: 35px;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    transition-delay: 300ms;
}

.add-cart-container {
    width: 35px;
    height: 35px;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    transition-delay: 300ms;
}

.product-section-holder {
    position: relative;
    background: #fdfdfd;
    margin: 5px;
    border-radius: 6px;
}

.fa-heart {
    color: #7e859b;
    transition-delay: 100ms;
}

.wishlist-container:hover .fa-heart {
    color: red;
}

.swiper-slide-category {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    background-color: transparent !important;
}

.swiper-slide-category img {
    border-radius: 9999px;
    width: 130px;
}
