/* =========================================================
   VENTACTIVE STORE
   PREMIUM CATALOG 3.0
========================================================= */

.vcStore {
    position: relative;
    padding: 28px 0 70px;
    background:
        radial-gradient(
            circle at 8% 0%,
            rgba(70, 132, 196, 0.08),
            transparent 28%
        ),
        radial-gradient(
            circle at 92% 8%,
            rgba(73, 207, 179, 0.07),
            transparent 24%
        ),
        linear-gradient(
            180deg,
            #f8fbfd 0%,
            #ffffff 20%,
            #ffffff 100%
        );
}

.vcStoreInner {
    width: min(1500px, calc(100% - 48px));
    margin: 0 auto;
}


/* =========================================================
   COMMAND BAR
========================================================= */

.vcStoreCommand {
    position: sticky;
    z-index: 80;
    top: 92px;
    display: grid;
    grid-template-columns:
        auto
        minmax(0, 1fr)
        auto;
    align-items: center;
    gap: 18px;
    min-height: 78px;
    padding: 12px 14px 12px 18px;
    border: 1px solid rgba(22, 59, 94, 0.07);
    border-radius: 24px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.94),
            rgba(248, 251, 254, 0.9)
        );
    box-shadow:
        0 18px 48px rgba(25, 61, 94, 0.09),
        0 4px 14px rgba(25, 61, 94, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    backdrop-filter: blur(22px);
}


/* =========================================================
   COMMAND INTRO
========================================================= */

.vcStoreCommandIntro {
    min-width: 150px;
}

.vcStoreCommandEyebrow {
    display: block;
    margin-bottom: 3px;
    color: #8b9bab;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.vcStoreCommandTitle {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.vcStoreCommandTitle strong {
    color: #173b60;
    font-size: 28px;
    line-height: 1;
    letter-spacing: -0.05em;
}

.vcStoreCommandTitle span {
    color: #7f91a2;
    font-size: 10px;
    font-weight: 800;
}


/* =========================================================
   QUICK FILTERS
========================================================= */

.vcStoreQuickFilters {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    overflow: visible;
}

.vcStoreQuickFilterWrap {
    position: relative;
    flex: 0 0 auto;
}

.vcStoreQuickFilter,
.vcStoreAllFilters {
    flex: 0 0 auto;
    min-height: 44px;
    padding: 0 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid rgba(24, 61, 96, 0.075);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.78);
    color: #4a6680;
    box-shadow:
        0 7px 18px rgba(24, 59, 91, 0.035),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    cursor: pointer;
    font: inherit;
    font-size: 10px;
    font-weight: 850;
    white-space: nowrap;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease,
        color 0.2s ease;
}

.vcStoreQuickFilter:hover,
.vcStoreAllFilters:hover {
    transform: translateY(-2px);
    border-color: rgba(37, 106, 168, 0.14);
    background: #ffffff;
    box-shadow:
        0 11px 24px rgba(24, 59, 91, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.vcStoreQuickFilter.is-open {
    border-color: rgba(37, 106, 168, 0.18);
    background: #ffffff;
    box-shadow:
        0 12px 26px rgba(24, 59, 91, 0.08);
}

.vcStoreQuickFilter svg,
.vcStoreAllFilters svg {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
}

.vcStoreQuickFilter.is-open > svg {
    transform: rotate(180deg);
}

.vcStoreQuickFilter strong {
    color: #2f6088;
    font-size: 9px;
}

.vcStoreQuickFilter.is-active {
    border-color: rgba(33, 104, 168, 0.17);
    background:
        linear-gradient(
            135deg,
            #eef7ff,
            #f6fbff
        );
    color: #1e689f;
}

.vcStoreOfferFilter.is-active {
    background:
        linear-gradient(
            135deg,
            #edf9f4,
            #f6fdf9
        );
    color: #198868;
}

.vcStoreOfferDot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #34c99a;
    box-shadow:
        0 0 0 4px rgba(52, 201, 154, 0.11);
}

.vcStoreAllFilters {
    position: relative;
    border-color: transparent;
    background:
        linear-gradient(
            135deg,
            #173b60,
            #2d75b7
        );
    color: #ffffff;
    box-shadow:
        0 10px 23px rgba(24, 72, 113, 0.16);
}

.vcStoreAllFilters:hover {
    background:
        linear-gradient(
            135deg,
            #1b4268,
            #347fc3
        );
    color: #ffffff;
}

.vcStoreFilterIndicator {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #6ce2ba;
    box-shadow:
        0 0 0 4px rgba(108, 226, 186, 0.13);
}


/* =========================================================
   FILTER POPOVERS
========================================================= */

.vcStorePopover {
    position: absolute;
    z-index: 180;
    top: calc(100% + 10px);
    left: 0;
    width: 330px;
    padding: 16px;
    border: 1px solid rgba(22, 59, 94, 0.08);
    border-radius: 18px;
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(78, 157, 216, 0.07),
            transparent 28%
        ),
        rgba(255, 255, 255, 0.98);
    box-shadow:
        0 24px 60px rgba(18, 52, 81, 0.16),
        0 5px 16px rgba(18, 52, 81, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    backdrop-filter: blur(24px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform:
        translateY(-7px)
        scale(0.98);
    transform-origin: top left;
    transition:
        opacity 0.2s ease,
        transform 0.25s cubic-bezier(.2,.75,.3,1),
        visibility 0.2s ease;
}

.vcStorePopover.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform:
        translateY(0)
        scale(1);
}

.vcStorePopoverHead {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
}

.vcStorePopoverHead > div {
    min-width: 0;
}

.vcStorePopoverHead span {
    display: block;
    color: #95a3b0;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.vcStorePopoverHead strong {
    display: block;
    margin-top: 3px;
    color: #294b68;
    font-size: 13px;
    font-weight: 850;
}

.vcStorePopoverHead > a {
    flex: 0 0 auto;
    color: #2b73ac;
    text-decoration: none;
    font-size: 8px;
    font-weight: 900;
}


/* =========================================================
   PRICE POPOVER
========================================================= */

.vcStorePopoverPriceFields {
    display: grid;
    grid-template-columns:
        1fr auto 1fr;
    align-items: end;
    gap: 9px;
}

.vcStorePopoverPriceFields label > span {
    display: block;
    margin-bottom: 5px;
    color: #91a0ad;
    font-size: 8px;
    font-weight: 850;
    text-transform: uppercase;
}

.vcStorePopoverPriceFields label > div {
    height: 42px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    gap: 4px;
    border: 1px solid rgba(24, 61, 95, 0.08);
    border-radius: 12px;
    background: #ffffff;
}

.vcStorePopoverPriceFields small {
    color: #8ca0b1;
    font-size: 10px;
}

.vcStorePopoverPriceFields input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #294965;
    font: inherit;
    font-size: 11px;
    font-weight: 850;
}

