/* Price Increase Banner Styles */
.price-increase-banner {
    background: linear-gradient(135deg, #fef3c7 0%, #fef9c3 100%);
    border-bottom: 1px solid #fcd34d;
    padding: 10px 0;
    text-align: center;
    position: relative;
    z-index: 999;
}

.price-increase-banner .banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    color: #92400e;
    font-size: 0.9rem;
    font-weight: 500;
}

.price-increase-banner .banner-icon {
    font-size: 1.1rem;
}

.price-increase-banner .banner-highlight {
    background: #fbbf24;
    color: #78350f;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
}

/* RTL support for Hebrew and Arabic */
[dir="rtl"] .price-increase-banner .banner-content {
    direction: rtl;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .price-increase-banner .banner-content {
        font-size: 0.8rem;
        padding: 0 10px;
    }
}
