.ze-homepage-videos {
    width: 100%;
}

.ze-video-mosaic {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.ze-video-slide--large {
    grid-column: span 1;
}

.ze-video-slide--left,
.ze-video-slide--right {
    align-self: stretch;
}

.ze-video-mosaic-middle {
    grid-column: span 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 180px;
    gap: 16px;
}

.ze-video-mosaic-middle > .ze-video-slide:nth-child(1),
.ze-video-mosaic-middle > .ze-video-slide:nth-child(4) {
    grid-row: span 1;
}

.ze-video-mosaic-middle > .ze-video-slide:nth-child(2),
.ze-video-mosaic-middle > .ze-video-slide:nth-child(3) {
    grid-row: span 2;
}

.ze-video-mosaic-middle > .ze-video-slide {
    overflow: hidden;
    border-radius: 14px;
}

.ze-video-mosaic-middle .ze-video-slide--mini .video-container {
    height: 100%;
    aspect-ratio: auto;
}

.ze-video-slide .video-container {
    position: relative;
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    background: #f4f4f4;
}

.ze-video-slide--large .video-container {
    aspect-ratio: 2 / 3;
}

.ze-video-slide--mini .video-container {
    aspect-ratio: 1 / 1;
}

.ze-video-player {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    background: #000;
    transition: transform 0.3s ease;
}

.ze-video-slide:hover .ze-video-player {
    transform: scale(1.05);
}

.ze-video-link-overlay {
    position: absolute;
    inset: 0;
    z-index: 4;
}

.ze-video-card-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 54px;
    height: 54px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.45);
    color: var(--theme-color-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    pointer-events: none;
}

.ze-video-grid__controls {
    position: absolute;
    right: 10px;
    bottom: 10px;
    display: flex;
    gap: 8px;
    align-items: center;
}

.ze-video-grid__mute,
.ze-video-grid__play {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.55);
    color: var(--theme-color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: background 200ms ease;
}

.ze-video-grid__mute:hover,
.ze-video-grid__play:hover {
    background: rgba(0, 0, 0, 0.75);
}

.ze-video-grid__mute-glow {
    position: absolute;
    inset: -6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.4);
    filter: blur(8px);
    opacity: 0;
    transition: opacity 250ms ease;
    pointer-events: none;
}

.ze-video-grid__mute.is-on .ze-video-grid__mute-glow {
    opacity: 1;
}

.ze-video-grid__mute.is-on {
    background: rgba(255, 255, 255, 0.95);
    color: #000;
}

/* Icons visibility for video-grid */
.ze-video-grid__mute .up,
.ze-video-grid__mute .off,
.ze-video-grid__play .play,
.ze-video-grid__play .pause {
    display: none !important;
}

.ze-video-grid__play .play {
    display: block !important;
}

.ze-video-grid__play.is-playing .play {
    display: none !important;
}

.ze-video-grid__play.is-playing .pause {
    display: block !important;
}

.ze-video-grid__mute .off {
    display: block !important;
}

.ze-video-grid__mute.is-on .off {
    display: none !important;
}

.ze-video-grid__mute.is-on .up {
    display: block !important;
}

.ze-video-play-pause .play,
.ze-video-play-pause .pause,
.ze-video-volume .up,
.ze-video-volume .off {
    display: none !important;
}

.ze-video-play-pause.playing .pause {
    display: block !important;
}

.ze-video-play-pause:not(.playing) .play {
    display: block !important;
}

.ze-video-volume.muted .off {
    display: block !important;
}

.ze-video-volume:not(.muted) .up {
    display: block !important;
}

@media (max-width: 991px) {
    .ze-video-slide--large .video-container,
    .ze-video-slide--mini .video-container {
        aspect-ratio: 3 / 4;
    }
}

.ze-selected-head {
    display: block;
    margin-bottom: 36px;
}

.ze-selected-head h2 {
    font-size: 40px;
    font-weight: 500;
    letter-spacing: .02em;
    margin-bottom: 0;
    color: var(--theme-text-color);
}

.ze-selected-banner {
    overflow: hidden;
    background: #f1efec;
}

.ze-selected-landing > .ze-selected-banner:nth-of-type(5n + 1) {
    background: #f1efec;
}

.ze-selected-landing > .ze-selected-banner:nth-of-type(5n + 2) {
    background: #ece9e5;
}

.ze-selected-landing > .ze-selected-banner:nth-of-type(5n + 3) {
    background: #e7e3de;
}

