/* Плейсхолдеры вместо картинок */
.placeholder-img {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    color: #999;
    font-size: 1rem;
    text-align: center;
}

/* Контент поверх слайда карусели */
.owl-carousel-inner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    z-index: 2;
}

/* Кнопка «Наверх» */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

/* Отступ для фиксированного навбара */
body { padding-top: 0; }
.navbar.fixed-top + .container-fluid,
.navbar.fixed-top ~ .container-fluid { margin-top: 0; }

/* Секция фактов */
.fact-item { transition: transform 0.2s; }
.fact-item:hover { transform: translateY(-4px); }

/* Карточки продуктов и команды */
.product-item,
.team-item { transition: box-shadow 0.2s; }
.product-item:hover,
.team-item:hover { box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1); }
