.main-footer {
    background-color: var(--surface-dark);
    padding: 4rem 2rem 2rem;
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-title {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--surface-medium);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--text-primary);
    padding-left: 0.3rem;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 2.5rem;
}

.payment-methods i {
    opacity: 0.8;
    transition: var(--transition);
}

.payment-methods i:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.copyright-info {
    text-align: center;
    color: var(--text-secondary);
    margin-top: 2rem;
}

.copyright-info p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.credits {
    width: 100%;
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.6;
    color: var(--accent);
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-links a:hover {
        padding-left: 0;
    }

    .payment-methods {
        justify-content: center;
    }
}
