button.pw-add-to-cart-button {
  background-color: #e7bd56;
  border-color: #e7bd56;
  color: #0f64ad;
  padding-left: 24px;
  padding-right: 24px;
  white-space: nowrap;
  font-weight: 900;
  text-transform: none;
  height: 52px;
  line-height: 50px;
  padding-bottom: 0;
  padding-top: 0;
  appearance: none;
  border-radius: 0;
  border-style: solid;
  border-width: 1px;
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease-out;
  text-decoration: none;
  margin-top: 20px;
}
button.pw-add-to-cart-button:hover {
  background-color: #0f64ad;
  border-color: #0f64ad;
  color: #e7bd56;
}

.pw-add-to-cart-inputs {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: flex-end;
}

.pw-add-to-cart-inputs > div {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pw-add-to-cart-inputs label {
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.pw-add-to-cart-inputs input {
  padding: 0.75rem 1rem;
  border: 1px solid #cfcfcf;
  border-radius: 4px;
  transition: border-color 0.2s ease-in-out;
  width: 100%;
}

.pw-add-to-cart-inputs input:hover {
  border-color: #999;
}

.pw-add-to-cart-inputs input:focus {
  outline: none;
  border-color: #0f64ad;
  box-shadow: 0 0 0 2px rgba(15, 100, 173, 0.2);
}

.table.pw-summary-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-family: sans-serif;
  color: #333;
}

.table.pw-summary-table th,
.table.pw-summary-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #cfcfcf;
}

.table.pw-summary-table tbody tr:first-child td {
  color: #0f64ad;
  font-weight: 600;
  border-bottom: 2px solid #0f64ad;
}

.table.pw-summary-table .text-right {
  text-align: right;
}

.table.pw-summary-table tbody tr:last-child {
  border-top: 2px solid #cfcfcf;
}

.table.pw-summary-table tbody tr:last-child td {
  font-weight: 900;
  color: #0f64ad;
}

.pw-remove-row {
  background: transparent;
  border: none;
  color: red;
  font-size: 1.2rem;
  font-weight: 900;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color 0.2s ease-in-out;
}

.pw-remove-row:hover {
  font-size:2rem
}
