/*
Theme Name: Polo Child
Template: polo
Version: 1.0.0
Description: Thème enfant du thème Polo pour ABEWE
*/

/* ==========================================================
   VARIABLES
   ========================================================== */

:root {
    --abewe-blue: #2b2459;
    --abewe-green: #a8d82e;
    --abewe-pink: #f5b6d4;
    --abewe-white: #ffffff;

    --abewe-header-width: 1480px;

    --abewe-radius-small: 8px;
    --abewe-radius-medium: 10px;
    --abewe-radius-large: 12px;

    --abewe-transition: 0.2s ease;
}

/* ==========================================================
   RÉGLAGES GÉNÉRAUX
   ========================================================== */

.abewe-site-header,
.abewe-site-header *,
.abewe-site-header *::before,
.abewe-site-header *::after {
    box-sizing: border-box;
}

#abewe-header.abewe-site-header {
    position: sticky !important;
    top: 0 !important;
    right: auto !important;
    left: auto !important;
    z-index: 9990 !important;

    width: 100% !important;
    margin: 0 !important;
    padding: 12px 24px;

    background: var(--abewe-blue);
    box-shadow: 0 8px 25px rgba(19, 13, 58, 0.16);

    transform: none !important;
}

/* ==========================================================
   BARRE D’ADMINISTRATION WORDPRESS
   ========================================================== */

body.admin-bar #abewe-header.abewe-site-header {
    top: 32px !important;
}

#wpadminbar {
    z-index: 999999 !important;
}

#wpadminbar .ab-sub-wrapper,
#wpadminbar .menupop .ab-sub-wrapper {
    z-index: 1000000 !important;
}

/* ==========================================================
   CONTENEUR INTERNE
   ========================================================== */

#abewe-header .abewe-header-inner {
    position: relative !important;

    display: flex !important;
    align-items: center !important;
    gap: 22px;

    width: 100% !important;
    max-width: var(--abewe-header-width) !important;
    min-height: 72px;
    margin: 0 auto !important;

    transform: none !important;
}

/* ==========================================================
   LOGO
   ========================================================== */

#abewe-header .abewe-header-logo {
    display: flex;
    flex: 0 0 auto;
    align-items: center;

    margin: 0;
    padding: 0;

    text-decoration: none;
}

#abewe-header .abewe-header-logo img {
    display: block;

    width: auto;
    height: auto;
    max-width: 138px;
    max-height: 55px;

    margin: 0;
}

/* ==========================================================
   NAVIGATION PRINCIPALE
   ========================================================== */

#abewe-header .abewe-navigation {
    position: static !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;

    flex: 1 1 auto !important;
    min-width: 0 !important;
    width: 100% !important;
    max-width: none !important;

    margin: 0 !important;
    padding: 0 !important;

    background: transparent !important;

    transform: none !important;
    float: none !important;
}

#abewe-header .abewe-menu,
#abewe-header #abewe-mainmenu {
    position: static !important;

    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 4px;

    width: 100% !important;
    max-width: none !important;

    margin: 0 !important;
    padding: 0 !important;

    background: transparent !important;
    list-style: none;

    transform: none !important;
    float: none !important;
}

#abewe-header .abewe-menu > li {
    position: relative;

    margin: 0;
    padding: 0;

    background: transparent !important;
    list-style: none;
}

#abewe-header .abewe-menu > li > a {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 46px;
    padding: 10px 11px;

    color: var(--abewe-white) !important;
    background: transparent !important;

    font-size: 13px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0;
    text-align: center;
    text-decoration: none !important;
    text-transform: uppercase;
    white-space: nowrap;

    border: 0 !important;
    border-radius: 0;
    box-shadow: none !important;

    transition:
        color var(--abewe-transition),
        background-color var(--abewe-transition);
}

/* Neutralisation des fonds ajoutés par Polo */

