/* --------------------------
   TOP BAR (TOP OF PAGE, NON-FIXED)
--------------------------- */
#bf-top-bar {
  position: relative;
  z-index: 9;
  background: #050505;
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  font-size: 14px;
  font-weight: 500;
}

.bf-top-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

.bf-top-bar-label {
  opacity: 0.85;
}

.bf-top-bar-timer {
  font-family: monospace;
  letter-spacing: 0.03em;
}

/* --------------------------
   CARD TIMER (LISTING)
--------------------------- */
.bf-card-timer {
  margin-top: 4px;
  padding: 4px 8px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #111111;
  color: #ffffff;
  font-size: 11px;
  line-height: 1.2;
  width: 100%;
  width: -webkit-fill-available;
}

.bf-card-timer-label {
  opacity: 0.85;
}

.bf-card-timer-value {
  font-family: monospace;
  font-weight: 600;
}

/* --------------------------
   PRODUCT PAGE BANNER
--------------------------- */
.bf-product-banner {
    margin-top: 12px;
    padding: 8px 12px;
    border-radius: 8px;
    background: #050505;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
}

.bf-product-label {
  opacity: 0.9;
}

.bf-product-value {
  font-family: monospace;
  font-weight: 600;
}

/* --------------------------
   SECRET DISCOUNT POPUP
--------------------------- */
.bf-secret-popup {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 9999;
  max-width: 480px;

  padding: 14px 22px;
  border-radius: 20px;

  background: rgba(5, 5, 5, 0.96);
  color: #ffffff;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);

  opacity: 0;
  transform-origin: center bottom;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.bf-secret-popup.bf-secret-show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.bf-secret-popup.bf-secret-hide {
  opacity: 0;
  transform: translateX(-50%) translateY(10px);
}

/* --------------------------
   MOBILE
--------------------------- */
@media (max-width: 767px) {
  .bf-top-bar-inner {
    padding: 10px 12px;
    font-size: 13px;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 6px;
  }

  .bf-secret-popup {
    max-width: calc(100% - 32px);
    bottom: 16px;
    padding: 12px 16px;
  }

  .bf-product-banner {
    font-size: 12px;
  }
}