.ze-selected-landing > .ze-selected-banner:nth-of-type(5n + 4) {
    background: #efedea;
}

.ze-selected-landing > .ze-selected-banner:nth-of-type(5n + 5) {
    background: #e9e6e2;
}

.ze-selected-banner__inner {
    position: relative;
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 26px;
    min-height: 300px;
    overflow: visible;
}

.ze-selected-banner__content {
    position: relative;
    padding: 40px 42px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    background: transparent;
    z-index: 1;
}

.ze-selected-banner__content::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 0;
    right: 100%;
    background: inherit;
}

.ze-selected-banner--reverse .ze-selected-banner__inner {
    grid-template-columns: 60% 40%;
}

.ze-selected-banner--reverse .ze-selected-banner__image-wrap {
    order: 1;
}

.ze-selected-banner--reverse .ze-selected-banner__content {
    order: 2;
}

.ze-selected-banner--reverse .ze-selected-banner__content::before {
    right: auto;
    left: 100%;
}

.ze-selected-banner__label {
    display: inline-block;
    font-size: 14px;
    letter-spacing: .16em;
    color: #5f5f5f;
    margin-bottom: 12px;
}

.ze-selected-banner__title {
    font-size: 34px;
    line-height: 1.08;
    margin: 0 0 14px;
    font-weight: 500;
    color: #1f1f1f;
}

