.card-quantity,
.modal-quantity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.card-quantity {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.card-quantity > span,
.modal-quantity > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.card-quantity .quantity,
.modal-quantity .quantity {
  gap: 7px;
}

.card-quantity .quantity button,
.modal-quantity .quantity button {
  width: 34px;
  height: 34px;
  border-radius: 4px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
}

.card-quantity .quantity strong,
.modal-quantity .quantity strong {
  min-width: 26px;
  color: var(--navy);
  text-align: center;
  font-size: 15px;
}

.modal-quantity {
  margin: 18px 0;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.add-toast {
  position: fixed;
  z-index: 1200;
  right: 28px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 13px;
  width: min(360px, calc(100vw - 32px));
  padding: 16px 18px;
  border: 1px solid #b9ded0;
  border-radius: 7px;
  background: #fff;
  color: var(--navy);
  box-shadow: 0 18px 50px #0424392b;
  animation: add-toast-in .22s ease-out;
}

.add-toast > span {
  display: grid;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: #e5f6ef;
  color: var(--green);
  font-size: 20px;
  font-weight: 900;
}

.add-toast strong,
.add-toast small {
  display: block;
}

.add-toast strong {
  margin-bottom: 3px;
  font-size: 14px;
}

.add-toast small {
  color: var(--muted);
  font-size: 12px;
}

@keyframes add-toast-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (width <= 580px) {
  .add-toast {
    right: 16px;
    bottom: 16px;
  }
}
