/* =========================================================
   RYNA WOMAN - FOOTER
========================================================= */

.site-footer,
.site-footer *,
.site-footer *::before,
.site-footer *::after {
    box-sizing: border-box;
}

.site-footer {
    width: 100%;
    background: #fbf5ef;
    color: #6f6863;
    font-family: Arial, Helvetica, sans-serif;
    border-top: 1px solid #eee4dc;
}


/* =========================================================
   FOOTER MAIN
========================================================= */

.footer-main {
    width: 100%;
    max-width: 1100px;
    min-height: 340px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr 1.25fr;

    column-gap: 90px;

    padding: 68px 0 62px;
}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.footer-column {
    min-width: 0;
}

.footer-column h3 {
    margin: 0 0 20px;

    color: #3d3835;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    font-weight: 400;

    line-height: 1.3;
    letter-spacing: 0.2px;
}

.footer-column h4 {
    margin: 0 0 21px;

    color: #4c4642;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 13px;
    font-weight: 400;

    line-height: 1.3;
}


/* =========================================================
   BRAND DESCRIPTION
========================================================= */

.footer-brand p {
    max-width: 270px;

    margin: 0;

    color: #817973;

    font-size: 12px;
    font-weight: 400;

    line-height: 1.65;
}


/* =========================================================
   FOOTER LINKS
========================================================= */

.footer-links {
    display: flex;
    flex-direction: column;

    gap: 13px;
}

.footer-links a {
    display: block;

    color: #817973;

    text-decoration: none;

    font-size: 12px;
    font-weight: 400;

    line-height: 1.35;

    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #302b28;
}


/* =========================================================
   NEWSLETTER
========================================================= */

.footer-newsletter p {
    max-width: 285px;

    margin: 0 0 22px;

    color: #817973;

    font-size: 12px;
    font-weight: 400;

    line-height: 1.6;
}


/* =========================================================
   NEWSLETTER FORM
========================================================= */

.newsletter-form {
    width: 100%;
    max-width: 295px;

    display: flex;
    align-items: center;

    border-bottom: 1px solid #bdb5ae;
}

.newsletter-form input {
    width: 100%;
    height: 34px;

    padding: 0;

    border: none;
    outline: none;

    background: transparent;

    color: #4b4541;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
}

.newsletter-form input::placeholder {
    color: #8d8580;
    opacity: 1;
}

.newsletter-form button {
    flex-shrink: 0;

    height: 34px;

    padding: 0 0 0 15px;

    border: none;
    outline: none;

    background: transparent;

    color: #3f3935;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 400;

    cursor: pointer;
}

.newsletter-form button:hover {
    color: #000;
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
    width: 100%;

    min-height: 66px;

    border-top: 1px solid #eee4dc;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 48px;
}

.footer-copyright {
    color: #827a74;

    font-size: 11px;
    font-weight: 400;

    line-height: 1.4;
}

.footer-bottom-links {
    display: flex;
    align-items: center;

    gap: 25px;
}

.footer-bottom-links a {
    color: #827a74;

    text-decoration: none;

    font-size: 11px;
    font-weight: 400;

    line-height: 1.4;

    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: #302b28;
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1440px) {

    .footer-main {
        max-width: 1100px;

        column-gap: 100px;

        padding-top: 70px;
        padding-bottom: 65px;
    }

    .footer-bottom {
        padding-left: 55px;
        padding-right: 55px;
    }

}


/* =========================================================
   SMALL LAPTOP
========================================================= */

@media (max-width: 1200px) {

    .footer-main {
        max-width: 100%;

        grid-template-columns:
            1.2fr
            1fr
            1fr
            1.2fr;

        column-gap: 55px;

        padding-left: 45px;
        padding-right: 45px;
    }

    .footer-bottom {
        padding-left: 35px;
        padding-right: 35px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .footer-main {
        grid-template-columns: 1fr 1fr;

        column-gap: 50px;
        row-gap: 50px;

        padding: 55px 40px;
    }

    .footer-brand p,
    .footer-newsletter p {
        max-width: 270px;
    }

    .newsletter-form {
        max-width: 270px;
    }

    .footer-bottom {
        min-height: 60px;

        padding: 15px 30px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .footer-main {
        grid-template-columns: 1fr;

        row-gap: 38px;

        padding: 45px 25px;
    }

    .footer-column h3 {
        font-size: 17px;
        margin-bottom: 17px;
    }

    .footer-column h4 {
        font-size: 12px;
        margin-bottom: 17px;
    }

    .footer-brand p,
    .footer-newsletter p {
        max-width: 100%;
        font-size: 11px;
    }

    .footer-links {
        gap: 11px;
    }

    .footer-links a {
        font-size: 11px;
    }

    .newsletter-form {
        max-width: 100%;
    }

    .footer-bottom {
        min-height: auto;

        padding: 18px 25px;

        flex-direction: column;

        align-items: flex-start;

        gap: 15px;
    }

    .footer-bottom-links {
        gap: 18px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .footer-main {
        padding: 38px 18px;

        row-gap: 32px;
    }

    .footer-column h3 {
        font-size: 16px;
    }

    .footer-brand p,
    .footer-newsletter p,
    .footer-links a {
        font-size: 10px;
    }

    .footer-bottom {
        padding: 16px 18px;
    }

    .footer-copyright {
        font-size: 9px;
    }

    .footer-bottom-links a {
        font-size: 9px;
    }

}