/* ============================================================
   VENTACTIVE
   PROMOTIONS CATALOG
============================================================ */

.vcPromotionsCatalog {
    position: relative;
    padding:
        clamp(78px, 8vw, 126px)
        clamp(18px, 4vw, 70px);
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fbfbfd 100%
        );
}


.vcPromotionsCatalogInner {
    width: min(1560px, 100%);
    margin: 0 auto;
}


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

.vcPromotionsCatalogIntro {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        auto;
    align-items: end;
    gap: 32px;
    margin-bottom: 30px;
}


.vcPromotionsCatalogIntroCopy {
    max-width: 790px;
}


.vcPromotionsCatalogIntro h2 {
    margin: 0;
    font-size:
        clamp(
            40px,
            4.5vw,
            68px
        );
    line-height: 1.01;
    letter-spacing: -0.052em;
    font-weight: 500;
    color: #171b23;
}


.vcPromotionsCatalogIntro h2 strong {
    display: block;
    font-weight: 800;
}


.vcPromotionsCatalogIntro p {
    max-width: 680px;
    margin:
        18px
        0
        0;
    font-size: 16px;
    line-height: 1.7;
    color: #747c89;
}


/* ============================================================
   TOTAL
============================================================ */

.vcPromotionsCatalogTotal {
    min-width: 155px;
    display: grid;
    gap: 4px;
    padding:
        16px
        18px;
    border:
        1px solid
        rgba(15, 23, 42, .07);
    border-radius: 20px;
    background: #ffffff;
    box-shadow:
        0 15px 40px
        rgba(15, 23, 42, .05);
    text-align: right;
}


.vcPromotionsCatalogTotal strong {
    font-size: 31px;
    line-height: 1;
    letter-spacing: -.05em;
    color: #171b23;
}


.vcPromotionsCatalogTotal span {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #9ca3ae;
}


/* ============================================================
   TOOLBAR
============================================================ */

.vcPromotionsCatalogToolbar {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        auto;
    align-items: center;
    gap: 22px;
    margin-bottom: 18px;
    padding:
        14px
        16px;
    border:
        1px solid
        rgba(15, 23, 42, .065);
    border-radius: 24px;
    background:
        rgba(255,255,255,.82);
    backdrop-filter:
        blur(14px);
    box-shadow:
        0 14px 40px
        rgba(15, 23, 42, .04);
}


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

.vcPromotionsCatalogFilters {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-behavior: smooth;
}


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


.vcPromoCatalogFilter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    flex: 0 0 auto;
    padding:
        0
        13px;
    border:
        1px solid
        rgba(15, 23, 42, .07);
    border-radius: 999px;
    background: #ffffff;
    color: #5e6672;
    font-size: 11px;
    font-weight: 800;
    text-decoration: none;
    transition:
        transform .24s ease,
        border-color .24s ease,
        box-shadow .24s ease,
        background-color .24s ease,
        color .24s ease;
}


.vcPromoCatalogFilter small {
    display: grid;
    place-items: center;
    min-width: 24px;
    height: 24px;
    padding:
        0
        5px;
    border-radius: 999px;
    background:
        rgba(15, 23, 42, .045);
    font-size: 9px;
    color: #8a919c;
}


.vcPromoCatalogFilter:hover {
    transform:
        translateY(-1px);
    border-color:
        rgba(255, 75, 112, .16);
    box-shadow:
        0 10px 24px
        rgba(15, 23, 42, .05);
}


.vcPromoCatalogFilter.is-active {
    border-color: #171b23;
    background: #171b23;
    color: #ffffff;
    box-shadow:
        0 12px 28px
        rgba(15, 23, 42, .14);
}


.vcPromoCatalogFilter.is-active small {
    background:
        rgba(255,255,255,.12);
    color:
        rgba(255,255,255,.82);
}


/* ============================================================
   SORT
============================================================ */

.vcPromotionsCatalogSort {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}


