/** Shopify CDN: Minification failed

Line 191:8 Unexpected "{"
Line 191:9 Expected identifier but found "%"
Line 191:41 Unexpected "{"
Line 191:42 Expected identifier but found "%"

**/
.stack_carousel_wrapper {
        width: 100%;
        margin: 0 auto;
        position: relative;
    }

    .stack_carousel_container {
        position: relative;
        width: 100%;
        height: var(--stack-carousel-height, 600px);
        overflow: hidden;
        background: #f5f5f5;
    }

    .stack_carousel_track {
        display: flex;
        height: 100%;
        cursor: grab;
        user-select: none;
        -webkit-user-select: none;
    }

    .stack_carousel_slide {
        width: 100%;
        height: 100%;
        position: relative;
        flex-shrink: 0;
    }

    .stack_slide_link {
        display: block;
        width: 100%;
        height: 100%;
        text-decoration: none;
        color: inherit;
    }

    .stack_slide_image {
        width: 100%;
        height: 100%;
        position: relative;
        overflow: hidden;
    }

    .stack_slide_img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .stack_carousel_slide:hover .stack_slide_img {
        transform: scale(1.05);
    }

    .stack_placeholder {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    }

    .stack_slide_overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(var(--stack-overlay-color), var(--stack-overlay-opacity, 0.4));
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 2rem;
        transition: opacity 0.3s ease;
    }

    .stack_carousel_slide:hover .stack_slide_overlay {
    }

    .stack_slide_content {
        max-width: 800px;
        text-align: center;
        color: white;
        z-index: 2;
        animation: stack_fade_in_up 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .stack_content_left {
        text-align: left;
        margin-right: auto;
    }

    .stack_content_right {
        text-align: right;
        margin-left: auto;
    }

    .stack_content_center {
        text-align: center;
        margin: 0 auto;
    }

    .stack_slide_heading {
        font-size: clamp(3rem, 5vw, 5rem);
        font-weight: 700;
        margin: 0 0 1rem 0;
        line-height: 1.2;
        animation: stack_slide_in 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s backwards;
    }

    .stack_slide_text {
        font-size: clamp(1.5rem, 2.5vw, 2rem);
        margin: 0 0 2rem 0;
        line-height: 1.6;
        animation: stack_slide_in 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.4s backwards;
    }

    .stack_slide_button_wrapper {
        max-width: 500px;
        width: 100%;
        animation: stack_slide_in 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.6s backwards;
    }

    .stack_slide_button {
        width: 100%;
        display: inline-block;
        padding: 1.5rem 2.5rem;
        background: white;
        color: #333;
        text-decoration: none;
        font-weight: 600;
        font-size: 18px;
        border-radius: 50px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        position: relative;
        overflow: hidden;
        cursor: pointer;
    }

    .stack_slide_button::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.1);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }

    .stack_slide_button:hover::before {
        width: 300px;
        height: 300px;
    }

    .stack_slide_button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }

    /* Arrows */
    .stack_carousel_arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, 0.9);
        border: none;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        cursor: pointer;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        color: #333;
    }

    .stack_carousel_arrow:hover {
        {% comment %} background: white; {% endcomment %}
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .stack_carousel_arrow:active {
        transform: translateY(-50%) scale(0.95);
    }

    .stack_arrow_prev {
        left: 2rem;
    }

    .stack_arrow_next {
        right: 2rem;
    }

    /* Dots */
    .stack_carousel_dots {
        position: absolute;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 0.75rem;
        z-index: 10;
    }

    .stack_dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.5);
        border: 2px solid white;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 0;
    }

    .stack_dot:hover {
        background: rgba(255, 255, 255, 0.8);
        transform: scale(1.2);
    }

    .stack_dot_active {
        background: white;
        width: 32px;
        border-radius: 6px;
    }

    /* Animations */
    @keyframes stack_fade_in_up {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes stack_slide_in {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Responsive */
    @media (max-width: 768px) {
        .stack_carousel_container {
            height: var(--stack-carousel-height, 500px);
        }

        .stack_slide_content {
            padding: 1rem;
        }

        .stack_carousel_arrow {
            width: 40px;
            height: 40px;
        }

        .stack_arrow_prev {
            left: 1rem;
        }

        .stack_arrow_next {
            right: 1rem;
        }

        .stack_carousel_dots {
            bottom: 1rem;
        }

        .stack_slide_button {
            padding: 0.75rem 2rem;
            font-size: 0.9rem;
        }
    }

    @media (max-width: 480px) {
        .stack_carousel_container {
            height: var(--stack-carousel-height, 400px);
        }
    }