/* AUTOvybava.sk – moderný horný informačný prúžok */

.av-topbar {
    width: 100%;
    max-width: 1120px;
    min-height: 34px;
    margin: 0 auto;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    box-sizing: border-box;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.25;
}

.av-topbar__item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    flex: 1 1 auto;
    padding: 0 22px;
    white-space: nowrap;
}

.av-topbar__item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%);
}

.av-topbar__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 17px;
    font-size: 14px;
    line-height: 1;
}

.av-topbar__delivery {
    margin-left: auto;
}

.av-topbar p {
    margin: 0;
}

/* Tablet */
@media (max-width: 1100px) {
    .av-topbar {
        padding: 0 10px;
        font-size: 11px;
    }

    .av-topbar__item {
        padding: 0 12px;
        gap: 5px;
    }
}

/* Mobil */
@media (max-width: 767px) {
    .av-topbar {
        min-height: 32px;
        padding: 0 10px;
        justify-content: center;
        font-size: 11px;
        overflow: hidden;
    }

    .av-topbar__item {
        display: none;
    }

    .av-topbar__item:first-child,
    .av-topbar__item:nth-child(3) {
        display: flex;
        flex: 0 1 auto;
        padding: 0 12px;
    }

    .av-topbar__item:first-child::after {
        display: block;
    }

    .av-topbar__item:nth-child(3)::after {
        display: none;
    }

    .av-topbar__icon {
        font-size: 12px;
    }
}

/* Veľmi úzky mobil */
@media (max-width: 420px) {
    .av-topbar__item:first-child {
        display: none;
    }

    .av-topbar__item:nth-child(3) {
        padding: 0;
    }
}