.vcPromotionsCatalogSort label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #9ca3ae;
}


.vcPromotionsCatalogSelect {
    position: relative;
    min-width: 190px;
}


.vcPromotionsCatalogSelect select {
    width: 100%;
    height: 42px;
    padding:
        0
        40px
        0
        13px;
    border:
        1px solid
        rgba(15, 23, 42, .08);
    border-radius: 13px;
    outline: none;
    appearance: none;
    background: #ffffff;
    color: #454c58;
    font-size: 11px;
    font-weight: 750;
    cursor: pointer;
}


.vcPromotionsCatalogSelect svg {
    position: absolute;
    right: 13px;
    top: 50%;
    width: 15px;
    height: 15px;
    transform:
        translateY(-50%);
    color: #747b87;
    pointer-events: none;
}


/* ============================================================
   RESULT BAR
============================================================ */

.vcPromotionsCatalogResultBar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
    padding:
        0
        3px;
    font-size: 11px;
    color: #8d949f;
}


.vcPromotionsCatalogResultBar strong {
    color: #3e4550;
}


.vcPromoCatalogClear {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #ff4b70;
    font-size: 10px;
    font-weight: 800;
    text-decoration: none;
}


.vcPromoCatalogClear svg {
    width: 13px;
    height: 13px;
}


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

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


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

.vcPromoProductCard {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border:
        1px solid
        rgba(15, 23, 42, .065);
    border-radius: 27px;
    background: #ffffff;
    box-shadow:
        0 16px 45px
        rgba(15, 23, 42, .045);
    transition:
        transform .3s cubic-bezier(.2,.8,.2,1),
        box-shadow .3s ease,
        border-color .3s ease;
}


.vcPromoProductCard:hover {
    transform:
        translateY(-5px);
    border-color:
        rgba(255, 75, 112, .14);
    box-shadow:
        0 26px 65px
        rgba(15, 23, 42, .085);
}


/* ============================================================
   VISUAL
============================================================ */

.vcPromoProductVisual {
    position: relative;
    height: 310px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(255, 228, 235, .58),
            transparent 48%
        ),
        linear-gradient(
            145deg,
            #fffafa,
            #f7f8fb
        );
}


.vcPromoProductVisual::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            rgba(15, 23, 42, .025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(15, 23, 42, .025) 1px,
            transparent 1px
        );
    background-size:
        35px
        35px;
    mask-image:
        radial-gradient(
            circle at center,
            #000 30%,
            transparent 85%
        );
    pointer-events: none;
}


/* ============================================================
   DISCOUNT
============================================================ */

.vcPromoProductDiscount {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 4;
    min-width: 58px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding:
        0
        10px;
    border-radius: 12px;
    background:
        linear-gradient(
            135deg,
            #ff456c,
            #ff758e
        );
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    box-shadow:
        0 12px 28px
        rgba(255, 69, 108, .22);
}


/* ============================================================
   SAVING
============================================================ */

.vcPromoProductSaving {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 4;
    display: grid;
    gap: 1px;
    padding:
        7px
        10px;
    border:
        1px solid
        rgba(255,255,255,.88);
    border-radius: 12px;
    background:
        rgba(255,255,255,.84);
    backdrop-filter:
        blur(12px);
    box-shadow:
        0 10px 26px
        rgba(15, 23, 42, .08);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #9ca2ad;
}


.vcPromoProductSaving strong {
    font-size: 11px;
    letter-spacing: 0;
    text-transform: none;
    color: #272d37;
}


/* ============================================================
   IMAGE
============================================================ */

.vcPromoProductImage {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    padding:
        48px
        28px
        24px;
    text-decoration: none;
}


.vcPromoProductImage img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    filter:
        drop-shadow(
            0 22px 24px
            rgba(15, 23, 42, .14)
        );
    transition:
        transform .4s cubic-bezier(.2,.8,.2,1),
        filter .4s ease;
}


