/* 促銷倒計時強調樣式 */
.promotion-timer {
  background: #fef5f5;
  border-radius: 6px;
  padding: 8px 12px;
  display: inline-block;
  border-left: 3px solid #dc3545;
  margin-top: 5px;
  margin-bottom: 5px;
  width: auto;
  box-shadow: 0 1px 4px rgba(220, 53, 69, 0.08);
}

/* 倒計時容器 */
#countdownTimer {
  margin-top: 5px;
}

#countdownTimer > div {
  min-width: 40px;
  position: relative;
  transition: all 0.2s ease;
}

#countdownTimer > div:hover {
  transform: scale(1.02);
}

/* 倒計時數字 */
#countdownTimer span.fw-bold {
  font-size: 1.1rem;
  color: #dc3545;
  display: block;
  line-height: 1;
  font-family: 'Roboto', sans-serif;
}

/* 倒計時單位 */
#countdownTimer small {
  font-size: 0.75rem;
  color: #6c757d;
  margin-top: 1px;
  letter-spacing: 0.3px;
}

/* 分隔符效果 - 使用較小的冒號 */
#countdownTimer > div:not(:last-child)::after {
  content: ':';
  position: absolute;
  right: -6px;
  top: 12px;
  font-size: 0.9rem;
  color: #dc3545;
  font-weight: normal;
}

/* 響應式設計 */
@media (max-width: 576px) {
  #countdownTimer span.fw-bold {
    font-size: 1rem;
  }
  
  #countdownTimer > div {
    min-width: 35px;
  }
  
  #countdownTimer > div:not(:last-child)::after {
    right: -5px;
    font-size: 0.8rem;
  }
}

/* 促銷結束樣式 */
#countdownTimer .text-muted {
  font-size: 0.9rem;
  padding: 5px 10px;
  background: #f8f9fa;
  border-radius: 4px;
  display: inline-block;
}