/* ====================== STYLEDONATE.CSS ====================== */
/* Только уникальные стили для страницы Donate */

.progress-bar {
    height: 12px;
    background: #ddd;
    border-radius: 20px;
    overflow: hidden;
    margin: 25px auto;
    max-width: 500px;
}

.progress {
    height: 12px;
    background: var(--primary);
    width: 0%;
    transition: width 1s ease;
}

.donate-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 25px 0;
}

.donate-buttons button {
    padding: 16px 28px;
    font-size: 18px;
    border: none;
    background: var(--primary);
    color: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.donate-buttons button:hover {
    transform: scale(1.07);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.amount-impact {
    font-size: 13px;
    color: var(--muted);
    margin-top: 4px;
    display: block;
}

.custom input {
    padding: 12px 15px;
    font-size: 18px;
    width: 180px;
    border: 2px solid #ddd;
    border-radius: 8px;
}

#donation-options {
    margin-top: 30px;
    display: none;
    background: var(--card-bg);
    padding: 25px;
    border-radius: 10px;
    text-align: left;
}

.pay-btn {
    display: block;
    margin: 10px 0;
    padding: 14px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
}

.qr-box, .confirm-box {
    margin: 30px 0;
    padding: 25px;
    background: linear-gradient(135deg, var(--card-bg), #eef2fa);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.feed {
    margin-top: 40px;
    text-align: left;
}

.feed p {
    background: #eef2fa;
    padding: 10px 14px;
    border-radius: 6px;
    margin-bottom: 8px;
}

.impact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.impact-box {
    background: #eef2fa;
    padding: 20px;
    border-radius: 10px;
    font-weight: bold;
    text-align: center;
}


        /*  EN  */
        
        .trust-logo {
    width: 50px;
    height: auto;
    vertical-align: middle;
}

.trust-bar img.trust-logo {
    width: 50px !important;
}

.pay-btn,
.donate-btn {
    background: #0b2a5b;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    display: inline-block;
    text-decoration: none;
    transition: 0.3s;
}

.pay-btn:hover,
.donate-btn:hover {
    background: #ffd700;
    color: #0b2a5b;
}



/* floating */
.floating {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #0b2a5b; /* СИНЯЯ */
    color: white;
    padding: 14px 22px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    z-index: 1000;
    transition: 0.3s;
}

.floating:hover {
    background: #ffd700;
    color: #0b2a5b;
    transform: translateY(-2px);
}
div.floating {
    background: #0b2a5b !important;
    color: white !important;
}
.floating {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(135deg, #0b2a5b, #1e4fa3);
    color: white;
    padding: 14px 22px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.floating:hover {
    background: linear-gradient(135deg, #ffd700, #ffcc00);
    color: #0b2a5b;
    transform: translateY(-3px) scale(1.05);
}
 
.floating {
    position: fixed !important;
    bottom: 25px !important;
    right: 25px !important;
    background: #0b2a5b !important;
    color: white !important;
    padding: 14px 22px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    z-index: 9999 !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.floating {
    position: fixed;       /* фиксируем на экране */
    bottom: 20px;          /* отступ от низа */
    right: 20px;           /* отступ от правого края */
    z-index: 9999;         /* поверх всего */
    background: #ffd700;   /* цвет кнопки */
    color: #0b2a5b;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    cursor: pointer;
    text-align: center;
    transition: 0.3s;
    max-width: 80vw; /* 🔹 важно: чтобы не уходила за экран */
    box-sizing: border-box;
}

.floating:hover {
    background: #0b2a5b;
    color: #ffd700;
}

/* Мобильная адаптация */
@media (max-width: 480px) {
    .floating {
        right: 10px;       /* ближе к экрану */
        bottom: 15px;
        padding: 10px 16px;
        font-size: 14px;
        max-width: 90vw;
    }
}

