.fav-header {
    display: flex;
    align-items: center;
    border-radius: 1.5rem;
    padding: 0.5rem;
    background-color: #fff;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.category-image-link,
.fav-header img {
    width: 4.5rem;
    height: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fav-header img {
    aspect-ratio: 1;
    width: 100%;
    object-fit: cover;
    background: linear-gradient(90deg, #F6F7F9, transparent);
    border-radius: 24px;
    padding: 5px;
}

.fav-header-content span {
    color: #0B014A80;
    font-size: 0.75rem;
    line-height: 2;
}

.fav-header-content h2 a {
    display: block;
    font-size: 1rem;
    line-height: 1.5;
    color: #0B014A;
    font-family: var(--bold-font);
    transition: color 0.5s;
}

.fav-header-content h2 {
    margin-bottom: unset;
}

.fav-header-content {
    flex-direction: column;
    display: flex;
}

.fav-header-all i {
    font-size: 0.6875rem;
}

.fav-header-content h2:hover a,
.fav-header-all:hover {
    color: var(--c1);
}

.fav-header-all {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-size: 0.875rem;
    color: #0B014A90;
    margin-right: auto;
    width: fit-content;
    padding-inline: .5rem;
    transition: color 0.5s;
}


.products-list-fav {
    padding: unset;
    margin: unset;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.card-fav .off-badge {
    position: absolute;
    top: 0;
    right: 2.375rem;
    z-index: 1;
    width: 3rem;
    height: 2rem;
    color: #fff;
    background: linear-gradient(180deg, #FFC6D8 0%, #FF7FA7 100%);
    font-size: 1rem;
    line-height: 1.875;
    display: block;
    text-align: center;
    pointer-events: none;
    border-radius: 0 0 1rem 1rem;
}

.card-fav .amount {
    color: #0B014A;
}

.card-fav {
    display: flex;
    align-items: flex-end;
    gap: .5rem;
    background-color: #fff;
    padding: 0.5rem;
    border-radius: 1.5rem;
    position: relative;
}

.card-fav__img {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    width: 7.75rem;
    height: 7.75rem;
}

.card-fav__img img {
    display: block;
    width: 100%;
    object-fit: cover;
    border-radius: 1.5rem;
    aspect-ratio: 1;
}

h4.card-fav__title a {
    font-size: 1rem;
    color: #0B014A;
    display: block;
    line-height: 1.5;
}

h4.card-fav__title {
    margin-bottom: unset;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.card-fav .card-fav__body {
    width: 100%;
}

.card-fav .pr_price__wrapper {
    margin-top: 0.5rem;
}

.product-categories-display .col-lg-4:nth-child(even) .card-fav {}

.product-categories-display .col-lg-4:nth-child(even) .card-fav .product__icons:hover {
    background-color: var(--c1);
    color: #fff;
}

.product-categories-display .col-lg-4:nth-child(even) .card-fav .product__icons {
    background-color: #6462F91A;
    color: var(--c1);
}

.product-categories-display .col-lg-4:nth-child(even) .card-fav .amount span.woocommerce-Price-currencySymbol {
    color: var(--c1)
}

.product-categories-display .col-lg-4:nth-child(even) .card-fav .off-badge {

    background: linear-gradient(180deg, #A09EFF 0%, #6462F9 100%);

}


.section-fav .col-lg-4:nth-child(odd) {
    z-index: 1;
}

.section-fav .col-lg-4:nth-child(odd)::after {
    content: '';
    position: absolute;
    background: #E9EAF0;
    border-radius: 4rem;
    width: 21rem;
    height: 16rem;
    transform: rotate(16deg);
    z-index: -1;

}

.section-fav .col-lg-4:nth-child(1)::after {
    bottom: -3rem;
    right: 4rem;
}

.section-fav .col-lg-4:nth-child(3)::after {
    top: -3rem;
    left: 4rem;
}

@media (max-width:1199.98px) {
    .card-fav__img {
        width: 6.75rem;
        height: 6.75rem;
    }
}

@media (max-width:991.98px) {
    .section-fav .col-lg-4::after {
        content: unset !important;
    }
}

.product-categories-display {
    position: relative;
}

.product-categories-display>.row {
    position: relative;
    z-index: 1;
}

.product-categories-display::before {
    content: "";
    display: flex;
    width: 330px;
    height: 275px;
    position: absolute;
    background-color: #E9EAF0;
    left: 70px;
    top: -65px;
    border-radius: 92px 32px 32px 32px;
    transform: rotate(15deg);
}

.product-categories-display::after {
    content: "";
    display: flex;
    width: 330px;
    height: 275px;
    position: absolute;
    background-color: #E9EAF0;
    right: 50px;
    bottom: -45px;
    border-radius: 32px 32px 92px 32px;
    transform: rotate(15deg);
}