/** Shopify CDN: Minification failed

Line 1185:0 Unexpected "}"

**/
/* ===== ORDER FLOW STYLES ===== */

* {
  -webkit-tap-highlight-color: transparent;
}

/* Product Selector Landing Page */
.product-selector-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.product-selector-hero {
  text-align: center;
  margin-bottom: 48px;
}

.hero-title {
  font-size: 36px;
  font-weight: 700;
  color: #212529;
  margin: 0 0 12px 0;
}

.hero-subtitle {
  font-size: 18px;
  color: #6c757d;
  margin: 0;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
  justify-content: center;
}

.product-grid:has(.product-card:only-child) {
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.product-card {
  border: 3px solid #e9ecef;
  border-radius: 16px;
  padding: 24px;
  padding-top: 24px;
  transition: all 0.3s ease;
  position: relative;
  background: #fafbfc;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.product-card:hover {
  border-color: #F7984A;
  box-shadow: 0 8px 24px rgba(247, 152, 74, 0.2);
  transform: translateY(-4px);
  background: white;
}

.product-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #F7984A 0%, #ff6b35 100%);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(247, 152, 74, 0.4);
  z-index: 10;
  white-space: nowrap;
}

.product-card__header {
  margin-bottom: 20px;
  margin-top: 8px;
}

.product-card__title {
  font-size: 24px;
  font-weight: 700;
  color: #212529;
  margin: 0 0 12px 0;
}

.product-card__price {
  font-size: 28px;
  font-weight: 700;
  color: #F7984A;
  margin-bottom: 12px;
}

.price-original {
  text-decoration: line-through;
  color: #adb5bd;
  font-size: 20px;
  margin-right: 8px;
}

.price-sale {
  color: #dc3545;
}

.price-current {
  color: #F7984A;
}

/* Inventory Badges */
.inventory-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  margin-top: 8px;
}

.inventory-badge.preorder {
  background: #fff3cd;
  color: #856404;
}

.inventory-badge.low {
  background: #f8d7da;
  color: #721c24;
}

.inventory-badge.medium {
  background: #fff3cd;
  color: #856404;
}

.inventory-badge.high {
  background: #d4edda;
  color: #155724;
}

.inventory-badge.spoed {
  background: #d1ecf1;
  color: #0c5460;
}

/* Product Body */
.product-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

.product-card__image-wrapper {
  text-align: center;
}

.product-card__image {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 12px;
}

.product-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  min-height: 200px;
}

.product-card__features li {
  font-size: 15px;
  color: #495057;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.product-card__features .icon {
  color: #22c55e;
  font-weight: 700;
  flex-shrink: 0;
}

/* Product Footer */
.product-card__footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  text-decoration: none;
  touch-action: manipulation;
  width: 100%;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: linear-gradient(135deg, #F7984A 0%, #ff6b35 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(247, 152, 74, 0.3);
}

.btn--disabled {
  background: #e9ecef;
  color: #adb5bd;
  cursor: not-allowed;
  box-shadow: none;
}

.btn--secondary {
  background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

.btn-link {
  display: block;
  text-align: center;
  color: #F7984A;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px;
}

.btn-link:hover {
  text-decoration: underline;
}

/* ===== ORDER FLOW FORMULIER STYLING ===== */

.order-flow-wrapper {
  background: #f8f9fa;
  min-height: 100vh;
  padding: 40px 20px;
}

.order-flow-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

/* Progress Bar */
.order-progress {
  margin-bottom: 40px;
}

/* Hide progress bar, keep text indicator */
.progress-bar {
  display: none;
}

.progress-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, #F7984A 0%, #ff6b35 100%);
  transition: width 0.3s ease;
  width: 0%;
}

.progress-info {
  text-align: center;
  font-size: 15px;
  color: #495057;
  font-weight: 600;
  margin-bottom: 40px;
}

