

/* ===== Общие стили баннера ===== */
.common-banner-wrapper {
    position: fixed !important;
    left: 140px !important;
    bottom: 10px !important;
    z-index: 999 !important;
    transform: scale(1.5);
    transform-origin: bottom left;
}

.common-banner {
    position: relative;
    display: inline-block;
}

.banner-img {
    display: block;
    max-height: 64px;
    width: auto;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.banner-link-image {
    display: block;
    cursor: pointer;
    text-decoration: none;
}

/* Крестик закрытия */
.banner-close {
    position: absolute !important;
    top: -10px !important;
    right: -8px !important;
    color: #fff !important;
    font-size: 28px !important;
    font-weight: bold !important;
    line-height: 1 !important;
    cursor: pointer;
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.9);
    z-index: 10;
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.banner-close:hover {
    background: rgba(0, 0, 0, 0.8);
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
}
/* Скрытие баннера */
.common-banner-wrapper.hide_banners {
    display: none !important;
}

/* ===== Адаптив для мобильных ===== */
@media (max-width: 768px) {
    .common-banner-wrapper {
        left: 10px !important;
        bottom: 50px !important;
        transform: scale(1);
    }
    .banner-img {
        max-height: 48px;
    }
    .banner-close {
        font-size: 22px !important;
        width: 22px;
        height: 22px;
        top: -8px !important;
        right: -6px !important;
    }
}

.gc-main-content .top-notification-wrapper {
    display: block !important;
}
