/**
 * Баннер технических работ
 */
.sh-maintenance-banner {
    background: linear-gradient(90deg, #ff6b35 0%, #f7931e 100%);
    color: #fff;
    padding: 10px 16px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: 0.01em;
    position: relative;
    z-index: 1000;
}

.sh-maintenance-banner__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
}

.sh-maintenance-banner__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .sh-maintenance-banner {
        font-size: 12px;
        padding: 8px 12px;
    }
    
    .sh-maintenance-banner__icon {
        width: 16px;
        height: 16px;
    }
}

/**
 * Промо-баннер над шапкой (июнь монтаж)
 */
.sh-top-promo {
    position: relative;
    background: linear-gradient(90deg, #2d7a5f 0%, #1a5c45 100%);
    color: #fff;
    padding: 6px 40px 6px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.sh-top-promo__text {
    line-height: 1.3;
}

.sh-top-promo__text strong {
    color: #ffd700;
    font-weight: 600;
}

.sh-top-promo__btn {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255,255,255,0.95);
    color: #1a5c45;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
}

.sh-top-promo__btn:hover {
    background: #fff;
}

.sh-top-promo__close {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    padding: 0;
    border: none;
    background: transparent;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    transition: color 0.2s;
}

.sh-top-promo__close:hover {
    color: #fff;
}

.sh-top-promo__close svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 599px) {
    .sh-top-promo {
        padding: 5px 32px 5px 12px;
        font-size: 12px;
        gap: 8px;
    }
    
    .sh-top-promo__btn {
        padding: 3px 10px;
        font-size: 11px;
    }
    
    .sh-top-promo__close {
        right: 8px;
        width: 18px;
        height: 18px;
    }
    
    .sh-top-promo__close svg {
        width: 14px;
        height: 14px;
    }
}
