/* Алерт вверху страницы */
.sortmet-alert {
    background: #f0cf4c;
    color: #000;
    padding: 12px 0;
    position: relative;
    z-index: 9999;
    border-bottom: 1px solid #e0bf3c;
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.sortmet-alert.hidden {
    display: none;
}

.sortmet-alert__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.sortmet-alert__text {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    color: #000;
    flex: 1;
    text-align: center;
}

.sortmet-alert__close {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
    color: #000;
}

.sortmet-alert__close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: rotate(90deg);
}

.sortmet-alert__close i {
    font-size: 14px;
    color: #000;
}

/* Адаптивность */
@media (max-width: 768px) {
    .sortmet-alert {
        display: none !important;
    }
}

@media (max-width: 576px) {
    .sortmet-alert__text {
        font-size: 11px;
    }
}

