/* Flash Sale countdown strip — shared storefront chrome */
.flash-sale-strip {
  width: 100%;
  background: linear-gradient(180deg, #f97316 0%, #ea580c 100%);
  border-top: 1px solid rgba(148, 163, 184, 0.28);
  border-bottom: 1px solid rgba(148, 163, 184, 0.28);
  color: #f8fafc;
  padding: 10px 14px;
  display: flex;
  justify-content: center;
}

.flash-sale-strip__inner {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto !important;
  display: inline-flex;
  align-items: center;
  justify-content: center !important;
  gap: 16px;
  flex-wrap: wrap;
  padding: 0 8px;
}

.flash-sale-strip__label {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  line-height: 1.1;
}

.flash-sale-strip__title {
  font-weight: 800;
  font-size: 1.45rem;
  color: #facc15;
  text-shadow: 0 0 14px rgba(250, 204, 21, 0.45);
  animation: flash-sale-title-blink 1s ease-in-out infinite;
}

@keyframes flash-sale-title-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.flash-sale-strip__sub {
  font-size: 0.86rem;
  color: #cbd5e1;
  margin-top: 2px;
}

.flash-sale-strip__timer {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.flash-sale-strip__box {
  min-width: 58px;
  text-align: center;
}

.flash-sale-strip__value {
  display: block;
  font-size: 1.85rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.03em;
  line-height: 1;
  animation: flash-sale-timer-blink 1s ease-in-out infinite;
}

.flash-sale-strip__unit {
  display: block;
  margin-top: 2px;
  font-size: 0.72rem;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.flash-sale-strip__colon {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}

@keyframes flash-sale-timer-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

@media (max-width: 768px) {
  .flash-sale-strip {
    padding: 8px 10px;
  }

  .flash-sale-strip__inner {
    gap: 10px;
  }

  .flash-sale-strip__title {
    font-size: 1.15rem;
  }

  .flash-sale-strip__sub {
    font-size: 0.76rem;
  }

  .flash-sale-strip__value {
    font-size: 1.38rem;
  }

  .flash-sale-strip__box {
    min-width: 46px;
  }
}
