/* ============================= */
/* Footer Outer (fluid wrapper)  */
/* ============================= */

.skeep-footer {
    font-family: Arial, Helvetica, sans-serif;
    background: #E6E2E3;
    width: 100%;
    overflow-x: hidden; /* 🔑 prevents horizontal scroll */
}

/* Inner container – caps content width */
.skeep-footer-inner {
    max-width: 1400px;
    margin-inline: auto;
    padding: 40px 16px;
}

/* Reset */
.skeep-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.skeep-footer h2,
.skeep-footer h3,
.skeep-footer h5 {
    margin: 0;
    padding: 0;
}

.skeep-footer h5 {
    font-weight: 400;
}

/* ============================= */
/* Top section                   */
/* ============================= */

.fd-top {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.fd-topM1,
.fd-topM2 {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Menu heading */
.f-menuHead {
    padding-bottom: 6px;
    border-bottom: 2px solid #000;
    margin-bottom: 12px;
}

/* ============================= */
/* Newsletter                    */
/* ============================= */

.f-newsletterInput {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
}

.f-newsletterInput input,
.f-newsletterInput button {
    width: 100%;
    height: 40px;
}

.f-newsletterInput input {
    background: none;
    border: 1px solid #000;
    border-radius: 2px;
    padding: 0 8px;
}

.f-newsletterInput button {
    background: #000;
    color: #fff;
    border: none;
    cursor: pointer;
}

/* ============================= */
/* Help / Support                */
/* ============================= */

.f-help ul div {
    display: flex;
    gap: 20px;
    flex-wrap: wrap; /* 🔑 prevents overflow */
}

.f-serviceNsupport h5 {
    margin: 4px 0;
}

/* ============================= */
/* Socials                       */
/* ============================= */

.f-socials ul {
    display: flex;
    gap: 16px;
    flex-wrap: wrap; /* 🔑 prevents overflow */
}

.f-socials svg {
    width: 36px;
    height: auto;
    max-width: 100%;
}

/* ============================= */
/* Bottom section                */
/* ============================= */

.fd-bottom {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 2px solid #000;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.f-bottom svg {
    width: 48px;
    height: auto;
    max-width: 100%;
}

/* ============================= */
/* Desktop ≥1024px               */
/* ============================= */

@media (min-width: 1024px) {

    .skeep-footer-inner {
        padding: 60px 40px;
    }

    .fd-top {
        flex-direction: row;
        gap: 60px;
        align-items: flex-start;
    }

    .fd-topM1,
    .fd-topM2 {
        width: 40%;
    }

    .fd-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        margin-top: 80px;
        padding-top: 40px;
        gap: 40px;
    }

    .f-legal,
    .f-socials {
        width: 25%;
    }

    .f-bottom svg {
        width: 72px;
    }
}




