/* REDESIGN TOP BAR */
.redesign-top-bar {
    background-color: #0088cc; /* Синий цвет бренда (примерный, уточнить по макету) */
    color: #fff;
    font-family: 'Open Sans', sans-serif; /* Или шрифт темы */
    font-size: 13px;
    line-height: 1.5;
    padding: 8px 0;
}

.redesign-top-bar a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s;
}

.redesign-top-bar a:hover {
    opacity: 0.8;
}

.redesign-top-bar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Menu */
.redesign-top-bar__menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 20px;
}

.redesign-top-bar__menu li {
    display: inline-block;
}

/* Contacts & Socials */
.redesign-top-bar__contacts {
    display: flex;
    align-items: center;
    gap: 20px;
}

.redesign-top-bar__item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.redesign-top-bar__item i {
    font-size: 14px;
}

/* Socials */
.redesign-top-bar__socials {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff !important;
    font-size: 14px;
    font-weight: bold;
}

.social-icon.whatsapp {
    background-color: #25D366;
}

.social-icon.telegram {
    background-color: #0088cc;
}

.social-icon.rutube {
    background-color: #000; /* Цвет Rutube */
    color: #E30613 !important; /* Красный акцент */
}

/* Responsive */
@media (max-width: 991px) {
    .redesign-top-bar {
        display: none; /* Скрываем на мобильных (пока не решим с адаптивностью) */
    }
}
