.fdvf-carousel-shell {
    position: relative;
    width: 100%;
    min-width: 0;
}

.fdvf-grid {
    --fdvf-columns: 4;
    --fdvf-gap: 24px;
    display: grid;
    grid-template-columns: repeat(var(--fdvf-columns), minmax(0, 1fr));
    gap: var(--fdvf-gap);
    width: 100%;
    min-width: 0;
}

.fdvf-card,
.fdvf-card * {
    box-sizing: border-box;
}

.fdvf-card {
    --fdvf-cover-x: 50%;
    --fdvf-cover-y: 50%;
    --fdvf-cover-scale: 1;
    --fdvf-cover-scale-hover: 1.045;
    --fdvf-mobile-cover-x: var(--fdvf-cover-x);
    --fdvf-mobile-cover-y: var(--fdvf-cover-y);
    --fdvf-mobile-cover-scale: var(--fdvf-cover-scale);
    --fdvf-mobile-cover-scale-hover: var(--fdvf-cover-scale-hover);
    position: relative;
    min-width: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(17, 24, 39, .08);
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(17, 24, 39, .08);
    transition: transform .35s cubic-bezier(.2, .75, .25, 1), box-shadow .35s ease, border-color .35s ease;
    isolation: isolate;
}


/* Optional card lift, restored as an Elementor control. */
.fdvf-hover-lift-yes .fdvf-card:hover,
.fdvf-hover-lift-yes .fdvf-card:focus-within {
    transform: translateY(-7px);
    box-shadow: 0 25px 60px rgba(17, 24, 39, .14);
    border-color: rgba(17, 24, 39, .12);
}

.fdvf-hover-lift-yes .fdvf-card:hover .fdvf-profile-image,
.fdvf-hover-lift-yes .fdvf-card:focus-within .fdvf-profile-image {
    transform: scale(1.045);
}

.fdvf-card-media {
    --fdvf-image-height: 260px;
    position: relative;
    height: var(--fdvf-image-height);
    overflow: hidden;
    background: #eef1f5;
}

.fdvf-media-link {
    display: block;
    width: 100%;
    height: 100%;
}

.fdvf-card-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform .7s cubic-bezier(.2, .7, .2, 1);
}

.fdvf-card-body {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px;
}

.fdvf-card-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
    gap: 8px;
}

.fdvf-store-name {
    margin: 0;
    color: #111827;
    font-size: 20px;
    font-weight: 750;
    line-height: 1.35;
}

.fdvf-store-name a {
    color: inherit;
    text-decoration: none;
}

.fdvf-product-count {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.4;
}

.fdvf-product-icon {
    display: inline-flex;
    flex: 0 0 auto;
}

.fdvf-follow-button {
    appearance: none;
    -webkit-appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    gap: 8px;
    min-height: 42px;
    margin: 0;
    padding: 10px 16px;
    color: #fff;
    background: #111827;
    border: 1px solid transparent;
    border-radius: 12px;
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    transition: color .25s ease, background-color .25s ease, border-color .25s ease, transform .25s ease;
}

.fdvf-follow-button:hover {
    color: #fff;
    background: #cc0001;
    transform: translateY(-1px);
}

.fdvf-follow-button:focus-visible {
    outline: 3px solid rgba(204, 0, 1, .22);
    outline-offset: 3px;
}

.fdvf-follow-button.is-following {
    color: #166534;
    background: #dcfce7;
}

.fdvf-follow-button.is-following:hover {
    color: #166534;
    background: #bbf7d0;
}

.fdvf-follow-icon,
.fdvf-follow-icon svg {
    display: inline-flex;
}

.fdvf-icon-check,
.fdvf-follow-button.is-following .fdvf-icon-plus {
    display: none !important;
}

.fdvf-follow-button.is-following .fdvf-icon-check {
    display: inline-flex !important;
}

.fdvf-spinner {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid currentColor;
    border-inline-end-color: transparent;
    border-radius: 50%;
    animation: fdvf-spin .7s linear infinite;
}

.fdvf-follow-button.is-loading .fdvf-follow-icon,
.fdvf-follow-button.is-loading .fdvf-follow-text {
    display: none;
}

.fdvf-follow-button.is-loading .fdvf-spinner {
    display: inline-block;
}

@keyframes fdvf-spin {
    to { transform: rotate(360deg); }
}

/* Style 1: modern minimal */
.fdvf-style-classic .fdvf-card-media {
    margin: 10px 10px 0;
    border-radius: 18px;
}

/* Style 2: cover + floating avatar */
.fdvf-style-cover .fdvf-card {
    overflow: hidden;
}

.fdvf-style-cover .fdvf-card-media {
    height: clamp(120px, calc(var(--fdvf-image-height) - 105px), 300px);
    overflow: visible;
    background: #182033;
}

