/* ── FP Easy Banners ─────────────────────────────────────────────────────── */

.fpeb-banner {
    background-color: var(--fpeb-bg, #1a1a1a);
    color: var(--fpeb-color, #fff);
    overflow: hidden;
    width: 100%;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1;
}

/* ── Ticker ─────────────────────────────────────────────────────────────── */

.fpeb-ticker {
    overflow: hidden;
    padding: 10px 0;
}

.fpeb-ticker__inner {
    display: flex;
    align-items: center;
    gap: 48px;
    white-space: nowrap;
    animation: fpeb-scroll 28s linear infinite;
    width: max-content;
}

.fpeb-ticker__inner:hover {
    animation-play-state: paused;
}

.fpeb-ticker__text {
    flex-shrink: 0;
}

@keyframes fpeb-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(calc(-1 * var(--fpeb-set-w, 50%))); }
}

/* ── Coupon chip ─────────────────────────────────────────────────────────── */

.fpeb-coupon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 4px;
    padding: 3px 10px 3px 8px;
    flex-shrink: 0;
    font-size: 13px;
}

.fpeb-coupon__code {
    font-family: monospace;
    font-size: 14px;
    letter-spacing: 0.08em;
}

.fpeb-coupon__copy {
    background: rgba(255,255,255,0.9);
    color: #111;
    border: none;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 7px;
    cursor: pointer;
    transition: background 0.15s;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.fpeb-coupon__copy:hover { background: #fff; }
.fpeb-coupon__copy.copied { background: #22c55e; color: #fff; }

/* ── Admin styles ────────────────────────────────────────────────────────── */

.fpeb-wrap .fpeb-toggle {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.fpeb-toggle--on  { background: #dcfce7; color: #166534; }
.fpeb-toggle--off { background: #f3f4f6; color: #6b7280; }

.fpeb-preview-wrap .fpeb-banner {
    border-radius: 4px;
}
