body.coupons-page {
  background: #f0f1f3;
}

.coupons-shell {
  min-height: 100vh;
  min-height: 100dvh;
  background: #f0f1f3;
}

.coupons-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(240, 241, 243, 0.98);
  box-shadow: none;
}

.coupons-header .sub-header__back {
  position: relative;
  width: 28px;
  height: 28px;
  margin-left: 4px;
  color: transparent;
  font-size: 0;
}

.coupons-header .sub-header__back::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 5px;
  width: 14px;
  height: 14px;
  border-left: 2px solid #2b2b2b;
  border-bottom: 2px solid #2b2b2b;
  transform: rotate(45deg);
}

.coupons-main {
  padding: 10px 15px 20px;
}

.coupons-tabs {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  justify-content: space-between;
  gap: 10px;
  overflow-x: hidden;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.coupons-tabs::-webkit-scrollbar {
  display: none;
}

.coupons-tab {
  position: relative;
  flex: 0 0 auto;
  padding-bottom: 10px;
  color: #1f1f1f;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
  background: transparent;
  white-space: nowrap;
}

.coupons-tab.is-active {
  color: #006843;
}

.coupons-tab.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 28px;
  height: 4px;
  border-radius: 999px;
  background: #006843;
  transform: translateX(-50%);
}

.coupons-panel {
  display: none;
  margin-top: 12px;
}

.coupons-panel.is-active {
  display: grid;
  gap: 10px;
}

.coupon-entry {
  padding: 16px 14px 14px;
  border-radius: 8px;
  background: #fff;
}

.coupon-entry__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.coupon-entry__head h2 {
  color: #2f2f30;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 600;
}

.coupon-entry__head span {
  flex: 0 0 auto;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 500;
}

.coupon-entry--available .coupon-entry__head span {
  color: #ff8a18;
}

.coupon-entry--used .coupon-entry__head span {
  color: #ff4b37;
}

.coupon-entry--expired .coupon-entry__head span {
  color: #8b8b8b;
}

.coupon-entry p {
  margin-top: 8px;
  color: #a0a7b0;
  font-size: 12px;
  line-height: 1.45;
}

.coupon-entry__desc {
  margin-top: 12px;
  color: #7d848c;
  font-size: 13px;
  line-height: 1.55;
}

@media (max-width: 359px) {
  .coupons-main {
    padding-inline: 16px;
  }

  .coupons-tabs {
    gap: 8px;
  }

  .coupons-tab {
    font-size: 13px;
    padding-bottom: 12px;
  }

  .coupon-entry {
    padding: 16px 13px 13px;
  }

  .coupon-entry__head h2,
  .coupon-entry__head span {
    font-size: 15px;
  }

  .coupon-entry__desc {
    font-size: 14px;
  }
}
