.affiliate-promo-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: rgb(255, 242, 247);
    color: #222;
    width: 100%;
    border-top: 1px solid rgb(255, 122, 172);
    animation: affiliate-promo-bar-slide-up 0.35s ease-out;
}

@keyframes affiliate-promo-bar-slide-up {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.affiliate-promo-bar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 10px;
    gap: 5px;
}

.affiliate-promo-bar-text {
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    line-height: 1.5;
}

.affiliate-promo-bar-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.affiliate-promo-bar-cta, .affiliate-promo-bar-cta:focus {
    background: rgb(214, 51, 108);
    color: white;
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: bold;
    transition: all 0.2s ease;
    border: 1px solid rgb(214, 51, 108);
    line-height: 1.5;
    white-space: nowrap;
}

.affiliate-promo-bar-cta:hover {
    background: rgb(190, 40, 92);
    border-color: rgb(190, 40, 92);
    color: white;
    text-decoration: none;
}

.affiliate-promo-bar-disclosure {
    font-size: 12px;
    font-weight: normal;
    color: rgba(0, 0, 0, 0.8);
    white-space: nowrap;
    line-height: 1.5;
}

.affiliate-promo-bar-dismiss {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.4);
    color: #222;
    font-size: 13px;
    cursor: pointer;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 5px;
    line-height: 1.5;
    white-space: nowrap;
}

.affiliate-promo-bar-dismiss:hover, .affiliate-promo-bar-dismiss:focus {
    background: rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.55);
    color: #222;
}

@media (max-width: 768px) {
    .affiliate-promo-bar-content {
        flex-direction: column;
        gap: 10px;
        padding: 14px 20px;
    }

    .affiliate-promo-bar-actions {
        width: 100%;
        justify-content: center;
        gap: 10px;
    }
}
