.site-footer {
    background: #1f2937;
    color: #f3f4f6;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    text-align: left;
}

.footer-section {
    padding: 0 2rem;
    border-right: 1px solid #374151;
}

.footer-section:last-child {
    border-right: none;
}

.footer-section h3 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.875rem;
}

.footer-section ul li a:hover {
    color: white;
}

.payment-methods, .trust-badges {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
    background: white;
    padding: 8px 12px;
    border-radius: 6px;
    width: fit-content;
}

.payment-logo {
    height: 24px;
    width: auto;
    transition: all 0.2s;
}

.payment-logo:hover {
    transform: translateY(-2px);
}

.trust-badges img {
    height: 40px;
    width: auto;
    transition: all 0.2s;
}

.trust-badges img:hover {
    transform: translateY(-2px);
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid #374151;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: #9ca3af;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #9ca3af;
    transition: color 0.2s;
}

.social-link:hover {
    color: white;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 2rem 0 1rem;
        margin-top: 2rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .footer-section {
        padding: 1rem;
        border-right: 1px solid #374151;
        border-bottom: 1px solid #374151;
    }

    .footer-section:nth-child(2n) {
        border-right: none;
    }

    .footer-section:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .footer-section {
        border-right: none;
        border-bottom: 1px solid #374151;
    }

    .footer-section:last-child {
        border-bottom: none;
    }

    .payment-methods,
    .trust-badges {
        justify-content: flex-start;
    }
}
