* {
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-optical-sizing: auto;
    font-style: normal;
}

@keyframes slide-in-out {
    0%, 15% {
        transform: translateX(0);
    }
    29%, 49% {
        transform: translateX(-25%);
    }
    62%, 82% {
        transform: translateX(-50%);
    }
    95%, 100% {
        transform: translateX(-75%);
    }
}

@media (min-width: 992px) {
    .banners-row:has(.carousel) .next-to-carousel-banners {
        margin-top: unset;
    }
}


#carousel .extended-banner-texts {
    position: absolute;
    inset: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 0 clamp(16px, 3.125vw, 40px) clamp(24px, 6.25vw, 80px);
    z-index: 2;
}

#carousel .extended-banner-title,
#carousel .extended-banner-text,
#carousel .extended-banner-link {
    position: static;
    inset: auto;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    color: #fff;
    background: transparent;
    border: 0;
    box-shadow: none;
}

#carousel .extended-banner-title {
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
}

#carousel .extended-banner-text {
    max-width: 590px;
    margin-bottom: 24px;
    font-size: clamp(28px, 3.125vw, 40px);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0;
}

#carousel .extended-banner-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 45px;
    padding: 12px 32px;
    color: #fff;
    background: #121212;
    border-radius: 2px;
    font-size: 12px;
    font-weight: 700;
    line-height: 15px;
    letter-spacing: 0.75px;
    text-transform: uppercase;
    transition: background-color 0.2s ease, color 0.2s ease;
}

#carousel .item > a:hover .extended-banner-link {
    color: #121212;
    background: #fff;
}

.banners-row {
    --category-slider-offset: clamp(16px, 3.125vw, 40px);
}

.category-slider-header {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: calc(100vw - var(--category-slider-offset) - var(--category-slider-offset));
    min-height: 32px;
    margin: 0 0 24px var(--category-slider-offset);
    padding: 0;
}

.category-slider-heading {
    margin: 0;
    padding: 0;
    font-size: 24px;
    font-weight: 400;
    line-height: 24px;
}

.category-slider-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
}

.category-slider-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    margin: 0;
    padding: 0;
    color: #121212;
    background: transparent;
    border: 0;
    border-radius: 0;
    font-size: 0;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.category-slider-arrow svg {
    display: block;
    width: 24px;
    height: 24px;
    pointer-events: none;
}

.category-slider-arrow:disabled {
    opacity: 0.45;
    cursor: default;
}

.next-to-carousel-banners {
    box-sizing: border-box;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    align-content: stretch !important;
    gap: 4px !important;
    width: calc(100vw - var(--category-slider-offset)) !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    max-width: none !important;
    margin: 0 0 0 var(--category-slider-offset) !important;
    padding: 0 !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
}

.next-to-carousel-banners::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.next-to-carousel-banners .banner-wrapper {
    position: relative;
    display: block !important;
    flex: 0 0 calc(20.8333% - 6.667px) !important;
    width: auto !important;
    height: auto !important;
    min-width: 0 !important;
    min-height: 0 !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    aspect-ratio: 280 / 400;
    overflow: hidden;
    border-radius: 2px;
    scroll-snap-align: start;
}

.next-to-carousel-banners .banner-wrapper > a {
    position: relative;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0;
    padding: 0;
    overflow: hidden;
    color: #fff;
    text-decoration: none;
}

.next-to-carousel-banners .banner-wrapper img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    margin: 0;
    padding: 0;
    object-fit: cover;
}

.next-to-carousel-banners .banner-wrapper > a::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.6) 90%);
}

.next-to-carousel-banners .extended-banner-texts {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    pointer-events: none;
}

.next-to-carousel-banners .extended-banner-title {
    position: absolute;
    top: auto;
    right: 16px;
    bottom: 24px;
    left: 16px;
    z-index: 3;
    display: block;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    color: #fff;
    background: transparent;
    border: 0;
    box-shadow: none;
    font-size: 24px;
    font-weight: 400;
    line-height: 24px;
}

@media (max-width: 991px) {
    .category-slider-header {
        min-height: 24px;
    }

    .category-slider-nav {
        display: none !important;
    }

    .next-to-carousel-banners .banner-wrapper {
        flex-basis: calc(83.3333% - 6.667px) !important;
    }
}

