.sale-banner {
  width: 100%;
  background-color: #e61919;
  color: #ffffff;
  position: relative;
}

.sale-banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 16px;
  height: 45px;
}

.sale-banner__text {
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 18px;
  line-height: 1;
  white-space: wrap;
}

.sale-banner__countdown {
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
}

.sale-banner__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  height: 34px;
  aspect-ratio: 1 / 1;
  padding: 4px 0;
  text-align: center;
  position: relative;
}

.sale-banner__num {
  display: block;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  font-feature-settings: 'tnum' 1;
}

.sale-banner__label {
  display: block;
  font-size: 9px;
  line-height: 1;
  opacity: 0.9;
  margin-top: 2px;
}

.sale-banner__box + .sale-banner__box::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.25);
}

@media (max-width: 700px) {
  .sale-banner__inner { flex-direction: column; gap: 6px; height: auto; padding: 8px 12px; }
  .sale-banner__text { text-align: center; font-size: 14px; }
}


