body {
  font-family: "Lexend Deca";
  padding: 20px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 20px;
  align-items: stretch;
}

.grid .price {
  grid-row: span 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.5em;
  background: #232323;
  border: 3px solid rgba(225,145,5,0.4);
  color: white;
  min-height: 60px;
}

.options input {
  display: none;
}

.options label {
  display: block;
  padding: 5px;
  border: 3px solid rgba(225,145,5,0.4);
  cursor: pointer;
  text-align: center;
  word-break: break-word;
  background: #232323;
  color: white;
  border-radius: 4px;
  min-height: 60px;
}

.options input:checked + label {
  background: rgba(225,145,5,0.4);
  border-color: #232323;
}

.bottom-row {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  background: rgba(225,145,5,0.4);
  border: 3px solid #232323;
  padding: 0px;
  border-radius: 4px;
  flex-wrap: wrap;
}

input[type="text"] {
  flex: 1;
  padding: 10px;
  background: #232323;
  border: 3px solid rgba(225,145,5,0.4);
  color: white;
  min-width: 200px;
}

.bottom-row input[type="text"],
.bottom-row button {
  font-family: inherit;
  color: inherit;
  background: #232323;
  border: 3px solid rgba(225,145,5,0.4);
  padding: 10px;
  border-radius: 4px;
}
