input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.checkout-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

.checkout-step {
  display: none;
  background: #fff;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.checkout-step.active {
  display: block;
}

.step-indicator {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.step {
  display: flex;
  align-items: center;
  margin: 0 15px;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ddd;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 10px;
}

.step.completed .step-number {
  background: #28a745;
  color: white;
}

.service-card {
  border: 2px solid #eee;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: #ec1c38;
}

.service-card.selected {
  border-color: #ec1c38;
  background: #fff5f5;
}

.service-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 10px;
}

.service-price {
  font-size: 18px;
  font-weight: bold;
  color: #ec1c38;
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  border: 2px solid #eee;
  border-radius: 6px;
  padding: 12px;
  font-size: 16px;
}

.form-control:focus {
  border-color: #ec1c38;
  box-shadow: 0 0 0 0.2rem rgba(236, 28, 56, 0.25);
}

.btn-primary {
  background: #ec1c38;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: bold;
}

.btn-primary:hover {
  background: #d41930;
}

.btn-secondary {
  background: #6c757d;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: bold;
}

.order-summary {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

#card-element {
  border: 2px solid #eee;
  border-radius: 6px;
  padding: 12px;
  margin-bottom: 20px;
}

#paypal-button-container {
  margin-top: 20px;
}

.payment-method {
  margin-bottom: 20px;
}

.payment-method label {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 10px;
  border: 2px solid #eee;
  border-radius: 6px;
  margin-bottom: 10px;
}

.payment-method input[type="radio"] {
  margin-right: 10px;
}

.payment-method input[type="radio"]:checked + span {
  color: #ec1c38;
  font-weight: bold;
}
.payment-form {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
}

.payment-amount {
  font-size: 2.5rem;
  font-weight: bold;
}

