.wls-wrapper,
.wls-wrapper * {
    box-sizing: border-box;
}

.wls-wrapper {
    width: 100%;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    background: linear-gradient(90deg, #06111d, #0d2742, #06111d);
    border-top: 2px solid #ffc400;
    border-bottom: 2px solid #ffc400;
    box-shadow: 0 0 18px rgba(255, 196, 0, 0.25);
}

.wls-label {
    min-width: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 24px;
    color: #ffffff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    background: rgba(0,0,0,0.22);
    border-right: 1px solid rgba(255,196,0,0.25);
}

.wls-label-icon {
    color: #ffc400;
    font-size: 30px;
    line-height: 1;
    filter: drop-shadow(0 0 8px rgba(255,196,0,0.6));
}

.wls-scroller {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.wls-track {
    display: flex;
    width: max-content;
    gap: 16px;
    padding: 18px 0;
    animation-name: wls-scroll-left;
    animation-duration: 42s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.wls-direction-right .wls-track {
    animation-name: wls-scroll-right;
}

.wls-pause-hover:hover .wls-track {
    animation-play-state: paused;
}

.wls-location-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
    padding: 11px 18px;
    color: #ffffff;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,196,0,0.45);
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none !important;
    box-shadow: 0 0 10px rgba(255,196,0,0.1);
    transition: transform .25s ease, background-color .25s ease, color .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.wls-location-link:hover,
.wls-location-link:focus {
    color: #06111d;
    background: #ffc400;
    border-color: #ffc400;
    outline: none;
}

.wls-location-icon {
    color: #ffc400;
    line-height: 1;
}

.wls-location-link:hover .wls-location-icon,
.wls-location-link:focus .wls-location-icon {
    color: inherit;
}

.wls-effect-lift .wls-location-link:hover,
.wls-effect-lift .wls-location-link:focus {
    transform: translateY(-4px);
}

.wls-effect-scale .wls-location-link:hover,
.wls-effect-scale .wls-location-link:focus {
    transform: scale(1.08);
}

.wls-effect-glow .wls-location-link:hover,
.wls-effect-glow .wls-location-link:focus {
    box-shadow: 0 0 22px rgba(255,196,0,0.7);
}

.wls-effect-electric .wls-location-link:hover,
.wls-effect-electric .wls-location-link:focus {
    transform: translateY(-3px) skewX(-2deg);
    box-shadow: 0 0 24px rgba(255,196,0,0.75), inset 0 0 12px rgba(255,255,255,0.45);
}

@keyframes wls-scroll-left {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes wls-scroll-right {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

@media (max-width: 767px) {
    .wls-wrapper {
        flex-direction: column;
    }

    .wls-label {
        width: 100%;
        min-width: 0;
        border-right: none;
        border-bottom: 1px solid rgba(255,196,0,0.25);
        padding: 14px 16px;
        font-size: 14px;
    }

    .wls-track {
        padding: 14px 0;
    }

    .wls-location-link {
        font-size: 14px;
        padding: 9px 14px;
    }
}