.vcPromoProductCard:hover
.vcPromoProductImage img {
    transform:
        translateY(-5px)
        scale(1.035);
    filter:
        drop-shadow(
            0 28px 28px
            rgba(15, 23, 42, .18)
        );
}


/* ============================================================
   NO IMAGE
============================================================ */

.vcPromoProductNoImage {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    background:
        rgba(15, 23, 42, .045);
    color: #a4aab3;
}


.vcPromoProductNoImage svg {
    width: 31px;
    height: 31px;
}


/* ============================================================
   QUICK CART
============================================================ */

.vcPromoProductQuickCart {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 5;
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 14px;
    background: #171b23;
    color: #ffffff;
    cursor: pointer;
    box-shadow:
        0 12px 28px
        rgba(15, 23, 42, .20);
    opacity: 0;
    transform:
        translateY(8px)
        scale(.95);
    transition:
        opacity .25s ease,
        transform .25s ease,
        background-color .25s ease,
        box-shadow .25s ease;
}


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


.vcPromoProductCard:hover
.vcPromoProductQuickCart {
    opacity: 1;
    transform:
        translateY(0)
        scale(1);
}


.vcPromoProductQuickCart:hover {
    background: #ff4b70;
    box-shadow:
        0 14px 30px
        rgba(255, 75, 112, .22);
}


.vcPromoProductQuickCart:disabled {
    opacity: .55;
    cursor: default;
}


/* ============================================================
   INFO
============================================================ */

.vcPromoProductInfo {
    padding:
        20px
        19px
        19px;
}


/* ============================================================
   SKU
============================================================ */

.vcPromoProductSku {
    display: block;
    margin-bottom: 6px;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .11em;
    text-transform: uppercase;
    color: #a2a8b2;
}


/* ============================================================
   TITLE
============================================================ */

.vcPromoProductTitle {
    display: -webkit-box;
    overflow: hidden;
    min-height: 44px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 17px;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: -.025em;
    color: #1b2028;
    text-decoration: none;
    transition:
        color .22s ease;
}


.vcPromoProductTitle:hover {
    color: #ff4b70;
}


/* ============================================================
   PRICES
============================================================ */

.vcPromoProductPrices {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 14px;
}


.vcPromoProductPrices > span {
    font-size: 12px;
    font-weight: 650;
    color: #a1a7b0;
    text-decoration: line-through;
}


.vcPromoProductPrices > strong {
    font-size: 23px;
    line-height: 1;
    letter-spacing: -.035em;
    color: #ff4b70;
}


/* ============================================================
   SHIPPING
============================================================ */

.vcPromoProductShipping {
    min-height: 29px;
    margin-top: 12px;
}


.vcPromoProductShipping > span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding:
        6px
        9px;
    border-radius: 999px;
    background:
        rgba(15, 23, 42, .045);
    font-size: 9px;
    font-weight: 750;
    color: #747c87;
}


.vcPromoProductShipping strong {
    color: #3f4651;
}


.vcPromoProductShipping .is-free {
    background:
        rgba(36, 181, 112, .08);
    color: #198b59;
}


.vcPromoProductShipping svg {
    width: 12px;
    height: 12px;
}


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

.vcPromoProductActions {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        42px;
    gap: 8px;
    margin-top: 16px;
}


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

.vcPromoProductAddCart {
    min-width: 0;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding:
        0
        13px;
    border: 0;
    border-radius: 13px;
    background: #171b23;
    color: #ffffff;
    font-size: 10px;
    font-weight: 850;
    cursor: pointer;
    box-shadow:
        0 11px 26px
        rgba(15, 23, 42, .15);
    transition:
        transform .22s ease,
        background-color .22s ease,
        box-shadow .22s ease,
        opacity .22s ease;
}


.vcPromoProductAddCart svg {
    width: 15px;
    height: 15px;
    flex: 0 0 auto;
}