.vcStorePopoverPriceFields > span {
    margin-bottom: 17px;
    color: #9aabba;
}

.vcStorePopoverRange {
    position: relative;
    height: 38px;
    margin-top: 13px;
}

.vcStorePopoverRangeTrack {
    position: absolute;
    left: 0;
    right: 0;
    top: 18px;
    height: 4px;
    border-radius: 999px;
    background: #e6edf3;
}

.vcStorePopoverRangeTrack > div {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: inherit;
    background:
        linear-gradient(
            90deg,
            #22689f,
            #42acd1
        );
}

.vcStorePopoverRange input[type="range"] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 38px;
    appearance: none;
    background: transparent;
    pointer-events: none;
}

.vcStorePopoverRange
input[type="range"]::-webkit-slider-thumb {
    width: 18px;
    height: 18px;
    appearance: none;
    border: 3px solid #ffffff;
    border-radius: 50%;
    background: #287bb5;
    box-shadow:
        0 5px 14px rgba(31, 102, 157, 0.26);
    pointer-events: auto;
    cursor: grab;
}

.vcStorePopoverRange
input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border: 3px solid #ffffff;
    border-radius: 50%;
    background: #287bb5;
    box-shadow:
        0 5px 14px rgba(31, 102, 157, 0.26);
    pointer-events: auto;
    cursor: grab;
}

.vcStorePopoverPresets {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.vcStorePopoverPresets button {
    min-height: 31px;
    padding: 0 9px;
    border: 1px solid rgba(24, 61, 95, 0.07);
    border-radius: 10px;
    background: #f8fbfd;
    color: #617d93;
    cursor: pointer;
    font: inherit;
    font-size: 7.5px;
    font-weight: 850;
}

.vcStorePopoverPresets button:hover,
.vcStorePopoverPresets button.is-active {
    border-color: rgba(38, 112, 174, 0.16);
    background:
        linear-gradient(
            135deg,
            #eaf5ff,
            #f7fbff
        );
    color: #216ea8;
}

.vcStorePopoverApply {
    width: 100%;
    min-height: 42px;
    margin-top: 13px;
    padding: 0 12px 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border: 0;
    border-radius: 12px;
    background:
        linear-gradient(
            135deg,
            #173b60,
            #2d75b7
        );
    color: #ffffff;
    box-shadow:
        0 10px 22px rgba(25, 72, 113, 0.17);
    cursor: pointer;
    font: inherit;
    font-size: 9px;
    font-weight: 900;
}

.vcStorePopoverApply svg {
    width: 15px;
    height: 15px;
}


/* =========================================================
   RATING POPOVER
========================================================= */

.vcStoreRatingPopover {
    width: 290px;
}

.vcStorePopoverRatings {
    display: grid;
    grid-template-columns:
        repeat(2, 1fr);
    gap: 7px;
}

.vcStorePopoverRatings button {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid rgba(24, 61, 95, 0.07);
    border-radius: 12px;
    background: #ffffff;
    color: #607a8f;
    cursor: pointer;
    font: inherit;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.vcStorePopoverRatings button:hover {
    transform: translateY(-2px);
    border-color: rgba(39, 106, 168, 0.13);
    box-shadow:
        0 8px 18px rgba(24, 61, 94, 0.06);
}

.vcStorePopoverRatings button.is-active {
    border-color: rgba(39, 106, 168, 0.17);
    background:
        linear-gradient(
            135deg,
            #eef7ff,
            #f7fbff
        );
    color: #2c74ad;
}

.vcStorePopoverRatings span {
    color: #f4b53a;
    font-size: 13px;
}

.vcStorePopoverRatings strong {
    font-size: 10px;
}

.vcStorePopoverRatings small {
    color: #93a2b0;
    font-size: 7px;
}


/* =========================================================
   COMMAND RIGHT
========================================================= */

.vcStoreCommandRight {
    display: flex;
    align-items: center;
    gap: 8px;
}

.vcStoreSort {
    position: relative;
    min-width: 180px;
    min-height: 44px;
    border: 1px solid rgba(23, 59, 94, 0.07);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.78);
}

.vcStoreSort select {
    appearance: none;
    width: 100%;
    height: 42px;
    padding:
        0 34px
        0 13px;
    border: 0;
    outline: 0;
    background: transparent;
    color: #42607a;
    cursor: pointer;
    font: inherit;
    font-size: 10px;
    font-weight: 850;
}

.vcStoreSort > svg {
    position: absolute;
    right: 10px;
    top: 50%;
    width: 16px;
    height: 16px;
    transform: translateY(-50%);
    color: #7c91a4;
    pointer-events: none;
}


/* =========================================================
   VIEW SWITCHER
========================================================= */

.vcStoreViews {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    border: 1px solid rgba(23, 59, 94, 0.07);
    border-radius: 14px;
    background: rgba(247, 250, 253, 0.9);
}

.vcStoreViews button {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: #93a3b0;
    cursor: pointer;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.vcStoreViews button:hover {
    color: #52728d;
}

.vcStoreViews button.is-active {
    background: #ffffff;
    color: #2b668f;
    box-shadow:
        0 5px 13px rgba(24, 61, 95, 0.08);
}

.vcStoreViews button svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
}


/* =========================================================
   META
========================================================= */

.vcStoreMeta {
    min-height: 48px;
    padding: 0 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #97a5b2;
    font-size: 9px;
}

.vcStoreMeta strong {
    color: #647f95;
}

.vcStoreMetaSignal {
    display: flex;
    align-items: center;
    gap: 7px;
}

.vcStoreMetaSignal > span {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #31c596;
    box-shadow:
        0 0 0 4px rgba(49, 197, 150, 0.09);
}


/* =========================================================
   PRODUCT GRID
========================================================= */

.vcStoreGrid {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
    gap: 18px;
}


/* =========================================================
   PRODUCT CARD
========================================================= */

.vcStoreProduct {
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(23, 60, 94, 0.06);
    border-radius: 24px;
    background:
        linear-gradient(
            145deg,
            #ffffff,
            #fcfdfe
        );
    box-shadow:
        0 10px 28px rgba(26, 61, 94, 0.05),
        inset 0 1px 0 #ffffff;
    transform: translateZ(0);
    transition:
        transform 0.3s cubic-bezier(.2,.75,.3,1),
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.vcStoreProduct:hover {
    transform: translateY(-7px);
    border-color: rgba(39, 106, 165, 0.12);
    box-shadow:
        0 25px 54px rgba(26, 61, 94, 0.11),
        0 5px 15px rgba(26, 61, 94, 0.035),
        inset 0 1px 0 #ffffff;
}


/* =========================================================
   MEDIA
========================================================= */

.vcStoreProductMedia {
    position: relative;
    margin: 7px;
    overflow: hidden;
    border-radius: 19px;
    background:
        radial-gradient(
            circle at 50% 42%,
            #ffffff 0%,
            #f3f7fa 64%,
            #ebf1f6 100%
        );
}

.vcStoreProductImage {
    position: relative;
    height: 255px;
    display: block;
    overflow: hidden;
}

.vcStoreProductImage::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 16px;
    width: 54%;
    height: 18px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: rgba(22, 58, 90, 0.08);
    filter: blur(12px);
}

.vcStoreProductImage img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    padding: 22px;
    transform: scale(0.96);
    transition:
        transform 0.4s cubic-bezier(.2,.75,.3,1),
        opacity 0.3s ease;
}

