/* ============================================================
   NearU - Footer Section
   Tokens from theme-tokens.css; logo + store badges from components.css
   ============================================================ */

/* ---------- Shell ---------- */
.nearu-footer {
    background: #fff;
    padding: 30px 0 26px;
}

/* ---------- Brand ---------- */
.nearu-footer-brand { margin-bottom: 14px; }
.nearu-footer-desc {
    color: var(--nearu-muted);
    font-size: 13.5px;
    line-height: 1.7;
    max-width: 300px;
    margin: 20px 0 18px;
    font-weight: 600;
}

/* ---------- Social icons ---------- */
.nearu-footer-socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.nearu-social {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--nearu-ink);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 15px;
    text-decoration: none;
    transition: background .2s ease, transform .2s ease;
}
.nearu-social:hover {
    background: var(--nearu-primary);
    color: #fff;
    transform: translateY(-2px);
}

/* ---------- Link columns ---------- */
.nearu-footer-heading {
    font-size: 15px;
    font-weight: var(--fw-bold);
    color: var(--nearu-ink);
    margin: 0 0 16px;
}
.nearu-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.nearu-footer-links li { margin-bottom: 10px; }
.nearu-footer-links a {
    color: var(--nearu-muted);
    font-size: 13.5px;
    text-decoration: none;
    transition: color .2s ease;
    font-weight: 600;
}
.nearu-footer-links a:hover { color: var(--nearu-primary); }

/* ---------- Store badges (stacked) ---------- */
.nearu-footer-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ---------- Divider + copyright ---------- */
.nearu-footer-divider {
    border: 0;
    border-top: 1px solid var(--nearu-border);
    margin: 28px 0 18px;
    opacity: 1;
}
.nearu-footer-copy {
    text-align: center;
    color: var(--nearu-muted);
    font-size: 13px;
    margin: 0;
    font-weight:600;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 991.98px) {
    .nearu-footer-brand-col { margin-bottom: 10px; }
}

@media (max-width: 575.98px) {
    .nearu-footer { padding: 26px 0 22px; }
    .nearu-footer-desc { max-width: 100%; }
    .nearu-footer-badges { flex-direction: row; flex-wrap: wrap; }
}

footer.nearu-footer {
    padding-left: 20px;
    padding-right: 20px;
}