/** Shopify CDN: Minification failed

Line 14:1 Unexpected ";"

**/
.custom-delivery {
    display: flex !important;
    flex-direction: column;
    gap: 12px;
}
.custom-delivery select {
    min-width: 260px;
    width:fit-content;
};
 .custom-delivery input {
    min-width:260px ;
     width:fit-content;
}

input#preferred-date {
    width: fit-content;
     min-width:260px ;
}

.flavour-quantities {
  margin: 20px 0;
  padding: 20px;
   border-radius: 8px;
  border: 1px solid #ddd;
}

.flavour-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  padding: 10px;
  
  border-radius: 6px;
}

.flavour-button {
  
  color: white;
  
  padding: 8px 16px;
  border-radius: 4px;
  border:1px solid #504e4e;
  cursor: pointer;
 
  flex-grow: 1;
  margin-right: 10px;
  text-align: left;
}


.flavour-button.selected {
  background-color: #504e4e;
  border:1px solid;
  color:#fff !important;
  
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quantity-btn {
  background-color: #666;
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quantity-btn:hover {
  background-color: #888;
}

.quantity-btn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

.quantity-display {
  min-width: 30px;
  text-align: center;
  
}

.progress-bar {
  margin: 20px 0;
 
}

.progress-text {
  font-weight: bold;
  color: #333;
}

.hidden {
  display: none;
}

.single-mode .quantity-controls {
  display: none;
}

.error-message {
  color: #d32f2f;
  font-size: 14px;
  margin-top: 10px;
}

.success-message {
  color: #388e3c;
  font-size: 14px;
  margin-top: 10px;
}
