/* Главная: hero вплотную к шапке, блоки контента */
.mz-body--home .mz-main {
    padding-top: 0;
}

.mz-hero--home {
    margin: 0 0 32px;
    padding: 56px 0 60px;
    position: relative;
    overflow: hidden;
}

.mz-hero--home.mz-hero--has-bg {
    background-color: var(--mz-primary);
    background-size: cover;
    background-position: center;
}

.mz-hero--home.mz-hero--has-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(26, 54, 93, 0.92) 0%, rgba(26, 54, 93, 0.55) 100%);
    pointer-events: none;
}

.mz-hero--home .mz-container {
    position: relative;
    z-index: 1;
}

.mz-hero--home .mz-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.mz-hero--home .mz-hero__actions .mz-btn--outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.9);
}

.mz-hero--home .mz-hero__actions .mz-btn--outline:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    border-color: #fff;
}

.mz-home-section {
    padding: 32px 0 40px;
}

.mz-home-section--alt {
    background: var(--mz-surface);
}

.mz-home-section__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.mz-home-section__head .mz-section-title {
    margin: 0;
}

.mz-home-more {
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.mz-home-banner {
    padding: 24px 0;
}

.mz-home-banner .mz-ad__img {
    width: 100%;
    max-height: 280px;
    object-fit: cover;
    border-radius: 4px;
}

.mz-home-links {
    padding: 36px 0 28px;
}

.mz-home-links__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 18px;
}

.mz-home-link-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 176px;
    padding: 22px 20px 20px;
    overflow: hidden;
    background:
        radial-gradient(circle at 88% 12%, rgba(232, 93, 4, 0.14), transparent 30%),
        linear-gradient(135deg, #ffffff 0%, #f7f9fc 100%) !important;
    border: 1px solid rgba(30, 58, 95, 0.12) !important;
    color: inherit;
}

.mz-home-link-card::after {
    content: '';
    position: absolute;
    right: -34px;
    bottom: -44px;
    width: 118px;
    height: 118px;
    border: 18px solid rgba(30, 58, 95, 0.06);
    border-radius: 50%;
}

.mz-home-link-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
    color: var(--mz-primary);
    background: #eef4fb;
    border-radius: 14px;
    font-size: 20px;
}

.mz-home-link-card strong {
    position: relative;
    z-index: 1;
    display: block;
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.25;
}

.mz-home-link-card span:not(.mz-home-link-card__icon):not(.mz-home-link-card__arrow) {
    position: relative;
    z-index: 1;
    font-size: 14px;
    line-height: 1.45;
    color: var(--mz-muted);
}

.mz-home-link-card__arrow {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin-top: auto;
    color: #fff;
    background: var(--mz-primary);
    border-radius: 50%;
    font-size: 12px;
}

.mz-home-link-card:hover {
    text-decoration: none;
    border-color: rgba(30, 58, 95, 0.35) !important;
}

/* Новости: горизонтальная лента до 8 карточек */
.mz-news-scroller {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 12px;
    scrollbar-width: thin;
    scrollbar-color: var(--mz-border) transparent;
}

.mz-news-scroller .mz-news-card {
    flex: 0 0 clamp(240px, 28vw, 300px);
    scroll-snap-align: start;
    max-width: 300px;
}

.mz-news-scroller::-webkit-scrollbar {
    height: 6px;
}

.mz-news-scroller::-webkit-scrollbar-thumb {
    background: var(--mz-border);
    border-radius: 3px;
}

.mz-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.mz-news-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--mz-border);
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    min-height: 100%;
}

.mz-news-card:hover {
    border-color: var(--mz-primary);
    text-decoration: none;
}

.mz-news-card__img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: var(--mz-toolbar-bg);
}

.mz-news-card__body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mz-news-card__meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 10px;
    margin-bottom: 6px;
}

.mz-news-card__meta {
    font-size: 12px;
    color: var(--mz-muted);
}

.mz-news-card__category {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 999px;
    background: #eef2f7;
    color: var(--mz-primary);
    font-size: 11px;
    font-weight: 600;
    line-height: 1.4;
}

