.t-store__card__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 110px;
  padding: 8px 13px;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 999px;
  background: linear-gradient(135deg, #42d942 0%, #1ea62c 55%, #075d23 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .01em;
  text-align: center;
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .55);
  box-shadow: 0 8px 18px rgba(18, 137, 46, .32), inset 0 1px 0 rgba(255, 255, 255, .22);
  transition: transform .2s ease, box-shadow .2s ease;
}

.t-store__card__mark::before {
  content: "⚡";
  font-size: 12px;
  line-height: 1;
}

.t-store__card__mark:hover {
  transform: translateY(-2px);
  box-shadow: 0 11px 22px rgba(18, 137, 46, .38), inset 0 1px 0 rgba(255, 255, 255, .22);
}

@media screen and (max-width: 640px) {
  .t-store__card__mark {
    position: absolute !important;
    top: 6px !important;
    right: 6px !important;
    left: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 auto !important;
    width: max-content !important;
    min-width: max-content !important;
    max-width: calc(100% - 12px) !important;
    padding: 5px 8px !important;
    gap: 4px !important;
    overflow: visible !important;
    white-space: nowrap !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    color: #fff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .65);
    box-shadow: 0 4px 10px rgba(0, 80, 22, .35);
  }

  .t-store__card__mark::before {
    flex: 0 0 auto;
    font-size: 10px;
  }

  .t-store__card__mark:hover {
    transform: none;
  }
}