/* Снят с производства / "Не поставляется" — Фаза 2 (ox8 2026-06-02) */

/* приглушение изображения товара в листинге */
.out-of-production .image_wrapper_block img,
.out-of-production .image-block img,
.out-of-production .image_block img,
.out-of-production .item-image img {
    filter: grayscale(100%);
    opacity: .5;
}
.out-of-production .image_wrapper_block,
.out-of-production .image-block,
.out-of-production .image_block,
.out-of-production .item-image {
    position: relative;
}

/* плашка в листинге — верхний левый угол (стиль ВИ) */
.oop-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 6;
    display: inline-block;
    background: #eef1f4;
    color: #5b6a78;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    padding: 5px 9px;
    border-radius: 4px;
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: .01em;
}

/* плашка в детальной — по центру изображения */
.oop-badge--center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(38, 46, 54, .8);
    color: #fff;
    font-size: 14px;
    padding: 9px 18px;
    border-radius: 5px;
}

/* приглушение изображения в детальной карточке */
.detail-out-of-production .detail-gallery-big-slider-main img,
.detail-out-of-production .slider-for img,
.detail-out-of-production .product-detail-gallery img {
    filter: grayscale(100%);
    opacity: .55;
}
.detail-out-of-production .detail-gallery-big-slider-main,
.detail-out-of-production .product-detail-gallery {
    position: relative;
}

/* статус «Товар снят с производства» в детальной без аналога-замены — Фаза 3 (ox8 2026-06-02) */
.oop-detail-status{ display:block; font-size:16px; font-weight:600; color:#5b6a78; margin:0 0 14px; }

/* === Доработки по замечаниям (ox8 2026-06-08) === */

/* #4 hover-галерея: только активный кадр — убираем наложение/просвечивание (наш же opacity вскрывал нижние слайды) */
.out-of-production .section-gallery-wrapper__item:not(._active){ display:none !important; }
.out-of-production .section-gallery-wrapper__item-nav{ display:none !important; }
.out-of-production .section-gallery-wrapper{ pointer-events:none; }

/* #1 логотип бренда — тоже в ч/б */
.out-of-production .brand__picture img,
.detail-out-of-production .brand__picture img{ filter:grayscale(100%); opacity:.55; }

/* #3 зелёные ссылки в свойствах снятого товара — приглушаем */
.out-of-production .properties__value a{ color:#8a8a8a !important; }
.out-of-production .properties__value a:hover{ color:#5b6a78 !important; }

/* #2 блок наличия: серый + подмена текста на «Товар снят с производства» (CSS, без правки шаблона) */
.out-of-production .item-stock .icon{ filter:grayscale(100%); opacity:.6; }
.out-of-production .item-stock .value{ font-size:0 !important; color:#8a8a8a !important; }
.out-of-production .item-stock .value::after{ content:"Товар снят с производства"; font-size:12px; font-weight:600; color:#8a8a8a; }
