.main-footer {
    background: var(--primary-brand); /* Your Brand Orange */
    color: var(--white);
    padding: 6rem 0 2rem;
    margin-top: 0; /* Let the section padding handle the space */
    width: 100%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

/* --- LOGO IN FOOTER --- */
.footer-brand .logo {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    text-decoration: none;
    display: block;
}

/* Make the 'Foods' part slightly different for that pro look */
.footer-brand .logo span {
    color: var(--creamy-beige); 
    opacity: 0.9;
}

.footer-brand p {
    color: var(--white);
    opacity: 0.9;
    line-height: 1.8;
    max-width: 320px;
    font-size: 0.95rem;
}

/* --- HEADERS --- */
.footer-links h4, 
.footer-contact h4 {
    color: var(--creamy-beige); /* Creamy white headers for contrast */
    margin-bottom: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 800;
}

/* --- LINKS --- */
.footer-links ul {
    list-style: none;
}

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

.footer-links a, 
.footer-contact a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover, 
.footer-contact a:hover {
    opacity: 1;
    color: var(--creamy-beige);
    padding-left: 8px; /* Slight slide effect */
}

/* --- CONTACT INFO --- */
.footer-contact p {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

/* --- BOTTOM BAR --- */
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.85rem;
    opacity: 0.7;
}

/* --- RESPONSIVE FIXES --- */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        text-align: center;
    }
    .footer-brand p {
        margin: 0 auto;
    }
    .footer-contact p {
        justify-content: center;
    }
    .footer-links a:hover {
        padding-left: 0; /* Remove slide on mobile for better centering */
    }
}