#abewe-header .abewe-menu > li:hover,
#abewe-header .abewe-menu > li.current-menu-item,
#abewe-header .abewe-menu > li.current-menu-parent,
#abewe-header .abewe-menu > li.current-menu-ancestor,
#abewe-header .abewe-menu > li:hover > a,
#abewe-header .abewe-menu > li.current-menu-item > a,
#abewe-header .abewe-menu > li.current-menu-parent > a,
#abewe-header .abewe-menu > li.current-menu-ancestor > a {
    color: var(--abewe-white) !important;
    background: transparent !important;
    box-shadow: none !important;
}

/* Trait vert sous le lien actif ou survolé */

#abewe-header .abewe-menu > li > a::after {
    content: "";

    position: absolute;
    right: 11px;
    bottom: 4px;
    left: 11px;

    height: 3px;

    background: var(--abewe-green);
    border-radius: 50px;

    transform: scaleX(0);
    transform-origin: center;

    transition: transform 0.22s ease;
}

#abewe-header .abewe-menu > li:hover > a::after,
#abewe-header .abewe-menu > li:focus-within > a::after,
#abewe-header .abewe-menu > li.current-menu-item > a::after,
#abewe-header .abewe-menu > li.current-menu-parent > a::after,
#abewe-header .abewe-menu > li.current-menu-ancestor > a::after {
    transform: scaleX(1);
}

/* ==========================================================
   SOUS-MENUS
   ========================================================== */

#abewe-header .abewe-menu .sub-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 10000;

    display: block;

    min-width: 245px;
    margin: 0;
    padding: 9px;

    visibility: hidden;
    opacity: 0;

    background: var(--abewe-white) !important;
    border: 1px solid rgba(43, 36, 89, 0.1);
    border-radius: var(--abewe-radius-large);
    box-shadow: 0 18px 45px rgba(22, 15, 65, 0.2);

    list-style: none;

    transform: translateY(8px);
    pointer-events: none;

    transition:
        opacity var(--abewe-transition),
        visibility var(--abewe-transition),
        transform var(--abewe-transition);
}

/* Pont invisible entre un lien et son sous-menu */

#abewe-header .abewe-menu .menu-item-has-children::before {
    content: "";

    position: absolute;
    top: 100%;
    right: 0;
    left: 0;

    height: 12px;
}

#abewe-header .abewe-menu li:hover > .sub-menu,
#abewe-header .abewe-menu li:focus-within > .sub-menu,
#abewe-header .abewe-menu li.submenu-open > .sub-menu {
    visibility: visible;
    opacity: 1;

    transform: translateY(0);
    pointer-events: auto;
}

#abewe-header .abewe-menu .sub-menu li {
    position: relative;

    width: 100%;
    margin: 0;
    padding: 0;

    background: transparent !important;
    list-style: none;
}

#abewe-header .abewe-menu .sub-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;
    min-height: 42px;
    padding: 10px 13px;

    color: var(--abewe-blue) !important;
    background: transparent !important;

    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    text-decoration: none !important;
    text-transform: none;
    white-space: normal;

    border: 0 !important;
    border-radius: var(--abewe-radius-small);
    box-shadow: none !important;

    transition:
        color var(--abewe-transition),
        background-color var(--abewe-transition);
}

#abewe-header .abewe-menu .sub-menu li:hover > a,
#abewe-header .abewe-menu .sub-menu li.current-menu-item > a {
    color: var(--abewe-blue) !important;
    background: rgba(168, 216, 46, 0.18) !important;
}

/* Sous-menu de niveau 3 */

#abewe-header .abewe-menu .sub-menu .sub-menu {
    top: -9px;
    left: calc(100% + 8px);
}

/* ==========================================================
   ACTIONS À DROITE
   ========================================================== */

#abewe-header .abewe-header-actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 10px;

    margin-left: auto;
}

#abewe-header .abewe-account-button,
#abewe-header .abewe-cart-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 46px;
    margin: 0;

    color: var(--abewe-white) !important;

    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none !important;
    text-transform: uppercase;
    white-space: nowrap;

    border-radius: var(--abewe-radius-medium);

    transition:
        background-color var(--abewe-transition),
        border-color var(--abewe-transition),
        transform var(--abewe-transition);
}

