/* ============================================================
   FOOTER.CSS — MV Moda Femenina (ElixirS&B-inspired)
   ============================================================ */

.mv-footer {
    background: var(--ink);
    color: var(--cream);
    border-top: 1px solid rgba(184,153,104,0.15);
}

/* ── Main content ── */
.ft-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 56px 28px 48px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

/* ── Brand block ── */
.ft-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.ft-logo-img {
    height: 64px;
    width: auto;
    filter: brightness(0) invert(1) opacity(0.85);
}

.ft-tagline {
    font-family: var(--f-italic);
    font-style: italic;
    font-size: 15px;
    color: var(--champagne);
    opacity: 0.8;
    letter-spacing: 0.05em;
}

.ft-social {
    display: flex;
    gap: 12px;
}

.ft-social a {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(212,175,125,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, background 0.2s;
}

.ft-social a:hover {
    border-color: var(--gold);
    background: rgba(184,153,104,0.1);
}

.ft-social img { width: 18px; height: 18px; opacity: 0.8; }
.ft-social a:hover img { opacity: 1; }

/* ── Link columns ── */
.ft-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 16px;
}

.ft-col-title {
    font-family: var(--f-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.ft-link {
    display: block;
    font-size: 13px;
    opacity: 0.65;
    padding: 5px 0;
    transition: opacity 0.2s, color 0.2s;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--f-body);
    color: var(--cream);
    text-decoration: none;
}

.ft-link:hover { opacity: 1; color: var(--gold); }

/* ── Bottom bar ── */
.ft-bottom {
    border-top: 1px solid rgba(184,153,104,0.12);
    padding: 20px 28px 100px;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.ft-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.ft-contact-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--cream);
    text-decoration: none;
    font-size: 13px;
    opacity: 0.75;
    transition: opacity 0.2s, color 0.2s;
}

.ft-contact-link:hover { opacity: 1; color: var(--gold); }
.ft-contact-link img { width: 16px; height: 16px; opacity: 0.7; }

.ft-contact-sep { color: rgba(212,175,125,0.35); font-size: 14px; }

.ft-contact-location {
    font-size: 13px;
    opacity: 0.55;
}

.ft-copyright {
    font-size: 11px;
    letter-spacing: 0.5px;
    opacity: 0.35;
}

.ft-legal-links {
    display: flex;
    gap: 16px;
}

.ft-bottom-link {
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cream);
    text-decoration: none;
    opacity: 0.35;
    transition: opacity 0.2s, color 0.2s;
    font-family: var(--f-body);
}

.ft-bottom-link:hover { opacity: 0.7; color: var(--gold); }

/* ── Desktop ── */
@media (min-width: 768px) {
    .ft-content {
        grid-template-columns: 280px 1fr;
        gap: 80px;
        padding: 72px 60px 60px;
        align-items: start;
    }

    .ft-brand { align-items: flex-start; text-align: left; }

    .ft-links { grid-template-columns: repeat(3, 1fr); gap: 0 40px; }

    .ft-bottom {
        flex-direction: row;
        justify-content: space-between;
        padding: 20px 60px;
    }
}