.vcStoreProduct:hover
.vcStoreProductImage img {
    transform: scale(1.045);
}


/* =========================================================
   BADGES
========================================================= */

.vcStoreProductBadges {
    position: absolute;
    z-index: 6;
    left: 10px;
    top: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.vcStoreDiscount,
.vcStoreShippingBadge {
    min-height: 25px;
    padding: 0 8px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.04em;
}

.vcStoreDiscount {
    background: rgba(23, 59, 95, 0.92);
    color: #ffffff;
    box-shadow:
        0 7px 16px rgba(24, 63, 99, 0.17);
}

.vcStoreShippingBadge {
    border: 1px solid rgba(38, 167, 128, 0.12);
    background: rgba(238, 251, 246, 0.94);
    color: #248969;
}


/* =========================================================
   PREVIEW TOP
========================================================= */

.vcStorePreview {
    position: absolute;
    z-index: 7;
    top: 10px;
    right: 10px;
    min-height: 34px;
    padding: 0 9px;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(24, 62, 97, 0.07);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.84);
    color: #678198;
    box-shadow:
        0 7px 18px rgba(24, 61, 95, 0.06);
    backdrop-filter: blur(12px);
    cursor: pointer;
    font: inherit;
    opacity: 0;
    transform:
        translateY(-5px)
        scale(0.96);
    transition:
        opacity 0.22s ease,
        transform 0.22s ease,
        background 0.22s ease;
}

.vcStoreProduct:hover
.vcStorePreview {
    opacity: 1;
    transform:
        translateY(0)
        scale(1);
}

.vcStorePreview:hover {
    background: #ffffff;
}

.vcStorePreview svg {
    width: 15px;
    height: 15px;
}

.vcStorePreview span {
    font-size: 8px;
    font-weight: 850;
}


/* =========================================================
   BUY BAR
========================================================= */

.vcStoreProductBuyBar {
    position: absolute;
    z-index: 7;
    left: 10px;
    right: 10px;
    bottom: 10px;
    display: grid;
    grid-template-columns:
        auto 1fr;
    gap: 7px;
    transform: translateY(68px);
    opacity: 0;
    transition:
        transform 0.28s cubic-bezier(.2,.75,.3,1),
        opacity 0.22s ease;
}

.vcStoreProduct:hover
.vcStoreProductBuyBar {
    transform: translateY(0);
    opacity: 1;
}

.vcStoreBuyPreview,
.vcStoreAddCart {
    min-height: 42px;
    border-radius: 12px;
    cursor: pointer;
    font: inherit;
}

.vcStoreBuyPreview {
    padding: 0 12px;
    border: 1px solid rgba(24, 62, 97, 0.08);
    background: rgba(255, 255, 255, 0.93);
    color: #557188;
    font-size: 9px;
    font-weight: 850;
}

.vcStoreAddCart {
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background:
        linear-gradient(
            135deg,
            #173b60,
            #2c75b7
        );
    color: #ffffff;
    box-shadow:
        0 12px 25px rgba(25, 72, 113, 0.19);
    font-size: 9px;
    font-weight: 900;
}

.vcStoreAddCart > span {
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.13);
}

.vcStoreAddCart svg {
    width: 16px;
    height: 16px;
}


/* =========================================================
   PRODUCT DATA
========================================================= */

.vcStoreProductData {
    padding:
        8px 14px
        15px;
}

.vcStoreProductTop {
    min-height: 18px;
    margin-bottom: 5px;
}

.vcStoreRating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.vcStars {
    position: relative;
    display: inline-block;
    width: 65px;
    height: 14px;
    overflow: hidden;
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0;
}

.vcStarsBack,
.vcStarsFront {
    position: absolute;
    left: 0;
    top: 0;
    white-space: nowrap;
}

.vcStarsBack {
    color: #dfe7ed;
}

.vcStarsFront {
    overflow: hidden;
    color: #f4b63c;
}

.vcStoreRating strong {
    color: #45637c;
    font-size: 9px;
}

.vcStoreRating > span:last-child {
    color: #96a4b1;
    font-size: 8px;
}

.vcStoreNewProduct {
    color: #93a2b0;
    font-size: 8px;
    font-weight: 700;
}