#abewe-header .abewe-account-button {
    padding: 10px 15px;

    background: rgba(255, 255, 255, 0.1);
    border: 1px solid transparent;
}

#abewe-header .abewe-account-button:hover {
    color: var(--abewe-white) !important;
    background: rgba(255, 255, 255, 0.16);

    transform: translateY(-1px);
}

#abewe-header .abewe-language {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 46px;
}

#abewe-header .abewe-language img {
    display: block;

    width: auto;
    max-width: 27px;
    height: auto;
    margin: 0 2px;
}

#abewe-header .abewe-cart-button {
    gap: 6px;

    padding: 10px 14px;

    background: transparent;
    border: 2px solid var(--abewe-pink);
}

#abewe-header .abewe-cart-button:hover {
    color: var(--abewe-white) !important;
    background: rgba(245, 182, 212, 0.1);
    border-color: var(--abewe-white);
}

#abewe-header .abewe-cart-icon {
    font-size: 15px;
    line-height: 1;
}

#abewe-header .abewe-cart-count {
    font-weight: 800;
}

/* ==========================================================
   BOUTON HAMBURGER
   ========================================================== */

#abewe-header .abewe-menu-toggle {
    display: none;

    width: 46px;
    height: 46px;
    margin: 0 0 0 auto;
    padding: 10px;

    background: rgba(255, 255, 255, 0.1);
    border: 0;
    border-radius: var(--abewe-radius-medium);
    box-shadow: none;

    cursor: pointer;
}

#abewe-header .abewe-menu-toggle span {
    display: block;

    width: 100%;
    height: 2px;
    margin: 5px 0;

    background: var(--abewe-white);
    border-radius: 20px;

    transition:
        transform var(--abewe-transition),
        opacity var(--abewe-transition);
}

/* ==========================================================
   NEUTRALISATION DU STICKY DU THÈME POLO
   ========================================================== */

#abewe-header .abewe-navigation,
#abewe-header .abewe-menu,
#abewe-header #abewe-mainmenu,
#abewe-header .sticky-wrapper,
#abewe-header .is-sticky,
#abewe-header .affix {
    position: static !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;

    transform: none !important;
    float: none !important;
}

#abewe-header .sticky-wrapper,
#abewe-header .is-sticky,
#abewe-header .affix {
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
}

/* ==========================================================
   PETITS ÉCRANS D’ORDINATEUR
   ========================================================== */

@media screen and (max-width: 1280px) and (min-width: 1181px) {
    #abewe-header.abewe-site-header {
        padding-right: 14px;
        padding-left: 14px;
    }

    #abewe-header .abewe-header-inner {
        gap: 11px;
    }

    #abewe-header .abewe-header-logo img {
        max-width: 112px;
    }

    #abewe-header .abewe-menu {
        gap: 0;
    }

    #abewe-header .abewe-menu > li > a {
        padding-right: 7px;
        padding-left: 7px;

        font-size: 11px;
    }

    #abewe-header .abewe-menu > li > a::after {
        right: 7px;
        left: 7px;
    }

    #abewe-header .abewe-account-button,
    #abewe-header .abewe-cart-button {
        padding-right: 9px;
        padding-left: 9px;

        font-size: 11px;
    }

    #abewe-header .abewe-cart-items-label {
        display: none;
    }
}

/* ==========================================================
   TABLETTES ET MOBILES
   ========================================================== */

