/* 
######################################
Breadcrumb Section
######################################
*/
.breadcrumb-wrapper {
    padding: 315px 0 20px 0;
    background: var(--secondary-color);
}

.breadcrumb {
    margin: 0;
}

.breadcrumb-item a,
.breadcrumb-item.active {
    font-size: 16px;
    font-weight: 400;
    color: var(--light-color);
    font-family: var(--body);
}


.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light-color);
}


/* 
######################################
Wishlist Section
######################################
*/
.wishlist-sec {
    padding: 80px 0;
}

.wishlist-wrapper .wishlist-product-img {
    /* margin-bottom: 24px; */
    margin: 0 auto 24px;
    max-width: 422px;
    /* height: 388px; */
    position: relative;
    overflow: hidden;
}

.wishlist-wrapper .wishlist-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.35s linear;
}

.wishlist-product-details {
    text-align: center;
}

.wishlist-product-details h5 {
    font-size: 24px;
    font-weight: 400;
    color: var(--primary-color);
    text-transform: capitalize;
    font-family: var(--body);
    margin-bottom: 12px;
}

.wishlist-product-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    font-size: 18px;
    font-weight: 400;
    text-transform: capitalize;
    color: var(--primary-color);
    font-family: var(--body);
}

.wishlist-prdct-overlay {
    background: linear-gradient(4deg, rgba(56, 52, 52, 1) 0%, rgba(0, 0, 0, 0.12) 50%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: 0.35s linear;
}

.wishlist-wrapper:hover .wishlist-prdct-overlay {
    opacity: 1;
}

/* .wishlist-prdct-overlay .wishlist,
.wishlist-prdct-overlay .cart {
    background: white;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
} */

.wishlist-prdct-overlay i {
    color: var(--gray-color);
}

.wishlist-wrapper:hover .wishlist-product-img img {
    transform: scale(1.1);
}

.remove-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-btn i{
    font-size: 12px;
    color: var(--light-color);
}