.vcStoreProductTitle {
    display: -webkit-box;
    overflow: hidden;
    min-height: 37px;
    color: #294965;
    text-decoration: none;
    font-size: 12px;
    font-weight: 850;
    line-height: 1.4;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.vcStoreProductDescription {
    display: -webkit-box;
    overflow: hidden;
    min-height: 31px;
    margin: 5px 0 0;
    color: #8c9ca9;
    font-size: 8.5px;
    line-height: 1.5;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.vcStoreProductBottom {
    margin-top: 12px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
}

.vcStorePrice > span {
    display: block;
    margin-bottom: 2px;
    color: #a0adb8;
    font-size: 8px;
    text-decoration: line-through;
}

.vcStorePrice > div {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.vcStorePrice strong {
    color: #163a5f;
    font-size: 18px;
    line-height: 1;
    letter-spacing: -0.035em;
}

.vcStorePrice small {
    color: #8fa0ae;
    font-size: 7px;
    font-weight: 850;
}

.vcStoreListActions {
    display: none;
}


/* =========================================================
   PRODUCT PLACEHOLDER
========================================================= */

.vcStoreProductPlaceholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #8da2b4;
}

.vcStoreProductPlaceholder span {
    font-size: 13px;
    font-weight: 900;
}

.vcStoreProductPlaceholder small {
    margin-top: 4px;
    font-size: 8px;
}


/* =========================================================
   COMPACT VIEW
========================================================= */

.vcStoreGrid[data-view="compact"] {
    grid-template-columns:
        repeat(5, minmax(0, 1fr));
    gap: 13px;
}

.vcStoreGrid[data-view="compact"]
.vcStoreProduct {
    border-radius: 19px;
}

.vcStoreGrid[data-view="compact"]
.vcStoreProductMedia {
    margin: 5px;
    border-radius: 15px;
}

.vcStoreGrid[data-view="compact"]
.vcStoreProductImage {
    height: 190px;
}

.vcStoreGrid[data-view="compact"]
.vcStoreProductImage img {
    padding: 14px;
}

.vcStoreGrid[data-view="compact"]
.vcStoreProductData {
    padding:
        6px 10px
        11px;
}

.vcStoreGrid[data-view="compact"]
.vcStoreProductTitle {
    min-height: 32px;
    font-size: 10px;
}

.vcStoreGrid[data-view="compact"]
.vcStoreProductDescription {
    display: none;
}

.vcStoreGrid[data-view="compact"]
.vcStorePrice strong {
    font-size: 14px;
}

.vcStoreGrid[data-view="compact"]
.vcStorePreview span {
    display: none;
}


/* =========================================================
   LIST VIEW
========================================================= */

.vcStoreGrid[data-view="list"] {
    grid-template-columns: 1fr;
    gap: 12px;
}

.vcStoreGrid[data-view="list"]
.vcStoreProduct {
    display: grid;
    grid-template-columns:
        230px minmax(0, 1fr);
    align-items: stretch;
    min-height: 220px;
    border-radius: 20px;
}

.vcStoreGrid[data-view="list"]
.vcStoreProduct:hover {
    transform: translateY(-3px);
}

.vcStoreGrid[data-view="list"]
.vcStoreProductMedia {
    height: auto;
    margin: 7px;
    border-radius: 15px;
}

.vcStoreGrid[data-view="list"]
.vcStoreProductImage {
    height: 100%;
    min-height: 205px;
}

.vcStoreGrid[data-view="list"]
.vcStoreProductImage img {
    padding: 18px;
}

.vcStoreGrid[data-view="list"]
.vcStorePreview,
.vcStoreGrid[data-view="list"]
.vcStoreProductBuyBar {
    display: none;
}

.vcStoreGrid[data-view="list"]
.vcStoreProductData {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 24px 20px 18px;
}

.vcStoreGrid[data-view="list"]
.vcStoreProductTop {
    margin-bottom: 7px;
}

.vcStoreGrid[data-view="list"]
.vcStoreProductTitle {
    min-height: 0;
    max-width: 700px;
    font-size: 17px;
    line-height: 1.3;
    -webkit-line-clamp: 2;
}

.vcStoreGrid[data-view="list"]
.vcStoreProductDescription {
    display: -webkit-box;
    max-width: 760px;
    min-height: auto;
    margin-top: 7px;
    font-size: 10px;
    line-height: 1.55;
    -webkit-line-clamp: 3;
}

.vcStoreGrid[data-view="list"]
.vcStoreProductBottom {
    align-items: center;
    margin-top: 18px;
}

.vcStoreGrid[data-view="list"]
.vcStorePrice strong {
    font-size: 22px;
}

.vcStoreGrid[data-view="list"]
.vcStoreListActions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.vcStoreListPreview,
.vcStoreListAdd {
    min-height: 42px;
    padding: 0 13px;
    border-radius: 12px;
    cursor: pointer;
    font: inherit;
    font-size: 9px;
    font-weight: 850;
}

.vcStoreListPreview {
    border: 1px solid rgba(24, 62, 97, 0.08);
    background: #ffffff;
    color: #5d788f;
}

.vcStoreListAdd {
    min-width: 150px;
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background:
        linear-gradient(
            135deg,
            #173b60,
            #2d75b7
        );
    color: #ffffff;
    box-shadow:
        0 10px 22px rgba(25, 72, 113, 0.16);
}

.vcStoreListAdd svg {
    width: 15px;
    height: 15px;
}


/* =========================================================
   FILTER DRAWER
========================================================= */

.vcStoreFilters {
    position: fixed;
    z-index: 1300;
    inset: 0;
    pointer-events: none;
    visibility: hidden;
}

.vcStoreFilters.is-open {
    pointer-events: auto;
    visibility: visible;
}

.vcStoreFiltersBackdrop {
    position: absolute;
    inset: 0;
    background: rgba(13, 29, 44, 0.28);
    backdrop-filter: blur(9px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vcStoreFilters.is-open
.vcStoreFiltersBackdrop {
    opacity: 1;
}

.vcStoreFiltersPanel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(470px, 100%);
    height: 100%;
    overflow-y: auto;
    padding: 24px;
    background:
        radial-gradient(
            circle at 90% 0%,
            rgba(65, 145, 220, 0.07),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            #fbfdff,
            #ffffff
        );
    box-shadow:
        -28px 0 80px rgba(13, 38, 61, 0.2);
    transform: translateX(104%);
    transition:
        transform 0.42s cubic-bezier(.2,.75,.3,1);
}

.vcStoreFilters.is-open
.vcStoreFiltersPanel {
    transform: translateX(0);
}


/* =========================================================
   FILTER HEAD
========================================================= */

.vcStoreFiltersHead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.vcStoreFiltersHead > div {
    display: flex;
    flex-direction: column;
}

.vcStoreFiltersHead span {
    color: #91a0ad;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.vcStoreFiltersHead strong {
    margin-top: 3px;
    color: #173b60;
    font-size: 26px;
    line-height: 1;
    letter-spacing: -0.04em;
}

.vcStoreFiltersHead > button {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(24, 61, 95, 0.08);
    border-radius: 13px;
    background: #ffffff;
    color: #637d93;
    cursor: pointer;
}

.vcStoreFiltersHead button svg {
    width: 18px;
    height: 18px;
}


/* =========================================================
   FILTER SECTIONS
========================================================= */

.vcStoreFilterSection {
    padding: 22px 0;
    border-top: 1px solid rgba(25, 62, 96, 0.07);
}

.vcStoreFilterSection:first-child {
    border-top: 0;
}

.vcStoreFilterSectionHead {
    margin-bottom: 15px;
}

.vcStoreFilterSectionHead span {
    display: block;
    color: #95a3b0;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.vcStoreFilterSectionHead strong {
    display: block;
    margin-top: 3px;
    color: #36546f;
    font-size: 14px;
    font-weight: 850;
}


/* =========================================================
   DRAWER PRICE
========================================================= */

.vcStorePriceDisplay {
    display: grid;
    grid-template-columns:
        1fr auto 1fr;
    align-items: end;
    gap: 12px;
}

.vcStorePriceDisplay label > span {
    display: block;
    margin-bottom: 6px;
    color: #8d9dac;
    font-size: 8px;
    font-weight: 850;
    text-transform: uppercase;
}

.vcStorePriceDisplay label > div {
    height: 44px;
    padding: 0 11px;
    display: flex;
    align-items: center;
    gap: 4px;
    border: 1px solid rgba(24, 61, 95, 0.08);
    border-radius: 13px;
    background: #ffffff;
}

.vcStorePriceDisplay small {
    color: #8ca0b1;
    font-size: 11px;
}

.vcStorePriceDisplay input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #294965;
    font: inherit;
    font-size: 12px;
    font-weight: 850;
}

.vcStorePriceDisplay > span {
    margin-bottom: 18px;
    color: #9aabba;
}

.vcStoreRange {
    position: relative;
    height: 38px;
    margin-top: 18px;
}

.vcStoreRangeTrack {
    position: absolute;
    left: 0;
    right: 0;
    top: 18px;
    height: 4px;
    border-radius: 999px;
    background: #e6edf3;
}

.vcStoreRangeTrack > div {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: inherit;
    background:
        linear-gradient(
            90deg,
            #22689f,
            #42acd1
        );
}

.vcStoreRange input[type="range"] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 38px;
    appearance: none;
    background: transparent;
    pointer-events: none;
}

.vcStoreRange
input[type="range"]::-webkit-slider-thumb {
    width: 19px;
    height: 19px;
    appearance: none;
    border: 3px solid #ffffff;
    border-radius: 50%;
    background: #287bb5;
    box-shadow:
        0 5px 14px rgba(31, 102, 157, 0.26);
    pointer-events: auto;
    cursor: grab;
}

.vcStoreRange
input[type="range"]::-moz-range-thumb {
    width: 19px;
    height: 19px;
    border: 3px solid #ffffff;
    border-radius: 50%;
    background: #287bb5;
    box-shadow:
        0 5px 14px rgba(31, 102, 157, 0.26);
    pointer-events: auto;
    cursor: grab;
}

.vcStorePricePresets {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 11px;
}

.vcStorePricePresets button {
    min-height: 34px;
    padding: 0 10px;
    border: 1px solid rgba(24, 61, 95, 0.07);
    border-radius: 11px;
    background: #f8fbfd;
    color: #617d93;
    cursor: pointer;
    font: inherit;
    font-size: 8px;
    font-weight: 850;
}

.vcStorePricePresets button:hover,
.vcStorePricePresets button.is-active {
    border-color: rgba(38, 112, 174, 0.16);
    background:
        linear-gradient(
            135deg,
            #eaf5ff,
            #f7fbff
        );
    color: #216ea8;
}


/* =========================================================
   DRAWER RATING
========================================================= */

.vcStoreRatingSelector {
    display: grid;
    grid-template-columns:
        repeat(4, 1fr);
    gap: 8px;
}

.vcStoreRatingSelector label {
    position: relative;
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border: 1px solid rgba(24, 61, 95, 0.07);
    border-radius: 13px;
    background: #ffffff;
    color: #617a8e;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.vcStoreRatingSelector label:hover {
    transform: translateY(-2px);
    border-color: rgba(39, 106, 168, 0.13);
    box-shadow:
        0 8px 18px rgba(24, 61, 94, 0.06);
}

.vcStoreRatingSelector label.is-active {
    border-color: rgba(39, 106, 168, 0.17);
    background:
        linear-gradient(
            135deg,
            #eef7ff,
            #f7fbff
        );
    color: #2c74ad;
}

.vcStoreRatingSelector input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.vcStoreRatingSelector span {
    color: #f4b53a;
    font-size: 13px;
}

.vcStoreRatingSelector strong {
    font-size: 10px;
}


/* =========================================================
   OFFER TOGGLE
========================================================= */

.vcStoreOfferToggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
}