.ze-selected-banner__description {
    max-width: 420px;
    color: #535353;
    line-height: 1.65;
    margin-bottom: 22px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ze-selected-banner__description,
.ze-selected-banner__description p,
.ze-selected-banner__description * {
    color: #535353;
}

.ze-selected-banner__description p {
    margin-bottom: 0;
}

.ze-selected-banner__btn.btn {
    width: fit-content;
    min-height: 42px;
    padding: 10px 32px;
    border: none;
    background: var(--theme-color);
    border-radius: 999px;
    font-size: 17px;
    color: var(--theme-color-white);
    line-height: 130%;
    letter-spacing: .08em;
}

.ze-selected-banner__btn.btn:hover {
    background: var(--theme-color-black);
}

.ze-selected-banner__image-wrap {
    overflow: hidden;
    display: flex;
    align-items: center;
}

.ze-selected-banner__image {
    height: auto;
    object-fit: cover;
}

.ze-selected-banner__image.ratio,
.ze-selected-banner__image[class*="ratio-"] {
    aspect-ratio: auto !important;
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.ze-brand-landing {
    overflow: hidden;
}

.ze-selected-slider {
    position: relative;
    margin-top: 28px;
    margin-bottom: 56px;
}

.ze-selected-slider .container {
    position: relative;
}

.ze-selected-slider__track {
    position: relative;
    min-width: 0;
    overflow-x: hidden;
    overflow-y: visible;
    padding: 10px 0 18px;
}

.ze-selected-slider__track .products {
    display: flex;
    flex-wrap: nowrap;
    position: relative;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    overflow-y: visible;
    margin-bottom: -16px;
    margin-left: 0;
    margin-right: 0;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.ze-selected-slider__track .products::-webkit-scrollbar {
    display: none;
}

.ze-selected-slider__track .products .js-product {
    position: relative;
    z-index: 1;
    flex: 0 0 calc((100% - 72px) / 5);
    max-width: calc((100% - 72px) / 5);
}

.ze-selected-slider__track .products .js-product:hover {
    z-index: 20;
}

.ze-selected-slider__track .products .js-product .product-miniature {
    position: relative;
}

.ze-selected-slider__track .products .js-product .thumbnail-container {
    position: relative;
}

.ze-selected-slider__track .products .js-product .thumbnail-container:hover {
    z-index: 30;
}

.ze-selected-landing .thumbnail-top,
.ze-brand-landing .thumbnail-top {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #f3f3f3;
}

.ze-selected-landing .thumbnail-top .product-thumbnail,
.ze-brand-landing .thumbnail-top .product-thumbnail {
    display: block;
    width: 100%;
    height: 100%;
}

.ze-selected-landing .thumbnail-top .product-thumbnail img,
.ze-brand-landing .thumbnail-top .product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ze-selected-slider__controls {
    position: absolute;
    right: 30px;
    top: -46px;
    display: flex;
    gap: 10px;
    z-index: 2;
}

.ze-selected-slider__control {
    width: 34px;
    height: 34px;
    border: 2px solid #c9c3bc;
    border-radius: 10px;
    background: #fdf9f5;
    color: #3f3a37;
    font-size: 22px;
    font-weight: 500;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(17, 17, 17, 0.08);
    transition: all .2s ease;
}

.ze-selected-slider__control:hover {
    border-color: var(--theme-color);
    background: var(--theme-color-white);
    color: var(--theme-color);
    transform: translateY(-1px);
}

.ze-brand-banner {
    padding: 8px 0;
    background: transparent;
}

.ze-brand-banner__inner {
    position: relative;
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 26px;
    overflow: visible;
}

.ze-brand-banner__content {
    position: relative;
    padding: 34px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 12px;
    background: #f1efec;
    z-index: 1;
}

.ze-brand-banner__content::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100vw;
    right: 100%;
    background: inherit;
}

.ze-brand-banner--reverse .ze-brand-banner__inner {
    grid-template-columns: 3fr 2fr;
}

.ze-brand-banner--reverse .ze-brand-banner__products {
    order: 1;
}

.ze-brand-banner--reverse .ze-brand-banner__content {
    order: 2;
}

.ze-brand-banner--reverse .ze-brand-banner__content::before {
    right: auto;
    left: 100%;
}

.ze-brand-banner__logo {
    width: 100%;
    aspect-ratio: 13 / 4;
    max-height: 96px;
    object-fit: contain;
    border-radius: 12px;
    display: block;
    margin: 4px 0 10px;
}

.ze-brand-banner__products {
    padding: 20px 0;
}

.ze-brand-banner__products .products {
    margin-bottom: 0;
}

.ze-brand-banner__products .js-product {
    margin-bottom: 0;
}

.ze-brand-banner__products .thumbnail-container {
    border-radius: 16px;
}

.ze-brand-banner__overlay-link {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.ze-brand-banner__content .ze-selected-banner__btn {
    position: relative;
    z-index: 2;
    pointer-events: auto;
}

.ze-brafitting-banner {
    padding: 10px 0;
}

.ze-brafitting-banner__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: clamp(360px, 30vw, 550px);
    border-radius: 20px 0 20px 0;
    overflow: hidden;
    background: #fbf7f1;
}

.ze-brafitting-banner__content {
    background: #f5ede3;
    padding: clamp(34px, 4vw, 72px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
}

.ze-brafitting-banner__image-wrap {
    height: 100%;
    background: #e9dfd3;
    overflow: hidden;
}

.ze-brafitting-banner__image {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.02);
    transition: transform .45s ease;
    width: 100%;
    height: auto;
}

.ze-brafitting-banner--reverse .ze-brafitting-banner__inner {
    direction: rtl;
}

.ze-brafitting-banner--reverse .ze-brafitting-banner__content {
    direction: ltr;
}

.ze-brafitting-banner:hover .ze-brafitting-banner__image {
    transform: scale(1.05);
}

.ze-brafitting-banner__label {
    display: block;
    font-size: 14px;
    letter-spacing: .28em;
    font-weight: 500;
    text-transform: uppercase;
    color: #5c4635;
}

.ze-brafitting-banner__content {
    color: #2f2720;
}

.ze-brafitting-banner__title {
    margin: 0;
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: clamp(30px, 3vw, 52px);
    line-height: 1.1;
    font-weight: 400;
    color: #2f2720;
    max-width: 20ch;
    font-style: italic;
}

.ze-brafitting-banner__title span {
    font-weight: 500;
    display: block;
    font-style: normal;
}

.ze-brafitting-banner__content .ze-selected-banner__description {
    max-width: 52ch;
    color: #4b3e33;
    font-size: 16px;
    line-height: 1.65;
}

.ze-brafitting-banner__content .ze-selected-banner__btn.btn {
    margin-top: 6px;
    background: transparent;
    border: 1px solid #6d5a4a;
    border-radius: 999px;
    color: #3a2f25;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 10px 26px;
    width: auto;
}

.ze-brafitting-banner__content .ze-selected-banner__btn.btn:hover {
    background: #3a2f25;
    color: var(--theme-color-white);
    border-color: #3a2f25;
}

.ze-blog-landing__head {
    max-width: 760px;
}

.ze-blog-landing,
.ze-blog-landing .ze-blog-landing-card__title,
.ze-blog-landing .ze-blog-landing-card__description,
.ze-blog-landing .ze-blog-landing-card__cta {
    font-family: 'Jost', sans-serif;
}

.home-container .ze-blog-landing h2 {
    text-align: left;
    font-size: 40px;
    margin-bottom: 20px !important;
    display: block;
    margin-left: 100px;
    margin-top: 60px;
    font-style: italic;
    font-weight: 300;
    letter-spacing: 1px;
}

.home-container .ze-blog-landing h2:before,
.home-container .ze-blog-landing h2:after {
    content: none;
    display: none;
}

.ze-premium-landing .ze-selected-banner__description h3 {
    font-size: clamp(30px, 3vw, 52px);
    line-height: 1.1;
    font-weight: 400;
    color: rgb(47, 39, 32);
    max-width: 20ch;
    font-style: italic;
    margin: 0 0 60px;
    font-family: "Playfair Display", "Times New Roman", serif;
}


.ze-premium-landing .ze-selected-banner__description h3 span {
    font-weight: 500;
    font-style: normal;
}

.ze-premium-landing {
    margin-top: 90px;
}

.ze-blog-landing a,
.ze-blog-landing a:hover,
.ze-blog-landing a:focus {
    text-decoration: none;
}

.ze-blog-landing__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(28px, 3.2vw, 52px);
}

.ze-blog-landing-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(210px, 40%) 1fr;
    align-items: center;
    min-height: clamp(320px, 30vw, 420px);
}

