/**
 * Announcement top bar — above main header
 */

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

.bdus-top-bar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-block: 0.625rem;
}

.bdus-top-bar__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 1.25rem 2rem;
    width: 100%;
    min-width: 0;
}

/* Keep Sign in / My Account on the far right; shipping messages stay left */
.bdus-top-bar__item:last-child {
    margin-left: auto;
}

.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__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 (max-width: 1023px) {
    .bdus-top-bar__list {
        gap: 1rem 1.25rem;
    }
}

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

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

    .bdus-top-bar__list {
        gap: 0.75rem;
    }

    /* Keep first shipping message + account; hide middle worldwide line */
    .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:first-child .bdus-top-bar__text {
        overflow: hidden;
        text-overflow: ellipsis;
    }
}
