.countdown-wrap {
  display: inline-block;
  /* 텍스트 크기만큼만 배경 */
  background-color: rgb(243, 17, 16);
  /* 배경 */
  color: #fff;
  /* 글씨는 흰색 */
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 400;
  margin: 12px auto;
  /* 세로 여백 + 가운데 정렬 */
}

.countdown-container {
  text-align: center;
  /* 중앙 정렬 기준 */
}

.countdown-wrap [data-countdown] {
  margin: 0 4px;
  font-weight: 700;
}

.hm-award-gift {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #d3d3d3;
  border-radius: 10px;
  padding: 10px 12px;
  background: #f5f5f5;
}

.hm-award-gift__thumb {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #eee;
  background: #fafafa;
}

.hm-award-gift__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hm-award-gift__meta {
  min-width: 0;
}

.hm-award-gift__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #ff6400;
  border: 1px solid #ff6400;
  border-radius: 999px;
  padding: 2px 8px;
  margin-bottom: 4px;
}

.hm-award-gift__title {
  font-size: 14px;
  font-weight: 700;
  color: #111;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-bottom: 3px;
}

.hm-award-gift__desc {
  font-size: 12px;
  color: #555;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 360px) {
  .hm-award-gift {
    padding: 8px 10px;
  }

  .hm-award-gift__thumb {
    width: 42px;
    height: 42px;
  }

  .hm-award-gift__title {
    font-size: 13px;
  }
}

.hm-countdown {
  display: flex;
  align-items: baseline;
  gap: 2px;
  /* 4px → 2px */
  margin-top: 6px;
  flex-wrap: wrap;
}

.hm-cd-unit {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.hm-cd-num {
  font-size: 11px;
  font-weight: 700;
  color: #111;
  font-variant-numeric: tabular-nums;
  display: inline-block;
  text-align: right;
}

.hm-cd-num.flip {
  animation: cd-flip 0.25s ease;
}

@keyframes cd-flip {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  40% {
    opacity: 0;
    transform: translateY(-4px);
  }

  60% {
    opacity: 0;
    transform: translateY(4px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hm-cd-label {
  font-size: 13px;
  /* color: #aaa; */
  /* 이미 #aaa, 유지 */
}

.hm-cd-sep {
  font-size: 12px;
  /* color: #aaa; */
  /* #ddd → #aaa 로 통일 */
  margin: 0;
}