:root {
  --yellow: #e8e000;
  --text-gray: #8a8a8a;
  --bar-border: #9a9a9a;
  --bar-height: 14px;
}

.sale-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
  padding-bottom: 78px;
}

.sale-section h2 {
  font-family: Saira, sans-serif !important;
  font-weight: 500 !important;
}

.deals-copy {
  color: var(--text-gray);
  font-size: 1.125rem;
  line-height: 1.6;
  max-width: 52ch;
}

/* Countdown */
.countdown {
  display: flex;
  gap: 28px;
  align-items: center;
}

.countdown .unit {
  text-align: center;
}

.countdown .value {
  color: #555;
  font-size: 2rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.countdown .label {
  color: var(--text-gray);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-top: 6px;
}

/* Progress bar */
.progress-track {
  width: 100%;
  height: var(--bar-height);
  border: 1px solid var(--bar-border);
  background: #000;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #EDE583 10%, #CF496A 75%);
  transition: width 1s linear;
}

@media (max-width: 820px) {
  .sale-section {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .progress-fill {
    transition: none;
  }
}