.mz-news-card__title {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.35;
}

.mz-news-card__excerpt {
    margin: 0;
    font-size: 14px;
    color: var(--mz-muted);
    line-height: 1.45;
}

.mz-news-card__source {
    margin-top: auto;
    font-size: 12px;
    color: var(--mz-primary);
    font-weight: 500;
}

/* О компании — на всю ширину, градиент */
.mz-about-band {
    width: 100%;
    padding: 48px 0 52px;
    background: linear-gradient(
        125deg,
        var(--mz-primary) 0%,
        #2a5282 42%,
        #3d6a9e 68%,
        var(--mz-accent) 100%
    );
    color: #fff;
}

.mz-about-band__inner {
    display: grid;
    grid-template-columns: 1fr minmax(260px, 36%);
    gap: 40px;
    align-items: center;
}

@media (max-width: 900px) {
    .mz-about-band__inner {
        grid-template-columns: 1fr;
    }
}

.mz-about-band__title {
    margin: 0 0 16px;
    font-size: 28px;
    color: #fff;
}

.mz-about-band__prose {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.95;
}

.mz-about-band__prose p {
    margin: 0 0 12px;
}

.mz-about-band__prose a {
    color: #fff;
    text-decoration: underline;
}

.mz-about-band__prose ul,
.mz-about-band__prose ol {
    margin: 0 0 12px;
    padding-left: 1.25em;
}

.mz-about-band__img {
    width: 100%;
    display: block;
    border: 3px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

/* Сертификаты + самые заказываемые (сетка ~60% / 40% как на макете) */
.mz-trust-bestsellers__layout {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    column-gap: 24px;
    row-gap: 12px;
    align-items: start;
}

.mz-trust-bestsellers__title {
    margin: 0 0 4px;
    font-size: 24px;
    line-height: 1.2;
}

.mz-trust-bestsellers__title--trust {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
}

.mz-trust-bestsellers__title--hits {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
}

.mz-trust-block {
    grid-column: 1;
    grid-row: 2;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 0;
    width: 100%;
    height: 308px;
    min-height: 308px;
    box-sizing: border-box;
}

.mz-bestsellers {
    grid-column: 2;
    grid-row: 2;
    display: flex;
    flex-direction: column;
    min-width: 0;
    width: 100%;
}

@media (max-width: 1100px) {
    .mz-trust-bestsellers__layout {
        grid-template-columns: 1fr;
    }

    .mz-trust-bestsellers__title--trust,
    .mz-trust-bestsellers__title--hits,
    .mz-trust-block,
    .mz-bestsellers {
        grid-column: 1;
        grid-row: auto;
    }

    .mz-trust-block,
    .mz-bestsellers__card {
        height: auto;
        min-height: 0;
    }

    .mz-trust-previews {
        flex: none;
        min-height: 0;
    }

    .mz-trust-preview {
        min-height: 156px;
        height: 156px;
    }
}

.mz-trust-tiles {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

@media (max-width: 700px) {
    .mz-trust-tiles {
        grid-template-columns: 1fr;
    }
}

.mz-trust-tile {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 72px;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid var(--mz-border);
    text-decoration: none;
    color: inherit;
}

a.mz-trust-tile:hover {
    border-color: var(--mz-primary);
    text-decoration: none;
}

.mz-trust-tile__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--mz-toolbar-bg);
    color: var(--mz-primary);
    border: 1px solid var(--mz-border);
}

.mz-trust-tile__icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.mz-trust-tile__icon .mz-menu-icon svg {
    width: 24px;
    height: 24px;
}

.mz-trust-tile__icon i {
    font-size: 20px;
}

.mz-trust-tile__text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.mz-trust-tile__title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.mz-trust-tile__sub {
    font-size: 12px;
    color: var(--mz-muted);
    line-height: 1.4;
}

.mz-trust-previews {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    align-items: stretch;
    width: 100%;
    flex: 1;
    min-height: 222px;
}

