#blackFridayOverlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.bf-modal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #118ac1;
  color: #fff;
  width: 320px;
  padding: 28px 24px 22px;
  border-radius: 14px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
  text-align: center;
}

.bf-close {
  position: absolute;
  right: 12px;
  top: 10px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid white;
  cursor: pointer;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  background: transparent;
  color: #ffffff;
}

.bf-icon {
  font-size: 32px;
  margin-top: 8px;
  margin-bottom: 14px;
}

.bf-percent {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 4px;
}

.bf-title {
  font-size: 20px;
  margin-bottom: 16px;
}

.bf-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  margin: 12px 0;
}

.bf-countdown-label {
  font-size: 14px;
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.9);
}

.bf-countdown {
  font-family: "SF Mono", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 16px;
  letter-spacing: 1px;
}

.bf-button {
  margin-top: 18px;
  width: 100%;
  padding: 10px 0;
  border-radius: 6px;
  border: none;
  background: #ffc933;
  color: #1f2933;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.bf-button span {
  padding-left: 4px;
}

    .bf-button:hover {
      background: #f5b924;
    }