.vcStoreOfferToggle > div {
    min-width: 0;
}

.vcStoreOfferToggle > div span {
    display: block;
    color: #95a3b0;
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
}

.vcStoreOfferToggle > div strong {
    display: block;
    margin-top: 3px;
    color: #36546f;
    font-size: 12px;
}

.vcStoreOfferToggle > input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.vcStoreSwitch {
    position: relative;
    width: 46px;
    height: 26px;
    flex: 0 0 auto;
    border-radius: 999px;
    background: #e5edf3;
    transition:
        background 0.2s ease;
}

.vcStoreSwitch > span {
    position: absolute;
    width: 20px;
    height: 20px;
    left: 3px;
    top: 3px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow:
        0 3px 8px rgba(24, 61, 94, 0.12);
    transition:
        transform 0.22s ease;
}

.vcStoreOfferToggle
input:checked
+ .vcStoreSwitch {
    background:
        linear-gradient(
            135deg,
            #2bbf91,
            #36d2a1
        );
}

.vcStoreOfferToggle
input:checked
+ .vcStoreSwitch
> span {
    transform: translateX(20px);
}


/* =========================================================
   FILTER ACTIONS
========================================================= */

.vcStoreFilterActions {
    position: sticky;
    bottom: -24px;
    z-index: 5;
    display: grid;
    grid-template-columns:
        auto 1fr;
    gap: 9px;
    margin:
        8px -24px
        -24px;
    padding:
        16px 24px
        24px;
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0),
            #ffffff 28%
        );
}

.vcStoreReset {
    min-height: 48px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(24, 61, 95, 0.08);
    border-radius: 14px;
    background: #ffffff;
    color: #6c8396;
    text-decoration: none;
    font-size: 9px;
    font-weight: 850;
}

.vcStoreApply {
    min-height: 48px;
    padding:
        6px 7px
        6px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 0;
    border-radius: 14px;
    background:
        linear-gradient(
            135deg,
            #173b60,
            #2d75b7
        );
    color: #ffffff;
    box-shadow:
        0 13px 28px rgba(25, 72, 113, 0.2);
    cursor: pointer;
    font: inherit;
    font-size: 10px;
    font-weight: 900;
}

.vcStoreApplyArrow {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.13);
}

.vcStoreApplyArrow svg {
    width: 16px;
    height: 16px;
}

.vcStoreApply.is-counting {
    opacity: 0.82;
}

.vcStoreApply.is-zero {
    background:
        linear-gradient(
            135deg,
            #6e7e8c,
            #8797a4
        );
}


/* =========================================================
   EMPTY STATE
========================================================= */

.vcStoreEmpty {
    min-height: 460px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.vcStoreEmptyVisual {
    position: relative;
    width: 130px;
    height: 130px;
    margin-bottom: 18px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            #ffffff,
            #eef5fa
        );
    color: #638199;
    box-shadow:
        0 18px 42px rgba(24, 61, 94, 0.1);
}

.vcStoreEmptyVisual > span {
    position: absolute;
    inset: -12px;
    border: 1px dashed rgba(40, 110, 172, 0.14);
    border-radius: 50%;
}

.vcStoreEmptyVisual svg {
    width: 55px;
    height: 55px;
}

.vcStoreEmpty > span {
    color: #91a0ad;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.vcStoreEmpty h3 {
    max-width: 430px;
    margin: 8px 0 0;
    color: #173b60;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 0.95;
    letter-spacing: -0.045em;
}

.vcStoreEmpty h3 strong {
    color: #347bb5;
}

