/* Карточка товара: иконки в buybox, каталог производителя, CTA поставщику */
.mz-buybox__head {
    margin-bottom: 12px;
}

.mz-buybox__price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.mz-buybox__tools {
    position: static;
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    gap: 6px;
}

.mz-buybox__tool {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 1px solid var(--mz-border, #d5dde8);
    border-radius: 4px;
    background: #fff;
    color: var(--mz-primary, #1e3a5f);
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.12s ease;
}

.mz-buybox__tool:hover {
    border-color: var(--mz-primary, #1e3a5f);
    transform: translateY(-1px);
}

.mz-buybox__tool i {
    font-size: 14px;
    line-height: 1;
}

.mz-buybox__tool.mz-btn-fav.is-active,
.mz-buybox__tool.mz-btn-fav:hover {
    color: #c45c26;
    border-color: rgba(196, 92, 38, 0.45);
    background: rgba(196, 92, 38, 0.08);
}

.mz-buybox__tool.mz-btn-compare--icon.is-active,
.mz-buybox__tool.mz-btn-compare--icon:hover {
    color: #fff;
    background: var(--mz-primary, #1e3a5f);
    border-color: var(--mz-primary, #1e3a5f);
}

.mz-buybox--compact .mz-buybox__price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 4px 8px;
    margin: 0;
    padding-right: 0;
    min-width: 0;
    flex: 1 1 auto;
    line-height: 1.05;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--mz-primary, #1e3a5f);
}

.mz-buybox--compact .mz-buybox__price-main {
    display: inline;
    margin: 0;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
    color: var(--mz-primary, #1e3a5f);
}

.mz-buybox--compact .mz-buybox__price-unit,
.mz-buybox--compact .mz-buybox__price > span:not(.mz-buybox__price-main) {
    display: inline;
    margin: 0;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.2;
    color: var(--mz-muted, #64748b);
}

.mz-buybox--compact .mz-buybox__stock {
    margin: 8px 0 0;
    padding-right: 0;
    font-size: 13px;
}

.mz-buybox__price-row {
    align-items: center;
}

.mz-product-toolbar__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid var(--mz-border, #d5dde8);
    border-radius: 4px;
    background: #fff;
    color: var(--mz-primary, #1e3a5f);
    cursor: pointer;
}

.mz-best-offer-card__catalog {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
    padding: 12px 14px;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(196, 92, 38, 0.35);
    border-radius: 4px;
    background:
        linear-gradient(135deg, rgba(196, 92, 38, 0.1), rgba(255, 255, 255, 0.95) 55%);
    transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.12s ease;
}

.mz-best-offer-card__catalog:hover {
    border-color: var(--mz-accent, #c45c26);
    box-shadow: 0 8px 20px rgba(196, 92, 38, 0.12);
    transform: translateY(-1px);
    text-decoration: none;
    color: inherit;
}

.mz-best-offer-card__catalog-icon {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    background: var(--mz-accent, #c45c26);
    color: #fff;
    font-size: 14px;
}

.mz-best-offer-card__catalog-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    flex: 1;
}

.mz-best-offer-card__catalog-text strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--mz-primary, #1e3a5f);
    line-height: 1.2;
}

.mz-best-offer-card__catalog-text em {
    font-style: normal;
    font-size: 12px;
    color: var(--mz-muted, #64748b);
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mz-best-offer-card__catalog-arrow {
    color: var(--mz-accent, #c45c26);
    font-size: 13px;
}

/* Horizontal manufacturer band above product tabs */
.mz-mfr-band {
    display: grid;
    grid-template-columns: minmax(240px, 1.5fr) auto minmax(200px, 1fr);
    gap: 14px 24px;
    align-items: center;
    margin: 20px 0 8px;
    padding: 14px 18px;
    border: 1px solid var(--mz-border, #e2e8f0);
    border-radius: 4px;
    background:
        linear-gradient(180deg, #f7f4f0 0%, #fff 72%);
}

.mz-mfr-band__vendor {
    min-width: 0;
    padding-right: 8px;
    border-right: 1px solid rgba(30, 58, 95, 0.1);
}

.mz-mfr-band__label {
    margin: 0 0 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--mz-accent, #c45c26);
}

.mz-mfr-band__name {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--mz-primary, #1e3a5f);
}

.mz-mfr-band__name a {
    color: inherit;
    text-decoration: none;
}

.mz-mfr-band__name a:hover {
    color: var(--mz-accent, #c45c26);
}

.mz-mfr-band__rating {
    margin: 0;
}

.mz-mfr-band__rating .mz-mfr-rating {
    margin: 0;
}

.mz-mfr-band__rating .mz-mfr-rating__criteria {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 14px;
}

.mz-mfr-band__rating .mz-mfr-rating__criteria li {
    margin: 0;
}

.mz-mfr-band__catalog {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    max-width: 100%;
    padding: 8px 12px 8px 8px;
    text-decoration: none;
    color: var(--mz-primary, #1e3a5f);
    border: 1px solid rgba(196, 92, 38, 0.28);
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 1px 0 rgba(30, 58, 95, 0.04);
    transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.mz-mfr-band__catalog:hover {
    border-color: var(--mz-accent, #c45c26);
    background: rgba(196, 92, 38, 0.06);
    color: var(--mz-accent, #c45c26);
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(196, 92, 38, 0.1);
}

.mz-mfr-band__catalog-icon {
    flex: 0 0 26px;
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    background: var(--mz-accent, #c45c26);
    color: #fff;
    font-size: 11px;
}

.mz-mfr-band__catalog-text {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-width: 0;
    line-height: 1.15;
}

.mz-mfr-band__catalog-text strong {
    font-size: 13px;
    font-weight: 700;
    color: inherit;
    line-height: 1.2;
    white-space: nowrap;
}

.mz-mfr-band__catalog-text em {
    display: none;
}

.mz-mfr-band__catalog > .fa-arrow-right {
    color: var(--mz-accent, #c45c26);
    font-size: 11px;
    margin-left: 2px;
}

.mz-mfr-band__offers {
    min-width: 0;
    padding-left: 4px;
}

.mz-mfr-band__offers-title {
    margin: 0 0 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--mz-primary, #1e3a5f);
}

.mz-mfr-band__offers-list {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 12px;
}

.mz-mfr-band__offers-list li {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    padding: 5px 0;
    border-bottom: 1px solid rgba(30, 58, 95, 0.08);
}

.mz-mfr-band__offers-list li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.mz-mfr-band__offers-list a {
    color: var(--mz-primary, #1e3a5f);
    text-decoration: none;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mz-mfr-band__offers-list a:hover {
    color: var(--mz-accent, #c45c26);
}

.mz-mfr-band__offers-list span {
    flex: 0 0 auto;
    font-weight: 700;
    color: var(--mz-text, #1a1a1a);
    white-space: nowrap;
}

@media (max-width: 960px) {
    .mz-mfr-band {
        grid-template-columns: 1fr auto;
    }

    .mz-mfr-band__vendor {
        grid-column: 1 / -1;
        border-right: 0;
        padding-right: 0;
        padding-bottom: 12px;
        border-bottom: 1px solid rgba(30, 58, 95, 0.1);
    }

    .mz-mfr-band__offers {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .mz-mfr-band {
        grid-template-columns: 1fr;
        padding: 14px;
    }

    .mz-mfr-band__vendor {
        border-bottom: 1px solid rgba(30, 58, 95, 0.1);
    }
}

.mz-mfr-strip {
    margin: 28px 0 8px;
    padding: 18px 20px;
    border: 1px solid var(--mz-border, #e2e8f0);
    border-radius: 4px;
    background:
        linear-gradient(180deg, #f7f4f0 0%, #fff 100%);
}

.mz-mfr-strip__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px 24px;
    flex-wrap: wrap;
}

.mz-mfr-strip__title-wrap {
    min-width: 0;
    flex: 1 1 280px;
}

.mz-mfr-strip__title {
    margin: 0 0 12px;
    font-size: 18px;
    font-weight: 700;
    color: var(--mz-primary, #1e3a5f);
    letter-spacing: -0.02em;
}

.mz-mfr-strip--cta-only .mz-mfr-strip__head {
    align-items: center;
}

.mz-mfr-strip--cta-only .mz-mfr-strip__hint {
    margin: 0;
    flex: 1;
}

.mz-mfr-strip .mz-manufacturer-chips a {
    border-radius: 3px;
    border-color: rgba(30, 58, 95, 0.18);
    background: #fff;
    font-weight: 600;
}

.mz-mfr-strip .mz-manufacturer-chips a:hover {
    border-color: var(--mz-accent, #c45c26);
    color: var(--mz-accent, #c45c26);
}

.mz-mfr-strip__aside {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 1 auto;
    margin-left: auto;
}

.mz-mfr-strip__icons {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.mz-mfr-strip__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 4px;
    background: var(--mz-accent, #c45c26);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 8px 18px rgba(196, 92, 38, 0.22);
    transition: background 0.15s ease, transform 0.12s ease;
}

.mz-mfr-strip__cta:hover {
    background: #a84c1f;
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
}

.mz-mfr-strip__cta i {
    font-size: 12px;
}

@media (max-width: 720px) {
    .mz-mfr-strip__aside {
        width: 100%;
        margin-left: 0;
        justify-content: space-between;
    }

    .mz-mfr-strip__cta {
        flex: 1;
        justify-content: center;
    }
}

/* Видимое описание/характеристики вне вкладок — для краулеров и UX */
.mz-product__seo-body {
    margin: 28px 0 8px;
    display: grid;
    gap: 28px;
}
.mz-product__description h2,
.mz-product__specs h2 {
    margin: 0 0 14px;
    font-size: 22px;
    font-weight: 750;
    letter-spacing: -0.02em;
    color: var(--mz-primary, #1e3a5f);
}
.mz-tabs__btn--link {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}
