.promo-banner {
    background: #f0cbc3;
    color: #fff;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1025;
    transition: max-height 0.35s ease, padding 0.35s ease, opacity 0.35s ease;
    overflow: hidden;
    max-height: 120px;
    opacity: 1;
}

.promo-banner.dismissed {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    pointer-events: none;
}

.promo-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: nowrap;
}

.promo-banner-tag {
    background: rgba(255, 255, 255, 0.22);
    border: 1px solid rgb(235 58 58 / 40%);
    color: #cc554e;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 3px 8px;
    border-radius: 3px;
    white-space: nowrap;
    flex-shrink: 0;
}

.promo-banner-text {
    font-size: 1rem;
    margin: 0;
    line-height: 1.4;
    flex: 1;
    color: #cc554e;
}

.promo-banner-text strong {
    color: #cc554e;
    font-weight: 700;
}

.promo-banner-code {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    border: 1px dashed rgba(255, 255, 255, 0.6);
    border-radius: 4px;
    padding: 1px 6px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #cc554e;
}

.promo-banner-cta {
    background: #fff;
    color: #ce4f49;
    border: none;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 7px 16px;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.2s, color 0.2s;
}

.promo-banner-cta:hover {
    background: #f5f5f5;
    color: #b03f3a;
}

.promo-banner-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 3px;
    transition: color 0.2s;
    line-height: 1;
}

.promo-banner-close:hover {
    color: #fff;
}

@media (max-width: 767px) {
    .promo-banner {
        padding: 10px 14px;
        max-height: 160px;
    }

    .promo-banner-inner {
        flex-wrap: wrap;
        gap: 8px;
    }

    .promo-banner-tag {
        font-size: 0.58rem;
    }

    .promo-banner-text {
        font-size: 0.78rem;
        width: 100%;
        order: 2;
    }

    .promo-banner-tag {
        order: 1;
    }

    .promo-banner-cta {
        order: 3;
        font-size: 0.72rem;
        padding: 6px 14px;
    }

    .promo-banner-close {
        order: 0;
        margin-left: auto;
        align-self: flex-start;
    }
}
