/* Site-wide compact sale strip (fixed below nav) */
.kos-sale-strip {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 1018;
    margin: 0;
    background: linear-gradient(90deg, #b91c1c 0%, #ea580c 35%, #f59e0b 65%, #ea580c 100%);
    background-size: 200% 100%;
    animation: kos-sale-strip-shimmer 10s linear infinite;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

@keyframes kos-sale-strip-shimmer {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.kos-sale-strip__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 11px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px 14px;
    flex-wrap: wrap;
    text-align: center;
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.35;
}

.kos-sale-strip__tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    padding: 3px 10px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.kos-sale-strip__pct {
    font-weight: 900;
    font-size: 1.02rem;
    color: #fef08a;
}

.kos-sale-strip__sep {
    opacity: 0.55;
}

.kos-sale-strip__link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    padding: 4px 12px;
    font-size: 0.82rem;
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.2s ease;
}

.kos-sale-strip__link:hover {
    color: #fff;
    background: rgba(0, 0, 0, 0.32);
    transform: translateY(-1px);
}

@media (max-width: 576px) {
    .kos-sale-strip__inner {
        padding: 10px 12px;
        font-size: 0.84rem;
    }

    .kos-sale-strip__sep,
    .kos-sale-strip__detail {
        display: none;
    }
}
