/**
 * Promotional Banner Styles
 */

.promo-banner {
    background: #FFE5E5;
    color: #333333;
    text-align: center;
    padding: 12px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.promo-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.promo-code {
    background: rgba(0, 0, 0, 0.08);
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
    color: #2C2C2C;
}

.promo-banner-close {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    font-size: 24px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s;
    line-height: 1;
    padding: 0;
    width: 24px;
    height: 24px;
}

.promo-banner-close:hover {
    opacity: 1;
    color: #333;
}

.promo-banner.hidden {
    display: none;
}

@media (max-width: 600px) {
    .promo-banner {
        font-size: 0.85rem;
        padding: 10px 40px 10px 16px;
    }

    .promo-code {
        padding: 3px 8px;
        font-size: 0.8rem;
    }
}