.vcStoreEmpty p {
    max-width: 500px;
    margin: 13px 0 0;
    color: #8999a8;
    font-size: 10px;
    line-height: 1.6;
}

.vcStoreEmpty > div:last-child {
    display: flex;
    gap: 8px;
    margin-top: 18px;
}

.vcStoreEmpty > div:last-child a,
.vcStoreEmpty > div:last-child button {
    min-height: 42px;
    padding: 0 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 9px;
    font-weight: 850;
}

.vcStoreEmpty > div:last-child a {
    background:
        linear-gradient(
            135deg,
            #173b60,
            #2c75b7
        );
    color: #ffffff;
    text-decoration: none;
}

.vcStoreEmpty > div:last-child button {
    border: 1px solid rgba(24, 61, 95, 0.08);
    background: #ffffff;
    color: #637d93;
    cursor: pointer;
}


/* =========================================================
   PAGINATION
========================================================= */

.vcStorePagination {
    margin-top: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.vcStorePagination > div {
    display: flex;
    align-items: center;
    gap: 5px;
}

.vcStorePagination a {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(24, 61, 95, 0.07);
    border-radius: 11px;
    background: #ffffff;
    color: #607b91;
    text-decoration: none;
    box-shadow:
        0 6px 16px rgba(24, 61, 94, 0.04);
    font-size: 9px;
    font-weight: 900;
}

.vcStorePagination a.is-active {
    border-color: transparent;
    background:
        linear-gradient(
            135deg,
            #173b60,
            #2d75b7
        );
    color: #ffffff;
    box-shadow:
        0 9px 20px rgba(25, 72, 113, 0.16);
}

.vcStorePageArrow svg {
    width: 15px;
    height: 15px;
}


/* =========================================================
   QUICK VIEW
========================================================= */

.vcQuickView {
    position: fixed;
    z-index: 1450;
    inset: 0;
    pointer-events: none;
    visibility: hidden;
}

.vcQuickView.is-open {
    pointer-events: auto;
    visibility: visible;
}

.vcQuickViewBackdrop {
    position: absolute;
    inset: 0;
    background: rgba(13, 29, 44, 0.34);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vcQuickView.is-open
.vcQuickViewBackdrop {
    opacity: 1;
}

.vcQuickViewPanel {
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(980px, calc(100% - 34px));
    max-height: min(760px, calc(100vh - 36px));
    display: grid;
    grid-template-columns:
        minmax(0, 0.95fr)
        minmax(0, 1.05fr);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 28px;
    background:
        linear-gradient(
            145deg,
            #ffffff,
            #fbfdff
        );
    box-shadow:
        0 38px 110px rgba(9, 31, 51, 0.28);
    opacity: 0;
    transform:
        translate(-50%, -46%)
        scale(0.97);
    transition:
        opacity 0.28s ease,
        transform 0.38s cubic-bezier(.2,.75,.3,1);
}

.vcQuickView.is-open
.vcQuickViewPanel {
    opacity: 1;
    transform:
        translate(-50%, -50%)
        scale(1);
}

.vcQuickViewAmbient {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.vcQuickViewGlow {
    position: absolute;
    width: 340px;
    height: 340px;
    left: -100px;
    top: -120px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(65, 148, 218, 0.13),
            transparent 66%
        );
}

.vcQuickViewGrid {
    position: absolute;
    inset: 0;
    opacity: 0.18;
    background-image:
        linear-gradient(
            rgba(50, 100, 145, 0.04) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(50, 100, 145, 0.04) 1px,
            transparent 1px
        );
    background-size: 32px 32px;
}

.vcQuickViewClose {
    position: absolute;
    z-index: 10;
    right: 14px;
    top: 14px;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(24, 61, 95, 0.08);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.9);
    color: #657f95;
    box-shadow:
        0 7px 18px rgba(24, 61, 94, 0.06);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.vcQuickViewClose svg {
    width: 18px;
    height: 18px;
}


/* =========================================================
   QUICK VIEW MEDIA
========================================================= */

.vcQuickViewMedia {
    position: relative;
    z-index: 2;
    padding: 28px;
    background:
        radial-gradient(
            circle at 48% 40%,
            #ffffff,
            #eff5f9
        );
}

.vcQuickViewDiscount {
    position: absolute;
    z-index: 5;
    top: 28px;
    left: 28px;
    min-height: 28px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(23, 59, 95, 0.92);
    color: #ffffff;
    box-shadow:
        0 8px 18px rgba(24, 63, 99, 0.17);
    font-size: 8px;
    font-weight: 900;
}

.vcQuickViewMediaLabel {
    display: block;
    margin-bottom: 12px;
    color: #8b9cab;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.vcQuickViewImageStage {
    position: relative;
    height: 390px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.5);
}

.vcQuickViewImageHalo {
    position: absolute;
    width: 72%;
    height: 72%;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(87, 168, 225, 0.13),
            transparent 70%
        );
}

.vcQuickViewImageStage img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 28px;
}

.vcQuickViewNoImage {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #7790a4;
}

.vcQuickViewNoImage span {
    font-size: 16px;
    font-weight: 900;
}

.vcQuickViewNoImage small {
    margin-top: 4px;
    font-size: 8px;
}

.vcQuickViewMediaFoot {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    color: #8c9ba8;
    font-size: 8px;
}


/* =========================================================
   QUICK VIEW CONTENT
========================================================= */

.vcQuickViewContent {
    position: relative;
    z-index: 2;
    padding: 42px 42px 34px 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vcQuickViewMeta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
}

.vcQuickViewCategory,
.vcQuickViewSku {
    min-height: 24px;
    padding: 0 8px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-size: 7.5px;
    font-weight: 850;
}

.vcQuickViewCategory {
    background: #eef6fb;
    color: #417296;
}

.vcQuickViewSku {
    background: #f4f6f8;
    color: #81919f;
}

.vcQuickViewTitle {
    margin: 10px 0 0;
    color: #173b60;
    font-size: clamp(28px, 3.2vw, 42px);
    line-height: 1;
    letter-spacing: -0.045em;
}

.vcQuickViewRating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 13px;
}

.vcQuickViewRating strong {
    color: #45627a;
    font-size: 10px;
}

.vcQuickViewRating small {
    color: #94a3b0;
    font-size: 9px;
}

.vcQuickViewDescription {
    margin: 14px 0 0;
    color: #7f91a1;
    font-size: 10px;
    line-height: 1.65;
}


/* =========================================================
   QUICK VIEW BENEFITS
========================================================= */

.vcQuickViewBenefits {
    display: grid;
    grid-template-columns:
        repeat(2, 1fr);
    gap: 8px;
    margin-top: 20px;
}

.vcQuickViewBenefits > div {
    min-height: 58px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(24, 61, 95, 0.06);
    border-radius: 14px;
    background: #f9fbfd;
}