@media screen and (max-width: 1180px) {
    #abewe-header.abewe-site-header {
        padding: 8px 12px;
    }

    #abewe-header .abewe-header-inner {
        display: flex !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 8px;

        min-height: 62px;
    }

    /* Logo */

    #abewe-header .abewe-header-logo {
        display: flex !important;
        flex: 0 0 auto !important;
    }

    #abewe-header .abewe-header-logo img {
        max-width: 120px;
        max-height: 48px;
    }

    /* Hamburger */

    #abewe-header .abewe-menu-toggle {
        display: block !important;
        flex: 0 0 46px !important;

        visibility: visible !important;
        opacity: 1 !important;

        pointer-events: auto !important;
    }

    /* Navigation fermée */

    #abewe-header .abewe-navigation {
        display: none !important;

        flex: 0 0 100% !important;

        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        max-height: none !important;

        margin: 0 !important;
        padding: 8px 0 0 !important;

        overflow: visible !important;
    }

    /* Navigation ouverte */

    #abewe-header.menu-open .abewe-navigation {
        display: block !important;
    }

    /* Liste principale */

    #abewe-header .abewe-menu,
    #abewe-header #abewe-mainmenu {
        display: flex !important;
        flex-direction: column !important;
        flex-wrap: nowrap !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        gap: 0 !important;

        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        max-height: none !important;

        margin: 0 !important;
        padding: 0 !important;

        overflow: visible !important;
    }

    /* Force l’affichage de toutes les pages */

    #abewe-header .abewe-menu > li,
    #abewe-header #abewe-mainmenu > li,
    #abewe-header .abewe-menu-item,
    #abewe-header .menu-item {
        position: relative !important;

        display: block !important;
        float: none !important;

        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        max-height: none !important;

        margin: 0 !important;
        padding: 0 !important;

        visibility: visible !important;
        opacity: 1 !important;

        transform: none !important;
    }

    /* Liens simples sur fond bleu */

    #abewe-header .abewe-menu > li > a,
    #abewe-header #abewe-mainmenu > li > a {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;

        width: 100% !important;
        min-height: 46px;
        height: auto !important;

        padding: 12px 13px !important;

        color: var(--abewe-white) !important;
        background: transparent !important;

        font-size: 14px !important;
        font-weight: 700;
        line-height: 1.3;
        text-align: left !important;
        text-transform: uppercase !important;
        white-space: normal !important;

        border-radius: var(--abewe-radius-small);
        box-shadow: none !important;
    }

    /* Pas de trait vert sur tablette */

    #abewe-header .abewe-menu > li > a::after {
        display: none !important;
    }

    /* Aucun fond sur les éléments ordinaires */

    #abewe-header .abewe-menu > li:hover,
    #abewe-header .abewe-menu > li.current-menu-parent,
    #abewe-header .abewe-menu > li.current-menu-ancestor,
    #abewe-header .abewe-menu > li:hover > a,
    #abewe-header .abewe-menu > li.current-menu-parent > a,
    #abewe-header .abewe-menu > li.current-menu-ancestor > a {
        color: var(--abewe-white) !important;
        background: transparent !important;
    }

    /* Fond uniquement sur la page réellement active */

    #abewe-header .abewe-menu > li.current-menu-item > a {
        color: var(--abewe-white) !important;
        background: rgba(255, 255, 255, 0.11) !important;
    }

    /* Sous-menus */

    #abewe-header .abewe-menu .sub-menu,
    #abewe-header .abewe-menu .sub-menu .sub-menu {
        position: static !important;

        display: none !important;
        float: none !important;

        width: calc(100% - 14px) !important;
        min-width: 0 !important;
        max-width: 100% !important;
        height: auto !important;
        max-height: none !important;

        margin: 4px 0 6px 14px !important;
        padding: 7px !important;

        visibility: visible !important;
        opacity: 1 !important;

        background: var(--abewe-white) !important;
        border-radius: 9px;
        box-shadow: none;

        transform: none !important;
        pointer-events: auto !important;

        overflow: visible !important;
    }

    #abewe-header .abewe-menu li.submenu-open > .sub-menu {
        display: block !important;
    }

    #abewe-header .abewe-menu li:not(.submenu-open):hover > .sub-menu {
        display: none !important;
    }

    #abewe-header .abewe-menu .sub-menu li {
        display: block !important;

        width: 100% !important;
        height: auto !important;

        visibility: visible !important;
        opacity: 1 !important;
    }

    #abewe-header .abewe-menu .sub-menu a {
        display: flex !important;

        width: 100% !important;
        min-height: 42px;

        color: var(--abewe-blue) !important;
        background: transparent !important;
    }

    #abewe-header .abewe-menu .menu-item-has-children::before {
        display: none !important;
    }

    /* Actions sous le menu */

    #abewe-header .abewe-header-actions {
        display: none !important;

        flex: 0 0 100% !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 10px;

        width: 100% !important;
        height: auto !important;

        margin: 0 !important;
        padding: 10px 0 0 !important;
    }

    #abewe-header.menu-open .abewe-header-actions {
        display: flex !important;
    }

    #abewe-header .abewe-account-button,
    #abewe-header .abewe-cart-button,
    #abewe-header .abewe-language {
        display: flex !important;

        width: 100% !important;
        min-height: 44px;
    }

    /* Animation du bouton hamburger */

    #abewe-header.menu-open .abewe-menu-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    #abewe-header.menu-open .abewe-menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    #abewe-header.menu-open .abewe-menu-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

