/* Wrap row for each addon */
.pizza-addon-group-row {
  margin: 8px 0;
  border-bottom: 1px solid #eee;
  padding-bottom: 8px;
}

/* Label is flex row */
.addon-flex-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  width: 100%;
}

/* Name on the left, price on the right */
.addon-name {
  flex: 1;
  font-weight: 500;
}

.addon-price {
  font-weight: 500;
  color: #444;
}

.pizza-addon-category {
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 10px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
}


.pizza-addon-group-row.required-addon .addon-required-text {
    font-size: 12px;
    color: red;
    font-weight: bold;
    margin-left: 8px;
}

.pizza-addon-counter-wrap {
    margin-top: 15px;
    background: #f8f8f8;
    padding: 10px;
    border: 1px solid #ddd;
}

.pizza-addon-counter {
    font-weight: bold;
    color: #333;
}


.category-required-text {
    color: red;
    font-size: 14px;
    font-weight: bold;
    margin-left: 8px;
}