.vcQuickViewBenefitIcon {
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: #eef5fa;
    color: #4f7998;
}

.vcQuickViewBenefitIcon svg {
    width: 18px;
    height: 18px;
}

.vcQuickViewBenefits strong {
    display: block;
    color: #41607a;
    font-size: 9px;
}

.vcQuickViewBenefits small {
    display: block;
    margin-top: 2px;
    color: #94a3af;
    font-size: 7.5px;
}


/* =========================================================
   QUICK VIEW PRICE
========================================================= */

.vcQuickViewPriceBlock {
    margin-top: 20px;
}

.vcQuickViewPriceLabel {
    display: block;
    margin-bottom: 5px;
    color: #8f9eab;
    font-size: 8px;
    font-weight: 850;
    text-transform: uppercase;
}

.vcQuickViewOldPrice {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 3px;
}

.vcQuickViewOldPrice del {
    color: #9daab5;
    font-size: 9px;
}

.vcQuickViewOldPrice span {
    color: #22926d;
    font-size: 8px;
    font-weight: 850;
}

.vcQuickViewCurrentPrice {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.vcQuickViewCurrentPrice strong {
    color: #163a5f;
    font-size: 30px;
    line-height: 1;
    letter-spacing: -0.045em;
}

.vcQuickViewCurrentPrice small {
    color: #8fa0ae;
    font-size: 8px;
    font-weight: 850;
}


/* =========================================================
   QUICK VIEW ACTIONS
========================================================= */

.vcQuickViewActions {
    display: grid;
    grid-template-columns:
        1fr auto;
    gap: 8px;
    margin-top: 20px;
}

.vcQuickViewAddCart {
    min-height: 54px;
    padding: 6px 8px 6px 12px;
    display: grid;
    grid-template-columns:
        auto 1fr auto;
    align-items: center;
    gap: 10px;
    border: 0;
    border-radius: 14px;
    background:
        linear-gradient(
            135deg,
            #173b60,
            #2d75b7
        );
    color: #ffffff;
    box-shadow:
        0 13px 28px rgba(25, 72, 113, 0.19);
    cursor: pointer;
}

.vcQuickViewAddCartIcon {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.13);
}

.vcQuickViewAddCartIcon svg {
    width: 18px;
    height: 18px;
}

.vcQuickViewAddCartCopy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.vcQuickViewAddCartCopy small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 7px;
}

.vcQuickViewAddCartCopy strong {
    margin-top: 1px;
    font-size: 9px;
}

.vcQuickViewAddCartArrow {
    width: 33px;
    height: 33px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.12);
}

.vcQuickViewAddCartArrow svg {
    width: 15px;
    height: 15px;
}

.vcQuickViewMainButton {
    min-height: 54px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid rgba(24, 61, 95, 0.08);
    border-radius: 14px;
    background: #ffffff;
    color: #607a90;
    text-decoration: none;
    font-size: 9px;
    font-weight: 850;
}

.vcQuickViewMainButton svg {
    width: 15px;
    height: 15px;
}

.vcQuickViewFootnote {
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #91a0ad;
    font-size: 7.5px;
}

.vcQuickViewFootnoteDot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #31c596;
}


/* =========================================================
   ADD CART STATES
========================================================= */

[data-vc-catalog-add].is-loading {
    pointer-events: none;
    opacity: 0.82;
}

[data-vc-catalog-add].is-success {
    background:
        linear-gradient(
            135deg,
            #16986f,
            #31c696
        ) !important;
}

[data-vc-catalog-add].is-error {
    background:
        linear-gradient(
            135deg,
            #c94a4a,
            #ed6e6e
        ) !important;
}

.vcStoreButtonLoader {
    width: 16px;
    height: 16px;
    display: block;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation:
        vcStoreSpin
        0.7s
        linear
        infinite;
}

@keyframes vcStoreSpin {
    to {
        transform: rotate(360deg);
    }
}


/* =========================================================
   BODY STATES
========================================================= */

html.vcStoreFiltersOpen,
html.vcPreviewOpen {
    overflow: hidden;
}


/* =========================================================
   LARGE
========================================================= */

