/* Popup Banner Styling */
.popup-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 22, 33, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-card {
  position: relative;
  background: white;
  max-width: 850px;
  width: 95%;
  border-radius: 16px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  flex-wrap: wrap;
}

.close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 30px;
  height: 30px;
  background: #ec6502;
  border: none;
  color: white;
  font-size: 18px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}

/* Banner image section */
.popup-img {
  flex: 1 1 300px;
  max-height: 100%;
  overflow: hidden;
  background: #f7f7f7;
}

.popup-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .popup-card {
    flex-direction: column;
    width: 90%;
    max-width: 400px;
    border-radius: 20px;
    overflow: hidden;
    padding: 0;
    background: #fff;
  }

  .popup-img {
    width: 100%;
    height: 240px; /* increased from 200px */
    max-height: 240px;
	background-color: #f0c190; /* orange background */
    overflow: hidden;
    order: -1;
    margin: 0;
    padding: 0;
  }

  .popup-img img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Prevents cropping */
    object-position: top; /* Keeps image top aligned */
    display: block;
  }
}

/* Content */
.popup-content {
  flex: 1 1 400px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #031621;
}

.popup-content h2 {
  color: #ec6502;
  font-size: 24px;
  margin-bottom: 10px;
}

.popup-content p {
  font-size: 16px;
  color: #6f6f6f;
}

/* Discount Code */
.discount-code-box {
  display: flex;
  align-items: center;
  margin: 16px 0;
  background: #f3f3f3;
  border: 1px dashed #ec6502;
  padding: 12px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  gap: 10px;
}

#discountCode {
  color: #ec6502;
}

#copyCodeBtn {
  background: #ec6502;
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}

/* Countdown Timer Styling */
.countdown-wrapper {
  margin-top: 12px;
  text-align: left;
}

.countdown-timer {
  display: flex;
  justify-content: start;
  gap: 10px;
  font-family: 'Courier New', monospace;
  font-size: 20px;
  margin-top: 8px;
}

.countdown-timer div {
  background: #f7f2ee;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #ec6502;
  min-width: 60px;
  text-align: center;
  color: #ec6502;
}

.countdown-timer span {
  display: block;
  font-size: 12px;
  color: #6f6f6f;
}

.small-note {
  font-size: 12px;
  color: #6f6f6f;
  margin-top: 10px;
}

/* Optional: Adjust alignment for mobile content */
@media (max-width: 768px) {
  .popup-content {
    padding: 20px 16px;
    text-align: center;
  }

  .discount-code-box {
    justify-content: center;
    flex-wrap: wrap;
  }

  #copyCodeBtn {
    margin-top: 10px;
  }
}

.popup-content p.popup-h2 {
    color: #ec6502;
    font-size: 24px;
    font-weight: 500;
    margin: 0 0 10px 0;
    padding: 0;
    font-family: "p22-mackinac-pro", sans-serif;
    line-height: 1.1;
}

#popupBanner {
  display: none; /* hide by default */
}