/** Shopify CDN: Minification failed

Line 246:15 Expected identifier but found whitespace
Line 247:8 Unexpected "0"

**/
/* ==========================================================
   CreamX Premium Video Reels
   Version: 1.0
========================================================== */

.cx-video-reels{
    background:var(--cx-bg);
    padding:72px 0;
    overflow:hidden;
}

.cx-video-reels .page-width{
    max-width:1400px;
}

.cx-video-reels__header{
    text-align:center;
    margin-bottom:48px;
}

.cx-video-reels__heading{
    margin:0;
    font-size:clamp(2rem,4vw,3rem);
    line-height:1.15;
    font-weight:700;
    color:#111;
}

.cx-video-reels__subheading{
    margin:14px auto 0;
    max-width:620px;
    font-size:1rem;
    line-height:1.7;
    color:#666;
}

.cx-video-reels__track{
    display:grid;
    grid-template-columns:repeat(var(--cx-desktop-columns),1fr);
    gap:28px;
    align-items:start;
}

.cx-reel-card{
    position:relative;
    overflow:hidden;
    border-radius:var(--cx-radius);
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:
        transform .35s ease,
        box-shadow .35s ease;
    height:100%;
}

.cx-reel-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.cx-reel-card__link{
    display:flex;
    flex-direction:column;
    color:inherit;
    text-decoration:none;
    height:100%;
}

.cx-reel-card__media{
    position:relative;
    aspect-ratio:9 / 16;
    overflow:hidden;
    background:#f5f5f5;
}

.cx-reel-video{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .45s ease;
}

.cx-reel-card:hover .cx-reel-video{
    transform:scale(1.03);
}

.cx-reel-card__overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.25),
        rgba(0,0,0,0) 55%
    );
    pointer-events:none;
}

.cx-reel-card__badge{
    position:absolute;
    top:18px;
    left:18px;
    z-index:2;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:8px 14px;
    border-radius:999px;
    background:var(--cx-accent);
    color:#fff;
    font-size:.75rem;
    font-weight:700;
    letter-spacing:.04em;
    text-transform:uppercase;
}

.cx-reel-card__content{
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    padding:24px;
    flex:1;
}

.cx-reel-card__product{
    display:flex;
    gap:16px;
    align-items:flex-start;
}

.cx-reel-card__image{
    flex:0 0 64px;
    width:64px;
    height:64px;
    border-radius:50%;
    overflow:hidden;
    background:#fff;
    border:1px solid rgba(0,0,0,.08);
}

.cx-reel-card__image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.cx-reel-card__details{
    flex:1;
    min-width:0;
}

.cx-product-title{
    margin:0;
    font-size:1.15rem;
    font-weight:700;
    line-height:1.4;
    color:#111;
}

.cx-product-subtitle{
    margin:8px 0 0;
    color:#666;
    font-size:.95rem;
    line-height:1.6;
}

.cx-price{
    display:flex;
    align-items:center;
    gap:10px;
    margin-top:18px;
}

.cx-price__current{
    font-size:1.25rem;
    font-weight:700;
    color:#111;
}

.cx-price__compare{
    color:#999;
    text-decoration:line-through;
    font-size:1rem;
}

/* ==========================================================
   Buttons
========================================================== */

.cx-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    margin-top:28px;
    width:100%;
    padding:16px 22px;
    border-radius:999px;
    background:var(--cx-accent);
    color:#fff;
    font-size:.95rem;
    font-weight:600;
    line-height:1;
    transition:
        background .3s ease,
        transform .3s ease,
        box-shadow .3s ease;
}

.cx-button svg{
    transition:transform .3s ease;
}

.cx-reel-card:hover .cx-button{
    transform:translateY(-2px);
    box-shadow:0 12px 24px rgba(0,0,0,.18);
}

.cx-reel-card:hover .cx-button svg{
    transform:translateX(4px);
}

/* ==========================================================
   Active Card
========================================================== */

.cx-reel-card{

    transform:scale(.96);

}

.cx-reel-card.is-active{

    transform:scale(1);
    opacity:1;

}
    box-shadow:
        0 18px 45px rgba(0,0,0,.14);
}

.cx-reel-card.is-active .cx-reel-video{
    transform:scale(1.02);
}

.cx-reel-card.is-active .cx-button{
    box-shadow:
        0 12px 30px rgba(0,0,0,.18);
}

/* ==========================================================
   Desktop
========================================================== */

@media screen and (min-width:990px){

    .cx-video-reels__track{

        align-items:stretch;

    }

    .cx-reel-card{

        min-height:100%;

    }

}

/* ==========================================================
   Tablet
========================================================== */

@media screen and (max-width:989px){

    .cx-video-reels{

        padding:56px 0;

    }

    .cx-video-reels__track{

        display:flex;
        overflow-x:auto;
        gap:18px;
        scroll-snap-type:x mandatory;
        scroll-padding-left:20px;
        padding-bottom:10px;
        -webkit-overflow-scrolling:touch;

    }

    .cx-video-reels__track::-webkit-scrollbar{

        display:none;

    }

    .cx-video-reels__track{

        scrollbar-width:none;

    }

    .cx-reel-card{

        flex:0 0 65%;
        scroll-snap-align:center;

    }

}

/* ==========================================================
   Mobile
========================================================== */

@media screen and (max-width:749px){

    .cx-video-reels{

        padding:42px 0;

    }

    .cx-video-reels__header{

        margin-bottom:30px;

    }

    .cx-video-reels__heading{

        font-size:2rem;

    }

    .cx-video-reels__subheading{

        font-size:.95rem;

    }

    .cx-video-reels__track{

        gap:14px;
        padding-inline:16px;
        scroll-padding-left:16px;

    }

    .cx-reel-card{

        flex:0 0 84vw;

    }

    .cx-reel-card__content{

        padding:18px;

    }

    .cx-reel-card__product{

        gap:12px;

    }

    .cx-reel-card__image{

        width:52px;
        height:52px;
        flex-basis:52px;

    }

    .cx-product-title{

        font-size:1rem;

    }

    .cx-product-subtitle{

        font-size:.85rem;

    }

    .cx-price{

        margin-top:12px;

    }

    .cx-price__current{

        font-size:1.1rem;

    }

    .cx-price__compare{

        font-size:.9rem;

    }

    .cx-button{

        margin-top:20px;
        padding:14px 18px;
        font-size:.9rem;

    }

}

/* ==========================================================
   Accessibility
========================================================== */

@media (prefers-reduced-motion: reduce){

    .cx-reel-card,
    .cx-reel-video,
    .cx-button,
    .cx-button svg{

        transition:none !important;
        animation:none !important;

    }

}

/* ==========================================================
   Focus States
========================================================== */

.cx-reel-card__link:focus-visible{

    outline:3px solid var(--cx-accent);
    outline-offset:4px;
    border-radius:var(--cx-radius);

}

/* ==========================================================
   Loading State
========================================================== */

.cx-reel-video:not([src]){

    background:#f3f3f3;

}

/* ==========================================================
   Utility
========================================================== */

.cx-hidden{

    display:none !important;

}