.vcPromoProductAddCart:hover {
    transform:
        translateY(-2px);
    background: #222731;
    box-shadow:
        0 14px 30px
        rgba(15, 23, 42, .20);
}


.vcPromoProductAddCart:disabled {
    cursor: default;
    opacity: .62;
    transform: none;
}


.vcPromoProductAddCart.is-added,
.vcPromoProductQuickCart.is-added {
    background:
        linear-gradient(
            135deg,
            #20a66a,
            #38c77f
        );
}


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

.vcPromoProductView {
    width: 42px;
    height: 44px;
    display: grid;
    place-items: center;
    border:
        1px solid
        rgba(15, 23, 42, .08);
    border-radius: 13px;
    background: #ffffff;
    color: #515965;
    text-decoration: none;
    transition:
        transform .22s ease,
        border-color .22s ease,
        box-shadow .22s ease,
        color .22s ease;
}


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


.vcPromoProductView:hover {
    transform:
        translateX(2px);
    border-color:
        rgba(255, 75, 112, .18);
    color: #ff4b70;
    box-shadow:
        0 10px 24px
        rgba(15, 23, 42, .05);
}


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

.vcPromoPagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 42px;
}


.vcPromoPaginationPages {
    display: flex;
    align-items: center;
    gap: 6px;
}


.vcPromoPaginationPages a,
.vcPromoPaginationPages > span {
    min-width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    padding:
        0
        8px;
    border:
        1px solid
        rgba(15, 23, 42, .07);
    border-radius: 12px;
    background: #ffffff;
    color: #626a76;
    font-size: 10px;
    font-weight: 800;
    text-decoration: none;
}


.vcPromoPaginationPages a:hover {
    border-color:
        rgba(255, 75, 112, .18);
    color: #ff4b70;
}


.vcPromoPaginationPages .is-active {
    border-color: #171b23;
    background: #171b23;
    color: #ffffff;
}


.vcPromoPaginationPages > span:not(.is-active) {
    border-color: transparent;
    background: transparent;
    color: #a2a8b1;
}


.vcPromoPaginationArrow {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border:
        1px solid
        rgba(15, 23, 42, .07);
    border-radius: 13px;
    background: #ffffff;
    color: #505762;
    text-decoration: none;
    transition:
        transform .22s ease,
        border-color .22s ease,
        color .22s ease;
}


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


a.vcPromoPaginationArrow:hover {
    transform:
        translateY(-2px);
    border-color:
        rgba(255, 75, 112, .18);
    color: #ff4b70;
}


.vcPromoPaginationArrow.is-disabled {
    opacity: .35;
}


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

.vcPromotionsCatalogEmpty {
    padding:
        clamp(
            65px,
            9vw,
            110px
        )
        25px;
    border:
        1px solid
        rgba(15, 23, 42, .07);
    border-radius: 32px;
    background:
        linear-gradient(
            145deg,
            #fafafd,
            #ffffff
        );
    text-align: center;
}


.vcPromotionsCatalogEmptyIcon {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    margin:
        0
        auto
        18px;
    border-radius: 22px;
    background:
        rgba(255, 75, 112, .08);
    color: #ff4b70;
}


.vcPromotionsCatalogEmptyIcon svg {
    width: 28px;
    height: 28px;
}


.vcPromotionsCatalogEmpty > span:nth-child(2) {
    display: block;
    margin-bottom: 9px;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #ff4b70;
}


.vcPromotionsCatalogEmpty h3 {
    margin: 0;
    font-size:
        clamp(
            34px,
            4vw,
            52px
        );
    line-height: 1.05;
    letter-spacing: -.045em;
    color: #181c24;
}


.vcPromotionsCatalogEmpty h3 strong {
    display: block;
}


.vcPromotionsCatalogEmpty p {
    max-width: 510px;
    margin:
        15px
        auto
        22px;
    line-height: 1.65;
    color: #7c838e;
}


