/**
 * Announcement top bar — above main header
 * Shipping messages on the left, Sign in / My Account on the right
 */

.bdus-top-bar {
    background-color: #f4f4f4;
    border-top: 1px solid #3a3a3a;
    border-bottom: 1px solid #e7e7e7;
    color: #222529;
    font-size: 0.875rem;
    line-height: 1.3;
}

.bdus-top-bar__inner {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding-block: 0.625rem;
}

.bdus-top-bar__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex !important;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start !important;
    gap: 1.5rem 2.5rem;
    width: 100% !important;
    min-width: 0;
    box-sizing: border-box;
}

.bdus-top-bar__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: inherit;
    text-decoration: none;
}

.bdus-top-bar__link:hover,
.bdus-top-bar__link:focus-visible {
    text-decoration: underline;
}

.bdus-top-bar__item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    flex-shrink: 0;
    white-space: nowrap;
}

.bdus-top-bar__item--account {
    margin-left: auto !important;
}

.bdus-top-bar__icon {
    display: inline-flex;
    flex-shrink: 0;
    color: #222529;
}

.bdus-top-bar__icon svg {
    display: block;
}

.bdus-top-bar__text {
    font-weight: 700;
    letter-spacing: -0.01em;
}

@media (min-width: 1024px) {
    .bdus-top-bar__list {
        gap: 1.5rem 2.5rem;
    }
}

@media (max-width: 1023px) {
    .bdus-top-bar__list {
        gap: 1rem 1.5rem;
    }
}

@media (max-width: 639px) {
    .bdus-top-bar {
        font-size: 0.8125rem;
    }

    .bdus-top-bar__inner {
        padding-inline: 1rem;
    }

    .bdus-top-bar__list {
        gap: 0;
    }

    .bdus-top-bar__item:nth-child(2) {
        display: none;
    }

    .bdus-top-bar__item:first-child {
        flex-shrink: 1;
        min-width: 0;
        white-space: normal;
    }

    .bdus-top-bar__item--account {
        margin-left: auto !important;
    }
}
