/* ============================================
   COUNTDOWN TIMER STYLES
   ============================================ */

/* Price warning text above timer */
.tp-price-warning {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #ff1f8c;
  margin: 25px auto 15px auto;
  letter-spacing: 0.3px;
  width: 100%;
  display: block;
}

/* Countdown timer container */
.tp-countdown-timer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 0 auto 12px auto;
  padding: 20px;
  background: linear-gradient(135deg, #ffe5f5, #fff0f8);
  border-radius: 16px;
  border: 3px solid #ffc0e0;
  box-shadow: 0 8px 24px rgba(255, 31, 140, 0.15);
  max-width: fit-content;
}

/* Individual timer segment (days, hours, etc.) */
.timer-segment {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 85px;
  padding: 16px 12px;
  background: #ffffff;
  border-radius: 12px;
  border: 3px solid #ffc0e0;
  box-shadow: 0 4px 12px rgba(255, 31, 140, 0.1);
  transition: all 0.3s ease;
}

.timer-segment:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 31, 140, 0.2);
  border-color: #ff69b4;
}

/* Timer value (the numbers) */
.timer-value {
  font-size: 42px;
  font-weight: 900;
  color: #ff1f8c;
  line-height: 1;
  font-family: 'Space Grotesk', sans-serif;
}

/* Timer label (Days, Hours, etc.) */
.timer-label {
  font-size: 11px;
  font-weight: 700;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 8px;
}

/* Timer note below the countdown */
.tp-timer-note {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #888;
  margin: 0 auto 20px auto;
  font-style: italic;
  width: 100%;
  display: block;
}

/* Responsive styles for mobile */
@media (max-width: 768px) {
  .tp-price-warning {
    font-size: 16px;
    margin: 15px auto 10px auto;
  }

  .tp-countdown-timer {
    gap: 10px;
    padding: 15px;
  }

  .timer-segment {
    min-width: 60px;
    padding: 10px 6px;
  }

  .timer-value {
    font-size: 28px;
  }

  .timer-label {
    font-size: 9px;
    margin-top: 4px;
  }

  .tp-timer-note {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .tp-countdown-timer {
    gap: 8px;
    padding: 12px;
  }

  .timer-segment {
    min-width: 50px;
    padding: 8px 4px;
  }

  .timer-value {
    font-size: 24px;
  }

  .timer-label {
    font-size: 8px;
  }
}

/* Timer in footer section - additional spacing */
.tp-footer-row .tp-price-warning {
  margin-top: 25px;
  margin-bottom: 15px;
}

.tp-footer-row .tp-countdown-timer {
  margin-bottom: 15px;
}

.tp-footer-row .tp-timer-note {
  margin-bottom: 25px;
}
