.dessert-quantity-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px 24px;
  width: 100%;
  max-width: 620px;
  margin: 30px 0 20px;
  padding: 22px 0;
  border-top: 1px solid rgba(58, 25, 8, 0.18);
  border-bottom: 1px solid rgba(58, 25, 8, 0.18);
}

.dessert-quantity-label {
  color: #301403;
  font-size: 20px;
  font-weight: 700;
}

.dessert-quantity-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.dessert-quantity-controls button {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid #9b5c32;
  border-radius: 50%;
  background: transparent;
  color: #5b2a0d;
  font: inherit;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}

.dessert-quantity-controls button:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

#dessertQuantity {
  min-width: 42px;
  color: #301403;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}

.dessert-unit-price {
  grid-column: 1 / -1;
  color: rgba(48, 20, 3, 0.72);
  font-size: 16px;
}

.dessert-selection-summary {
  display: block !important;
  padding-top: 18px;
}

.dessert-selection-summary h3 {
  margin-bottom: 12px;
}

#dessertFlavorSelect {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 600px) {
  .dessert-quantity-panel {
    gap: 14px;
    margin-top: 22px;
  }

  .dessert-quantity-controls {
    gap: 10px;
  }

  .dessert-quantity-controls button {
    width: 38px;
    height: 38px;
  }
}
