/* Десктоп — все в одному рядку, як було */
.widget-informer {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    color: #aaa;
    padding: 10px 0;
    flex-wrap: nowrap;
    white-space: nowrap;
    min-height: 40px;
}

.widget-informer__item {
    display: flex;
    align-items: center;
    gap: 6px;
    min-height: 36px;
}

/* Елементи */
.currency-label {
    font-weight: 600;
    font-size: 15px;
    color: #aaa;
}

.currency-value {
    font-size: 13px;
    color: #aaa;
}

.currency-separator {
    color: #666;
    margin: 0 6px;
}

.widget-informer__weather i {
    font-size: 28px;
    color: #aaa;
}

.weather-temp {
    margin-left: 4px;
    font-weight: 500;
}

.widget-informer__city .city-name {
    color: #aaa;
}

/* Стилі тексту */
.widget-informer.text-normal {
    text-transform: none;
}

.widget-informer.text-title {
    text-transform: capitalize;
}

/* Тільки покупка */
.widget-informer.buy-only .currency-separator,
.widget-informer.buy-only .currency-value:nth-child(4) {
    display: none;
}

/* ====================== МОБІЛЬНА АДАПТАЦІЯ ====================== */
@media (max-width: 768px) {
    /* Ховаємо назву міста на мобільному */
    .widget-informer__city {
        display: none;
    }

    /* Віджет стає блоком (другий рядок під логотипом) */
    .widget-informer {
        display: flex;
        flex-direction: row;
        justify-content: flex-start; /* або center, якщо хочеш по центру */
        gap: 15px;
        padding: 10px 15px;
        background: transparent; /* або колір фону хедера */
        flex-wrap: wrap;
    }

    .widget-informer__item {
        min-height: auto;
    }

    .widget-informer__weather i {
        font-size: 24px;
    }

    /* Якщо хочеш по центру весь інформер на мобільному */
    /* .widget-informer-wrapper { justify-content: center; } */
}

/* Дуже вузький екран (опціонально) */
@media (max-width: 480px) {
    .widget-informer {
        gap: 10px;
        padding: 8px 10px;
        font-size: 13px;
    }

    .widget-informer__weather i {
        font-size: 22px;
    }
}