@media (max-width: 700px) {
    .mz-trust-previews {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.mz-trust-preview {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 222px;
    overflow: hidden;
    border: 1px solid var(--mz-border);
    background: #e8ebf0;
    text-decoration: none;
}

button.mz-trust-preview {
    padding: 0;
    font: inherit;
    color: inherit;
    cursor: pointer;
    text-align: inherit;
    appearance: none;
}

.mz-trust-preview::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #f8f9fb 0%, #e4e8ee 42%, #b8c2d0 78%, #8a96a8 100%);
    pointer-events: none;
}

.mz-trust-preview img,
.mz-trust-preview__placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mz-trust-preview__placeholder {
    background: linear-gradient(180deg, #ffffff 0%, #e4e8ee 45%, #b8c2d0 100%);
}

.mz-trust-lightbox__dialog {
    max-width: min(920px, 96vw);
    max-height: 92vh;
    padding: 16px 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mz-trust-lightbox__caption[hidden],
.mz-trust-lightbox__page[hidden] {
    display: none !important;
}

.mz-trust-lightbox__figure {
    margin: 0;
    overflow: auto;
    max-height: calc(92vh - 96px);
}

.mz-trust-lightbox__img {
    display: block;
    width: 100%;
    height: auto;
    max-height: calc(92vh - 120px);
    object-fit: contain;
    background: #f1f5f9;
}

.mz-trust-lightbox__caption {
    margin: 10px 0 0;
    font-size: 14px;
    color: var(--mz-muted);
    text-align: center;
    line-height: 1.4;
}

.mz-trust-lightbox__page {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--mz-primary);
    text-align: center;
    text-decoration: none;
}

.mz-trust-lightbox__page:hover {
    text-decoration: underline;
}

/* Слайдер «Самые заказываемые» */
.mz-bestsellers__viewport {
    position: relative;
}

.mz-bestsellers__slide {
    width: 100%;
}

.mz-bestsellers__slide.is-active {
    display: flex;
    flex-direction: column;
}

.mz-bestsellers__card {
    background: #fff;
    border: 1px solid var(--mz-border);
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 308px;
    min-height: 308px;
    box-sizing: border-box;
}

.mz-bestsellers__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.mz-bestsellers__vendor {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px 7px 14px;
    background: var(--mz-accent);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    max-width: 58%;
    line-height: 1.3;
}

.mz-bestsellers__vendor i {
    font-size: 10px;
    opacity: 0.95;
    flex-shrink: 0;
}

.mz-bestsellers__vendor:hover {
    background: #a34d1f;
    color: #fff;
    text-decoration: none;
}

.mz-bestsellers__prices {
    text-align: right;
    white-space: nowrap;
}

.mz-bestsellers__price-old {
    display: block;
    font-size: 13px;
    color: var(--mz-muted);
    text-decoration: line-through;
}

.mz-bestsellers__price {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--mz-accent);
    line-height: 1.1;
}

.mz-bestsellers__body {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 14px 16px;
    align-items: start;
    flex: 1;
}

@media (max-width: 520px) {
    .mz-bestsellers__body {
        grid-template-columns: 132px minmax(0, 1fr);
    }

    .mz-bestsellers__actions {
        justify-content: flex-start;
    }
}

.mz-bestsellers__thumb {
    display: block;
    width: 132px;
    height: 132px;
    flex-shrink: 0;
    border: 1px solid var(--mz-border);
    background: #fff;
}

.mz-bestsellers__thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    padding: 6px;
    box-sizing: border-box;
}

