.pea-ticker-wrapper {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: 100%;
    overflow: hidden;
    border: 1px solid #B9087B;
    box-sizing: border-box;
}

.pea-ticker-label {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-shrink: 0;
    gap: 4px;
    padding: 10px 0;
    min-width: 180px;
    box-sizing: border-box;
    background: linear-gradient(135deg, #B9087B  0%,  #F67C87 100%);
    color: #ffffff;
    cursor: default;
    user-select: none;
}

.pea-ticker-label-inner {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pea-ticker-label-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
    color: inherit;
}

.pea-ticker-label-icon svg,
.pea-ticker-label-icon i {
    display: block;
    width: 1em;
    height: 1em;
}

.pea-ticker-label-text {
    display: block;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: inherit;
    white-space: nowrap;
}

.pea-ticker-timer {
    position: absolute;
    bottom: 0;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    background: linear-gradient(135deg, #F67C87 0%, #B9087B 100%);
    font-size: 11px;
    line-height: 1.4;
    color: #ffffff;
    white-space: nowrap;
}

.pea-ticker-timer-label {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.85;
    color: inherit;
}

.pea-ticker-timer-value {
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: inherit;
    min-width: 3ch;
    text-align: right;
}

.pea-ticker-content {
    flex: 1 1 0%;
    min-width: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    box-sizing: border-box;
}

.pea-ticker-swiper {
    width: 100%;
    overflow: hidden;
}

.pea-ticker-swiper-wrapper {
    align-items: center;
}

.swiper-slide.pea-ticker-item {
    height: auto;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    transition: opacity 0.25s ease;
    flex-shrink: 0;
}

.pea-ticker-wrapper[data-ticker-mode="marquee"] .swiper-wrapper {
    transition-timing-function: linear !important;
}

.pea-ticker-separator {
    display: inline-block;
    margin-left: 12px;
    color: #cccccc;
    user-select: none;
    pointer-events: none;
}

.pea-ticker-controls {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding: 0 12px;
    box-sizing: border-box;
}

.pea-ticker-controls-btns {
    display: flex;
    align-items: center;
    gap: 6px;
}

.pea-ticker-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    color: #c0186c;
    transition: color 0.2s ease, transform 0.15s ease;
}

.pea-ticker-btn:hover {
    color: #8b0050;
}

.pea-ticker-btn:active {
    transform: scale(0.9);
}

.pea-ticker-btn i {
    font-size: 14px;
    display: block;
    pointer-events: none;
}
.pea-ticker-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
}
@media (prefers-reduced-motion: reduce) {
    .pea-ticker-wrapper .pea-ticker-swiper .swiper-wrapper {
        animation: none !important;
        transition: none !important;
    }
}

@media screen and (max-width: 767px) {
    .pea-ticker-label {
        min-width: 110px;
        padding: 8px 12px;
    }

    .pea-ticker-label-text {
        font-size: 11px;
    }

    .pea-ticker-controls {
        padding: 0 8px;
    }
}