.vit20-coupon {
  width: 100%;
  margin: 2px 0 4px;
  padding: 14px;
  border: 1px solid #e4ded6;
  border-radius: 14px;
  background: #fcfaf7;
}

.vit20-coupon__label {
  display: block;
  margin: 0 0 8px;
  color: #2a2723;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

.vit20-coupon__entry {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: stretch;
}

.vit20-coupon__entry input {
  width: 100%;
  min-width: 0;
  height: 46px;
  margin: 0;
  padding: 0 13px;
  border: 1px solid #d8d1c8;
  border-radius: 10px;
  background: #fff;
  color: #1c1a17;
  font-family: inherit;
  font-size: 14px;
  line-height: 46px;
  outline: none;
  box-shadow: none;
  transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
}

.vit20-coupon__entry input::placeholder {
  color: #8b847c;
  opacity: 1;
}

.vit20-coupon__entry input:hover {
  border-color: #c9c1b7;
}

.vit20-coupon__entry input:focus {
  border-color: var(--red, #E12B1C);
  box-shadow: 0 0 0 3px rgba(225, 43, 28, .09);
  background: #fff;
}

.vit20-coupon__entry button {
  min-width: 78px;
  height: 46px;
  margin: 0;
  padding: 0 17px;
  border: 1px solid #1c1a17;
  border-radius: 10px;
  background: #1c1a17;
  color: #fff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  box-shadow: none;
  transition: background .16s ease, border-color .16s ease, opacity .16s ease;
}

.vit20-coupon__entry button:not(:disabled):hover {
  border-color: #2a2723;
  background: #2a2723;
}

.vit20-coupon__entry button:disabled {
  opacity: .55;
  cursor: default;
}

.vit20-coupon__status {
  min-height: 0;
  margin-top: 7px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
}

.vit20-coupon__status:empty {
  display: none;
}

.vit20-coupon__status.is-error {
  color: #b42318;
}

.vit20-coupon__status.is-success {
  color: #176b3a;
}

.vit20-coupon__applied:not([hidden]) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  padding: 9px 10px 9px 11px;
  border: 1px solid #ded8cf;
  border-radius: 10px;
  background: #f5f1eb;
}

.vit20-coupon__applied-left {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
}

.vit20-coupon__tag-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #fff;
  color: var(--red, #E12B1C);
  border: 1px solid #e3ddd5;
}

.vit20-coupon__tag-icon svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vit20-coupon__applied-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.2;
}

.vit20-coupon__applied-copy strong {
  color: #1c1a17;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
}

.vit20-coupon__applied-copy span {
  margin-top: 3px;
  color: #6e675f;
  font-size: 11px;
  font-weight: 500;
}

.vit20-coupon__remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: #6e675f;
  font-family: inherit;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}

.vit20-coupon__remove:hover {
  background: #ebe5dd;
  color: #1c1a17;
}

.vit20-coupon:has(.vit20-coupon__applied:not([hidden])) .vit20-coupon__entry,
.vit20-coupon:has(.vit20-coupon__applied:not([hidden])) .vit20-coupon__status {
  display: none;
}

.vit20-coupon__discount-row {
  margin-top: 10px;
  padding-top: 10px !important;
  border-top: 1px dashed #ded8cf;
  color: #4a463f;
  font-size: 12px;
}

.vit20-coupon__discount-row span:first-child {
  color: #4a463f;
}

.vit20-coupon__discount-row span:last-child {
  color: #176b3a;
  font-weight: 800;
}

.vit20-coupon-price {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  flex-wrap: wrap;
}

.vit20-coupon-price s {
  color: #8b847c;
  opacity: .85;
  font-weight: 500;
}

.vit20-coupon-price strong {
  color: #1c1a17;
  font-weight: 800;
}

@media (max-width: 767px) {
  .vit20-coupon {
    padding: 12px;
    border-radius: 12px;
  }

  .vit20-coupon__entry {
    grid-template-columns: minmax(0, 1fr) 72px;
    gap: 7px;
  }

  .vit20-coupon__entry input,
  .vit20-coupon__entry button {
    height: 44px;
  }

  .vit20-coupon__entry input {
    padding: 0 12px;
    line-height: 44px;
  }

  .vit20-coupon__entry button {
    min-width: 72px;
    padding: 0 12px;
  }

  .vit20-coupon__applied:not([hidden]) {
    min-height: 46px;
  }
}
