.launch-banner {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);                        /* fills centre column */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 1rem;
    /* no position / top / border — those belong to the nav now */
}

.launch-banner-badge {
    background: #c0392b;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 4px;
    white-space: nowrap;
}

.launch-banner-sep {
    color: #334155;
    font-size: 1.125rem;
    line-height: 1;
}

.launch-banner-text {
    font-size: 0.875rem;
    color: #fff;
    font-weight: 400;
    white-space: nowrap;
}

.launch-banner-text strong {
    font-weight: 600;
    color: #38bdf8;
}

.launch-banner-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.launch-banner-price-was {
    font-size: 0.8125rem;
    color: #64748b;
    text-decoration: line-through;
}

.launch-banner-price-now {
    font-size: 1.25rem;
    font-weight: 700;
    color: #38bdf8;
    letter-spacing: -0.02em;
}

.launch-banner-price-per {
    font-size: 0.75rem;
    color: #94a3b8;
}

/* On mobile, hide the banner entirely to keep the nav uncluttered */
@media (max-width: 768px) {
    .launch-banner {
        display: none;
    }
}