/* ─── Newsletter Band ─────────────────────────────────────── */
.jj-footer__newsletter {
    background: var(--jj-rose-lighter);
    padding: var(--space-3xl) 0;
}

.jj-newsletter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2xl);
}

.jj-newsletter__title {
    font-size: var(--text-xl);
    margin-bottom: var(--space-xs);
}

.jj-newsletter__desc {
    color: var(--jj-charcoal-light);
    font-size: var(--text-sm);
    margin: 0;
}

.jj-newsletter__form {
    flex-shrink: 0;
    width: 100%;
    max-width: 420px;
}

.jj-newsletter__field {
    display: flex;
    gap: var(--space-sm);
}

.jj-newsletter__input {
    flex: 1;
    border-radius: var(--radius-pill);
    padding: 12px 20px;
    min-height: 48px;
    font-size: var(--text-sm);
}

.jj-newsletter__btn {
    flex-shrink: 0;
}

.jj-newsletter__msg {
    font-size: var(--text-xs);
    margin-top: var(--space-sm);
    min-height: 1.2em;
}

.jj-newsletter__msg--success { color: var(--jj-success); }
.jj-newsletter__msg--error { color: var(--jj-error); }

@media (max-width: 768px) {
    .jj-newsletter {
        flex-direction: column;
        text-align: center;
        gap: var(--space-lg);
    }
    .jj-newsletter__form {
        max-width: 100%;
    }
    .jj-newsletter__field {
        flex-direction: column;
    }
}

/* ─── Main Footer ─────────────────────────────────────────── */
.jj-footer__main {
    background: var(--jj-ivory);
    padding: var(--space-3xl) 0 var(--space-2xl);
}

.jj-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
}

.jj-footer__logo {
    display: inline-block;
    text-decoration: none;
    margin-bottom: var(--space-md);
}

.jj-footer__tagline {
    color: var(--jj-charcoal-light);
    font-size: var(--text-sm);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-lg);
}

.jj-footer__social {
    display: flex;
    gap: var(--space-md);
}

.jj-footer__social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-circle);
    border: 1.5px solid var(--jj-rose);
    color: var(--jj-charcoal);
    transition: all var(--duration-fast) var(--ease-out);
}

.jj-footer__social-link:hover {
    background: var(--jj-mauve);
    border-color: var(--jj-mauve);
    color: var(--jj-white);
}

.jj-footer__heading {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--jj-charcoal);
    margin-bottom: var(--space-lg);
}

.jj-footer__links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.jj-footer__links a {
    font-size: var(--text-sm);
    color: var(--jj-charcoal-light);
    text-decoration: none;
    transition: color var(--duration-fast);
    padding: 6px 0;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.jj-footer__links a:hover {
    color: var(--jj-mauve-dark);
}

@media (max-width: 768px) {
    .jj-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }
    .jj-footer__brand {
        grid-column: 1 / -1;
        text-align: center;
    }
    .jj-footer__social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .jj-footer__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* ─── Bottom Bar ──────────────────────────────────────────── */
.jj-footer__bottom {
    background: var(--jj-ivory);
    border-top: 1px solid var(--jj-rose-light);
    padding: var(--space-lg) 0;
}

.jj-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}

.jj-footer__copy {
    font-size: var(--text-xs);
    color: var(--jj-charcoal-lighter);
    margin: 0;
}

.jj-footer__payments {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.jj-footer__payment-label {
    font-size: var(--text-xs);
    color: var(--jj-charcoal-lighter);
}

.jj-footer__payment-icons {
    display: flex;
    gap: var(--space-sm);
    opacity: 0.7;
}

@media (max-width: 600px) {
    .jj-footer__bottom-inner {
        flex-direction: column;
        text-align: center;
    }
}