.vcPromotionsCatalogEmpty a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 50px;
    padding:
        0
        20px;
    border-radius: 999px;
    background: #171b23;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    text-decoration: none;
}


.vcPromotionsCatalogEmpty a svg {
    width: 15px;
    height: 15px;
}


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

@media (min-width: 1500px) {

    .vcPromoProductVisual {
        height: 330px;
    }

}


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

@media (max-width: 1180px) {

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


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


    .vcPromotionsCatalogSort {
        justify-content: flex-end;
    }

}


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

@media (max-width: 850px) {

    .vcPromotionsCatalogIntro {
        grid-template-columns:
            1fr;
        align-items: start;
    }


    .vcPromotionsCatalogTotal {
        width: max-content;
        text-align: left;
    }


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


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

}


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

@media (max-width: 620px) {

    .vcPromotionsCatalog {
        padding:
            64px
            16px;
    }


    .vcPromotionsCatalogIntro {
        gap: 18px;
        margin-bottom: 24px;
    }


    .vcPromotionsCatalogIntro h2 {
        font-size:
            clamp(
                38px,
                11vw,
                50px
            );
    }


    .vcPromotionsCatalogIntro p {
        font-size: 14px;
        line-height: 1.6;
    }


    .vcPromotionsCatalogTotal {
        width: 100%;
    }


    .vcPromotionsCatalogToolbar {
        padding: 12px;
        border-radius: 20px;
    }


    .vcPromotionsCatalogSort {
        display: grid;
        grid-template-columns:
            1fr;
        justify-content: stretch;
    }


    .vcPromotionsCatalogSelect {
        min-width: 0;
        width: 100%;
    }


    .vcPromotionsCatalogResultBar {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }


    .vcPromotionsCatalogGrid {
        grid-template-columns:
            1fr;
        gap: 15px;
    }


    .vcPromoProductCard {
        display: grid;
        grid-template-columns:
            150px
            minmax(0, 1fr);
        border-radius: 22px;
    }


    .vcPromoProductVisual {
        height: auto;
        min-height: 220px;
    }


    .vcPromoProductImage {
        padding:
            48px
            14px
            20px;
    }


    .vcPromoProductSaving {
        display: none;
    }


    .vcPromoProductDiscount {
        top: 12px;
        left: 12px;
        min-width: 52px;
        height: 31px;
        font-size: 11px;
    }


    .vcPromoProductQuickCart {
        right: 10px;
        bottom: 10px;
        width: 38px;
        height: 38px;
        border-radius: 12px;
    }


    .vcPromoProductInfo {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding:
            18px
            16px;
    }


    .vcPromoProductTitle {
        min-height: auto;
        font-size: 15px;
    }


    .vcPromoProductPrices {
        margin-top: 11px;
    }


    .vcPromoProductPrices > strong {
        font-size: 20px;
    }


    .vcPromoProductShipping {
        margin-top: 9px;
    }


    .vcPromoProductActions {
        margin-top: 12px;
    }

}


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

@media (max-width: 430px) {

    .vcPromoProductCard {
        grid-template-columns:
            130px
            minmax(0, 1fr);
    }


    .vcPromoProductVisual {
        min-height: 205px;
    }


    .vcPromoProductInfo {
        padding:
            16px
            13px;
    }


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


    .vcPromoProductView {
        display: none;
    }


    .vcPromoPagination {
        gap: 7px;
    }


    .vcPromoPaginationPages a,
    .vcPromoPaginationPages > span {
        min-width: 34px;
        height: 34px;
    }


    .vcPromoPaginationArrow {
        width: 36px;
        height: 36px;
    }

}


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

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

    .vcPromoCatalogFilter,
    .vcPromoProductCard,
    .vcPromoProductImage img,
    .vcPromoProductQuickCart,
    .vcPromoProductAddCart,
    .vcPromoProductView,
    .vcPromoPaginationArrow {
        transition: none;
    }

}