.whatnew-section {
    padding-top: 60px;
    padding-bottom: 10px;

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

    .whatnew-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        align-self: stretch;

        .whatnew-collections {
            width: 100%;
            position: relative;
            overflow: hidden;

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

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

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

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

            &:hover {

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

            .whatnew-view-all {
                width: 237px;
                height: 46px;
                background-color: white;
                color: var(--Button-Secondary, #414042);
                display: flex;
                justify-content: center;
                align-items: center;
                margin: 0 auto;

                text-align: center;
                font-feature-settings: 'clig' off, 'liga' off;
                font-family: "Proxima Nova";
                font-size: 13px;
                font-style: normal;
                font-weight: 600;
                line-height: normal;
                letter-spacing: 0.5px;
                text-transform: uppercase;
                text-decoration: none;
                margin-top: 60px;

                border: 1px solid #3F4245;
            }

            .whatnew-collection-tab {
                width: 100%;
                flex-wrap: nowrap;

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

                .swiper-slide {
                    @media screen and (max-width: 749px) {
                        max-width: unset;
                        padding: 0;
                    }

                    @media screen and (min-width: 750px) {
                        width: 295px;
                    }

                    .card__inner {
                        @media screen and (min-width: 750px) {
                            min-height: 444px;
                        }
                    }

                    .card__heading {
                        a {
                            font-size: 14px;
                            font-weight: 600;
                        }
                    }
                }
            }


            &.swiper-initialized {
                .whatnew-collection-tab {
                    gap: 0 !important;
                    column-gap: 0 !important;
                    row-gap: 0 !important;
                    margin: 0 !important;
                    padding: 0 !important;
                }
            }

            .swiper-scrollbar-drag {
                background-image: none;
                background-color:rgb(0, 0, 0);
                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;

                bottom: 70px;

                left: 0;
                width: 100%;
            }
        }

        .whatnew-title {
            h2 {
                color: var(--Brand-Brand-Secondary_1, #414042);
                font-size: 24px;
                font-style: normal;
                font-weight: 700;
                line-height: normal;
                letter-spacing: 1px;
                text-transform: uppercase;

                margin: 0;

                @media screen and (max-width:749px) {
                    font-size: 18px;
                }
            }
        }

        .whatnew-tabs {
            display: flex;
            justify-content: center;
            align-items: flex-start;
            gap: 32px;

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

                font-size: 14px;
                font-style: normal;
                font-weight: 600;
                line-height: normal;

                cursor: pointer;

                &.active {
                    border-bottom: 1px solid #414042;
                }
            }
        }
    }
}
/* This will letterbox images to avoid cropping */
.whatnew-section .card__media img {
  object-fit: contain !important;
  background: #fff; /* optional */
}
