.footer {
    max-width: 2200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}
.left,
.center-1,
.center-2,
.right {
    flex: 1;
    min-width: 200px;
}
/* Left */
.left form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.input-global [type="email"] {
    width: 70%;
    padding: 10px;
    margin: 20px 0;
    border-radius: 5px;
    border: none;
}
.left .style-button {
    width: 50%;
    padding: 10px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    background: var(--color-black);
    color: var(--color-white);
}



/* Social media */
.center-1 {
    text-align: center;
}
.center-1 a {
    display: inline-block;
    margin: 10px;
}
.center-1 img {
    margin: 15px 0;
    width: 50px;
}



/* Payments */
.center-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}
.center-2 img {
    width: 120px;
}
.right {
    text-align: center;
}
.right ul {
    list-style: none;
    padding: 0;
}
.right li {
    margin: 10px 0;
}
.right a {
    color: var(--color-black);
    text-decoration: none;
}

/* Animations */
.center img:hover { transform: scale(1.15); }
.left .style-button:hover { background: var(--gradient-main); box-shadow: 0 6px 14px rgba(0,0,0,.3); color: black }
.right a:hover { text-decoration: underline; }



@media (max-width: 600px) {
    :root{
        --header-h: 4em;
        --menu-h: 50px;
    }
    footer{
        background-color: #d8b1ff;
        padding: 30px 20px;
    }
    .footer{
        display: flex;
        flex-direction: column;
        text-align: center;
        align-items: center;
        justify-content: center;
        gap: 20px;
        max-width: 100%;
        margin: 0 auto;
    }
    .footer .left,
    .footer .center-1,
    .footer .center-2,
    .footer .right{
        width: 100%;
        min-width: 0;
        flex: none;
    }
    .left form{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .left .style-button{
        width: 100%;
        max-width: 20px;
        padding: 10px;
        border-radius: 5px;
        border: none;
        cursor: pointer;
        background: black;
        color: white;
    }
    .center-1{
        text-align: center;
    }
    .center-1 a{
        display: inline-block;
    }
    .center-1 img{
        width: 40px;
    }
    .center-2{
        display: none;
    }
    .right{
        display: none;
    }
}