/* Service Options in Reservation */
.service-options-section {
  margin: 30px 0;
  padding: 25px;
  background: #f8f9fa;
  border-radius: var(--border-radius);
  border: 1px solid #e9ecef;
}

.service-options-section h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}

.service-options-section p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.service-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
  margin-bottom: 20px;
}

.service-option-card {
  background: white;
  border: 2px solid #e9ecef;
  border-radius: var(--border-radius);
  padding: 20px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-option-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.service-option-card.selected {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(212, 175, 55, 0.02));
}

.service-option-card.selected::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
}

.option-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option-content {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.option-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  flex-shrink: 0;
}

.option-details h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.option-details p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 8px;
  line-height: 1.4;
}

.option-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
}

/* Product Selection in Reservation */
.product-selection-section {
  margin: 30px 0;
  padding: 25px;
  background: #f8f9fa;
  border-radius: var(--border-radius);
  border: 1px solid #e9ecef;
}

.product-selection-section h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}

.product-selection-section p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.product-selection-toggle {
  text-align: center;
  margin-bottom: 20px;
}

.product-selector-container {
  margin-top: 20px;
  padding: 20px;
  background: white;
  border-radius: var(--border-radius);
  border: 1px solid #e9ecef;
}

/* Reservation Actions */
.reservation-actions {
  margin-top: 30px;
  text-align: center;
  padding: 25px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
  border: 2px solid var(--primary);
  border-radius: var(--border-radius);
}

.reservation-actions .btn {
  font-size: 1.1rem;
  padding: 15px 30px;
}

/* Price Display */
.price-display {
  background: white;
  border: 2px solid var(--primary);
  border-radius: var(--border-radius);
  padding: 20px;
  margin: 20px 0;
  text-align: center;
}

.price-display h5 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}

.price-display .total-amount {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
}

/* Responsive Design */
@media (max-width: 768px) {
  .service-options-grid {
    grid-template-columns: 1fr;
  }
  
  .option-content {
    flex-direction: column;
    text-align: center;
  }
  
  .option-icon {
    align-self: center;
  }
  
  .service-options-section,
  .product-selection-section {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .service-options-section,
  .product-selection-section {
    padding: 15px;
  }
  
  .service-option-card {
    padding: 15px;
  }
}