.ze-blog-landing-card__media {
    display: block;
    height: 338px;
    min-height: 338px;
    overflow: hidden;
    border-radius: 10px;
}

.ze-blog-landing-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .45s ease;
}

.ze-blog-landing-card:hover .ze-blog-landing-card__media img {
    transform: scale(1.04);
}

.ze-blog-landing-card__content {
    position: relative;
    margin-left: -44px;
    z-index: 2;
    color: var(--theme-text-color);
}

.ze-blog-landing-card__headline {
    background: #eee7dc;
    padding: 18px 30px;
}

.ze-blog-landing-card__body {
    padding: 18px 30px 0;
    background: transparent;
}

.ze-blog-landing-card__title {
    margin: 0;
    font-size: 18px;
    line-height: 1.1;
    font-weight: 400;
    color: var(--theme-color);
}

.ze-blog-landing-card__description {
    margin-top: 0;
    color: #5f5852;
    font-size: 16px;
    line-height: 1.25;
    margin-left: 40px;
}

.ze-blog-landing-card__cta {
    display: inline-flex;
    margin-top: 22px;
    padding: 11px 20px;
    background: var(--theme-color);
    color: var(--theme-color-white);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .02em;
    text-transform: uppercase;
    text-decoration: none;
}

.ze-blog-landing-card__cta:hover,
.ze-blog-landing-card__cta:focus {
    color: var(--theme-color-white);
    background: var(--theme-text-color);
    text-decoration: none;
}

.ze-premium-banner {
    padding: 10px 0;
}

.ze-premium-banner__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: clamp(320px, 27vw, 500px);
    border-radius: 20px;
    overflow: hidden;
    background: #f6f2ec;
}

