.product-info-variants h3 {
  margin-bottom: 4px;
}

.product-info-quantity-help {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 11px;
}

.product-info-add {
  grid-template-columns: minmax(0, 1fr) auto auto;
  cursor: default;
}

.product-info-add:hover,
.product-info-add.selected {
  border-color: #63b49b;
  background: #f7fffb;
}

.product-info-amount {
  display: flex;
  align-items: center;
  gap: 7px;
}

.product-info-amount button {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 1px solid #c8d6d0;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font: 700 18px/1 "Manrope";
  cursor: pointer;
}

.product-info-amount button:hover,
.product-info-amount button:focus-visible {
  border-color: var(--mint);
  background: var(--mint);
}

.product-info-amount output {
  min-width: 22px;
  text-align: center;
  font: 750 13px "Manrope";
}

.product-info-done {
  width: 100%;
  margin-top: 12px;
  padding: 12px 15px;
  border: 0;
  border-radius: 5px;
  background: var(--ink);
  color: #fff;
  font: 700 12px "DM Sans";
  cursor: pointer;
}

.product-info-done:hover,
.product-info-done:focus-visible {
  background: #123832;
}

.catalog-amount {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 2px;
  border: 1px solid #d5dfdb;
  border-radius: 18px;
  background: #fff;
}

.catalog-amount.selected {
  border-color: #63b49b;
  background: #f1fff9;
}

.catalog-amount button {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  font: 700 16px/1 "Manrope";
  cursor: pointer;
}

.catalog-amount button:hover,
.catalog-amount button:focus-visible {
  background: var(--mint);
}

.catalog-amount output {
  min-width: 18px;
  text-align: center;
  font: 750 12px "Manrope";
}

.catalog-add-product {
  width: 100%;
  margin-top: 12px;
  padding: 10px 12px;
  border: 1px solid var(--ink);
  border-radius: 5px;
  background: var(--ink);
  color: #fff;
  font: 700 11px "DM Sans";
  cursor: pointer;
}

.catalog-add-product:hover,
.catalog-add-product:focus-visible {
  background: #123832;
}

.catalog-add-product:disabled {
  border-color: #d5dfdb;
  background: #eef2f0;
  color: #82908b;
  cursor: default;
}

@media (max-width: 460px) {
  .product-info-add {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .product-info-add > strong {
    grid-column: 1;
    grid-row: 2;
  }

  .product-info-amount {
    grid-column: 2;
    grid-row: 1 / span 2;
  }
}
