/* Footer Base Styles */
.site-footer {
    background-color: #B8860B;
    color: rgba(255, 255, 255, 0.9);
    padding: 4rem 0 2rem;
}

/* Footer Grid Layout */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Footer Typography */
.footer-heading {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Footer Links */
.footer-link {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ffffff;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.social-icon {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #ffffff;
}

/* Payment Methods Section */
.payment-methods {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem 0;
    margin: 2rem 0;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.payment-icon {
    color: rgba(255, 255, 255, 0.8);
    font-size: 2rem;
    transition: color 0.3s ease;
}

.payment-icon:hover {
    color: #ffffff;
}

/* Copyright Section */
.copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    padding-top: 2rem;
} 