.bfcm-banner-header {    
    background-image: url('../img/balloons-banner.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 20px 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    position: relative;
    display: none; /* JS load hone tak hide rakhenge */
}

/* Text Styling */
.bfcm-content h2, .bfcm-content p, .timer-box span, .timer-box label {
    text-shadow: 0 2px 4px rgba(0,0,0,0.8); 
}

.bfcm-content h2 { margin: 0 0 5px 0; font-size: 20px; font-weight: 800; color: #fff; }
.bfcm-content p { margin: 0; color: #fff; font-size: 14px; font-weight: 500; }

/* Timer Styling */
.bfcm-timer { display: flex; gap: 10px; }
.timer-box {
    background: rgba(255, 255, 255, 0.9);
    color: #000; padding: 8px; border-radius: 5px;
    text-align: center; min-width: 55px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.timer-box span { font-size: 18px; font-weight: bold; line-height: 1.2; text-shadow: none; display: block; }
.timer-box label { font-size: 9px; text-transform: uppercase; text-shadow: none; }

/* Button Styling */
.bfcm-btn {
    background-color: #e63946; color: white; padding: 12px 25px;
    text-decoration: none; font-weight: bold; border-radius: 50px;
    transition: transform 0.2s, background 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    text-transform: uppercase; font-size: 14px;
}
.bfcm-btn:hover { background-color: #d62828; color: #fff; transform: scale(1.05); }

/* Responsive */
@media (max-width: 1100px) {
    .bfcm-banner-header { flex-direction: column; text-align: center; gap: 15px; }
}