/* ==========================================================
   BARRE WORDPRESS SUR MOBILE
   ========================================================== */

@media screen and (max-width: 782px) {
    body.admin-bar #abewe-header.abewe-site-header {
        top: 46px !important;
    }
}

/* ==========================================================
   MODE ORDINATEUR
   ========================================================== */

@media screen and (min-width: 1181px) {
    #abewe-header .abewe-menu-toggle {
        display: none !important;
    }

    #abewe-header .abewe-navigation,
    #abewe-header .abewe-header-actions {
        display: flex !important;
    }
}

/* ==========================================================
   FOOTER ABEWE COMPACT
   ========================================================== */

#abewe-footer,
#abewe-footer *,
#abewe-footer *::before,
#abewe-footer *::after {
    box-sizing: border-box;
}

#abewe-footer.abewe-site-footer {
    position: relative;

    width: 100%;
    margin: 0;
    padding: 38px 24px 17px;

    overflow: hidden;

    color: var(--abewe-white);

    background:
        radial-gradient(
            circle at 5% 20%,
            rgba(168, 216, 46, 0.13),
            transparent 24%
        ),
        linear-gradient(
            135deg,
            #211a4d 0%,
            var(--abewe-blue) 55%,
            #352c68 100%
        );
}

#abewe-footer .abewe-footer-inner {
    width: 100%;
    max-width: var(--abewe-header-width);
    margin: 0 auto;
}

/* ==========================================================
   STRUCTURE PRINCIPALE
   ========================================================== */

#abewe-footer .abewe-footer-main {
    display: grid;
    grid-template-columns:
        minmax(220px, 0.8fr)
        minmax(260px, 1fr)
        minmax(260px, 1fr);
    gap: 46px;
    align-items: start;

    padding-bottom: 27px;
}

/* ==========================================================
   LOGO ET PRÉSENTATION
   ========================================================== */

#abewe-footer .abewe-footer-brand {
    max-width: 290px;
}

#abewe-footer .abewe-footer-logo {
    display: inline-flex;
    align-items: center;

    margin: 0 0 12px;

    text-decoration: none;
}

#abewe-footer .abewe-footer-logo img {
    display: block;

    width: auto;
    height: auto;
    max-width: 135px;
    max-height: 52px;

    margin: 0;
}

#abewe-footer .abewe-footer-description {
    margin: 0;

    color: rgba(255, 255, 255, 0.68);

    font-size: 13px;
    font-weight: 400;
    line-height: 1.55;
}

#abewe-footer .abewe-footer-website {
    display: inline-flex;

    margin-top: 12px;

    color: var(--abewe-green) !important;

    font-size: 13px;
    font-weight: 800;
    line-height: 1.3;
    text-decoration: none !important;

    transition: color var(--abewe-transition);
}

#abewe-footer .abewe-footer-website:hover {
    color: var(--abewe-white) !important;
}

/* ==========================================================
   RÉSEAUX SOCIAUX
   ========================================================== */

#abewe-footer .abewe-footer-socials {
    display: flex;
    align-items: center;
    gap: 8px;

    margin-top: 15px;
}

