/** Shopify CDN: Minification failed

Line 17:3 Expected ":"
Line 18:3 Expected ":"
Line 19:3 Expected ":"
Line 20:3 Expected ":"
Line 24:3 Expected ":"
Line 25:3 Expected ":"
Line 26:3 Expected ":"
Line 30:3 Expected ":"
Line 31:3 Expected ":"
Line 32:3 Expected ":"
... and 41 more hidden warnings

**/
.hscroll-wrapper {
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    position: relative;
}

.hscroll-track {
    display: flex;
    height: 100%;
    width: max-content;
}

.hscroll-item {
    flex: 0 0 auto;
    width: 70vw;
    max-width: 600px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    box-sizing: border-box;
}

.hscroll-title-panel {
    width: 90vw;
    max-width: 900px;
}

.hscroll-title-panel h2 {
    font-size: clamp(32px, 6vw, 72px);
    line-height: 1.1;
}

.hscroll-card {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.hscroll-img {
    width: 100%;
    height: 80%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.35s ease;
}

.hscroll-caption {
    padding-top: 12px;
}

.hscroll-product-title {
    font-weight: 600;
    margin: 0;
}

.hscroll-product-price {
    opacity: 0.7;
    margin: 4px 0 0;
}

@media (max-width: 749px) {
    .hscroll-wrapper {
        height: auto;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .hscroll-item {
        width: 82vw;
        height: 65vh;
        scroll-snap-align: center;
    }

    .hscroll-img {
        transform: scale(0.92) rotate(-1.5deg);
        filter: saturate(0.85);
    }

    .hscroll-item.is-active .hscroll-img {
        transform: scale(1) rotate(0deg);
        filter: saturate(1.15);
    }
}