@media (min-width: 1500px) {

    .vcStoreInner {
        width: min(1580px, calc(100% - 70px));
    }

    .vcStoreGrid {
        gap: 20px;
    }

    .vcStoreProductImage {
        height: 280px;
    }
}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1280px) {

    .vcStoreCommand {
        grid-template-columns:
            auto
            minmax(0, 1fr);
    }

    .vcStoreCommandRight {
        grid-column: 1 / -1;
        justify-content: flex-end;
    }

    .vcStoreGrid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .vcStoreGrid[data-view="compact"] {
        grid-template-columns:
            repeat(4, minmax(0, 1fr));
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

    .vcStoreInner {
        width: min(100% - 34px, 1100px);
    }

    .vcStoreCommand {
        position: relative;
        top: auto;
        display: block;
        padding: 14px;
    }

    .vcStoreCommandIntro {
        margin-bottom: 12px;
    }

    .vcStoreQuickFilters {
        overflow-x: auto;
        overflow-y: visible;
        padding-bottom: 4px;
        scrollbar-width: none;
    }

    .vcStoreQuickFilters::-webkit-scrollbar {
        display: none;
    }

    .vcStoreCommandRight {
        margin-top: 10px;
        justify-content: space-between;
    }

    .vcStoreGrid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
        gap: 13px;
    }

    .vcStoreGrid[data-view="compact"] {
        grid-template-columns:
            repeat(4, minmax(0, 1fr));
    }

    .vcStoreProductImage {
        height: 210px;
    }

    .vcStorePreview {
        opacity: 1;
        transform: none;
    }

    .vcStorePreview span {
        display: none;
    }

    .vcStoreProductBuyBar {
        position: static;
        margin:
            0 7px
            7px;
        transform: none;
        opacity: 1;
    }

    .vcStoreGrid[data-view="list"]
    .vcStoreProduct {
        grid-template-columns:
            200px minmax(0, 1fr);
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {

    .vcStore {
        padding:
            18px 0
            42px;
    }

    .vcStoreInner {
        width: calc(100% - 24px);
    }

    .vcStoreCommand {
        border-radius: 20px;
    }

    .vcStoreCommandIntro {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
    }

    .vcStoreCommandTitle strong {
        font-size: 24px;
    }

    .vcStoreQuickFilters {
        width: calc(100vw - 24px);
        margin-right: -12px;
        padding-right: 22px;
    }

    .vcStoreAllFilters {
        order: -1;
    }

    .vcStorePopover {
        position: fixed;
        left: 12px;
        right: 12px;
        top: auto;
        bottom: 12px;
        width: auto;
        max-height: calc(100vh - 24px);
        overflow-y: auto;
        border-radius: 20px;
        transform:
            translateY(16px)
            scale(0.98);
        transform-origin: bottom center;
    }

    .vcStorePopover.is-open {
        transform:
            translateY(0)
            scale(1);
    }

    .vcStoreCommandRight {
        display: grid;
        grid-template-columns:
            1fr auto;
        gap: 8px;
    }

    .vcStoreSort {
        min-width: 0;
    }

    .vcStoreViews {
        flex: 0 0 auto;
    }

    .vcStoreMetaSignal {
        display: none;
    }

    .vcStoreGrid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
        gap: 9px;
    }

    .vcStoreGrid[data-view="compact"] {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
        gap: 7px;
    }

    .vcStoreProduct {
        border-radius: 18px;
    }

    .vcStoreProduct:hover {
        transform: none;
    }

    .vcStoreProductMedia {
        margin: 5px;
        border-radius: 14px;
    }

    .vcStoreProductImage {
        height: 166px;
    }

    .vcStoreProductImage img {
        padding: 12px;
    }

    .vcStoreProductBadges {
        top: 7px;
        left: 7px;
    }

    .vcStoreDiscount,
    .vcStoreShippingBadge {
        min-height: 21px;
        font-size: 7px;
    }

    .vcStorePreview {
        top: 7px;
        right: 7px;
        width: 30px;
        min-width: 30px;
        height: 30px;
        min-height: 30px;
        padding: 0;
        justify-content: center;
        border-radius: 9px;
    }

    .vcStorePreview span {
        display: none;
    }

    .vcStoreProductBuyBar {
        grid-template-columns: 1fr;
    }

    .vcStoreBuyPreview {
        display: none;
    }

    .vcStoreAddCart {
        min-height: 37px;
    }

    .vcStoreProductData {
        padding:
            5px 9px
            10px;
    }

    .vcStoreProductTitle {
        min-height: 33px;
        font-size: 9.5px;
    }

    .vcStoreProductDescription {
        display: none;
    }

    .vcStorePrice strong {
        font-size: 14px;
    }

    .vcStorePrice small {
        display: none;
    }

    .vcStoreViews button[data-vc-view="compact"] {
        display: none;
    }

    .vcStoreGrid[data-view="list"] {
        display: block;
    }

    .vcStoreGrid[data-view="list"]
    .vcStoreProduct {
        display: grid;
        grid-template-columns:
            105px minmax(0, 1fr);
        min-height: 128px;
        margin-bottom: 8px;
    }

    .vcStoreGrid[data-view="list"]
    .vcStoreProductMedia {
        height: auto;
    }

    .vcStoreGrid[data-view="list"]
    .vcStoreProductImage {
        min-height: 116px;
        height: 100%;
    }

    .vcStoreGrid[data-view="list"]
    .vcStoreProductImage img {
        padding: 8px;
    }

    .vcStoreGrid[data-view="list"]
    .vcStoreProductData {
        padding: 11px 10px;
    }

    .vcStoreGrid[data-view="list"]
    .vcStoreProductTitle {
        font-size: 11px;
    }

    .vcStoreGrid[data-view="list"]
    .vcStoreProductDescription,
    .vcStoreGrid[data-view="list"]
    .vcStoreListPreview {
        display: none;
    }

    .vcStoreGrid[data-view="list"]
    .vcStoreProductBottom {
        margin-top: 9px;
    }

    .vcStoreGrid[data-view="list"]
    .vcStorePrice strong {
        font-size: 14px;
    }

    .vcStoreGrid[data-view="list"]
    .vcStoreListActions {
        display: block;
    }

    .vcStoreGrid[data-view="list"]
    .vcStoreListAdd {
        min-width: 0;
        width: 36px;
        height: 36px;
        min-height: 36px;
        padding: 0;
        font-size: 0;
        border-radius: 10px;
    }

    .vcStoreGrid[data-view="list"]
    .vcStoreListAdd svg {
        margin: 0;
    }

    .vcStoreFiltersPanel {
        width: min(390px, 100%);
        padding: 20px;
    }

    .vcStoreFilterActions {
        margin:
            8px -20px
            -20px;
        padding:
            14px 20px
            20px;
    }

    .vcStoreRatingSelector {
        grid-template-columns:
            repeat(4, 1fr);
        gap: 6px;
    }

    .vcStoreRatingSelector label {
        min-height: 42px;
    }

    .vcQuickViewPanel {
        left: 0;
        right: 0;
        bottom: 0;
        top: auto;
        width: 100%;
        max-height: 90vh;
        display: block;
        overflow-y: auto;
        border-radius:
            24px 24px
            0 0;
        transform: translateY(100%);
    }

    .vcQuickView.is-open
    .vcQuickViewPanel {
        transform: translateY(0);
    }

    .vcQuickViewMedia {
        padding: 18px;
    }

    .vcQuickViewImageStage {
        height: 280px;
    }

    .vcQuickViewContent {
        padding:
            18px 18px
            24px;
    }

    .vcQuickViewTitle {
        font-size: 28px;
    }

    .vcQuickViewBenefits {
        grid-template-columns: 1fr;
    }

    .vcQuickViewActions {
        grid-template-columns: 1fr;
    }

    .vcQuickViewMainButton {
        justify-content: center;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 430px) {

    .vcStoreInner {
        width: calc(100% - 20px);
    }

    .vcStoreQuickFilter,
    .vcStoreAllFilters {
        min-height: 40px;
        padding: 0 11px;
    }

    .vcStoreGrid {
        gap: 7px;
    }

    .vcStoreProductImage {
        height: 145px;
    }

    .vcStoreAddCart {
        font-size: 0;
    }

    .vcStoreAddCart > span {
        width: 31px;
        height: 31px;
    }

    .vcStoreProductTitle {
        font-size: 9px;
    }

    .vcStoreRatingSelector {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .vcStorePriceDisplay {
        gap: 8px;
    }

    .vcStorePopoverRatings {
        grid-template-columns:
            repeat(2, 1fr);
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .vcStoreProduct,
    .vcStoreProductImage img,
    .vcStorePreview,
    .vcStoreProductBuyBar,
    .vcStoreQuickFilter,
    .vcStoreAllFilters,
    .vcStorePopover,
    .vcStoreFiltersBackdrop,
    .vcStoreFiltersPanel,
    .vcQuickViewBackdrop,
    .vcQuickViewPanel,
    .vcStoreRatingSelector label,
    .vcStorePopoverRatings button {
        transition: none !important;
    }

    .vcStoreButtonLoader {
        animation: none !important;
    }
}


/* =========================================================
   MOBILE < 550px
   Ocultar Precio y Valoración rápidos
========================================================= */

@media (max-width: 550px) {

    .vcStoreQuickFilterWrap[
        data-vc-popover-wrap="price"
    ],
    .vcStoreQuickFilterWrap[
        data-vc-popover-wrap="rating"
    ] {
        display: none;
    }

}