.discount-banner {
    width: 100%;
    background-color: #2D9CDB;
    color: #fff;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    padding: 10px 0;
    margin-top: -50px;
    margin-bottom: 3em;
    position: sticky;
    top: 0;
    z-index: 5;
}

.discount-banner__inner {
    display: flex;
    align-items: center;
}

.discount-banner__total {
    white-space: nowrap;
    font-weight: bold;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.discount-banner__cart-icon {
    display: inline-flex;
    align-items: center;
}

.discount-banner__cart-icon svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

.discount-banner__count {
    opacity: 0.85;
    font-weight: normal;
}

.discount-banner__cta {
    flex: 1;
    text-align: center;
}

/* --- Floating tooltip (appended to body, escapes overflow:hidden) --- */
.cd-tooltip {
    position: fixed;
    padding: 5px 10px;
    background: #333;
    color: #fff;
    font-size: 11px;
    font-weight: normal;
    line-height: 1.3;
    white-space: nowrap;
    border-radius: 4px;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.15s;
}

.cd-tooltip--visible {
    opacity: 1;
}

@media (max-width: 600px) {
    .discount-banner__inner {
        flex-direction: column;
        gap: 6px;
    }
}
