/** Shopify CDN: Minification failed

Line 42:32 Expected ":"

**/
/* * Video Product Split Styles
 * Layout: Split on Desktop, Stacked on Mobile (Text -> Video -> Products)
 */

.video-product-split-section {
    padding: 20px 20px;
    max-width: 1350px;
    margin: 0 auto;
    /* Contain all horizontal overflow at the section level */
    overflow-x: hidden; 
}

.vps-container {
    display: grid;
    /* Desktop layout: Video on Left (1.1fr), Content on Right (0.9fr) */
    grid-template-columns: 1.1fr 0.9fr; 
    grid-template-areas: 
        "video header"
        "video products";
    gap: 40px;
    align-items: start;
}

/* --- Layout Assignment --- */
.vps-header-block { grid-area: header; }
.vps-video-block { grid-area: video; width: 100%; }
.vps-products-block { grid-area: products; width: 100%; }

/* --- Typography --- */
.vps-title {
    font-size: 5em;
    color: #8c40b8; 
    margin: 0;
    line-height: 1;
    letter-spacing: -0.07em;
    text-align: left;
    font-weight: bold; important!
    font-family: 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
}

.vps-subtitle {
    font-size: 1.6em;
    color: #666;
    margin: 10px 0 30px;
    letter-spacing: -0.07em;
    text-align: left;
    font-family: 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
}

/* --- Video Element --- */
.vps-video-element {
    width: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    /* Cursor indicates interactivity for sound toggle */
    cursor: pointer;
    position: relative;
}

.vps-video-media video, 
.vps-video-media iframe {
    width: 100%;
    height: auto;
    display: block;
    /* Disable default pointer events if you want the container to handle clicks exclusively */
    pointer-events: none; 
}

/* --- Product Cards (Hybrid from variant grid) --- */
.vps-product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.vps-product-card {
    padding: 15px;
    position: relative;
    background: #fff;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    min-width: 0; 
}

.vps-image-link {
    display: block;
    width: 100%;
    padding-bottom: 100%;
    position: relative;
    margin-bottom: 10px;
}

.vps-card-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.vps-card-title {
    font-size: 1.3em;
    margin: 0 0 10px;
    text-align: center;
    letter-spacing: -0.08em;
    font-family: 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
}

.vps-price-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    gap: 8px;
}

.vps-card-price {
    font-weight: bold;
    font-size: 1.1em;
}

.vps-atc-button {
    background: #8c40b8;
    color: #fff;
    border: none;
    padding: 12px 10px;
    border-radius: 12px;
    font-size: 0.85em;
    cursor: pointer;
    flex-grow: 1;
    font-family: 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
}

.vps-atc-message {
    font-size: 0.7em;
    text-align: center;
    margin-top: 5px;
    min-height: 1.1em;
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 1024px) {
    .vps-container {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    /* Forced Sequence: Text -> Video -> Products */
    .vps-header-block { order: 1; text-align: center; }
    .vps-video-block { order: 2; }
    .vps-products-block { order: 3; }

    .vps-title { font-size: 3em; }

    /* Carousel behavior for mobile */
    .vps-carousel-wrapper {
        display: block;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch; 
        scroll-snap-type: x mandatory;
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .vps-carousel-wrapper::-webkit-scrollbar { display: none; }

    .vps-product-grid {
        display: flex;
        flex-wrap: nowrap;
        width: max-content;
        gap: 15px;
    }

    .vps-product-card {
        width: 280px; 
        flex-shrink: 0;
        scroll-snap-align: center;
    }
}