.fdvf-style-cover .fdvf-media-link {
    --fdvf-cover-overlay-color: rgba(17, 24, 39, .58);
    --fdvf-cover-gradient-bottom: rgba(17, 24, 39, .72);
    --fdvf-cover-gradient-middle: rgba(124, 58, 237, .28);
    --fdvf-cover-overlay-height: 72%;
    --fdvf-cover-overlay-opacity: 1;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.fdvf-style-cover .fdvf-banner-image {
    position: relative;
    z-index: 0;
    object-position: var(--fdvf-cover-x) var(--fdvf-cover-y) !important;
    transform: scale(var(--fdvf-cover-scale));
    filter: saturate(.94);
    will-change: transform;
}

.fdvf-style-cover .fdvf-card:hover .fdvf-banner-image,
.fdvf-style-cover .fdvf-card:focus-within .fdvf-banner-image {
    transform: scale(var(--fdvf-cover-scale));
}


.fdvf-hover-lift-yes .fdvf-style-cover .fdvf-card:hover .fdvf-banner-image,
.fdvf-hover-lift-yes .fdvf-style-cover .fdvf-card:focus-within .fdvf-banner-image {
    transform: scale(var(--fdvf-cover-scale-hover));
}

.fdvf-style-cover .fdvf-banner-placeholder {
    position: relative;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 76% 20%, rgba(124, 58, 237, .55), transparent 34%),
        radial-gradient(circle at 20% 78%, rgba(14, 165, 233, .38), transparent 36%),
        linear-gradient(135deg, #111827 0%, #273449 100%);
}

.fdvf-style-cover .fdvf-media-link::after {
    content: '' !important;
    position: absolute;
    z-index: 1;
    inset-inline: -4%;
    inset-block-end: -8%;
    width: 108%;
    height: var(--fdvf-cover-overlay-height);
    opacity: var(--fdvf-cover-overlay-opacity);
    pointer-events: none;
    filter: blur(7px);
    transform: translateZ(0);
}

.fdvf-cover-overlay-none .fdvf-style-cover .fdvf-media-link::after {
    display: none;
}

.fdvf-cover-overlay-color .fdvf-style-cover .fdvf-media-link::after {
    background: linear-gradient(0deg, var(--fdvf-cover-overlay-color) 0%, var(--fdvf-cover-overlay-color) 16%, transparent 100%);
}

.fdvf-cover-overlay-gradient .fdvf-style-cover .fdvf-media-link::after {
    background: linear-gradient(0deg, var(--fdvf-cover-gradient-bottom) 0%, var(--fdvf-cover-gradient-middle) 48%, transparent 100%);
}

.fdvf-style-cover .fdvf-uses-default-cover .fdvf-banner-image {
    filter: saturate(.9) contrast(1.02);
}

.fdvf-grid.fdvf-style-cover .fdvf-card .fdvf-card-body {
    position: relative;
    z-index: 3;
    display: block;
    overflow: visible;
    min-height: 106px;
    padding: 0 20px 18px !important;
}

.fdvf-cover-floating-row,
.fdvf-cover-identity {
    --fdvf-avatar-size: 96px;
    position: relative;
    z-index: 4;
    display: block;
    width: 100%;
    height: 58px;
    min-width: 0;
    margin: 0;
    padding: 0;
    pointer-events: none;
}

.fdvf-avatar {
    --fdvf-avatar-size: 96px;
    position: absolute;
    top: calc(var(--fdvf-avatar-size) / -2);
    right: 0;
    left: auto;
    z-index: 5;
    display: block;
    width: var(--fdvf-avatar-size);
    height: var(--fdvf-avatar-size);
    overflow: hidden;
    background: #fff;
    border: 5px solid #fff;
    border-radius: 50%;
    box-shadow: 0 12px 28px rgba(17, 24, 39, .18);
    transform: none;
    pointer-events: auto;
}

.fdvf-avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fdvf-grid.fdvf-style-cover .fdvf-card .fdvf-card-info {
    position: relative;
    z-index: 3;
    display: flex !important;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    min-width: 0;
    min-height: 28px;
    margin: 0 !important;
    padding: 0 !important;
    gap: 14px;
    direction: rtl;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
}

.fdvf-style-cover .fdvf-store-name {
    order: 1;
    flex: 1 1 auto;
    min-width: 0;
    margin: 0;
    color: #111827;
    text-align: right;
    direction: rtl;
    overflow-wrap: anywhere;
    font-size: 18px;
    line-height: 1.3;
    visibility: visible !important;
    opacity: 1 !important;
}

.fdvf-style-cover .fdvf-store-name a {
    color: inherit;
}

.fdvf-style-cover .fdvf-product-count {
    order: 2;
    flex: 0 0 auto;
    color: #6b7280;
    direction: rtl;
    white-space: nowrap;
    visibility: visible !important;
    opacity: 1 !important;
}

.fdvf-style-cover .fdvf-follow-button {
    --fdvf-follow-ring-width: 4px;
    --fdvf-follow-ring-color: #ffffff;
    position: absolute;
    top: -18px;
    left: 0;
    right: auto;
    z-index: 5;
    width: auto;
    min-height: 46px;
    padding: 11px 18px;
    border-radius: 14px;
    box-shadow:
        0 0 0 var(--fdvf-follow-ring-width) var(--fdvf-follow-ring-color),
        0 10px 24px rgba(17, 24, 39, .16);
    pointer-events: auto;
}

.fdvf-style-cover .fdvf-follow-button:hover,
.fdvf-style-cover .fdvf-follow-button.is-following {
    box-shadow:
        0 0 0 var(--fdvf-follow-ring-width) var(--fdvf-follow-ring-color),
        0 12px 28px rgba(17, 24, 39, .2);
}

/* Style 3: horizontal compact */
.fdvf-style-horizontal .fdvf-card {
    display: grid;
    grid-template-columns: minmax(115px, 38%) 1fr;
    align-items: stretch;
}

.fdvf-style-horizontal .fdvf-card-media {
    height: 100%;
    min-height: 160px;
}

.fdvf-style-horizontal .fdvf-card-body {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
}

.fdvf-style-horizontal .fdvf-follow-button {
    width: 100%;
}

/* Style 4: cinematic portrait */
.fdvf-style-portrait .fdvf-card {
    min-height: var(--fdvf-image-height, 360px);
    color: #fff;
    background: #111827;
}

.fdvf-style-portrait .fdvf-card::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, transparent 24%, rgba(5, 8, 18, .72) 100%);
    pointer-events: none;
}

.fdvf-style-portrait .fdvf-card-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.fdvf-style-portrait .fdvf-card-body {
    position: absolute;
    inset-inline: 0;
    inset-block-end: 0;
    align-items: flex-end;
    color: #fff;
}

.fdvf-style-portrait .fdvf-store-name,
.fdvf-style-portrait .fdvf-store-name a,
.fdvf-style-portrait .fdvf-product-count {
    color: #fff;
}

.fdvf-style-portrait .fdvf-product-count {
    opacity: .8;
}

.fdvf-style-portrait .fdvf-follow-button {
    color: #111827;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(10px);
}

.fdvf-style-portrait .fdvf-follow-button:hover {
    color: #fff;
    background: #cc0001;
}

.fdvf-editor-notice {
    padding: 18px 20px;
    color: #7c2d12;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 12px;
    text-align: center;
}

/* Mobile carousel controls are intentionally hidden on larger screens. */
.fdvf-carousel-controls {
    display: none;
}

.fdvf-carousel-button {
    appearance: none;
    -webkit-appearance: none;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    color: #111827;
    background: #fff;
    border: 1px solid rgba(17, 24, 39, .1);
    border-radius: 50%;
    box-shadow: 0 8px 22px rgba(17, 24, 39, .1);
    cursor: pointer;
}

.fdvf-carousel-button svg {
    display: block;
}

