.vc-favorites-user,
.vc-favorites-user * {
    box-sizing: border-box;
}

.vc-favorites-user {
    font-family: 'Inter', Arial, sans-serif;
    color: #111;
}

.vc-favorites-notice {
    padding: 14px 16px;
    background: #f7f7f7;
    color: #111;
    font-size: 14px;
}

.vc-favorites-button-widget {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vc-favorite-button {
    --vc-fav-icon-size: 22px;
    --vc-fav-button-color: #000;
    --vc-fav-button-hover-color: #000;
    --vc-fav-button-active-color: #000;
    --vc-fav-button-bg: transparent;
    --vc-fav-button-hover-bg: transparent;
    --vc-fav-button-active-bg: transparent;
    --vc-fav-button-border: transparent;
    --vc-fav-button-hover-border: transparent;
    --vc-fav-button-active-border: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: auto;
    min-width: 0;
    min-height: 0;
    padding: 0;
    border-style: solid;
    border-width: 0;
    border-color: var(--vc-fav-button-border);
    border-radius: 0;
    background: var(--vc-fav-button-bg);
    color: var(--vc-fav-button-color);
    font: inherit;
    line-height: 1;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition: color .2s ease, background-color .2s ease, border-color .2s ease, opacity .2s ease, transform .2s ease;
}

.vc-favorite-button:hover,
.vc-favorite-button:focus {
    background: var(--vc-fav-button-hover-bg);
    color: var(--vc-fav-button-hover-color);
    border-color: var(--vc-fav-button-hover-border);
    outline: none;
}

.vc-favorite-button.is-active {
    background: var(--vc-fav-button-active-bg);
    color: var(--vc-fav-button-active-color);
    border-color: var(--vc-fav-button-active-border);
}

.vc-favorite-button.is-loading {
    opacity: .55;
    pointer-events: none;
}

.vc-favorite-button__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 var(--vc-fav-icon-size);
    width: var(--vc-fav-icon-size);
    height: var(--vc-fav-icon-size);
    min-width: var(--vc-fav-icon-size);
    min-height: var(--vc-fav-icon-size);
    color: currentColor;
    line-height: 1;
}

.vc-favorite-button__icon svg,
.vc-favorite-button__icon i,
.vc-favorite-button__icon .elementor-icon,
.vc-favorite-button__icon .elementor-icon svg {
    display: block;
    width: var(--vc-fav-icon-size) !important;
    height: var(--vc-fav-icon-size) !important;
    font-size: var(--vc-fav-icon-size) !important;
    line-height: var(--vc-fav-icon-size) !important;
    color: currentColor;
    fill: currentColor;
}

.vc-favorite-button__icon svg path,
.vc-favorite-button__icon svg g {
    fill: currentColor;
}

.vc-favorite-button__icon--active,
.vc-favorite-button.is-active .vc-favorite-button__icon--normal {
    display: none;
}

.vc-favorite-button.is-active .vc-favorite-button__icon--active {
    display: inline-flex;
}

.vc-favorite-button__text {
    display: inline-block;
    line-height: 1.2;
}

.vc-favorite-button--icon-only .vc-favorite-button__text {
    display: none !important;
}

.vc-favorite-button--small {
    --vc-fav-icon-size: 20px;
}

.vc-favorites-list {
    --vc-fav-columns: 3;
    --vc-fav-grid-gap: 0px;
    --vc-fav-card-bg: #fff;
    --vc-fav-card-border: #d8d8d8;
    --vc-fav-image-height: 430px;
    --vc-fav-breadcrumb-color: #111;
    --vc-fav-title-color: #111;
    --vc-fav-product-title-color: #111;
    --vc-fav-product-title-hover-color: #111;
    --vc-fav-price-color: #111;
    --vc-fav-old-price-color: #8c8c8c;
    --vc-fav-badge-color: #fff;
    --vc-fav-badge-bg: #000;
    --vc-fav-empty-color: #111;
    --vc-fav-empty-bg: transparent;
    width: 100%;
}

.vc-favorites-list__header {
    display: block;
}

.vc-favorites-list__breadcrumb {
    margin: 0 0 28px;
    color: var(--vc-fav-breadcrumb-color);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.3;
    text-transform: uppercase;
}

.vc-favorites-list__title {
    margin: 0;
    color: var(--vc-fav-title-color);
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
}

.vc-favorites-list__body {
    position: relative;
    min-height: 1px;
}

.vc-favorites-list.is-loading .vc-favorites-list__body {
    opacity: .7;
}

.vc-favorites-list__grid {
    display: grid;
    grid-template-columns: repeat(var(--vc-fav-columns), minmax(0, 1fr));
    gap: var(--vc-fav-grid-gap);
    width: 100%;
}

.vc-favorites-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 570px;
    padding: 18px;
    border-style: solid;
    border-width: 1px;
    border-color: var(--vc-fav-card-border);
    background: var(--vc-fav-card-bg);
    overflow: hidden;
}

.vc-favorites-card__favorite {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 3;
}

.vc-favorites-card__image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: var(--vc-fav-image-height);
    text-decoration: none;
}

.vc-favorites-card__image img,
.vc-favorites-card__image-img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: var(--vc-fav-image-height);
    object-fit: contain;
    object-position: center;
}

.vc-favorites-card__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    width: 100%;
    margin-top: auto;
    text-align: center;
}

.vc-favorites-card__title {
    color: var(--vc-fav-product-title-color);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.25;
    text-decoration: none;
    text-transform: uppercase;
}

.vc-favorites-card__title:hover {
    color: var(--vc-fav-product-title-hover-color);
    text-decoration: none;
}

.vc-favorites-card__price {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--vc-fav-price-color);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
}

.vc-favorites-card__price .price {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.vc-favorites-card__price del {
    color: var(--vc-fav-old-price-color);
    font-size: .8em;
    font-weight: 400;
    opacity: 1;
}

.vc-favorites-card__price ins {
    color: inherit;
    text-decoration: none;
}

.vc-favorites-card__sale {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 20px;
    padding: 3px 6px;
    background: var(--vc-fav-badge-bg);
    color: var(--vc-fav-badge-color);
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
}

.vc-favorites-card__swatches {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-height: 20px;
    margin-top: 2px;
}

.vc-favorites-card__swatch {
    display: block;
    width: 31px;
    height: 16px;
    border: 1px solid rgba(0, 0, 0, .05);
}

.vc-favorites-card__more {
    color: #111;
    font-size: 12px;
    line-height: 1;
}

.vc-favorites-list__empty {
    width: 100%;
    padding: 0;
    background: var(--vc-fav-empty-bg);
    color: var(--vc-fav-empty-color);
}

.vc-favorites-list__empty--blank {
    min-height: 0;
    padding: 0;
}

@media (max-width: 1024px) {
    .vc-favorites-list {
        --vc-fav-columns: 2;
    }

    .vc-favorites-card {
        min-height: 500px;
    }
}

@media (max-width: 767px) {
    .vc-favorites-list {
        --vc-fav-columns: 1;
    }

    .vc-favorites-card {
        min-height: 430px;
    }

    .vc-favorites-card__image,
    .vc-favorites-card__image img,
    .vc-favorites-card__image-img {
        min-height: 300px;
        height: 300px;
    }
}
