.bf-banner {
  width: 100%;
  background: #f2b500;
  color: #000;
  font-family: Arial, sans-serif;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 1.1rem;
  flex-wrap: wrap;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99999;
}

.bf-text {
  font-weight: 700;
  text-align: center;
}

.bf-arrow {
  font-size: 1.2rem;
  font-weight: bold;
}

.bf-timer {
  display: flex;
  gap: 6px;
  align-items: center;
  font-weight: bold;
}

.bf-timer span {
  background: #000;
  color: #fff;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 1rem;
  min-width: 28px;
  text-align: center;
}

/* Responsive for mobile */
@media (max-width: 480px) {
  .bf-banner {
    font-size: 0.95rem;
    padding: 10px;
  }
  .bf-timer span {
    padding: 4px 8px;
    min-width: 24px;
  }

  .bf-arrow {
    display: none !important;
  }
}