.change-product-link {
  display: block;
  text-align: center;
  color: #6c757d;
  text-decoration: none;
  font-size: 13px;
  margin-top: -24px;
  margin-bottom: 24px;
  transition: color 0.2s ease;
}

.change-product-link:hover {
  color: #F7984A;
  text-decoration: underline;
}


/* Form Steps */
.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.step-container {
  padding: 20px 0;
}

.step-title {
  font-size: 28px;
  font-weight: 700;
  color: #212529;
  margin: 0 0 12px 0;
  text-align: center;
}

.step-description {
  font-size: 16px;
  color: #6c757d;
  margin: 0 0 32px 0;
  text-align: center;
}

/* Navigation Buttons */
.order-navigation,
.button-container {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}

.back-button,
.next-button {
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 140px;
}

.back-button {
  background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

.next-button,
.primary-button {
  background: linear-gradient(135deg, #F7984A 0%, #ff6b35 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(247, 152, 74, 0.3);
}



/* Checkout button styling - BEIDE class namen */
.checkout-button,
.btn--checkout {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
  color: white !important;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3) !important;
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  display: block;
}

/* Form Groups */
.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #212529;
  margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  transition: border-color 0.2s ease;
  font-family: inherit;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #F7984A;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* Occasion Other Input */
#occasion-other,
#music-style-other {
  margin-top: 16px;
  padding: 12px 16px;
  font-size: 16px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
}

#occasion-other:focus,
#music-style-other:focus {
  outline: none;
  border-color: #F7984A;
}

/* Choice Cards - Compacter voor songtekst */
.songtext-choice {
  margin-top: 24px;
}

.choice-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.choice-card {
  border: 3px solid #e9ecef;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #fafbfc;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.choice-card:hover {
  border-color: #F7984A;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(247, 152, 74, 0.2);
  background: white;
}

.choice-card.selected {
  border-color: #F7984A;
  background: white;
  box-shadow: 0 4px 16px rgba(247, 152, 74, 0.3);
}

.choice-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.choice-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #212529;
  margin: 0 0 8px 0;
}

.choice-card p {
  font-size: 13px;
  color: #6c757d;
  margin: 0 0 12px 0;
  line-height: 1.4;
}

.choice-select {
  width: 100%;
}

/* Choice button styling - BEIDE class namen */
.choice-btn,
.btn--choice {
  display: inline-block;
  padding: 10px 24px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
  color: white !important;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3) !important;
}

.choice-card input[type="radio"] {
  display: none;
}

.occasion-grid,
.music-style-grid,
.mood-selector {
  display: grid;
  grid-template-columns: repeat(auto-fill, 120px);
  gap: 12px;
  margin-top: 24px;
  justify-content: center;
}

.voice-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  justify-content: center;
}

.occasion-option,
.style-option,
.voice-option,
.mood-option {
  width: 120px;
  min-height: 100px;
  border: 3px solid #e9ecef;
  border-radius: 10px;
  padding: 14px 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #fafbfc;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.occasion-option:hover,
.style-option:hover,
.voice-option:hover,
.mood-option:hover {
  border-color: #F7984A;
  transform: translateY(-2px);
  background: white;
}

.occasion-option.selected,
.style-option.selected,
.voice-option.selected,
.mood-option.selected {
  border-color: #F7984A;
  background: white;
  box-shadow: 0 4px 12px rgba(247, 152, 74, 0.2);
}

.occasion-icon,
.style-icon,
.voice-icon,
.mood-icon {
  font-size: 32px;
  margin-bottom: 6px;
  flex-shrink: 0;
}

.occasion-label,
.style-name,
.voice-label,
.mood-label {
  font-size: 12px;
  font-weight: 600;
  color: #212529;
  line-height: 1.2;
  word-break: break-word;
}

.style-description {
  display: none;
}

/* Names Input */
#names-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.name-item-group {
  padding: 16px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 2px solid #e9ecef;
}

.name-label-simple {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #212529;
  margin-bottom: 8px;
}

