@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:opsz,wght@6..12,500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:opsz,wght@6..12,500;6..12,700&family=Poppins&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: 'Nunito Sans', sans-serif;
    outline: none;
    scrollbar-width: none;

}

*::-webkit-scrollbar {
    display: none;
}

.color {
    color: #FF007F;

}
.wishlist-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.Breadcrumb-box {
    width: 300px;
    margin: 20px 0 10px 0;
}
.centerng-item {
    padding-top: 3px;
}

.product-divider-wishlist {
    width: 90vw;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px auto;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 0 10px rgba(255, 0, 128, 0.1);
    padding: 15px 10px;
}


.add-to-cart-wishlist {
    font-size: .8rem;
    padding: .50rem 1.2rem;
    background-color: #FF007F;
    color: white;
    border-radius: 8px;
    border: 2px solid #FF007F;
    transition: .3s;
    cursor: pointer;
}

.add-to-cart-wishlist:hover {
    background-color: white;
    color: #FF007F;
}

.clear-btn i {
    font-size: 1.4rem;
    color: #00ADEF;
    cursor: pointer;
    transition: .3s;
}

.clear-btn i:hover {
    color: black;
}

.add-to-cart-btn-and-trash {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 20%;
}

.proudct-title {
    width: 60%;
    font-size: 12px;
    font-weight: 400;
    line-height: 22px;
    padding: 20px;
}

.product-price {
    width: 140px;
    font-size: 14px;
}

.wishlist-img img {
    height: 70px;
    width: 70px;
    border-radius: 20px;
    object-fit: contain;
}


@media (max-width:1050px) {
    .Breadcrumb-box{
        width: 90vw;
    }
    .proudct-title {
        width: 100%;
        font-size: 13px;
        font-weight: 400;
        line-height: 22px;
        padding: 0;
        margin-top: 10px;
        text-align: justify;

    }

    .wishlist-img img {
        height: 200px;
        width: 200px;
    }

    .product-divider-wishlist {
        flex-direction: column;
        padding: 20px;
    }

    .product-price {
        width: 100%;
        font-weight: bold;
    }

    .add-to-cart-btn-and-trash {
        justify-content: space-between;
        width: 100%;
        margin-top: 10px;
    }

    .clear-btn i {
        font-size: 1.5rem;
    }

    .wishlist-container {
        margin-bottom: 6rem;
    }
}

.cart-empty {
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
    left: 0;
    width: 100%;
    height: 80%;
}

.empty-cart-img {
    display: flex;
    justify-content: center;
    align-items: end;
    height: 300px;
    width: 300px;
}

.empty-cart-img img {
    height: 200px;
    object-fit: contain;
}

.empty-cart-title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #FF007F;
}

.continue-shopping {
    border-radius: 8px;
    border: none;
    outline: none;
    background-color: #FF007F;
    color: white;
    cursor: pointer;
    font-size: 1rem;
    padding: 20px 40px;
}