/* Promotional Banner Styles */
.promo-banner {
    background: linear-gradient(135deg, #2c3e50 0%, #4a6572 100%);
    color: white;
    padding: 12px 0;
    text-align: center;
    position: relative;
    z-index: 1000;
}

.promo-banner-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.promo-banner-text {
    font-weight: 500;
    margin: 0;
}

.promo-banner-text strong {
    font-weight: 700;
    color: #ffc107;
}

.promo-banner-btn {
    background-color: #ffc107;
    color: #2c3e50;
    border: none;
    padding: 5px 15px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.promo-banner-btn:hover {
    background-color: #ffca2c;
    transform: translateY(-2px);
    color: #2c3e50;
}

.promo-banner-close {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.promo-banner-close:hover {
    color: white;
}

.promo-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #ffc107;
    color: #2c3e50;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 20px;
    z-index: 2;
}

.pricing-card .promo-badge {
    font-size: 0.8rem;
    padding: 6px 12px;
}

/* Chef-specific styling */
.chef-promo {
    border: 2px dashed #ffc107;
    padding: 10px;
    border-radius: 8px;
    margin-top: 10px;
    background-color: rgba(255, 193, 7, 0.1);
}

.chef-promo-text {
    font-weight: 500;
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .promo-banner-content {
        padding: 0 30px;
    }
    
    .promo-banner-close {
        top: 10px;
        right: 10px;
        transform: none;
    }
}

/* Animation */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.promo-highlight {
    animation: pulse 2s infinite;
}