.name-input-row {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.name-input {
  flex: 1;
  padding: 10px 14px;
  font-size: 15px;
  border: 2px solid #e9ecef;
  border-radius: 6px;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}

.name-input:focus {
  outline: none;
  border-color: #F7984A;
}

.remove-name-btn,
.remove-detail-btn {
  background: #dc3545;
  color: white;
  border: none;
  border-radius: 6px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.remove-name-btn:hover,
.remove-detail-btn:hover {
  background: #c82333;
}

.phonetic-input-row {
  margin-top: 8px;
}

.phonetic-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #6c757d;
  margin-bottom: 6px;
}

.phonetic-input {
  width: 100%;
  padding: 8px 12px;
  font-size: 14px;
  border: 2px solid #e9ecef;
  border-radius: 6px;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}

.phonetic-input:focus {
  outline: none;
  border-color: #F7984A;
}

.phonetic-input:disabled {
  background: #f1f3f5;
  cursor: not-allowed;
}

.secondary-button {
  background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* Details Input - Max 10 items */
/* Details Input - Max 10 items */
#details-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.detail-item {
  display: flex;
  gap: 8px;
}

.detail-input {
  flex: 1;
  padding: 10px 14px;
  font-size: 15px;
  border: 2px solid #e9ecef;
  border-radius: 6px;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}

.detail-input:focus {
  outline: none;
  border-color: #F7984A;
}

/* Add more question - ALWAYS VISIBLE */
.add-more-question {
  text-align: center;
  padding: 16px;
  background: #f8f9fa;
  border-radius: 8px;
  margin-top: 16px;
  display: block !important;
}

.add-more-question span {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #212529;
  margin-bottom: 12px;
}

.add-more-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.continue-button {
  background: linear-gradient(135deg, #F7984A 0%, #ff6b35 100%);
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(247, 152, 74, 0.3);
  min-width: 120px;
}

.secondary-button {
  background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 120px;
}

/* Info Notes */
.info-note {
  font-size: 14px;
  color: #6c757d;
  margin-top: 8px;
  line-height: 1.5;
}

.example-text {
  margin-bottom: 20px;
  padding: 16px 20px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 3px solid #F7984A;
}

/* Song Preview */
.song-preview {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 32px;
}

.song-preview h3 {
  font-size: 20px;
  font-weight: 700;
  color: #212529;
  margin: 0 0 20px 0;
  text-align: center;
}

.song-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.song-detail-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #495057;
}

.song-detail-icon {
  font-size: 20px;
  min-width: 24px;
}

/* Important Notice */
.important-notice {
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 16px 20px;
  border-radius: 8px;
  margin: 24px 0;
}

.important-notice p {
  margin: 0;
  font-size: 14px;
  color: #856404;
  line-height: 1.6;
}

/* Hidden utility */
.hidden {
  display: none !important;
}

/* Hide step 1 */
#step1 {
  display: none !important;
}




/* FIX: Juiste class namen voor grids */
.style-grid,
.voice-grid,
.mood-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, 120px);
  gap: 12px;
  margin-top: 24px;
  justify-content: center;
}

/* Ook style-desc fixen */
.style-desc {
  display: none;
}

/* Delivery Selection Styling */
.delivery-selection {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 24px;
  margin: 32px 0;
}

.delivery-selection h3 {
  font-size: 20px;
  font-weight: 700;
  color: #212529;
  margin: 0 0 20px 0;
  text-align: center;
}

