/* =====================================================
   FOOTER.CSS - Стили футера, колонок, соцсетей и копирайта
   ===================================================== */

/* ------------------- 1. ОСНОВНОЙ ФУТЕР ------------------- */
.footer {
    color: white;
    display: flex;
    flex-wrap: wrap;
    padding: 20px 0;
    background-color: #1B1D24;
    border-radius: 10px;
    margin: 30px auto;
    max-width: 1500px;
}

/* ------------------- 2. КОЛОНКИ ФУТЕРА ------------------- */
.footer-column {
    padding-left: 30px;
    flex: 1 1 20%;
}

/* Заголовки колонок */
.footer-column h4 {
    color: #9EA7B1;
    margin-bottom: 10px;
    font-size: 18px;
}

/* Списки в колонках */
.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 5px;
}

/* Ссылки в колонках */
.footer-column ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #237bff;
    text-decoration: none;
}

/* ------------------- 3. БЛОК С СОЦИАЛЬНЫМИ СЕТЯМИ ------------------- */
.footer-column.follow-us ul {
    display: flex;
    list-style: none;
    padding: 0;
}

.footer-column.follow-us ul li {
    margin-right: 10px;
}

.footer-column.follow-us ul li img {
    width: 26px;
    height: 26px;
    filter: invert(100%);
}

/* ------------------- 4. НИЖНЯЯ ЧАСТЬ ФУТЕРА (ЛОГОТИП + ПОЛИТИКИ) ------------------- */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid #3a3a3a;
    width: 100%;
}

/* Левая часть нижнего футера (логотип) */
.footer-legal {
    padding-left: 30px;
    display: flex;
    align-items: center;
}

.footer-legal p {
    color: white;
}

.footer-logo {
    width: 30px;
    margin-right: 10px;
}

/* Правая часть нижнего футера (ссылки на документы) */
.footer-policy {
    padding-right: 30px;
    text-align: right;
}

.footer-policy a {
    color: #9ea7b1;
    text-decoration: none;
    margin-left: 10px;
}

.footer-policy a:hover {
    color: #237bff;
    text-decoration: none;
}

/* ------------------- 5. КОПИРАЙТ И ДИСКЛЕЙМЕР ------------------- */
.footer-copyright {
    width: 100%;
    text-align: center;
    padding: 20px 30px 15px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
}

.footer-copyright p {
    margin: 5px 0;
    font-size: 13px;
    color: #9EA7B1;
}

.footer-copyright .footer-disclaimer {
    font-size: 11px;
    color: #6c757d;
    line-height: 1.4;
}

/* ------------------- 6. БЛОК ПЛАТЁЖНОЙ СИСТЕМЫ ------------------- */
.footer-payment {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.footer-payment img {
    max-width: 200px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer-payment img:hover {
    opacity: 1;
}