/* 03. Баннер сообщества SW Shops
 * Перенесено из index.php. Позиция подключения сохранена.
 */

#swShopsBanner {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 999999;
    align-items: center;
    justify-content: center;
}

.sw-banner-content {
    position: relative;
    max-width: 900px;
    width: 95%;
    margin: 20px;
}

.sw-banner-img {
    width: 100%;
    height: auto;
    border-radius: 12px 12px 0 0;
    border: 3px solid #fff;
    border-bottom: none;
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.2);
    display: block;
}

.sw-close-btn {
    position: absolute;
    top: -25px;
    right: -25px;
    width: 50px;
    height: 50px;
    background: #ff0000;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1000000;
}

.sw-close-btn:hover {
    background: #cc0000;
}

.sw-banner-footer {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 0 0 12px 12px;
    border: 3px solid #fff;
    border-top: none;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: -3px;
}

.sw-checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.sw-dont-show-checkbox {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #4CAF50;
}

.sw-dont-show-label {
    color: white;
    font-size: 16px;
    font-family: Arial, sans-serif;
    cursor: pointer;
    user-select: none;
}

.sw-footer-buttons {
    display: flex;
    gap: 15px;
}

.sw-close-footer-btn {
    background: #ff4444;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 10px 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.sw-close-footer-btn:hover {
    background: #cc0000;
}
