.collection-slider-container {
    width: 100%;

    padding-top: 40px;
    padding-bottom: 40px;

    @media screen and (max-width: 749px) {
        padding: 8px 20px 40px 20px;
    }



    .collection-slider-inner {
        display: flex;
        align-items: center;
        gap: 60px;
        width: 100%;
        overflow: hidden;


        @media screen and (max-width: 749px) {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 24px;
            overflow: unset;
        }

        .collection-slider-title {

            flex-shrink: 0;
            max-width: 157px;

            @media screen and (max-width: 749px) {
                max-width: unset;
            }

            .collection-slider-title-mobile {
                color: var(--Text-Headline-Primary, #414042);
                text-align: center;
                font-feature-settings: 'clig' off, 'liga' off;

                font-size: 18px;
                font-style: normal;
                font-weight: 700;
                line-height: normal;
                letter-spacing: 1px;
                text-transform: uppercase;

                margin-bottom: 0;

                @media screen and (min-width: 768px) {
                    display: none;
                }
            }

            .collection-slider-title-desktop {
                color: var(--Text-Headline-Primary, #414042);
                font-feature-settings: 'clig' off, 'liga' off;

                font-size: 24px;
                font-style: normal;
                font-weight: 700;
                line-height: normal;
                letter-spacing: 1px;
                text-transform: uppercase;

                @media screen and (max-width: 768px) {
                    display: none;
                }
            }
        }

        .collection-slider-collections {
            width: 100%;
            overflow: hidden;
            position: relative;
            padding-bottom: 40px;

            @media screen and (max-width: 749px) {
                overflow: unset;
            }

            .collection-slider-prev,
            .collection-slider-next {
                width: 30px;
                height: 30px;
                top: 50%;
                transform: translateY(-50%);
                background-color: var(--gradient-base-accent-2);
                opacity: 0;
                transition: all 0.5s ease-in-out;

                &::after {
                    border-color: white;
                }

                &.swiper-button-disabled {
                    opacity: 0 !important;
                }

                @media screen and (max-width: 749px) {
                    opacity: 0 !important;
                }
            }

            &:hover {

                .collection-slider-prev,
                .collection-slider-next {
                    opacity: 1;
                }
            }

            &:not(.swiper-initialized) {
                .collection-slider-wrapper {
                    gap: 28px;

                    @media screen and (max-width: 749px) {
                        gap: 12px
                    }
                }
            }

            .swiper-scrollbar-drag {
                background-image: none;
                background-color: #121212;
                border-radius: 0;
                height: 2px;

                @media screen and (max-width: 749px) {
                    background-image: url("https://lulusar.com/cdn/shop/t/176/assets/scroll-button.png?v=62616831015374903501703594390");
                    background-position: center;
                    background-repeat: no-repeat;
                    background-size: contain;
                    border-radius: 0;
                    height: 8px;
                    top: -4px;
                }
            }

            .swiper-scrollbar {
                background-color: #E2E2E2;
                height: 2px;
            }

            .collection-slider-wrapper {
                display: flex;
                align-items: flex-start;
                width: 100%;

                .collection-slider-item {
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    gap: 12px;

                    text-decoration: none;

                    width: auto;

                    img {
                        border-radius: 152px;
                        object-fit: cover;

                        @media screen and (max-width: 749px) {
                            max-width: 98px;
                            max-height: 98px;
                        }

                        @media screen and (min-width: 2000px) {
                            width: 228px;
                            height: 228px;
                        }
                    }

                    span {
                        color: var(--Brand-Brand-Secondary_1, #414042);
                        text-align: center;
                        font-feature-settings: 'clig' off, 'liga' off;
                        font-size: 14px;
                        font-style: normal;
                        font-weight: 600;
                        line-height: normal;
                    }
                }
            }
        }


    }
}