
/* ===================================================== */
/* SOURCE: usp.css */
/* ===================================================== */


/* ===================================================== */
/* SOURCE: usp.slider.css */
/* ===================================================== */


usp-widget .usp-slider-bar {
    position: relative;
    overflow: hidden;
    width: 100%;
}

usp-widget .usp-slider__inner {
    display: flex;
    transition: transform 0.3s ease;
    width: 100%;
}

usp-widget .usp-slider__inner > * {
    flex: 0 0 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
}




/* ===================================================== */
/* SOURCE: usp.static.css */
/* ===================================================== */

usp-widget .usp-static-bar  {
    height: 40px;
}

usp-widget .usp-static-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 16px;
    font-size: 14px;
    text-align: center;
}



/* ===================================================== */
/* SOURCE: usp.slide.css */
/* ===================================================== */

usp-widget .usp-slide {
    color: inherit;
}

usp-widget .usp-item {
    flex: 1;
}
usp-widget .usp-separator {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
}

usp-widget .usp-separator span {
    width: 3px;
    height: 3px;
    background: #ccc;
    border-radius: 50%;
    display: block;
}

usp-widget .usp-static-bar [data-usp-slide] {
    text-align: center;
    width: 100%;
}


/* ===================================================== */
/* SOURCE: usp.arrows.css */
/* ===================================================== */

usp-widget .navigation-arrows {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
}

usp-widget .arrow-btn {
    appearance: none;
    background: var(--re-usp-arrow-bg, rgba(0,0,0,0.05));
    color: var(--re-usp-arrow-color, #2563EB);
    border: none;
    padding: var(--re-usp-arrow-padding, 0.5rem);
    border-radius: var(--re-usp-arrow-radius, 999px);
    cursor: pointer;
    line-height: 1;
    transition: opacity var(--re-usp-transition, 0.25s ease);
    pointer-events: auto;
}

usp-widget button {
    min-width: 0;
    padding: 0;
}

usp-widget .arrow-btn svg {
    width: var(--re-usp-arrow-size, 1.25rem);
    height: var(--re-usp-arrow-size, 1.25rem);
}




/* ===================================================== */
/* SOURCE: usp.theme.css */
/* ===================================================== */

usp-widget .usp-slider-bar.dark, usp-widget .usp-static-bar.dark {
    --usp-bg: #1f2937;      /* slate-800 */
    --usp-color: #e5e7eb;   /* soft white */

    --arrow-bg: #374151;    /* subtle contrast */
    --arrow-color: #f9fafb;
}

usp-widget .usp-slider-bar.light, usp-widget .usp-static-bar.light {
    --usp-bg: #f8fafc;
    --usp-color: #1e3a8a;

    --arrow-bg: #e5e7eb;   /* light gray */
    --arrow-color: #374151;
}

usp-widget .usp-slider-bar.promo, usp-widget .usp-static-bar.promo {
    --usp-bg: linear-gradient(60deg, #f97316, #f5a623); /* orange gradient */
    --usp-color: #ffffff;

    --arrow-bg: rgba(255,255,255,0.2);
    --arrow-color: #ffffff;
}

usp-widget .usp-slider-bar, usp-widget .usp-static-bar {
    background: var(--usp-bg);
    color: var(--usp-color);
}

usp-widget .arrow-btn {
    background: var(--arrow-bg);
    color: var(--arrow-color);

    border-radius: 9999px;
    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: all 0.2s ease;
}

