/* ========================================
   ПОДВАЛ — ПРОЗРАЧНЫЙ, В СТИЛЕ ХЕДЕРА
   ======================================== */

   .footer {
    position: relative;
    background: transparent;
    color: #ffffff;
    padding: 2.5rem 0 2rem;
    margin-top: 4rem;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

/* ============ ГРАДИЕНТНЫЙ РАЗДЕЛИТЕЛЬ СВЕРХУ ============ */
.footer-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0) 10%,
        rgba(255, 255, 255, 0.85) 50%,
        rgba(255, 255, 255, 0) 90%,
        rgba(255, 255, 255, 0) 100%
    );
}

/* ============ ССЫЛКИ-КНОПКИ (как в хедере) ============ */
.footer-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.7rem;
    margin-top: 0.5rem;
}

.footer-tabs a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.2rem;
    background: var(--color-accent);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.28);
    transition: all 0.25s ease;
    white-space: nowrap;
}

.footer-tabs a:hover {
    background: #ff85b0;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 157, 0.4);
}

/* ============ НИЖНЯЯ СТРОКА ============ */
.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-copy {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    line-height: 1.5;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.footer-brand {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #ffffff;
}

.footer-brand span {
    color: var(--color-accent);
}

/* ============ АДАПТИВ ============ */
@media (max-width: 600px) {
    .footer {
        padding: 2rem 0 1.5rem;
        margin-top: 3rem;
    }

    .footer-tabs {
        gap: 0.5rem;
    }

    .footer-tabs a {
        padding: 0.45rem 1rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 400px) {
    .footer-tabs {
        flex-direction: column;
        width: 100%;
    }

    .footer-tabs a {
        width: 100%;
        max-width: 320px;
    }
}