@media (max-width: 767px) {
    #carousel .extended-banner-texts {
        padding: 0 16px 24px;
    }

    #carousel .extended-banner-title {
        font-size: 14px;
        line-height: 14px;
    }

    #carousel .extended-banner-text {
        margin-bottom: 24px;
        font-size: clamp(28px, 8.2vw, 32px);
        line-height: 1.2;
    }

    #carousel .extended-banner-link {
        min-height: 45px;
        padding: 12px 32px;
    }

    .category-slider-heading {
        font-size: 24px;
        line-height: 24px;
    }
}

#carousel {
    height: 100dvh;
    max-height: 560px;
    position: relative;
    overflow: hidden;
}

@media (min-width: 992px) {
    #carousel {
        max-height: 65dvh;
    }
}

.carousel-inner,
.carousel-inner > .item {
    min-height: auto !important;
    height: 100%;
}

.carousel-inner > .item > a {
    display: flex;
    height: 100%;
}

.carousel-inner > .item > a:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #0000004d;
}

.carousel-inner > .item > a > img {
    object-fit: cover;
}

.mjs-promo-bar {
    background-color: #322826;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    height: 32px;
    overflow: hidden;
    flex-wrap: wrap;
}

.mjs-promo-bar a {
    color: #fff;
    font-size: 12px;
    line-height: 32px;
}

.mjs-promo-bar a::after {
    content: "\e910";
    font-family: shoptet;
    font-size: 10px;
}

.mjs-promo-bar a:hover {
    text-decoration: underline;
}

@media (min-width: 992px) {
    #header .container {
        min-height: 55px;
    }

    #navigation,
    .menu-helper {
        height: 55px;
    }

    .navigation-buttons a, .top-nav-button-login {
        height: 55px;
        line-height: 55px;
        width: 55px;
    }

    .navigation-in > ul > li > a {
        display: flex;
        align-items: center;
        padding: 19px 12px;
    }

    .navigation-in > ul > li > a > b {
        font-size: 14px;
        font-weight: normal;
    }

    .menu-level-1 {
        padding-left: 20px !important;
    }
}

@media (max-width: 991px) {
    .benefitBanner {
        flex-wrap: nowrap;
        overflow-x: scroll;
    }

    .benefitBanner::-webkit-scrollbar {
        height: 0;
    }

    .container--bannersBenefit {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .benefitBanner__item {
        width: 75%;
        flex-basis: 75%;
    }
}

.homepage-tabs-wrapper .shp-tabs-row {
    display: none;
}

.homepage-tabs-wrapper #tab-content .tab-pane {
    display: block !important;
    opacity: 1;
}

.mjs-hp-section {
    background: #f5f5f5;
    display: flex;
    align-items: center;
}

.mjs-hp-section > a {
    flex: 0 0 65%;
}

.mjs-hp-section > div {
    padding: 40px;
}

.mjs-hp-section h2 {
    font-size: 30px;
}

.mjs-hp-section p {
    line-height: 1.8;
}

.mjs-hp-section .btn {
    margin-top: 10px;
    background: #000;
    color: #fff;
    font-weight: bold;
    border-radius: 50px;
}

.mjs-hp-section .btn:hover {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
    background: #3d3d3d;
}

@media (max-width: 1200px) {
    .mjs-hp-section > a {
        flex: 0 0 55%;
    }
}

@media (max-width: 1200px) {
    .mjs-hp-section {
        flex-direction: column;
        flex: 0 0 auto;
    }
}

#footer {
    margin-top: 0;
}

.mjs-footer-bar {
    background: #f9f8f6;
    padding: 16px 0;
    overflow: hidden
}

.mjs-footer-bar-in {
    display: flex;
    justify-content: space-between;
}

.mjs-footer-bar-in > div {
    display: flex;
    align-items: center;
}

.mjs-footer-bar i {
    position: relative;
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    border: 1px solid #322826;
    border-radius: 50%;
    text-align: center;
    display: block;
    margin-right: 8px;
}

.mjs-footer-bar i,
.mjs-footer-bar svg {
    font-size: 14px;
    line-height: 14px;
}

@media (min-width: 992px) {
    .mjs-footer-bar-in > div:last-child {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .mjs-footer-bar .container {
        width: auto;
        padding: 0;
    }

    .mjs-footer-bar-in {
        width: 400vw;
        animation: slide-in-out 16s ease-out infinite both;
        justify-content: unset;
    }

    .mjs-footer-bar-in > div {
        display: inline-flex;
        width: 100vw;
        justify-content: center;
    }
}