.mz-bestsellers__name {
    margin: 0 0 6px;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mz-bestsellers__name a {
    color: var(--mz-text);
    text-decoration: none;
}

.mz-bestsellers__name a:hover {
    color: var(--mz-primary);
}

.mz-bestsellers__meta {
    margin: 0 0 10px;
    font-size: 13px;
    color: var(--mz-muted);
    display: flex;
    flex-wrap: wrap;
    gap: 6px 20px;
}

.mz-bestsellers__desc {
    margin: 0 0 14px;
    font-size: 13px;
    line-height: 1.5;
    color: var(--mz-text);
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mz-bestsellers__info {
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 132px;
    height: 100%;
}

.mz-bestsellers__actions {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-top: auto;
    width: 100%;
}

.mz-bestsellers__actions .mz-btn {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    box-sizing: border-box;
    height: 40px;
    padding: 0 16px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
}

.mz-bestsellers__actions .mz-btn--primary {
    border: 1px solid transparent;
}

.mz-bestsellers__actions .mz-btn--outline {
    border: 1px solid var(--mz-primary);
    background: #fff;
    color: var(--mz-primary);
}

.mz-bestsellers__order,
.mz-bestsellers__more {
    min-width: 108px;
}

.mz-bestsellers__order.is-hidden {
    display: none;
}

.mz-bestsellers__qty {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border: 1px solid var(--mz-border);
    background: #fff;
    padding: 2px;
}

.mz-bestsellers__qty[hidden] {
    display: none !important;
}

.mz-bestsellers__qty-btn {
    width: 32px;
    height: 32px;
    border: 0;
    background: var(--mz-toolbar-bg);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    color: var(--mz-primary);
}

.mz-bestsellers__qty-input {
    width: 48px;
    height: 32px;
    border: 1px solid var(--mz-border);
    text-align: center;
    font: inherit;
    font-size: 14px;
}

.mz-bestsellers__qty-confirm {
    width: 36px;
    height: 32px;
    border: 0;
    background: var(--mz-success);
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


.mz-bestsellers__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 12px;
    flex-shrink: 0;
}

.mz-bestsellers__arrow {
    width: 36px;
    height: 36px;
    border: 1px solid var(--mz-border);
    background: #fff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    color: var(--mz-primary);
}

.mz-bestsellers__arrow:hover {
    border-color: var(--mz-primary);
}

.mz-bestsellers__dots {
    display: flex;
    gap: 8px;
}

.mz-bestsellers__dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #d8dce3;
    cursor: pointer;
}

.mz-bestsellers__dot.is-active {
    background: var(--mz-primary);
}

/* Отзывы: ровно 2 ряда на главной */
.mz-reviews-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.mz-reviews-tabs__btn {
    padding: 8px 16px;
    border: 1px solid var(--mz-border);
    background: #fff;
    font: inherit;
    cursor: pointer;
    border-radius: 4px;
}

.mz-reviews-tabs__btn.is-active {
    border-color: var(--mz-primary);
    color: var(--mz-primary);
    font-weight: 600;
}

.mz-reviews-panel[hidden] {
    display: none !important;
}

.mz-reviews-grid--home {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 16px;
}

@media (max-width: 1100px) {
    .mz-reviews-grid--home {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, auto);
    }
}

@media (max-width: 768px) {
    .mz-reviews-grid--home {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, auto);
    }
}

.mz-reviews-grid--page,
.mz-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.mz-review-card {
    padding: 20px;
    background: #fff;
    border: 1px solid var(--mz-border);
}

.mz-review-card__stars {
    color: #e6a817;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.mz-review-card__text {
    margin: 0 0 12px;
    font-size: 14px;
    line-height: 1.5;
}

.mz-reviews-grid--home .mz-review-card__text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}

.mz-review-card__author {
    font-size: 14px;
    font-weight: 600;
}

.mz-review-card__company,
.mz-review-card__date {
    font-size: 13px;
    color: var(--mz-muted);
}

.mz-reviews-widget {
    min-height: 120px;
}

.mz-reviews-page {
    padding-top: 24px;
}

.mz-reviews-page__widget {
    margin-top: 40px;
}

/* FAQ — на всю ширину контейнера */
.mz-faq-list {
    width: 100%;
    max-width: none;
}

.mz-faq-item {
    border: 1px solid var(--mz-border);
    margin-bottom: 8px;
    background: #fff;
}

.mz-faq-item summary {
    padding: 16px 20px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    list-style: none;
}

.mz-faq-item summary::-webkit-details-marker {
    display: none;
}

.mz-faq-item__a {
    padding: 0 20px 16px;
    margin: 0;
    font-size: 15px;
    color: var(--mz-muted);
    line-height: 1.55;
}

.mz-home-seo {
    padding: 32px 0;
    border-top: 1px solid var(--mz-border);
    background: var(--mz-toolbar-bg);
}

