/**
 * Top Bar Styles
 * @package Theme_352
 * @since 2.0.0
 */

.top-bar {
    background: var(--theme-352-gray-900);
    color: var(--theme-352-gray-300);
    font-size: var(--theme-352-font-size-sm);
}

.top-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--theme-352-space-4);
    padding: var(--theme-352-space-2) 0;
}

.top-bar__message {
    flex: 1;
}

.top-bar__contact {
    display: flex;
    align-items: center;
    gap: var(--theme-352-space-4);
}

.top-bar__phone,
.top-bar__email {
    display: flex;
    align-items: center;
    gap: var(--theme-352-space-2);
    color: var(--theme-352-gray-300);
    text-decoration: none;
    transition: color var(--theme-352-transition-fast);
}

.top-bar__phone:hover,
.top-bar__email:hover {
    color: var(--theme-352-white);
}

.top-bar__social .social-links__list {
    gap: var(--theme-352-space-2);
}

.top-bar__social .social-links__link {
    color: var(--theme-352-gray-400);
    padding: var(--theme-352-space-1);
}

.top-bar__social .social-links__link:hover {
    color: var(--theme-352-white);
}

@media (max-width: 767px) {
    .top-bar__inner {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .top-bar__message {
        width: 100%;
        order: -1;
    }
}

@media print {
    .top-bar {
        display: none !important;
    }
}