.merchant-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-container {
  background: #f8f9fa;
  padding: 10px 20px;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.merchant-logo-img {
  max-height: 40px;
  object-fit: contain;
}

.merchant-name {
  font-size: 1.2rem;
  font-weight: 600;
}

.card-logos {
  display: flex;
  gap: 8px;
  align-items: center;
}

.card-logos i {
  font-size: 1.5rem;
}

.form-control,
.form-select {
  border: 1px solid #ced4da;
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 14px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus,
.form-select:focus {
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-check {
  margin-bottom: 12px;
}

.form-check-input:checked {
  background-color: #ff7f00;
  border-color: #ff7f00;
}

.form-check-label {
  margin-left: 8px;
  font-weight: 500;
}

.form-check-label i {
  margin-right: 8px;
  font-size: 1.2rem;
}

.btn-lg {
  padding: 15px 30px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
}

.btn-primary {
  background-color: #ff7f00;
  border-color: #ff7f00;
}

.btn-primary:hover {
  background-color: #e67300;
  border-color: #e67300;
}

.alert-danger {
  background-color: #f8d7da;
  border-color: #f5c6cb;
  color: #721c24;
  padding: 12px 16px;
  border-radius: 6px;
  margin-top: 16px;
}

/* Tooltip */
.tooltip {
  font-size: 12px;
}

@media (max-width: 768px) {
  .payment-amount {
    font-size: 2rem;
  }

  .card-logos i {
    font-size: 1.2rem;
  }

  .btn-lg {
    padding: 12px 24px;
    font-size: 16px;
  }
}

.step-indicator {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.step {
  display: flex;
  align-items: center;
  margin: 0 15px;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #e9ecef;
  color: #6c757d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 10px;
}

.step.active .step-number {
  background-color: #ff7f00;
  color: white;
}

.step.completed .step-number {
  background-color: #28a745;
  color: white;
}

.step-title {
  font-weight: 500;
  color: #6c757d;
}

.step.active .step-title {
  color: #ff7f00;
}

.step.completed .step-title {
  color: #28a745;
}

.service-card {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: #ff7f00;
  box-shadow: 0 4px 8px rgba(255, 127, 0, 0.1);
}

.service-card.selected {
  border-color: #ff7f00;
  background-color: #fff8f0;
}

.service-price {
  font-size: 1.2rem;
  font-weight: bold;
  color: #ff7f00;
  margin-top: 10px;
}

.order-summary {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #e9ecef;
}

.summary-item:last-child {
  border-bottom: none;
}

.summary-total {
  font-weight: bold;
  font-size: 1.1rem;
  color: #ff7f00;
  font-size: 20px;
  font-weight: bold;
  color: #ff7f00;
  border-top: 2px solid #ff7f00;
  padding-top: 10px;
}

/* Loading States */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

.spinner-border {
  width: 1rem;
  height: 1rem;
  margin-right: 8px;
}

.success-modal {
  text-align: center;
  padding: 30px;
}

.success-icon {
  font-size: 4rem;
  color: #28a745;
  margin-bottom: 20px;
}

#paypal-button-container {
  margin: 20px 0;
}

#card-element {
  padding: 12px 16px;
  border: 1px solid #ced4da;
  border-radius: 6px;
  background-color: white;
}

#card-element.StripeElement--focus {
  border-color: #80bdff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

#card-element.StripeElement--invalid {
  border-color: #dc3545;
}

.payment-footer {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e9ecef;
}

.payment-footer a {
  color: #6c757d;
  text-decoration: none;
}

.payment-footer a:hover {
  color: #ff7f00;
}
.row-service {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 20px;
}
@media(max-width:768px) {
  .row-service {
    display: block;
  }
}
.quantity-control {
  margin-top: 15px;
  text-align: center;
}

.quantity-control label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.quantity-input-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.qty-btn {
  width: 32px;
  height: 32px;
  border: 1px solid #ddd;
  background: #fff;
  color: #333;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.qty-btn:hover {
  background: #f8f9fa;
  border-color: #adb5bd;
}

.qty-btn:active {
  background: #e9ecef;
}

.qty-input {
  width: 50px;
  height: 32px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
}

.qty-input:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.service-card {
  position: relative;
}

@media (max-width: 768px) {
  .quantity-control {
    margin-top: 10px;
  }

  .qty-btn {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .qty-input {
    width: 45px;
    height: 28px;
    font-size: 13px;
  }

  .quantity-control label {
    font-size: 13px;
    margin-bottom: 6px;
  }
}

.service-card:hover {
  transform: translateY(-2px);
  transition: transform 0.2s ease;
}

.qty-input:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.qty-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.qty-btn:disabled:hover {
  background: #fff;
  border-color: #ddd;
}

/* Email validation styles */
.form-control.is-valid {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.form-control.is-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #dc3545;
}

.form-control.is-invalid + .invalid-feedback {
  display: block;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  font-weight: 500;
  color: #333;
}

.form-control {
  border-radius: 6px;
  border: 1px solid #ced4da;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Virtual Staging Style Selection */
.style-selection {
  margin-top: 30px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.style-selection h4 {
  color: #333;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
}

.style-grid {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding: 10px 0;
  justify-content: center;
  flex-wrap: wrap;
}

.style-option {
  flex: 0 0 auto;
  width: 120px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 8px;
}

.style-option:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.style-option.selected {
  border-color: #ff7f00;
  background: #fff8f0;
  box-shadow: 0 4px 12px rgba(255, 127, 0, 0.2);
}

.style-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 2px;
  margin-bottom: 8px;
}

.style-images img {
  width: 100%;
  height: 35px;
  object-fit: cover;
  border-radius: 4px;
}

.style-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: #333;
  text-transform: capitalize;
}

.style-option.selected .style-label {
  color: #ff7f00;
  font-weight: 700;
}

/* Loading Overlay Styles */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loading-spinner {
  text-align: center;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.loading-text {
  color: #666;
  font-weight: 500;
  font-size: 1.1rem;
}

.spinner-border {
  width: 3rem;
  height: 3rem;
  border-width: 0.25em;
}

/* Disable form during loading */
.loading .form-control,
.loading .btn {
  pointer-events: none;
  opacity: 0.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .style-grid {
    gap: 10px;
  }

  .style-option {
    width: 100px;
  }

  .style-images img {
    height: 30px;
  }

  .style-label {
    font-size: 11px;
  }
}

@media (max-width: 576px) {
  .style-grid {
    justify-content: flex-start;
    overflow-x: auto;
    padding: 10px;
  }

  .style-option {
    width: 90px;
    min-width: 90px;
  }
}

.enhancement-toggle {
  margin: 4px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.toggle-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 124px;
  height: 28ppx;
}

.toggle-input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
  z-index: 2;
}

.toggle-input:checked + .toggle-slider {
  background-color: #ff7f00;
}

.toggle-input:checked + .toggle-slider:before {
  transform: translateX(86px);
}

.toggle-text {
  font-size: 9px;
  font-weight: 600;
  color: #333;
  z-index: 1;
  text-transform: uppercase;
}

.toggle-text-left {
  color: #666;
}

.toggle-text-right {
  color: #666;
}

.toggle-input:checked + .toggle-slider .toggle-text-left {
  color: #fff;
}

.toggle-input:not(:checked) + .toggle-slider .toggle-text-right {
  color: #fff;
}

/* Responsive adjustments for toggle */
@media (max-width: 768px) {
  
  .toggle-slider:before {
    height: 22px;
    width: 22px;
  }
  
  .toggle-input:checked + .toggle-slider:before {
    transform: translateX(70px);
  }
  
  .toggle-text {
    font-size: 9px;
  }
}
