/* Акції тимчасово вимкнені. Навігаційна вкладка та маршрут /promotions залишаються. */
.promo-card {
  display: none !important;
}

.promotions-empty-state {
  width: min(100%, 670px);
  margin: 24px auto 0;
  padding: 30px 24px 28px;
  border: 1px solid #dcefe3;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 28px rgba(4, 137, 33, 0.1);
  text-align: center;
}

.promotions-empty-state__icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 18px;
  color: #11a34a;
}

.promotions-empty-state__title {
  margin: 0 0 10px;
  color: #111;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  line-height: 1.15;
}

.promotions-empty-state__text {
  max-width: 520px;
  margin: 0 auto;
  color: #646464;
  font-size: 16px;
  line-height: 1.5;
}

.promotions-empty-state__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}

.promotions-empty-state__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 202px;
  min-height: 48px;
  padding: 10px 18px;
  border: 1px solid #bfe5cc;
  border-radius: 9px;
  color: #048921;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.promotions-empty-state__action:hover {
  transform: translateY(-1px);
  background: #effaf2;
}

.promotions-empty-state__action:focus-visible {
  outline: 3px solid rgba(4, 137, 33, 0.28);
  outline-offset: 3px;
}

.promotions-empty-state__action--primary {
  border-color: #048921;
  background: #048921;
  color: #fff;
}

.promotions-empty-state__action--primary:hover {
  background: #06781f;
}

@media (max-width: 560px) {
  .promotions-empty-state {
    margin-top: 12px;
    padding: 26px 16px 22px;
    border-radius: 18px;
  }

  .promotions-empty-state__actions {
    flex-direction: column;
    gap: 10px;
  }

  .promotions-empty-state__action {
    width: 100%;
  }
}