.delivery-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.delivery-option {
  border: 3px solid #e9ecef;
  border-radius: 12px;
  padding: 16px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: white;
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.delivery-option:hover {
  border-color: #F7984A;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(247, 152, 74, 0.2);
}

.delivery-option input[type="radio"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  flex-shrink: 0;
}

.delivery-option input[type="radio"]:checked {
  accent-color: #F7984A;
}

.delivery-option.recommended {
  border-color: #F7984A;
  background: #fff8f0;
}

.delivery-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: linear-gradient(135deg, #F7984A 0%, #ff6b35 100%);
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(247, 152, 74, 0.4);
}

.delivery-content {
  flex: 1;
}

.delivery-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.delivery-header strong {
  font-size: 16px;
  color: #212529;
}

.delivery-price {
  font-size: 18px;
  font-weight: 700;
  color: #F7984A;
}

.delivery-desc {
  font-size: 13px;
  color: #6c757d;
  margin: 0;
}

/* Definitieve fix om te garanderen dat de bezorgopties verdwijnen bij fysieke producten */
.delivery-selection.js-hidden {
    display: none !important; 
}

    /* Order actions container for step 11 */
  .order-actions {
    display: flex;
    flex-direction: column-reverse;
    gap: 16px;
    margin-top: 32px;
    align-items: stretch;
  }

  .order-actions .btn {
    max-width: none;
    width: 100%;
  }

/* Desktop optimalisatie */
@media (min-width: 769px) {
  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 380px));
  }
  
  .product-grid:has(.product-card:only-child) {
    max-width: 420px;
  }
  
  .choice-cards {
    grid-template-columns: repeat(2, 1fr);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}



/* Mobile Responsive */
@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .hero-title {
    font-size: 28px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .product-card {
    padding: 20px;
  }
  
  .btn {
    font-size: 16px !important;
    padding: 16px 24px;
  }
  
  .order-flow-container {
    padding: 24px;
  }
  
  .step-title {
    font-size: 24px;
  }
  
  .choice-cards {
    grid-template-columns: 1fr;
  }
  
  .occasion-grid,
  .music-style-grid,
  .voice-selector,
  .mood-selector,
  .style-grid,
  .voice-grid,
  .mood-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .occasion-option,
  .style-option,
  .voice-option,
  .mood-option {
    width: 100%;
    min-height: 90px;
    padding: 12px 6px;
  }
  
  .occasion-icon,
  .style-icon,
  .voice-icon,
  .mood-icon {
    font-size: 28px;
  }
  
  .occasion-label,
  .style-name,
  .voice-label,
  .mood-label {
    font-size: 11px;
  }
  
  .button-container {
    flex-direction: column;
  }
  
  .back-button,
  .next-button {
    width: 100%;
  }
  
  .checkout-button {
    font-size: 16px;
    padding: 14px 32px;
  }

  /* Delivery opties mobiel */
  .delivery-option {
    padding: 12px 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .delivery-option input[type="radio"] {
    align-self: flex-start;
  }
  
  .delivery-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  
  .delivery-header strong {
    font-size: 14px;
  }
  
  .delivery-price {
    font-size: 16px;
  }
  
  .delivery-desc {
    font-size: 12px;
  }
  
  .delivery-badge {
    right: 10px;
    font-size: 10px;
    padding: 3px 8px;
  }
  
  /* Summary grid mobiel */
  .order-summary {
    padding: 20px 16px;
  }
  
  .summary-grid {
    gap: 8px;
  }
  
  .summary-item {
    font-size: 14px;
  }
  
  .summary-icon {
    font-size: 18px;
  }
}
  
}



@media (hover: hover) {
  .btn--primary:hover,
  .next-button:hover,
  .primary-button:hover {
    background: linear-gradient(135deg, #ff6b35 0%, #e55a24 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(247, 152, 74, 0.4);
  }
  
  .btn--secondary:hover,
  .back-button:hover,
  .secondary-button:hover {
    background: linear-gradient(135deg, #5a6268 0%, #495057 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(108, 117, 125, 0.4);
  }
  
  .checkout-button:hover,
  .btn--checkout:hover {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(34, 197, 94, 0.4) !important;
  }
  
  .choice-btn:hover,
  .btn--choice:hover {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%) !important;
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(34, 197, 94, 0.4) !important;
  }
  
  .continue-button:hover {
    background: linear-gradient(135deg, #ff6b35 0%, #e55a24 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(247, 152, 74, 0.4);
  }
}