
@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@400;600;700;800;900&family=DM+Sans:wght@400;500;600;700&display=swap');

.fs-footer {
    background: #0A0A0A;
    font-family: 'DM Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
    color: rgba(255,255,255,0.75);
    border-top: 3px solid #FF6B00;
}

/* ── TOP BAND ── */
.fs-footer-top { padding: 56px 0 44px; }
.fs-footer-top-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 280px 1fr 1fr 1fr 220px;
    gap: 40px;
    align-items: start;
}

/* Brand col */
.fs-footer-brand {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
    margin-bottom: 14px;
}
.fs-footer-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    flex-shrink: 0;
}
.fs-footer-brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-left: 11px;
    border-left: 1.5px solid rgba(255,255,255,0.12);
}
.fs-footer-brand-name {
    font-family: 'Figtree', sans-serif;
    font-size: 1.1rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -.025em;
    line-height: 1;
}
.fs-footer-brand-name em { font-style: normal; color: #FF6B00; }
.fs-footer-brand-tag {
    font-size: .6rem;
    font-weight: 600;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
    letter-spacing: .1em;
}
.fs-footer-tagline {
    font-size: .79rem;
    color: rgba(255,255,255,0.42);
    line-height: 1.65;
    margin-bottom: 18px;
}

/* Trust badges */
.fs-footer-trust {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}
.fs-footer-trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .75rem;
    color: rgba(255,255,255,0.55);
    font-weight: 500;
}
.fs-footer-trust-item svg { width: 13px; height: 13px; flex-shrink: 0; }

/* Social */
.fs-footer-social { display: flex; gap: 8px; }

.fs-footer-social-btn {
    width: 34px; height: 34px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: background .15s, color .15s, border-color .15s;
}
.fs-footer-social-btn svg { width: 15px; height: 15px; }
.fs-footer-social-btn:hover {
    background: rgba(255,107,0,0.15);
    border-color: rgba(255,107,0,0.3);
    color: #FF8C33;
}

/* Link columns */
.fs-footer-col { }
.fs-footer-col--wide { }
.fs-footer-col-head {
    font-family: 'Figtree', sans-serif;
    font-size: .72rem;
    font-weight: 800;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.fs-footer-links {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.fs-footer-links a {
    font-size: .82rem;
    color: rgba(255,255,255,0.48);
    text-decoration: none;
    transition: color .14s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.fs-footer-links a:hover { color: #FF8C33; }

/* Newsletter */
.fs-footer-nl-sub {
    font-size: .78rem;
    color: rgba(255,255,255,0.42);
    line-height: 1.6;
    margin-bottom: 12px;
}
.fs-footer-nl-form { display: flex; flex-direction: column; gap: 8px; margin-bottom: 8px; }
.fs-footer-nl-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.05);
    border: 1.5px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 0 12px;
    transition: border-color .16s;
}
.fs-footer-nl-wrap:focus-within {
    border-color: #FF6B00;
    box-shadow: 0 0 0 3px rgba(255,107,0,0.12);
}
.fs-footer-nl-wrap svg { width: 14px; height: 14px; flex-shrink: 0; color: rgba(255,255,255,0.3); }
.fs-footer-nl-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-family: 'DM Sans', sans-serif;
    font-size: .84rem;
    color: #fff;
    padding: 10px 0;
}
.fs-footer-nl-input::placeholder { color: rgba(255,255,255,0.28); }
.fs-footer-nl-btn {
    width: 100%;
    padding: 10px;
    background: linear-gradient(135deg, #FF6B00, #FF8C33);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: 'Figtree', sans-serif;
    font-size: .84rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 3px 12px rgba(255,107,0,0.34);
    transition: filter .14s, transform .12s;
}
.fs-footer-nl-btn:hover { filter: brightness(1.1); transform: translateY(-1px); }
.fs-footer-nl-note {
    font-size: .67rem;
    color: rgba(255,255,255,0.25);
}

/* Country selector */
.fs-footer-country { margin-top: 18px; }
.fs-footer-country-label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .68rem;
    font-weight: 700;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 6px;
}
.fs-footer-country-label svg { width: 12px; height: 12px; }
.fs-footer-country-sel {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1.5px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: rgba(255,255,255,0.65);
    font-family: 'DM Sans', sans-serif;
    font-size: .82rem;
    padding: 9px 12px;
    outline: none;
    cursor: pointer;
    transition: border-color .15s;
}
.fs-footer-country-sel:focus { border-color: #FF6B00; }
.fs-footer-country-sel option { background: #1a1a1a; color: #fff; }

/* ── BOTTOM BAR ── */
.fs-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 16px 0;
}
.fs-footer-bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.fs-footer-copy {
    font-size: .74rem;
    color: rgba(255,255,255,0.28);
}
.fs-footer-pay-icons {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.fs-footer-pay-chip {
    font-family: 'Figtree', sans-serif;
    font-size: .58rem;
    font-weight: 800;
    letter-spacing: .05em;
    padding: 3px 8px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 5px;
    color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.04);
}
.fs-footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .74rem;
    color: rgba(255,255,255,0.2);
}
.fs-footer-bottom-links a {
    color: rgba(255,255,255,0.38);
    text-decoration: none;
    transition: color .14s;
}
.fs-footer-bottom-links a:hover { color: #FF8C33; }

/* ══ RESPONSIVE ══ */
@media (max-width: 1100px) {
    .fs-footer-top-inner {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 32px;
    }
    .fs-footer-brand-col { grid-column: 1 / -1; }
    .fs-footer-trust { flex-direction: row; flex-wrap: wrap; gap: 12px 20px; }
    .fs-footer-col--wide { grid-column: span 1; }
}

@media (max-width: 700px) {
    .fs-footer-top { padding: 36px 0 28px; }
    .fs-footer-top-inner {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    .fs-footer-brand-col { grid-column: 1 / -1; }
    .fs-footer-col--wide { grid-column: 1 / -1; }
    .fs-footer-nl-form { flex-direction: column; }
    .fs-footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
}

@media (max-width: 420px) {
    .fs-footer-top-inner {
        /*border: solid white 2px;*/
        grid-template-columns: 1fr;
        justify-content: center;
        align-items: center;
        text-align: center;
        letter-spacing: 3px;
    }
    .fs-footer-trust {
        flex-direction: row;
        letter-spacing: 3px;
        justify-content: space-around;

    }

    .fs-footer-social{
        justify-content: space-between;
    }
    .fs-footer-col{
        /*justify-content: center;*/
text-align: center;
        letter-spacing: 3px;
    }
}
