/* Mobile layout — logo centré en header, footer simplifié */

.amz-mobile-header,
.amz-mobile-footer {
    display: none;
}

@media (max-width: 768px) {
    #shortcut-menu,
    #navbar-main,
    #navFooter {
        display: none !important;
    }

    .amz-mobile-header {
        display: flex;
        align-items: center;
        justify-content: center;
        background: #131921;
        min-height: 48px;
        padding: 10px 16px;
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
    }

    .amz-mobile-footer {
        display: block;
        background: #232f3e;
        color: #fff;
        padding: 28px 16px 24px;
        text-align: center;
    }

    .amz-mobile-footer .amz-logo {
        margin-bottom: 20px;
    }

    .amz-mobile-footer__links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 16px;
        margin-bottom: 16px;
    }

    .amz-mobile-footer__links a {
        color: #ddd;
        font-family: "Amazon Ember", Arial, sans-serif;
        font-size: 13px;
        line-height: 1.4;
        text-decoration: none;
    }

    .amz-mobile-footer__links a:hover {
        text-decoration: underline;
    }

    .amz-mobile-footer__copy {
        color: #999;
        font-family: "Amazon Ember", Arial, sans-serif;
        font-size: 11px;
        line-height: 1.5;
        margin: 0;
    }
}
