/**
 * Dynamic Offer Countdown Styles (Transparent Background)
 */
:root {
  /* Set the background to transparent and text to dark */
  --doc-bg-color: transparent;
  --doc-text-color: #333333;
  --doc-timer-bg-color: #ffffff;
  --doc-timer-text-color: #1d1d1f;
  --doc-timer-label-color: #555555;
  --doc-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.doc-offer-container {
  background-color: var(--doc-bg-color);
  color: var(--doc-text-color);
  font-family: var(--doc-font-family);
  padding: 2rem 1rem;
  width: 100%;
}

.doc-countdown-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.doc-countdown-prompt {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 500;
  margin: 0;
  text-align: center;
}

.doc-timer {
  display: flex;
  gap: 0.5rem;
  background-color: var(--doc-timer-bg-color);
  color: var(--doc-timer-text-color);
  padding: 0.75rem 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.doc-timer>div {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0.5rem;
  min-width: 40px;
}

.doc-timer span:not(.doc-label) {
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 700;
  line-height: 1;
}

.doc-timer .doc-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--doc-timer-label-color);
  margin-top: 0.25rem;
}

.doc-countdown-expired {
  background-color: var(--doc-timer-bg-color);
  color: var(--doc-timer-text-color);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
}

@media (min-width: 768px) {
  .doc-countdown-wrapper {
    flex-direction: row;
    gap: 2rem;
  }

  .doc-timer {
    gap: 1rem;
  }

  .doc-timer>div {
    padding: 0 0.75rem;
    min-width: 50px;
  }
}