.mz-home-seo .mz-prose {
    color: var(--mz-text);
}

/* Контакты: 30% инфо + 70% карта */
.mz-home-contact {
    padding: 32px 0 0;
    background: var(--mz-toolbar-bg);
    border-top: 1px solid var(--mz-border);
}

.mz-home-contact .mz-section-title {
    margin-bottom: 24px;
}

.mz-home-contact__layout {
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 0;
    align-items: stretch;
    min-height: 420px;
    background: #fff;
    border: 1px solid var(--mz-border);
}

@media (max-width: 900px) {
    .mz-home-contact__layout {
        grid-template-columns: 1fr;
        min-height: 0;
    }
}

.mz-home-contact__info {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mz-home-contact__label {
    margin: 0 0 8px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--mz-muted);
    font-weight: 600;
}

.mz-home-contact__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mz-home-contact__list li {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.45;
}

.mz-home-contact__muted {
    display: block;
    font-size: 12px;
    color: var(--mz-muted);
    margin-bottom: 2px;
}

.mz-home-contact__phone {
    font-size: 18px;
    font-weight: 700;
    color: var(--mz-primary);
}

.mz-home-contact__schedule {
    margin: 0;
    font-size: 14px;
    color: var(--mz-muted);
}

.mz-home-contact__schedule i {
    margin-right: 6px;
    color: var(--mz-primary);
}

.mz-home-contact__socials {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
}

.mz-home-contact__soc {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--mz-text);
    text-decoration: none;
}

.mz-home-contact__soc:hover {
    color: var(--mz-primary);
    text-decoration: none;
}

.mz-home-contact__soc i {
    width: 20px;
    text-align: center;
    font-size: 18px;
    color: var(--mz-primary);
}

.mz-home-contact__map {
    position: relative;
    min-height: 360px;
    background: #e8ebf0;
}

.mz-home-contact__map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

@media (max-width: 900px) {
    .mz-home-contact__map {
        min-height: 320px;
    }
}

.mz-mfg-news {
    margin: 28px 0;
}

.mz-news-list {
    padding-top: 24px;
}

.mz-news-list__lead {
    margin: -4px 0 18px;
    color: var(--mz-muted);
    line-height: 1.55;
}

.mz-news-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 24px;
}

.mz-news-cats__item {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border: 1px solid var(--mz-border);
    border-radius: 999px;
    font-size: 13px;
    color: var(--mz-text);
    text-decoration: none;
    background: #fff;
}

.mz-news-cats__item:hover {
    border-color: var(--mz-primary);
    color: var(--mz-primary);
    text-decoration: none;
}

.mz-news-cats__item.is-active {
    background: var(--mz-primary);
    border-color: var(--mz-primary);
    color: #fff;
}

.mz-news-article {
    padding-top: 24px;
}

.mz-news-article__title {
    margin: 0 0 12px;
    font-size: 28px;
}

.mz-news-article__meta {
    font-size: 14px;
    color: var(--mz-muted);
    margin: 0 0 8px;
}

.mz-news-article__lead {
    font-size: 18px;
    color: var(--mz-muted);
}

.mz-news-article__figure img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    margin: 16px 0 24px;
    border-radius: 4px;
}

/* Лучшие предложения — карусель 4 / 2 / 1 */
.mz-home-best-offers {
    padding-top: 8px;
}

.mz-best-offers-carousel .mz-similar-carousel__viewport {
    grid-auto-columns: calc((100% - 36px) / 4);
}

@media (max-width: 992px) {
    .mz-best-offers-carousel .mz-similar-carousel__viewport {
        grid-auto-columns: calc((100% - 12px) / 2);
    }
}

@media (max-width: 520px) {
    .mz-best-offers-carousel .mz-similar-carousel__viewport {
        grid-auto-columns: 100%;
    }

    .mz-best-offers-carousel .mz-similar-carousel__btn--prev {
        left: -6px;
    }

    .mz-best-offers-carousel .mz-similar-carousel__btn--next {
        right: -6px;
    }
}