#abewe-footer .abewe-footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    color: var(--abewe-white) !important;
    background: rgba(255, 255, 255, 0.09);

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;

    text-decoration: none !important;

    transition:
        color var(--abewe-transition),
        background-color var(--abewe-transition),
        border-color var(--abewe-transition),
        transform var(--abewe-transition);
}

#abewe-footer .abewe-footer-socials a:hover {
    color: var(--abewe-blue) !important;
    background: var(--abewe-green);
    border-color: var(--abewe-green);

    transform: translateY(-3px);
}

#abewe-footer .abewe-footer-socials svg {
    display: block;

    width: 15px;
    height: 15px;

    fill: currentColor;
}

/* ==========================================================
   COORDONNÉES
   ========================================================== */

#abewe-footer .abewe-footer-title {
    position: relative;

    margin: 0 0 13px;
    padding-bottom: 9px;

    color: var(--abewe-white);

    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: 0.035em;
    text-transform: uppercase;
}

#abewe-footer .abewe-footer-title::after {
    content: "";

    position: absolute;
    bottom: 0;
    left: 0;

    width: 32px;
    height: 2px;

    background: var(--abewe-green);
    border-radius: 20px;
}

#abewe-footer .abewe-footer-contact address {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;

    margin: 0;

    color: rgba(255, 255, 255, 0.67);

    font-size: 13px;
    font-style: normal;
    line-height: 1.5;
}

#abewe-footer .abewe-footer-contact strong {
    margin-bottom: 1px;

    color: var(--abewe-white);

    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
}

#abewe-footer .abewe-footer-contact span {
    margin-bottom: 4px;
}

#abewe-footer .abewe-footer-contact a {
    color: rgba(255, 255, 255, 0.76) !important;

    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
    text-decoration: none !important;

    overflow-wrap: anywhere;

    transition:
        color var(--abewe-transition),
        transform var(--abewe-transition);
}

#abewe-footer .abewe-footer-contact a:hover {
    color: var(--abewe-green) !important;

    transform: translateX(3px);
}

/* ==========================================================
   BAS DU FOOTER
   ========================================================== */

#abewe-footer .abewe-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    padding-top: 15px;

    border-top: 1px solid rgba(255, 255, 255, 0.11);
}

#abewe-footer .abewe-footer-bottom p {
    margin: 0;

    color: rgba(255, 255, 255, 0.44);

    font-size: 10px;
    line-height: 1.4;
}

#abewe-footer .abewe-footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 14px;
}

#abewe-footer .abewe-footer-legal a {
    color: rgba(255, 255, 255, 0.48) !important;

    font-size: 10px;
    font-weight: 600;
    line-height: 1.4;
    text-decoration: none !important;

    transition: color var(--abewe-transition);
}

#abewe-footer .abewe-footer-legal a:hover {
    color: var(--abewe-white) !important;
}

/* ==========================================================
   TABLETTES
   ========================================================== */

@media screen and (max-width: 900px) {
    #abewe-footer .abewe-footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px 40px;
    }

    #abewe-footer .abewe-footer-brand {
        grid-column: 1 / -1;

        max-width: 500px;
    }
}

/* ==========================================================
   MOBILES
   ========================================================== */

@media screen and (max-width: 620px) {
    #abewe-footer.abewe-site-footer {
        padding: 34px 18px 15px;
    }

    #abewe-footer .abewe-footer-main {
        grid-template-columns: 1fr;
        gap: 24px;

        padding-bottom: 23px;
    }

    #abewe-footer .abewe-footer-brand {
        grid-column: auto;

        max-width: 330px;
    }

    #abewe-footer .abewe-footer-logo img {
        max-width: 125px;
        max-height: 48px;
    }

    #abewe-footer .abewe-footer-socials a {
        width: 32px;
        height: 32px;
    }

    #abewe-footer .abewe-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 9px;
    }

    #abewe-footer .abewe-footer-legal {
        justify-content: flex-start;
    }
}