.usp-bar-container-1035052 {
    width: 100%;
    background-color: #f8f8f8;
    box-sizing: border-box;
    overflow: hidden;
    padding: 10px 0;
    position: relative;
}

.usp-bar-wrapper {
    box-sizing: border-box;
}

.usp-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-sizing: border-box;
    white-space: nowrap;
    text-align: center;
}

.usp-item-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 1;
}

.usp-item-icon svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
    display: block;
}

.usp-item-text {
    display: inline-block;
    line-height: 1.2;
}

/* Desktop: regular horizontal USP bar */
@media (min-width: 768px) {
    .usp-bar-container-1035052 {
        padding: 10px 0;
        overflow: visible;
        height: auto !important;
    }

    .usp-bar-wrapper {
        display: flex !important;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 20px;
        transform: none !important;
        width: 100% !important;
        height: auto !important;
    }

    .usp-item {
        width: auto !important;
        height: auto !important;
        padding: 0 15px;
        flex-shrink: 0;
    }
}

/* Mobile: vertical swiper */
@media (max-width: 767px) {
    .usp-bar-container-1035052 {
        padding: 0;
        height: 48px;
        min-height: 48px;
        overflow: hidden;
    }

    .usp-bar-wrapper {
        height: 100%;
    }

    .usp-item {
        width: 100% !important;
        height: 48px !important;
        min-height: 48px !important;
        padding: 0 12px;
    }

    .usp-item-text {
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}