.ze-premium-banner__content {
    background: #efe7dc;
    padding: clamp(30px, 3.6vw, 64px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

.ze-premium-banner__content .ze-selected-banner__description {
    max-width: 52ch;
    color: #4f4237;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.ze-premium-banner__content .ze-selected-banner__btn.btn {
    width: auto;
    padding: 10px 28px;
    border-radius: 999px;
    border: 1px solid #705848;
    background: transparent;
    color: #3b3028;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 500;
}

.ze-premium-banner__content .ze-selected-banner__btn.btn:hover,
.ze-premium-banner__content .ze-selected-banner__btn.btn:focus {
    background: #3b3028;
    border-color: #3b3028;
    color: var(--theme-color-white);
}

.ze-premium-banner__image-wrap {
    background: #e4d8ca;
    overflow: hidden;
}

.ze-premium-banner__image {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .45s ease;
    width: 100%;
    height: auto;
}

.ze-premium-banner:hover .ze-premium-banner__image {
    transform: scale(1.05);
}

.ze-premium-banner--reverse .ze-premium-banner__inner {
    direction: rtl;
}

.ze-premium-banner--reverse .ze-premium-banner__content {
    direction: ltr;
}


@media (max-width: 991px) {
    .ze-selected-head h2 {
        font-size: 28px;
    }

    .search-widgets input[type="text"] {
        width: 100%;
    }

    .ze-selected-banner__inner {
        grid-template-columns: 1fr;
        gap: 0;
        min-height: 0;
    }

    .ze-selected-banner--reverse .ze-selected-banner__inner {
        grid-template-columns: 1fr;
    }

    .ze-selected-banner__content {
        padding: 28px 24px;
    }

    .ze-selected-banner__image-wrap {
        padding: 0;
    }

    .ze-selected-banner__content::before,
    .ze-selected-banner--reverse .ze-selected-banner__content::before,
    .ze-brand-banner__content::before,
    .ze-brand-banner--reverse .ze-brand-banner__content::before {
        display: none;
    }

    .ze-selected-banner__image {
        max-height: 100%;
        max-width: 100%;
        aspect-ratio: 16 / 9;
    }

    .ze-brand-banner__inner {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .ze-brand-banner--reverse .ze-brand-banner__inner {
        grid-template-columns: 1fr;
    }

    .ze-brand-banner__content {
        padding: 28px 24px 10px;
    }

    .ze-brand-banner__products {
        padding: 15px 18px 20px;
    }

    .ze-brafitting-banner__inner,
    .ze-brafitting-banner--reverse .ze-brafitting-banner__inner {
        grid-template-columns: 1fr;
        min-height: 0;
        direction: ltr;
    }

    .ze-brafitting-banner__content {
        padding: 28px 24px 22px;
        align-items: center;
        text-align: center;
    }

    .ze-premium-landing .ze-selected-banner__description h3 {
        margin-bottom: 30px;
    }

    .ze-premium-banner__content {
        align-items: center;
        text-align: center;
    }

    .ze-premium-banner__inner {
        border-radius: 0;
    }

    .ze-footer-information-description {
        font-size: 15px;
    }

    .ze-brafitting-banner__image-wrap,
    .ze-brafitting-banner--reverse .ze-brafitting-banner__image-wrap {
        min-height: 260px;
    }

    .ze-brafitting-banner__image {
        transform: none;
        width: 100%;
        height: auto;
    }

    .ze-premium-banner__inner,
    .ze-premium-banner--reverse .ze-premium-banner__inner {
        grid-template-columns: 1fr;
        min-height: 0;
        direction: ltr;
    }

    .ze-premium-banner__content {
        padding: 28px 24px 22px;
    }

    .ze-premium-banner__image-wrap,
    .ze-premium-banner--reverse .ze-premium-banner__image-wrap {
        min-height: 260px;
    }

    .ze-premium-banner__image {
        transform: none;
        width: 100%;
        height: auto;
    }

    .ze-blog-landing__head {
        margin-bottom: 38px !important;
    }

    .ze-blog-landing__head h2 {
        font-size: clamp(24px, 6vw, 34px);
        padding-left: 16px;
    }

    .ze-blog-landing__grid {
        grid-template-columns: 1fr;
    }

    .ze-blog-landing-card {
        grid-template-columns: 1fr;
        min-height: 0;
        margin-bottom: 40px;
    }

    .ze-blog-landing-card:last-of-type {
        margin-bottom: 0;
    }

    .ze-blog-landing-card__content {
        margin-left: 0;
        margin-top: 0;
    }

    .ze-blog-landing-card__headline,
    .ze-blog-landing-card__body {
        padding-left: 0;
        padding-right: 0;
    }

    .ze-blog-landing-card__headline {
        margin-top: -9px;
        padding: 20px;
    }

    .ze-blog-landing-card__description {
        margin-left: 0;
    }

    .ze-blog-landing-card__cta {
        font-size: 13px;
        padding: 10px 18px;
        margin-top: 16px;
    }

    .ze-selected-banner .ze-selected-banner__image-wrap, .ze-brand-banner__inner .ze-brand-banner__content {
        order: 1;
    }

    .ze-selected-banner .ze-selected-banner__content, .ze-brand-banner__inner .ze-brand-banner__products {
        order: 2;
    }

}

@media (max-width: 992px) {
    .ze-selected-slider__track .products .js-product {
        flex: 0 0 calc((100% - 36px) / 3);
        max-width: calc((100% - 36px) / 3);
    }

    .ze-selected-slider__controls {
        top: -46px;
    }

    .ze-selected-slider .products .ze-mobile-hide-last:last-child,
    .ze-brand-banner__products .products .ze-mobile-hide-last:last-child {
        display: none;
    }
}

@media (max-width: 767px) {
    .ze-selected-slider__track .products .js-product {
        flex: 0 0 calc((100% - 18px) / 2);
        max-width: calc((100% - 18px) / 2);
    }

    .ze-selected-slider__controls {
        top: -42px;
        gap: 8px;
    }

    .ze-selected-slider__control {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .home-container .ze-blog-landing h2 {
        padding-right: 30px;
        padding-left: 30px;
    }
}