@media (max-width: 767px) {
    .fdvf-card-body {
        align-items: stretch;
        flex-direction: column;
    }

    .fdvf-follow-button {
        width: 100%;
    }

    .fdvf-style-horizontal .fdvf-card {
        grid-template-columns: 112px 1fr;
    }

    .fdvf-style-horizontal .fdvf-card-body {
        padding: 16px;
    }

    .fdvf-style-horizontal .fdvf-store-name {
        font-size: 17px;
    }

    .fdvf-style-portrait .fdvf-card-body {
        align-items: stretch;
    }

    .fdvf-grid[data-mobile-carousel="yes"] {
        display: flex !important;
        grid-template-columns: none !important;
        align-items: stretch;
        gap: 12px !important;
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        overflow-y: visible;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        scroll-padding-inline: 0;
        overscroll-behavior-inline: contain;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        touch-action: pan-x pan-y;
    }

    .fdvf-grid[data-mobile-carousel="yes"]::-webkit-scrollbar {
        display: none;
    }

    .fdvf-grid[data-mobile-carousel="yes"] .fdvf-card {
        flex: 0 0 100%;
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .fdvf-grid[data-mobile-carousel="yes"][data-mobile-items="2"] .fdvf-card {
        flex-basis: calc(50% - 6px);
    }

    .fdvf-mobile-carousel-yes .fdvf-carousel-controls {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-block-start: 14px;
    }

    .fdvf-style-cover .fdvf-banner-image {
        object-position: var(--fdvf-mobile-cover-x) var(--fdvf-mobile-cover-y) !important;
        transform: scale(var(--fdvf-mobile-cover-scale));
    }

    .fdvf-style-cover .fdvf-card:hover .fdvf-banner-image,
    .fdvf-style-cover .fdvf-card:focus-within .fdvf-banner-image {
        transform: scale(var(--fdvf-mobile-cover-scale));
    }

    .fdvf-grid.fdvf-style-cover .fdvf-card .fdvf-card-body {
        min-height: 96px;
        padding: 0 16px 16px !important;
    }

    .fdvf-style-cover .fdvf-cover-floating-row,
    .fdvf-style-cover .fdvf-cover-identity {
        height: 50px;
    }

    .fdvf-style-cover .fdvf-avatar {
        --fdvf-avatar-size: 82px;
        right: 0;
        border-width: 4px;
    }

    .fdvf-style-cover .fdvf-follow-button {
        top: -14px;
        left: 0;
        width: auto;
        min-height: 42px;
        padding: 10px 14px;
        font-size: 12px;
    }

    .fdvf-style-cover .fdvf-store-name {
        font-size: 17px;
    }

    .fdvf-style-cover .fdvf-product-count {
        font-size: 13px;
    }

    .fdvf-grid[data-mobile-carousel="yes"][data-mobile-items="2"] .fdvf-card {
        border-radius: 18px;
    }

    .fdvf-grid[data-mobile-carousel="yes"][data-mobile-items="2"].fdvf-style-cover .fdvf-card-media {
        height: clamp(110px, 29vw, 145px);
    }

    .fdvf-grid[data-mobile-carousel="yes"][data-mobile-items="2"].fdvf-style-cover .fdvf-card-body {
        min-height: 102px;
        padding: 0 10px 12px !important;
    }

    .fdvf-grid[data-mobile-carousel="yes"][data-mobile-items="2"].fdvf-style-cover .fdvf-cover-floating-row,
    .fdvf-grid[data-mobile-carousel="yes"][data-mobile-items="2"].fdvf-style-cover .fdvf-cover-identity {
        height: 42px;
    }

    .fdvf-grid[data-mobile-carousel="yes"][data-mobile-items="2"].fdvf-style-cover .fdvf-avatar {
        --fdvf-avatar-size: 62px !important;
        right: 0;
        border-width: 4px;
    }

    .fdvf-grid[data-mobile-carousel="yes"][data-mobile-items="2"].fdvf-style-cover .fdvf-follow-button {
        top: -10px;
        left: 0;
        min-height: 36px;
        max-width: calc(100% - 76px);
        padding: 8px 10px;
        gap: 5px;
        font-size: 10px;
        border-radius: 11px;
    }

    .fdvf-grid[data-mobile-carousel="yes"][data-mobile-items="2"].fdvf-style-cover .fdvf-card-info {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        min-height: 44px;
    }

    .fdvf-grid[data-mobile-carousel="yes"][data-mobile-items="2"].fdvf-style-cover .fdvf-store-name {
        width: 100%;
        font-size: 14px;
        line-height: 1.25;
        text-align: right;
    }

    .fdvf-grid[data-mobile-carousel="yes"][data-mobile-items="2"].fdvf-style-cover .fdvf-product-count {
        justify-content: flex-start;
        width: 100%;
        font-size: 11px;
    }

    .fdvf-grid[data-mobile-carousel="yes"][data-mobile-items="2"].fdvf-style-cover .fdvf-product-icon svg {
        width: 14px;
        height: 14px;
    }

    .fdvf-grid[data-mobile-carousel="yes"][data-mobile-items="2"].fdvf-style-horizontal .fdvf-card {
        display: flex;
        flex-direction: column;
    }

    .fdvf-grid[data-mobile-carousel="yes"][data-mobile-items="2"].fdvf-style-horizontal .fdvf-card-media {
        width: 100%;
        min-height: 110px;
        height: 110px;
    }
}

@media (max-width: 390px) {
    .fdvf-grid[data-mobile-carousel="yes"] {
        gap: 10px !important;
    }

    .fdvf-grid[data-mobile-carousel="yes"][data-mobile-items="2"] .fdvf-card {
        flex-basis: calc(50% - 5px);
    }

    .fdvf-grid[data-mobile-carousel="yes"][data-mobile-items="2"].fdvf-style-cover .fdvf-card-body {
        min-height: 96px;
        padding: 0 8px 10px !important;
    }

    .fdvf-grid[data-mobile-carousel="yes"][data-mobile-items="2"].fdvf-style-cover .fdvf-cover-floating-row,
    .fdvf-grid[data-mobile-carousel="yes"][data-mobile-items="2"].fdvf-style-cover .fdvf-cover-identity {
        height: 38px;
    }

    .fdvf-grid[data-mobile-carousel="yes"][data-mobile-items="2"].fdvf-style-cover .fdvf-avatar {
        --fdvf-avatar-size: 56px !important;
    }

    .fdvf-grid[data-mobile-carousel="yes"][data-mobile-items="2"].fdvf-style-cover .fdvf-follow-button {
        top: -8px;
        min-height: 34px;
        max-width: calc(100% - 68px);
        padding: 7px 8px;
        font-size: 9px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .fdvf-card,
    .fdvf-card-media img,
    .fdvf-follow-button,
    .fdvf-grid[data-mobile-carousel="yes"] {
        transition: none !important;
        scroll-behavior: auto !important;
    }
}

/* Entire card store link */
.fdvf-card-is-linked {
    cursor: pointer;
}

.fdvf-card-is-linked:focus-visible {
    outline: 3px solid rgba(204, 0, 1, .24);
    outline-offset: 4px;
}

/* Vendor product gallery — clean v1.4.0 implementation */
.fdvf-products-strip {
    position: relative;
    z-index: 100;
    grid-column: 1 / -1;
    width: 100%;
    padding: 16px 20px 20px;
    background: #fff;
    border-top: 1px solid rgba(17, 24, 39, .07);
    pointer-events: auto;
}

.fdvf-products-grid {
    --fdvf-product-columns: 4;
    display: grid;
    grid-template-columns: repeat(var(--fdvf-product-columns), minmax(0, 1fr));
    align-items: stretch;
    gap: 10px;
    width: 100%;
    min-width: 0;
    pointer-events: auto;
}

.fdvf-product-thumb {
    position: relative;
    z-index: 101;
    display: block;
    width: 100%;
    min-width: 0;
    aspect-ratio: 275 / 183;
    overflow: hidden;
    --fdvf-product-overlay-bg: rgba(17, 24, 39, .48);
    --fdvf-product-overlay-color: #fff;
    color: var(--fdvf-product-overlay-color);
    background: #fff;
    border-radius: 12px;
    isolation: isolate;
    cursor: pointer;
    pointer-events: auto;
    -webkit-tap-highlight-color: transparent;
}

.fdvf-product-thumb-image {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    margin: 0;
    padding: 0;
    object-fit: contain;
    object-position: center center;
    background: transparent;
    border: 0;
    border-radius: inherit;
    transform: none;
    transition: filter .22s ease;
    pointer-events: none;
}

/* Product thumbnail hover — real DOM overlay, plus JS inline-state fallback. */
.elementor-widget-frame_dokan_featured_vendors .fdvf-product-thumb > .fdvf-product-thumb-overlay,
.elementor-widget-frame_dokan_featured_vendors .fdvf-product-thumb > .fdvf-product-hover-ui {
    position: absolute !important;
    inset: 0 !important;
    z-index: 999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    color: var(--fdvf-product-overlay-color) !important;
    background: var(--fdvf-product-overlay-bg) !important;
    border-radius: inherit !important;
    opacity: 0 !important;
    visibility: visible !important;
    transform: translateZ(0) !important;
    transition: opacity .22s ease !important;
    pointer-events: none !important;
}

.elementor-widget-frame_dokan_featured_vendors .fdvf-product-thumb > .fdvf-product-thumb-overlay svg,
.elementor-widget-frame_dokan_featured_vendors .fdvf-product-thumb > .fdvf-product-hover-ui svg,
.elementor-widget-frame_dokan_featured_vendors .fdvf-product-thumb > .fdvf-product-hover-ui .fdvf-product-hover-plus {
    display: block !important;
    width: 22px !important;
    height: 22px !important;
    margin: 0 !important;
    color: inherit !important;
    opacity: 0 !important;
    transform: scale(.72) rotate(-8deg) !important;
    transition: opacity .22s ease, transform .22s ease !important;
}

.elementor-widget-frame_dokan_featured_vendors .fdvf-product-thumb:hover > .fdvf-product-thumb-overlay,
.elementor-widget-frame_dokan_featured_vendors .fdvf-product-thumb:focus-visible > .fdvf-product-thumb-overlay,
.elementor-widget-frame_dokan_featured_vendors .fdvf-product-thumb.is-fdvf-product-hover > .fdvf-product-thumb-overlay,
.elementor-widget-frame_dokan_featured_vendors .fdvf-product-thumb:hover > .fdvf-product-hover-ui,
.elementor-widget-frame_dokan_featured_vendors .fdvf-product-thumb:focus-visible > .fdvf-product-hover-ui,
.elementor-widget-frame_dokan_featured_vendors .fdvf-product-thumb.is-fdvf-product-hover > .fdvf-product-hover-ui {
    opacity: 1 !important;
}

.elementor-widget-frame_dokan_featured_vendors .fdvf-product-thumb:hover > .fdvf-product-thumb-overlay svg,
.elementor-widget-frame_dokan_featured_vendors .fdvf-product-thumb:focus-visible > .fdvf-product-thumb-overlay svg,
.elementor-widget-frame_dokan_featured_vendors .fdvf-product-thumb.is-fdvf-product-hover > .fdvf-product-thumb-overlay svg,
.elementor-widget-frame_dokan_featured_vendors .fdvf-product-thumb:hover > .fdvf-product-hover-ui svg,
.elementor-widget-frame_dokan_featured_vendors .fdvf-product-thumb:focus-visible > .fdvf-product-hover-ui svg,
.elementor-widget-frame_dokan_featured_vendors .fdvf-product-thumb.is-fdvf-product-hover > .fdvf-product-hover-ui svg,
.elementor-widget-frame_dokan_featured_vendors .fdvf-product-thumb:hover > .fdvf-product-hover-ui .fdvf-product-hover-plus,
.elementor-widget-frame_dokan_featured_vendors .fdvf-product-thumb:focus-visible > .fdvf-product-hover-ui .fdvf-product-hover-plus,
.elementor-widget-frame_dokan_featured_vendors .fdvf-product-thumb.is-fdvf-product-hover > .fdvf-product-hover-ui .fdvf-product-hover-plus {
    opacity: 1 !important;
    transform: scale(1) rotate(0) !important;
}

.elementor-widget-frame_dokan_featured_vendors .fdvf-product-thumb:hover > .fdvf-product-thumb-image,
.elementor-widget-frame_dokan_featured_vendors .fdvf-product-thumb:focus-visible > .fdvf-product-thumb-image,
.elementor-widget-frame_dokan_featured_vendors .fdvf-product-thumb.is-fdvf-product-hover > .fdvf-product-thumb-image {
    filter: brightness(.88) saturate(1.04) !important;
    transform: none !important;
}

.fdvf-product-overlay-no-icon {
    background: rgba(17, 24, 39, .22) !important;
}

.fdvf-product-thumb:focus-visible {
    outline: 3px solid rgba(204, 0, 1, .25);
    outline-offset: 2px;
}

.fdvf-card-has-products .fdvf-products-strip,
.fdvf-card-has-products .fdvf-products-grid,
.fdvf-card-has-products .fdvf-product-thumb {
    pointer-events: auto !important;
}

.fdvf-style-horizontal .fdvf-products-strip {
    grid-column: 1 / -1;
}

/* The large preset is always four horizontal previews on desktop. */
.fdvf-products-layout-large .fdvf-products-grid {
    --fdvf-product-columns: 4 !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.fdvf-products-layout-large .fdvf-product-thumb {
    aspect-ratio: 275 / 183 !important;
}

.fdvf-products-layout-large .fdvf-product-thumb-image {
    object-fit: contain !important;
    object-position: center center !important;
}

@media (max-width: 767px) {
    .fdvf-products-strip {
        padding: 12px 12px 14px;
    }

    .fdvf-products-grid {
        --fdvf-product-columns: 2;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .fdvf-products-layout-large .fdvf-products-grid {
        --fdvf-product-columns: 2 !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .fdvf-grid[data-mobile-carousel="yes"][data-mobile-items="2"] .fdvf-products-strip {
        padding: 9px 9px 11px;
    }

    .fdvf-grid[data-mobile-carousel="yes"][data-mobile-items="2"] .fdvf-products-grid {
        gap: 6px;
    }

    .fdvf-grid[data-mobile-carousel="yes"][data-mobile-items="2"] .fdvf-product-thumb {
        border-radius: 8px;
    }

    .fdvf-grid[data-mobile-carousel="yes"][data-mobile-items="2"] .fdvf-product-hover-plus {
        font-size: 22px !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .fdvf-product-thumb-overlay,
    .fdvf-product-hover-ui,
    .fdvf-product-hover-plus,
    .fdvf-product-thumb-image {
        transition: none !important;
    }
}


/* v1.4.3 — automatic dark-mode support.
 * The JS adds .fdvf-theme-dark when the surrounding page is dark.
 * These rules intentionally override Elementor inline color controls only in dark mode.
 */
.fdvf-carousel-shell.fdvf-theme-dark .fdvf-card,
html[data-theme="dark"] .elementor-widget-frame_dokan_featured_vendors .fdvf-card,
body[data-theme="dark"] .elementor-widget-frame_dokan_featured_vendors .fdvf-card,
body.wp-dark-mode-active .elementor-widget-frame_dokan_featured_vendors .fdvf-card,
body.dark-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-card,
body.night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-card,
body.sp-night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-card,
html.sp-night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-card,
html.fd-dnpf-dark .elementor-widget-frame_dokan_featured_vendors .fdvf-card,
body.fd-dnpf-dark .elementor-widget-frame_dokan_featured_vendors .fdvf-card {
    color: #f8fafc !important;
    background: #101827 !important;
    border-color: rgba(148, 163, 184, .20) !important;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .32) !important;
}

.fdvf-carousel-shell.fdvf-theme-dark.fdvf-hover-lift-yes .fdvf-card:hover,
.fdvf-carousel-shell.fdvf-theme-dark.fdvf-hover-lift-yes .fdvf-card:focus-within {
    box-shadow: 0 25px 60px rgba(0, 0, 0, .46) !important;
    border-color: rgba(203, 213, 225, .28) !important;
}

.fdvf-carousel-shell.fdvf-theme-dark .fdvf-card-media,
.fdvf-carousel-shell.fdvf-theme-dark .fdvf-style-cover .fdvf-card-media {
    background: #0b1220 !important;
}

.fdvf-carousel-shell.fdvf-theme-dark .fdvf-card-body {
    background: transparent !important;
}

.fdvf-carousel-shell.fdvf-theme-dark .fdvf-store-name,
.fdvf-carousel-shell.fdvf-theme-dark .fdvf-store-name a,
html[data-theme="dark"] .elementor-widget-frame_dokan_featured_vendors .fdvf-store-name,
html[data-theme="dark"] .elementor-widget-frame_dokan_featured_vendors .fdvf-store-name a,
body[data-theme="dark"] .elementor-widget-frame_dokan_featured_vendors .fdvf-store-name,
body[data-theme="dark"] .elementor-widget-frame_dokan_featured_vendors .fdvf-store-name a,
body.wp-dark-mode-active .elementor-widget-frame_dokan_featured_vendors .fdvf-store-name,
body.wp-dark-mode-active .elementor-widget-frame_dokan_featured_vendors .fdvf-store-name a,
body.dark-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-store-name,
body.dark-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-store-name a,
body.night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-store-name,
body.night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-store-name a,
body.sp-night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-store-name,
body.sp-night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-store-name a,
html.sp-night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-store-name,
html.sp-night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-store-name a,
html.fd-dnpf-dark .elementor-widget-frame_dokan_featured_vendors .fdvf-store-name,
html.fd-dnpf-dark .elementor-widget-frame_dokan_featured_vendors .fdvf-store-name a,
body.fd-dnpf-dark .elementor-widget-frame_dokan_featured_vendors .fdvf-store-name,
body.fd-dnpf-dark .elementor-widget-frame_dokan_featured_vendors .fdvf-store-name a {
    color: #f8fafc !important;
}

.fdvf-carousel-shell.fdvf-theme-dark .fdvf-product-count,
.fdvf-carousel-shell.fdvf-theme-dark .fdvf-product-icon,
html[data-theme="dark"] .elementor-widget-frame_dokan_featured_vendors .fdvf-product-count,
body[data-theme="dark"] .elementor-widget-frame_dokan_featured_vendors .fdvf-product-count,
body.wp-dark-mode-active .elementor-widget-frame_dokan_featured_vendors .fdvf-product-count,
body.dark-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-product-count,
body.night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-product-count,
body.sp-night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-product-count,
html.sp-night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-product-count,
html.fd-dnpf-dark .elementor-widget-frame_dokan_featured_vendors .fdvf-product-count,
body.fd-dnpf-dark .elementor-widget-frame_dokan_featured_vendors .fdvf-product-count {
    color: #94a3b8 !important;
}

.fdvf-carousel-shell.fdvf-theme-dark .fdvf-products-strip,
html[data-theme="dark"] .elementor-widget-frame_dokan_featured_vendors .fdvf-products-strip,
body[data-theme="dark"] .elementor-widget-frame_dokan_featured_vendors .fdvf-products-strip,
body.wp-dark-mode-active .elementor-widget-frame_dokan_featured_vendors .fdvf-products-strip,
body.dark-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-products-strip,
body.night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-products-strip,
body.sp-night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-products-strip,
html.sp-night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-products-strip,
html.fd-dnpf-dark .elementor-widget-frame_dokan_featured_vendors .fdvf-products-strip,
body.fd-dnpf-dark .elementor-widget-frame_dokan_featured_vendors .fdvf-products-strip {
    background: #0f172a !important;
    background-color: #0f172a !important;
    border-top-color: rgba(148, 163, 184, .16) !important;
}

.fdvf-carousel-shell.fdvf-theme-dark .fdvf-product-thumb,
html[data-theme="dark"] .elementor-widget-frame_dokan_featured_vendors .fdvf-product-thumb,
body[data-theme="dark"] .elementor-widget-frame_dokan_featured_vendors .fdvf-product-thumb,
body.wp-dark-mode-active .elementor-widget-frame_dokan_featured_vendors .fdvf-product-thumb,
body.dark-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-product-thumb,
body.night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-product-thumb,
body.sp-night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-product-thumb,
html.sp-night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-product-thumb,
html.fd-dnpf-dark .elementor-widget-frame_dokan_featured_vendors .fdvf-product-thumb,
body.fd-dnpf-dark .elementor-widget-frame_dokan_featured_vendors .fdvf-product-thumb {
    background: #111827 !important;
    background-color: #111827 !important;
    --fdvf-product-overlay-bg: rgba(2, 6, 23, .62);
    --fdvf-product-overlay-color: #ffffff;
}

.fdvf-carousel-shell.fdvf-theme-dark .fdvf-avatar,
.fdvf-carousel-shell.fdvf-theme-dark .fdvf-cover-identity {
    background: #111827 !important;
    border-color: #111827 !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .35) !important;
}

.fdvf-carousel-shell.fdvf-theme-dark .fdvf-follow-button {
    color: #ffffff !important;
    background: #cc0001 !important;
    border-color: rgba(255, 255, 255, .08) !important;
}

.fdvf-carousel-shell.fdvf-theme-dark .fdvf-follow-button:hover {
    color: #ffffff !important;
    background: #e11d1d !important;
}

.fdvf-carousel-shell.fdvf-theme-dark .fdvf-follow-button.is-following {
    color: #bbf7d0 !important;
    background: rgba(22, 101, 52, .55) !important;
    border-color: rgba(187, 247, 208, .22) !important;
}

.fdvf-carousel-shell.fdvf-theme-dark .fdvf-editor-notice {
    color: #fed7aa !important;
    background: #431407 !important;
    border-color: rgba(251, 146, 60, .35) !important;
}


/* v1.4.4 — brand-matched dark mode for IranAccount/Mayosis.
 * Match the website's dark navy palette and remove the white ring around the floating follow button.
 */
.fdvf-carousel-shell.fdvf-theme-dark {
    --fdvf-dark-card-bg: #061a3d;
    --fdvf-dark-panel-bg: #042173;
    --fdvf-dark-media-bg: #031633;
    --fdvf-dark-thumb-bg: #082a5c;
    --fdvf-dark-border: rgba(255, 255, 255, .10);
    --fdvf-dark-soft-border: rgba(255, 255, 255, .07);
    --fdvf-dark-text: #ffffff;
    --fdvf-dark-muted: rgba(255, 255, 255, .70);
    --fdvf-dark-accent: #d62828;
}

.fdvf-carousel-shell.fdvf-theme-dark .fdvf-card,
html[data-theme="dark"] .elementor-widget-frame_dokan_featured_vendors .fdvf-card,
body[data-theme="dark"] .elementor-widget-frame_dokan_featured_vendors .fdvf-card,
body.wp-dark-mode-active .elementor-widget-frame_dokan_featured_vendors .fdvf-card,
body.dark-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-card,
body.night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-card,
body.sp-night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-card,
html.sp-night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-card,
html.fd-dnpf-dark .elementor-widget-frame_dokan_featured_vendors .fdvf-card,
body.fd-dnpf-dark .elementor-widget-frame_dokan_featured_vendors .fdvf-card {
    color: #ffffff !important;
    background: linear-gradient(180deg, #071f49 0%, #061a3d 100%) !important;
    border-color: rgba(255, 255, 255, .10) !important;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .36) !important;
}

.fdvf-carousel-shell.fdvf-theme-dark.fdvf-hover-lift-yes .fdvf-card:hover,
.fdvf-carousel-shell.fdvf-theme-dark.fdvf-hover-lift-yes .fdvf-card:focus-within {
    border-color: rgba(214, 40, 40, .34) !important;
    box-shadow: 0 26px 65px rgba(0, 0, 0, .48) !important;
}

.fdvf-carousel-shell.fdvf-theme-dark .fdvf-card-media,
.fdvf-carousel-shell.fdvf-theme-dark .fdvf-style-cover .fdvf-card-media {
    background: #031633 !important;
}

.fdvf-carousel-shell.fdvf-theme-dark .fdvf-card-body,
.fdvf-carousel-shell.fdvf-theme-dark .fdvf-cover-identity {
    background: #061a3d !important;
}

.fdvf-carousel-shell.fdvf-theme-dark .fdvf-store-name,
.fdvf-carousel-shell.fdvf-theme-dark .fdvf-store-name a,
html[data-theme="dark"] .elementor-widget-frame_dokan_featured_vendors .fdvf-store-name,
html[data-theme="dark"] .elementor-widget-frame_dokan_featured_vendors .fdvf-store-name a,
body[data-theme="dark"] .elementor-widget-frame_dokan_featured_vendors .fdvf-store-name,
body[data-theme="dark"] .elementor-widget-frame_dokan_featured_vendors .fdvf-store-name a,
body.wp-dark-mode-active .elementor-widget-frame_dokan_featured_vendors .fdvf-store-name,
body.wp-dark-mode-active .elementor-widget-frame_dokan_featured_vendors .fdvf-store-name a,
body.dark-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-store-name,
body.dark-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-store-name a,
body.night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-store-name,
body.night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-store-name a,
body.sp-night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-store-name,
body.sp-night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-store-name a,
html.sp-night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-store-name,
html.sp-night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-store-name a,
html.fd-dnpf-dark .elementor-widget-frame_dokan_featured_vendors .fdvf-store-name,
html.fd-dnpf-dark .elementor-widget-frame_dokan_featured_vendors .fdvf-store-name a,
body.fd-dnpf-dark .elementor-widget-frame_dokan_featured_vendors .fdvf-store-name,
body.fd-dnpf-dark .elementor-widget-frame_dokan_featured_vendors .fdvf-store-name a {
    color: #ffffff !important;
}

.fdvf-carousel-shell.fdvf-theme-dark .fdvf-product-count,
.fdvf-carousel-shell.fdvf-theme-dark .fdvf-product-icon,
html[data-theme="dark"] .elementor-widget-frame_dokan_featured_vendors .fdvf-product-count,
body[data-theme="dark"] .elementor-widget-frame_dokan_featured_vendors .fdvf-product-count,
body.wp-dark-mode-active .elementor-widget-frame_dokan_featured_vendors .fdvf-product-count,
body.dark-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-product-count,
body.night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-product-count,
body.sp-night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-product-count,
html.sp-night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-product-count,
html.fd-dnpf-dark .elementor-widget-frame_dokan_featured_vendors .fdvf-product-count,
body.fd-dnpf-dark .elementor-widget-frame_dokan_featured_vendors .fdvf-product-count {
    color: rgba(255, 255, 255, .70) !important;
}

.fdvf-carousel-shell.fdvf-theme-dark .fdvf-products-strip,
html[data-theme="dark"] .elementor-widget-frame_dokan_featured_vendors .fdvf-products-strip,
body[data-theme="dark"] .elementor-widget-frame_dokan_featured_vendors .fdvf-products-strip,
body.wp-dark-mode-active .elementor-widget-frame_dokan_featured_vendors .fdvf-products-strip,
body.dark-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-products-strip,
body.night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-products-strip,
body.sp-night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-products-strip,
html.sp-night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-products-strip,
html.fd-dnpf-dark .elementor-widget-frame_dokan_featured_vendors .fdvf-products-strip,
body.fd-dnpf-dark .elementor-widget-frame_dokan_featured_vendors .fdvf-products-strip {
    background: #061a3d !important;
    background-color: #061a3d !important;
    border-top-color: rgba(255, 255, 255, .08) !important;
}

.fdvf-carousel-shell.fdvf-theme-dark .fdvf-product-thumb,
html[data-theme="dark"] .elementor-widget-frame_dokan_featured_vendors .fdvf-product-thumb,
body[data-theme="dark"] .elementor-widget-frame_dokan_featured_vendors .fdvf-product-thumb,
body.wp-dark-mode-active .elementor-widget-frame_dokan_featured_vendors .fdvf-product-thumb,
body.dark-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-product-thumb,
body.night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-product-thumb,
body.sp-night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-product-thumb,
html.sp-night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-product-thumb,
html.fd-dnpf-dark .elementor-widget-frame_dokan_featured_vendors .fdvf-product-thumb,
body.fd-dnpf-dark .elementor-widget-frame_dokan_featured_vendors .fdvf-product-thumb {
    background: #082a5c !important;
    background-color: #082a5c !important;
    border-color: rgba(255, 255, 255, .08) !important;
    --fdvf-product-overlay-bg: rgba(214, 40, 40, .74);
    --fdvf-product-overlay-color: #ffffff;
}

.fdvf-carousel-shell.fdvf-theme-dark .fdvf-avatar,
.fdvf-carousel-shell.fdvf-theme-dark .fdvf-cover-identity {
    background: #061a3d !important;
    border-color: #061a3d !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .38) !important;
}

/* Critical: override Elementor's saved white ring in dark mode. */
.fdvf-carousel-shell.fdvf-theme-dark .fdvf-style-cover .fdvf-follow-button,
.fdvf-carousel-shell.fdvf-theme-dark .fdvf-follow-button,
html[data-theme="dark"] .elementor-widget-frame_dokan_featured_vendors .fdvf-style-cover .fdvf-follow-button,
body[data-theme="dark"] .elementor-widget-frame_dokan_featured_vendors .fdvf-style-cover .fdvf-follow-button,
body.wp-dark-mode-active .elementor-widget-frame_dokan_featured_vendors .fdvf-style-cover .fdvf-follow-button,
body.dark-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-style-cover .fdvf-follow-button,
body.night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-style-cover .fdvf-follow-button,
body.sp-night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-style-cover .fdvf-follow-button,
html.sp-night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-style-cover .fdvf-follow-button,
html.fd-dnpf-dark .elementor-widget-frame_dokan_featured_vendors .fdvf-style-cover .fdvf-follow-button,
body.fd-dnpf-dark .elementor-widget-frame_dokan_featured_vendors .fdvf-style-cover .fdvf-follow-button {
    --fdvf-follow-ring-color: #061a3d !important;
    color: #ffffff !important;
    background: #d62828 !important;
    border-color: rgba(255, 255, 255, .12) !important;
}

.fdvf-carousel-shell.fdvf-theme-dark .fdvf-follow-button:hover {
    color: #ffffff !important;
    background: #ea1919 !important;
}

.fdvf-carousel-shell.fdvf-theme-dark .fdvf-follow-button.is-following {
    --fdvf-follow-ring-color: #061a3d !important;
    color: #ffffff !important;
    background: #003049 !important;
    border-color: rgba(255, 255, 255, .14) !important;
}

.fdvf-carousel-shell.fdvf-theme-dark .fdvf-editor-notice {
    color: #ffd9d9 !important;
    background: rgba(214, 40, 40, .16) !important;
    border-color: rgba(214, 40, 40, .35) !important;
}


/* v1.4.5 — neutral black/gray dark palette.
 * Replace the v1.4.4 navy palette with black, charcoal and gray tones while preserving the red brand accent.
 */
.fdvf-carousel-shell.fdvf-theme-dark {
    --fdvf-dark-card-bg: #171717;
    --fdvf-dark-panel-bg: #141414;
    --fdvf-dark-media-bg: #0f0f0f;
    --fdvf-dark-thumb-bg: #202020;
    --fdvf-dark-border: rgba(255, 255, 255, .10);
    --fdvf-dark-soft-border: rgba(255, 255, 255, .07);
    --fdvf-dark-text: #f5f5f5;
    --fdvf-dark-muted: #a3a3a3;
    --fdvf-dark-accent: #d62828;
}

.fdvf-carousel-shell.fdvf-theme-dark .fdvf-card,
html[data-theme="dark"] .elementor-widget-frame_dokan_featured_vendors .fdvf-card,
body[data-theme="dark"] .elementor-widget-frame_dokan_featured_vendors .fdvf-card,
body.wp-dark-mode-active .elementor-widget-frame_dokan_featured_vendors .fdvf-card,
body.dark-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-card,
body.night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-card,
body.sp-night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-card,
html.sp-night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-card,
html.fd-dnpf-dark .elementor-widget-frame_dokan_featured_vendors .fdvf-card,
body.fd-dnpf-dark .elementor-widget-frame_dokan_featured_vendors .fdvf-card {
    color: #f5f5f5 !important;
    background: linear-gradient(180deg, #1f1f1f 0%, #171717 100%) !important;
    border-color: rgba(255, 255, 255, .10) !important;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .42) !important;
}

.fdvf-carousel-shell.fdvf-theme-dark.fdvf-hover-lift-yes .fdvf-card:hover,
.fdvf-carousel-shell.fdvf-theme-dark.fdvf-hover-lift-yes .fdvf-card:focus-within {
    border-color: rgba(214, 40, 40, .28) !important;
    box-shadow: 0 26px 65px rgba(0, 0, 0, .56) !important;
}

.fdvf-carousel-shell.fdvf-theme-dark .fdvf-card-media,
.fdvf-carousel-shell.fdvf-theme-dark .fdvf-style-cover .fdvf-card-media {
    background: #0f0f0f !important;
}

.fdvf-carousel-shell.fdvf-theme-dark .fdvf-card-body,
.fdvf-carousel-shell.fdvf-theme-dark .fdvf-cover-identity {
    background: #171717 !important;
}

.fdvf-carousel-shell.fdvf-theme-dark .fdvf-store-name,
.fdvf-carousel-shell.fdvf-theme-dark .fdvf-store-name a,
html[data-theme="dark"] .elementor-widget-frame_dokan_featured_vendors .fdvf-store-name,
html[data-theme="dark"] .elementor-widget-frame_dokan_featured_vendors .fdvf-store-name a,
body[data-theme="dark"] .elementor-widget-frame_dokan_featured_vendors .fdvf-store-name,
body[data-theme="dark"] .elementor-widget-frame_dokan_featured_vendors .fdvf-store-name a,
body.wp-dark-mode-active .elementor-widget-frame_dokan_featured_vendors .fdvf-store-name,
body.wp-dark-mode-active .elementor-widget-frame_dokan_featured_vendors .fdvf-store-name a,
body.dark-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-store-name,
body.dark-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-store-name a,
body.night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-store-name,
body.night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-store-name a,
body.sp-night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-store-name,
body.sp-night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-store-name a,
html.sp-night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-store-name,
html.sp-night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-store-name a,
html.fd-dnpf-dark .elementor-widget-frame_dokan_featured_vendors .fdvf-store-name,
html.fd-dnpf-dark .elementor-widget-frame_dokan_featured_vendors .fdvf-store-name a,
body.fd-dnpf-dark .elementor-widget-frame_dokan_featured_vendors .fdvf-store-name,
body.fd-dnpf-dark .elementor-widget-frame_dokan_featured_vendors .fdvf-store-name a {
    color: #f5f5f5 !important;
}

.fdvf-carousel-shell.fdvf-theme-dark .fdvf-product-count,
.fdvf-carousel-shell.fdvf-theme-dark .fdvf-product-icon,
html[data-theme="dark"] .elementor-widget-frame_dokan_featured_vendors .fdvf-product-count,
body[data-theme="dark"] .elementor-widget-frame_dokan_featured_vendors .fdvf-product-count,
body.wp-dark-mode-active .elementor-widget-frame_dokan_featured_vendors .fdvf-product-count,
body.dark-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-product-count,
body.night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-product-count,
body.sp-night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-product-count,
html.sp-night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-product-count,
html.fd-dnpf-dark .elementor-widget-frame_dokan_featured_vendors .fdvf-product-count,
body.fd-dnpf-dark .elementor-widget-frame_dokan_featured_vendors .fdvf-product-count {
    color: #a3a3a3 !important;
}

.fdvf-carousel-shell.fdvf-theme-dark .fdvf-products-strip,
html[data-theme="dark"] .elementor-widget-frame_dokan_featured_vendors .fdvf-products-strip,
body[data-theme="dark"] .elementor-widget-frame_dokan_featured_vendors .fdvf-products-strip,
body.wp-dark-mode-active .elementor-widget-frame_dokan_featured_vendors .fdvf-products-strip,
body.dark-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-products-strip,
body.night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-products-strip,
body.sp-night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-products-strip,
html.sp-night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-products-strip,
html.fd-dnpf-dark .elementor-widget-frame_dokan_featured_vendors .fdvf-products-strip,
body.fd-dnpf-dark .elementor-widget-frame_dokan_featured_vendors .fdvf-products-strip {
    background: #171717 !important;
    background-color: #171717 !important;
    border-top-color: rgba(255, 255, 255, .08) !important;
}

.fdvf-carousel-shell.fdvf-theme-dark .fdvf-product-thumb,
html[data-theme="dark"] .elementor-widget-frame_dokan_featured_vendors .fdvf-product-thumb,
body[data-theme="dark"] .elementor-widget-frame_dokan_featured_vendors .fdvf-product-thumb,
body.wp-dark-mode-active .elementor-widget-frame_dokan_featured_vendors .fdvf-product-thumb,
body.dark-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-product-thumb,
body.night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-product-thumb,
body.sp-night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-product-thumb,
html.sp-night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-product-thumb,
html.fd-dnpf-dark .elementor-widget-frame_dokan_featured_vendors .fdvf-product-thumb,
body.fd-dnpf-dark .elementor-widget-frame_dokan_featured_vendors .fdvf-product-thumb {
    background: #202020 !important;
    background-color: #202020 !important;
    border-color: rgba(255, 255, 255, .08) !important;
    --fdvf-product-overlay-bg: rgba(0, 0, 0, .66);
    --fdvf-product-overlay-color: #ffffff;
}

.fdvf-carousel-shell.fdvf-theme-dark .fdvf-avatar,
.fdvf-carousel-shell.fdvf-theme-dark .fdvf-cover-identity {
    background: #171717 !important;
    border-color: #171717 !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .42) !important;
}

.fdvf-carousel-shell.fdvf-theme-dark .fdvf-style-cover .fdvf-follow-button,
.fdvf-carousel-shell.fdvf-theme-dark .fdvf-follow-button,
html[data-theme="dark"] .elementor-widget-frame_dokan_featured_vendors .fdvf-style-cover .fdvf-follow-button,
body[data-theme="dark"] .elementor-widget-frame_dokan_featured_vendors .fdvf-style-cover .fdvf-follow-button,
body.wp-dark-mode-active .elementor-widget-frame_dokan_featured_vendors .fdvf-style-cover .fdvf-follow-button,
body.dark-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-style-cover .fdvf-follow-button,
body.night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-style-cover .fdvf-follow-button,
body.sp-night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-style-cover .fdvf-follow-button,
html.sp-night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-style-cover .fdvf-follow-button,
html.fd-dnpf-dark .elementor-widget-frame_dokan_featured_vendors .fdvf-style-cover .fdvf-follow-button,
body.fd-dnpf-dark .elementor-widget-frame_dokan_featured_vendors .fdvf-style-cover .fdvf-follow-button {
    --fdvf-follow-ring-color: #171717 !important;
    color: #ffffff !important;
    background: #d62828 !important;
    border-color: rgba(255, 255, 255, .10) !important;
}

.fdvf-carousel-shell.fdvf-theme-dark .fdvf-follow-button:hover {
    color: #ffffff !important;
    background: #e13232 !important;
}

.fdvf-carousel-shell.fdvf-theme-dark .fdvf-follow-button.is-following {
    --fdvf-follow-ring-color: #171717 !important;
    color: #f5f5f5 !important;
    background: #262626 !important;
    border-color: rgba(255, 255, 255, .14) !important;
}

.fdvf-carousel-shell.fdvf-theme-dark .fdvf-editor-notice {
    color: #fecaca !important;
    background: rgba(214, 40, 40, .14) !important;
    border-color: rgba(214, 40, 40, .32) !important;
}


/* v1.4.6 — darker neutral dark palette + remove the two-tone middle band.
 * Keep the brand red accent, but make all card panels solid black/gray.
 */
.fdvf-carousel-shell.fdvf-theme-dark {
    --fdvf-dark-card-bg: #101010;
    --fdvf-dark-panel-bg: #101010;
    --fdvf-dark-media-bg: #090909;
    --fdvf-dark-thumb-bg: #181818;
    --fdvf-dark-border: rgba(255, 255, 255, .085);
    --fdvf-dark-soft-border: rgba(255, 255, 255, .06);
    --fdvf-dark-text: #f7f7f7;
    --fdvf-dark-muted: #a0a0a0;
    --fdvf-dark-accent: #d62828;
}

.fdvf-carousel-shell.fdvf-theme-dark .fdvf-card,
html[data-theme="dark"] .elementor-widget-frame_dokan_featured_vendors .fdvf-card,
body[data-theme="dark"] .elementor-widget-frame_dokan_featured_vendors .fdvf-card,
body.wp-dark-mode-active .elementor-widget-frame_dokan_featured_vendors .fdvf-card,
body.dark-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-card,
body.night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-card,
body.sp-night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-card,
html.sp-night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-card,
html.fd-dnpf-dark .elementor-widget-frame_dokan_featured_vendors .fdvf-card,
body.fd-dnpf-dark .elementor-widget-frame_dokan_featured_vendors .fdvf-card {
    color: #f7f7f7 !important;
    background: #101010 !important;
    background-color: #101010 !important;
    background-image: none !important;
    border-color: rgba(255, 255, 255, .085) !important;
    box-shadow: 0 22px 55px rgba(0, 0, 0, .50) !important;
}

.fdvf-carousel-shell.fdvf-theme-dark.fdvf-hover-lift-yes .fdvf-card:hover,
.fdvf-carousel-shell.fdvf-theme-dark.fdvf-hover-lift-yes .fdvf-card:focus-within {
    border-color: rgba(214, 40, 40, .26) !important;
    box-shadow: 0 30px 75px rgba(0, 0, 0, .64) !important;
}

.fdvf-carousel-shell.fdvf-theme-dark .fdvf-card-media,
.fdvf-carousel-shell.fdvf-theme-dark .fdvf-style-cover .fdvf-card-media {
    background: #090909 !important;
    background-color: #090909 !important;
}

.fdvf-carousel-shell.fdvf-theme-dark .fdvf-card-body,
.fdvf-carousel-shell.fdvf-theme-dark .fdvf-cover-floating-row,
.fdvf-carousel-shell.fdvf-theme-dark .fdvf-cover-identity,
.fdvf-carousel-shell.fdvf-theme-dark .fdvf-products-strip,
html[data-theme="dark"] .elementor-widget-frame_dokan_featured_vendors .fdvf-products-strip,
body[data-theme="dark"] .elementor-widget-frame_dokan_featured_vendors .fdvf-products-strip,
body.wp-dark-mode-active .elementor-widget-frame_dokan_featured_vendors .fdvf-products-strip,
body.dark-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-products-strip,
body.night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-products-strip,
body.sp-night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-products-strip,
html.sp-night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-products-strip,
html.fd-dnpf-dark .elementor-widget-frame_dokan_featured_vendors .fdvf-products-strip,
body.fd-dnpf-dark .elementor-widget-frame_dokan_featured_vendors .fdvf-products-strip {
    background: #101010 !important;
    background-color: #101010 !important;
    background-image: none !important;
}

.fdvf-carousel-shell.fdvf-theme-dark .fdvf-products-strip,
html[data-theme="dark"] .elementor-widget-frame_dokan_featured_vendors .fdvf-products-strip,
body[data-theme="dark"] .elementor-widget-frame_dokan_featured_vendors .fdvf-products-strip,
body.wp-dark-mode-active .elementor-widget-frame_dokan_featured_vendors .fdvf-products-strip,
body.dark-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-products-strip,
body.night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-products-strip,
body.sp-night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-products-strip,
html.sp-night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-products-strip,
html.fd-dnpf-dark .elementor-widget-frame_dokan_featured_vendors .fdvf-products-strip,
body.fd-dnpf-dark .elementor-widget-frame_dokan_featured_vendors .fdvf-products-strip {
    border-top-color: rgba(255, 255, 255, .065) !important;
}

.fdvf-carousel-shell.fdvf-theme-dark .fdvf-product-thumb,
html[data-theme="dark"] .elementor-widget-frame_dokan_featured_vendors .fdvf-product-thumb,
body[data-theme="dark"] .elementor-widget-frame_dokan_featured_vendors .fdvf-product-thumb,
body.wp-dark-mode-active .elementor-widget-frame_dokan_featured_vendors .fdvf-product-thumb,
body.dark-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-product-thumb,
body.night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-product-thumb,
body.sp-night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-product-thumb,
html.sp-night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-product-thumb,
html.fd-dnpf-dark .elementor-widget-frame_dokan_featured_vendors .fdvf-product-thumb,
body.fd-dnpf-dark .elementor-widget-frame_dokan_featured_vendors .fdvf-product-thumb {
    background: #181818 !important;
    background-color: #181818 !important;
    border-color: rgba(255, 255, 255, .065) !important;
    --fdvf-product-overlay-bg: rgba(0, 0, 0, .70);
    --fdvf-product-overlay-color: #ffffff;
}

.fdvf-carousel-shell.fdvf-theme-dark .fdvf-store-name,
.fdvf-carousel-shell.fdvf-theme-dark .fdvf-store-name a {
    color: #f7f7f7 !important;
}

.fdvf-carousel-shell.fdvf-theme-dark .fdvf-product-count,
.fdvf-carousel-shell.fdvf-theme-dark .fdvf-product-icon {
    color: #a0a0a0 !important;
}

.fdvf-carousel-shell.fdvf-theme-dark .fdvf-avatar,
.fdvf-carousel-shell.fdvf-theme-dark .fdvf-cover-identity {
    background: #101010 !important;
    background-color: #101010 !important;
    border-color: #101010 !important;
    box-shadow: 0 13px 30px rgba(0, 0, 0, .52) !important;
}

.fdvf-carousel-shell.fdvf-theme-dark .fdvf-style-cover .fdvf-follow-button,
.fdvf-carousel-shell.fdvf-theme-dark .fdvf-follow-button,
html[data-theme="dark"] .elementor-widget-frame_dokan_featured_vendors .fdvf-style-cover .fdvf-follow-button,
body[data-theme="dark"] .elementor-widget-frame_dokan_featured_vendors .fdvf-style-cover .fdvf-follow-button,
body.wp-dark-mode-active .elementor-widget-frame_dokan_featured_vendors .fdvf-style-cover .fdvf-follow-button,
body.dark-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-style-cover .fdvf-follow-button,
body.night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-style-cover .fdvf-follow-button,
body.sp-night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-style-cover .fdvf-follow-button,
html.sp-night-mode .elementor-widget-frame_dokan_featured_vendors .fdvf-style-cover .fdvf-follow-button,
html.fd-dnpf-dark .elementor-widget-frame_dokan_featured_vendors .fdvf-style-cover .fdvf-follow-button,
body.fd-dnpf-dark .elementor-widget-frame_dokan_featured_vendors .fdvf-style-cover .fdvf-follow-button {
    --fdvf-follow-ring-color: #101010 !important;
    color: #ffffff !important;
    background: #d62828 !important;
    border-color: rgba(255, 255, 255, .08) !important;
}

.fdvf-carousel-shell.fdvf-theme-dark .fdvf-follow-button:hover {
    color: #ffffff !important;
    background: #ec3333 !important;
}

.fdvf-carousel-shell.fdvf-theme-dark .fdvf-follow-button.is-following {
    --fdvf-follow-ring-color: #101010 !important;
    color: #f7f7f7 !important;
    background: #242424 !important;
    border-color: rgba(255, 255, 255, .12) !important;
}
