






/* Footer *//* Footer */
footer {
    width: 100%;
    background: #000;
    padding: 80px 50px 30px;
    border-top: 1px solid #222;
    box-sizing: border-box;
    overflow: hidden;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 60px;
}

.footer-brand h3 {
    background: linear-gradient(135deg, #fff, var(--accent));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.footer-brand p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 30px;
    word-break: keep-all;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid var(--text-muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    display: block;
    filter: brightness(0) saturate(100%) invert(73%) sepia(6%) saturate(199%) hue-rotate(182deg) brightness(88%) contrast(88%);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
    transform: translateY(-3px);
}

.social-link:hover img {
    filter: brightness(0) invert(1);
}

.footer-column h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: white;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column a {
    color: var(--text-muted);
    text-decoration: none;
    display: block;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #222;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;

    flex-wrap: wrap;
    min-width: 0;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
    min-width: 0;
}

.payment-icon {
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;

    font-size: 10px;
    color: var(--text-muted);

    white-space: normal;
    word-break: keep-all;
    line-height: 1.5;
}

/* Footer Mobile */
@media (max-width: 768px) {
    footer {
        padding: 60px 20px 28px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 45px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 18px;
    }

    .payment-methods {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }

    .payment-icon {
        width: 100%;
        box-sizing: border-box;
    }
}