/* Heritage Grocer Footer — v1.1.0
   BEM namespace: .heritage-footer__
   Full 4-column footer matching the theme's original widget-footer layout
   (client preference), rendered entirely by the plugin.
   The theme's own template footer is hidden below because it contains
   template junk (ORGANIC STORE logo, lorem ipsum, dead links, dead socials). */

/* --- Hide Astra's template footer (single source of truth = this plugin) --- */
footer.site-footer {
    display: none !important;
}

/* --- Homepage category cards: uniform image band (v1.1.2) ---
   Client photos are full-bleed (template expected white-cutout images),
   so the overlay pseudo-element is normalised to a bottom band. */
.home .spectra-background-overlay.has-container-overlay:has(h3) {
    background-color: #ffffff;
}

.home .spectra-background-overlay.has-container-overlay:has(h3)::after {
    background-size: cover !important;
    background-position: center !important;
    top: 55% !important;
    opacity: 1 !important;
}

/* --- Header site title: serif wordmark to match footer (v1.1.3) --- */
.site-header .site-title,
.site-header .site-title a {
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 700;
    letter-spacing: 0.01em;
}

/* --- Footer shell --- */
.heritage-footer {
    background: #000000;
    padding: 56px 32px 0;
    font-family: inherit;
}

.heritage-footer__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
}

/* --- Brand column --- */
.heritage-footer__wordmark {
    color: #ffffff;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.01em;
    margin-bottom: 10px;
    font-family: Georgia, 'Times New Roman', serif;
}

.heritage-footer__tagline {
    color: #9dc183;
    font-size: 14px;
    margin: 0 0 14px;
}

.heritage-footer__blurb {
    color: #a9a9a9;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    max-width: 320px;
}

/* --- Link columns --- */
.heritage-footer__heading {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 18px;
    font-family: Georgia, 'Times New Roman', serif;
}

.heritage-footer__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.heritage-footer__list li {
    margin: 0 0 12px;
}

.heritage-footer__list a {
    color: #b8b8b8;
    font-size: 15px;
    text-decoration: none;
}

.heritage-footer__list a:hover,
.heritage-footer__list a:focus {
    color: #9dc183;
    text-decoration: underline;
}

/* Prominent: Returns (Stripe reviewers) + Allergen (food-law prominence) */
.heritage-footer__link--prominent {
    font-weight: 600;
    color: #efefef !important;
}

/* --- Legal disclosure bar --- */
.heritage-footer__legal-bar {
    border-top: 1px solid #1e1e1e;
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 0 32px;
    text-align: center;
}

.heritage-footer__company {
    color: #b8b8b8;
    font-size: 12px;
    margin: 0 0 6px;
}

.heritage-footer__address {
    color: #8a8a8a;
    font-size: 12px;
    margin: 0 0 6px;
}

.heritage-footer__contact {
    color: #b8b8b8;
    font-size: 12px;
    margin: 0 0 6px;
}

.heritage-footer__contact a {
    color: #b8b8b8;
    text-decoration: underline;
}

.heritage-footer__contact a:hover {
    color: #9dc183;
}

.heritage-footer__copyright {
    color: #8a8a8a;
    font-size: 11px;
    margin: 0;
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .heritage-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 600px) {
    .heritage-footer {
        padding: 40px 20px 0;
    }
    .heritage-footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-bottom: 32px;
    }
    .heritage-footer__blurb {
        max-width: none;
    }
}