.glamour-footer-bar {
    background-color: #f8f8f8;
    border-top: 1px solid #eeeeee;
}

.glamour-footer-bar__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1rem 3.75rem;
    max-width: 100%;
    min-height: 56px;
}

.glamour-footer-bar__payments {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    min-width: 0;
}

.glamour-footer-bar__payments img {
    display: block;
    height: auto;
    max-height: 40px;
    width: auto;
    max-width: min(100%, 520px);
}

.glamour-footer-bar__copyright {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 0;
    transform: translate(-50%, -50%);
    margin: 0;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #1a1a1a;
    text-align: center;
    white-space: nowrap;
    pointer-events: none;
}

.glamour-footer-bar__social {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-shrink: 0;
}

.glamour-footer-bar__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    transition: opacity 0.2s ease;
}

.glamour-footer-bar__social a:hover {
    opacity: 0.65;
}

.glamour-footer-bar__social svg {
    display: block;
    height: 22px;
    width: 22px;
}

@media (max-width: 1060px) {
    .glamour-footer-bar__inner {
        flex-direction: column;
        padding: 1.25rem 2rem;
        text-align: center;
        min-height: 0;
    }

    .glamour-footer-bar__copyright {
        position: static;
        transform: none;
        order: 2;
        pointer-events: auto;
    }

    .glamour-footer-bar__payments {
        order: 1;
    }

    .glamour-footer-bar__social {
        order: 3;
        justify-content: center;
    }

    .glamour-footer-bar__payments img {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .glamour-footer-bar__inner {
        padding: 1rem 1.25rem;
        gap: 1rem;
    }

    .glamour-footer-bar__payments img {
        max-height: 32px;
    }
}
