html:has(.prices-raise),
body:has(.prices-raise),
.body-wrapper:has(.prices-raise) {
    overflow-x: visible;
}

html.lock:has(.prices-raise),
body.lock:has(.prices-raise),
.body-wrapper.lock:has(.prices-raise) {
    overflow-y: visible;
}

.body-wrapper.lock:has(.prices-raise) {
    overflow-y: visible;
}

.body-wrapper:has(.prices-raise) .nav-sticky-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.body-wrapper:has(.prices-raise) .nav-wrapper {
    position: relative;
}

.prices-raise {
    display: block;
    text-decoration: none;
    color: inherit;
    background-color: #2589FF;
    padding: 16px 0;
    text-transform: uppercase;
    overflow: hidden;
    cursor: pointer;
    z-index: 1000;
    position: relative;
}

.prices-raise-track {
    display: flex;
    width: fit-content;
    will-change: transform;
}

.prices-raise-row {
    font-size: 20px;
    font-weight: 600;
    line-height: 150%;
    color: #fff;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 36px;
    flex-shrink: 0;
    padding-right: 36px;
    animation: prices-raise-ticker 18s linear infinite;
    will-change: transform;
}

.prices-raise-item {
    white-space: nowrap;
}

.prices-raise-dot {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #fff;
    flex-shrink: 0;
}

@keyframes prices-raise-ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-33.333%); }
}

@media (prefers-reduced-motion: reduce) {
    .prices-raise-row { animation: none; }
}

@media screen and (max-width: 767px) {
    .prices-raise-row {
        font-size: 16px;
        gap: 16px;
    }
}
