/* General Styles */
#promo-bar {
  background-color: #000000;
  font-family: Arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  width: 100%;
  color: #fff;
  padding: 10px 20px;
  text-align: center;
  z-index: 9999;
  display: flex;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
}
.promo-bar.sticky {
  position: fixed;
  top: 0;
  left: 0;
}
.promo-bar,
.promo-bar,
.top {
  top: 0;
  display: flex;
}

.promo-bar-bottom {
  bottom: 0;
  position: fixed;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.promo-bar-inner {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap; /* Allow items to wrap on smaller screens */
}

.promo-bar-text {
  font-size: 16px;
  font-weight: 700;
  color: #fff !important;
  margin-right: 10px;
  flex-shrink: 0;
}
#countdown-timer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.countdown-segment {
  text-align: center;
  border: 1px solid #00d084;
  background-color: #069e08;
  color: #fff !important;
  font-weight: bold;
  border-radius: 5px;
  font-size: 14px;
  min-width: 50px;
}

.countdown-segment .label {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #ffffff;
  padding-top: -5px;
}

.countdown-segment .number {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: -9px;
}

.cta-button {
  padding: 8px 15px;
  background: linear-gradient(90deg, #ff6f61, #ff9068);
  color: #fff !important;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none !important;
  border-radius: 50px;
  white-space: nowrap;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background: linear-gradient(90deg, #ff9068, #ff6f61);
  color: #fff !important;
  text-decoration: none !important;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .promo-bar {
    flex-direction: column;
    padding: 15px;
  }
  .promo-bar-text {
    font-size: 14px;
    margin-right: 0;
    text-align: center;
    width: 100%;
  }

  #countdown-timer {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  #countdown-timer span {
    font-size: 12px;
    padding: 5px 8px;
  }

  .cta-button {
    font-size: 12px;
    padding: 6px 10px;
  }
}

@media (max-width: 480px) {
  .promo-bar {
    flex-direction: column;
    gap: 10px;
  }

  .promo-bar-inner {
    justify-content: center;
    text-align: center;
  }
  #countdown-timer span {
    font-size: 10px;
    padding: 4px 6px;
  }
  .cta-button {
    font-size: 10px;
    padding: 5px 8px;
    width: 50%;
}
