/* 
 * Cyberpunk Purchase Modal
 * Enhanced styling for the vehicle purchase modal
 */

.cyberpunk-modal.purchase-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 20, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  /* Initial state - use display property instead of opacity/visibility for better performance */
  display: none;
  backdrop-filter: blur(5px);
}

.cyberpunk-modal.purchase-modal.active {
  /* Use display property instead of opacity/visibility for better performance */
  display: flex;
}

.cyberpunk-modal .modal-content {
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto; /* Allow vertical scrolling - ONLY HERE */
  background: linear-gradient(135deg, rgba(18, 18, 24, 0.95), rgba(26, 26, 37, 0.95));
  border-radius: 8px;
  border: 1px solid rgba(0, 255, 204, 0.3);
  box-shadow: 0 0 30px rgba(0, 255, 204, 0.2), 0 0 60px rgba(0, 0, 0, 0.5);
  position: relative;
  /* Animation removed to reduce CPU usage */
}

/* Animation removed to reduce CPU usage */

.cyberpunk-modal .modal-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 255, 204, 0.05), rgba(108, 99, 255, 0.05));
  pointer-events: none;
}

.cyberpunk-modal .modal-header {
  padding: 20px 25px;
  border-bottom: 1px solid rgba(0, 255, 204, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.cyberpunk-modal .modal-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, 
    rgba(0, 255, 204, 0), 
    rgba(0, 255, 204, 0.5), 
    rgba(0, 255, 204, 0));
}

.cyberpunk-modal .modal-header h2 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.cyberpunk-modal .modal-header .gradient-text {
  background: linear-gradient(90deg, #00ccff, #6c63ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 5px rgba(108, 99, 255, 0.3);
}

.cyberpunk-modal .close-button {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.8rem;
  cursor: pointer;

  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.cyberpunk-modal .close-button:hover {
  color: rgba(255, 62, 157, 0.9);
  background: rgba(255, 62, 157, 0.1);
  transform: rotate(90deg);
}

.cyberpunk-modal .modal-body {
  padding: 25px;
  /* Removed max-height and overflow to prevent multiple scrollbars */
}

/* Purchase Steps */
.purchase-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  position: relative;
  padding: 0 10px;
}

/* Step Content Container */
.step-content-container {
  /* Removed max-height and overflow to prevent multiple scrollbars */
  padding-right: 5px; /* Keep some padding for spacing */
}

.purchase-steps::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 5%;
  width: 90%;
  height: 4px;
  background: linear-gradient(90deg, 
    rgba(108, 99, 255, 0.5), 
    rgba(0, 255, 204, 0.7), 
    rgba(108, 99, 255, 0.5));
  transform: translateY(-50%);
  z-index: 1;
  box-shadow: 0 0 15px rgba(0, 255, 204, 0.4);
  border-radius: 2px;
  animation: pulse-line 2s infinite alternate;
}

@keyframes pulse-line {
  0% {
    box-shadow: 0 0 10px rgba(0, 255, 204, 0.3);
  }
  100% {
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.6);
  }
}

.purchase-steps .step {
  background: rgba(18, 18, 24, 0.9);
  color: rgba(255, 255, 255, 0.6);
  border: 2px solid rgba(108, 99, 255, 0.3);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  font-weight: 600;
  font-family: 'Rajdhani', sans-serif;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  font-size: 1.25rem;
  line-height: 1;
  padding: 0;
  text-align: center;
  transition: all 0.3s ease;
  transform: scale(1);
}

.purchase-steps .step::after {
  content: attr(data-step-name);
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.purchase-steps .step.active {
  background: rgba(0, 255, 204, 0.1);
  color: rgba(0, 255, 204, 0.9);
  border-color: rgba(0, 255, 204, 0.5);
  box-shadow: 0 0 15px rgba(0, 255, 204, 0.4);
  transform: scale(1.1);
  font-weight: 700;
}

.purchase-steps .step.active::after {
  color: rgba(0, 255, 204, 0.9);
  font-weight: 600;
}

.purchase-steps .step.completed {
  background: rgba(0, 255, 204, 0.2);
  color: rgba(0, 255, 204, 1);
  border-color: rgba(0, 255, 204, 0.7);
  box-shadow: 0 0 15px rgba(0, 255, 204, 0.3);
  transform: scale(1.05);
}

.purchase-steps .step.completed::before {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.2rem;
  font-weight: 700;
  text-shadow: 0 0 5px rgba(0, 255, 204, 0.5);
}

.purchase-steps .step.completed::after {
  color: rgba(0, 255, 204, 0.7);
  font-weight: 500;
}

/* Vehicle Summary */
.vehicle-summary {
  display: flex;
  gap: 25px;
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(18, 18, 24, 0.5);
  border-radius: 8px;
  border: 1px solid rgba(108, 99, 255, 0.2);
}

.vehicle-image-container {
  width: 250px;
  height: 180px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(108, 99, 255, 0.3);
  transform: perspective(800px) rotateY(-5deg);

}

.vehicle-image-container:hover {
  transform: perspective(800px) rotateY(0deg) translateZ(10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 255, 204, 0.3);
  border-color: rgba(0, 255, 204, 0.5);
}

.vehicle-image {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transform: scale(1.05);
}

.vehicle-image-container:hover .vehicle-image {
  transform: scale(1.15);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 255, 204, 0.1), rgba(108, 99, 255, 0.1));
  pointer-events: none;
  z-index: 1;
}

.vehicle-image-container:hover .image-overlay {
  background: linear-gradient(135deg, rgba(0, 255, 204, 0.2), rgba(108, 99, 255, 0.2));
}

.vehicle-details {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.vehicle-details h3 {
  margin: 0 0 10px 0;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
}

.vehicle-price {
  font-size: 2.2rem;
  font-weight: 700;
  color: rgba(0, 255, 204, 1);
  margin-bottom: 15px;
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(0, 255, 204, 0.5);
  position: relative;
  display: inline-block;
  padding: 5px 15px;
  background: linear-gradient(90deg, rgba(0, 255, 204, 0.1), rgba(0, 0, 0, 0));
  border-left: 3px solid rgba(0, 255, 204, 0.5);
  border-radius: 3px;
}

.vehicle-price::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 255, 204, 0.1), rgba(0, 0, 0, 0));
  z-index: -1;
  opacity: 0.4;
}

.vehicle-specs {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.vehicle-specs .spec {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  background: rgba(18, 18, 24, 0.7);
  padding: 5px 10px;
  border-radius: 4px;
  border: 1px solid rgba(108, 99, 255, 0.2);
}

.vehicle-specs .spec i {
  color: rgba(108, 99, 255, 0.9);
  font-size: 1rem;
}

.vehicle-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid rgba(108, 99, 255, 0.2);
}

/* Payment Options */
.payment-options {
  margin-bottom: 30px;
}

.payment-options h4 {
  margin: 0 0 15px 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
}

.payment-option {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding: 15px;
  border-radius: 8px;
  background: rgba(30, 30, 45, 0.5);
  border: 1px solid rgba(108, 99, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.payment-option:hover {
  border-color: rgba(0, 255, 204, 0.4);
  box-shadow: 0 0 15px rgba(0, 255, 204, 0.2);
  transform: translateY(-2px);
}

.payment-option.active {
  border-color: rgba(0, 255, 204, 0.7);
  box-shadow: 0 0 20px rgba(0, 255, 204, 0.3);
  background: rgba(0, 255, 204, 0.05);
}

.payment-option.active label {
  color: rgba(0, 255, 204, 0.9);
}

.cyber-indicator {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(108, 99, 255, 0.3);
  margin-left: auto;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 0 5px rgba(108, 99, 255, 0.2);
}

.cyber-indicator::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(108, 99, 255, 0.5);
  transition: all 0.3s ease;
}

.payment-option:hover .cyber-indicator {
  background: rgba(0, 255, 204, 0.3);
  box-shadow: 0 0 8px rgba(0, 255, 204, 0.3);
}

.payment-option:hover .cyber-indicator::before {
  background: rgba(0, 255, 204, 0.5);
}

.payment-option.active .cyber-indicator {
  background: rgba(0, 255, 204, 0.7);
  box-shadow: 0 0 10px rgba(0, 255, 204, 0.5);
}

.payment-option.active .cyber-indicator::before {
  background: rgba(0, 255, 204, 1);
  width: 10px;
  height: 10px;
  box-shadow: 0 0 8px rgba(0, 255, 204, 0.8);
}

.payment-option input[type="radio"] {
  margin-right: 15px;
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(108, 99, 255, 0.5);
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}

.payment-option input[type="radio"]:checked {
  border-color: rgba(0, 255, 204, 0.7);
}

.payment-option input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: rgba(0, 255, 204, 0.9);
  border-radius: 50%;
}

.payment-option label {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-grow: 1;
  cursor: pointer;
}

.payment-option i {
  font-size: 1.5rem;
  width: 30px;
  text-align: center;
}

.payment-option .payment-name {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.payment-option .payment-description {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-left: 5px;
}

/* Payment Details */
.payment-details {
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(18, 18, 24, 0.5);
  border-radius: 8px;
  border: 1px solid rgba(108, 99, 255, 0.2);
}

.payment-details h4 {
  margin: 0 0 15px 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  background: rgba(10, 10, 20, 0.7);
  border: 1px solid rgba(108, 99, 255, 0.3);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;

}

.form-group input:focus,
.form-group select:focus {
  border-color: rgba(0, 255, 204, 0.5);
  outline: none;
  box-shadow: 0 0 10px rgba(0, 255, 204, 0.2);
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-row .form-group {
  flex: 1;
}

/* Delivery Options */
.delivery-options {
  margin-bottom: 30px;
}

.delivery-option {
  margin-bottom: 15px;
  padding: 15px;
  background: rgba(18, 18, 24, 0.5);
  border-radius: 8px;
  border: 1px solid rgba(108, 99, 255, 0.2);

  cursor: pointer;
}

.delivery-option:hover {
  background: rgba(18, 18, 24, 0.7);
  border-color: rgba(108, 99, 255, 0.4);
}

.delivery-option.selected {
  background: rgba(0, 255, 204, 0.1);
  border-color: rgba(0, 255, 204, 0.4);
}

.delivery-option-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.delivery-option input[type="radio"] {
  margin-right: 10px;
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(108, 99, 255, 0.5);
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}

.delivery-option input[type="radio"]:checked {
  border-color: rgba(0, 255, 204, 0.7);
}

.delivery-option input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: rgba(0, 255, 204, 0.9);
  border-radius: 50%;
}

.delivery-option-info {
  flex-grow: 1;
}

.delivery-option-name {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 5px;
}

.delivery-option-description {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.delivery-option-price {
  font-weight: 600;
  color: rgba(0, 255, 204, 0.9);
}

/* Order Summary */
.order-summary {
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(18, 18, 24, 0.5);
  border-radius: 8px;
  border: 1px solid rgba(108, 99, 255, 0.2);
}

.order-summary h4 {
  margin: 0 0 15px 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(108, 99, 255, 0.1);
}

.summary-item:last-child {
  border-bottom: none;
}

.summary-item-label {
  color: rgba(255, 255, 255, 0.7);
}

.summary-item-value {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.summary-total {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(0, 255, 204, 0.3);
}

.summary-total-label {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

.summary-total-value {
  font-weight: 700;
  color: rgba(0, 255, 204, 0.9);
  font-size: 1.1rem;
}

/* Modal Footer */
.modal-footer {
  padding: 20px 25px;
  border-top: 1px solid rgba(0, 255, 204, 0.2);
  display: flex;
  justify-content: space-between;
  position: relative;
}

.modal-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, 
    rgba(0, 255, 204, 0), 
    rgba(0, 255, 204, 0.5), 
    rgba(0, 255, 204, 0));
}

.btn-back {
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;

}

.btn-back:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-next,
.btn-complete {
  padding: 10px 25px;
  background: linear-gradient(135deg, rgba(0, 255, 204, 0.1), rgba(0, 255, 204, 0.05));
  border: 1px solid rgba(0, 255, 204, 0.3);
  border-radius: 4px;
  color: rgba(0, 255, 204, 0.9);
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;

  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-next:hover,
.btn-complete:hover {
  background: linear-gradient(135deg, rgba(0, 255, 204, 0.2), rgba(0, 255, 204, 0.1));
  box-shadow: 0 0 15px rgba(0, 255, 204, 0.2);
  transform: translateY(-2px);
}

.btn-complete {
  background: linear-gradient(135deg, rgba(0, 255, 204, 0.2), rgba(0, 255, 204, 0.1));
}

/* Step Content */
.step-content {
  display: none;
}

.step-content.active {
  display: block;
}

/* Blockchain Verification Form */
.blockchain-verification-form {
  width: 100%;
  margin-top: 20px;
  background: rgba(20, 20, 40, 0.8);
  border: 1px solid rgba(108, 99, 255, 0.5);
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.blockchain-verification-form h3.section-title {
  color: rgba(0, 255, 204, 0.9);
  font-size: 1.4rem;
  margin-bottom: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(0, 255, 204, 0.3);
  padding-bottom: 10px;
}

.blockchain-verification-form h4 {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin: 15px 0 10px;
  font-weight: 500;
}

/* Blockchain Network Options */
.blockchain-network-options {
  margin-bottom: 25px;
}

.network-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 15px;
}

.blockchain-network-option {
  display: flex;
  align-items: flex-start;
  background: rgba(30, 30, 50, 0.6);
  border: 1px solid rgba(108, 99, 255, 0.3);
  border-radius: 5px;
  padding: 15px;
  cursor: pointer;

  position: relative;
}

.blockchain-network-option:hover {
  background: rgba(40, 40, 60, 0.8);
  border-color: rgba(0, 255, 204, 0.4);
  transform: translateY(-2px);
}

.blockchain-network-option input[type="radio"] {
  position: absolute;
  /* Use appearance instead of opacity for better performance */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 0;
  height: 0;
}

.blockchain-network-option input[type="radio"]:checked + .network-icon + .network-content,
.blockchain-network-option input[type="radio"]:checked + .network-icon {
  color: rgba(0, 255, 204, 0.9);
}

.blockchain-network-option input[type="radio"]:checked ~ * {
  color: rgba(255, 255, 255, 0.9);
}

.blockchain-network-option input[type="radio"]:checked + .network-icon {
  background: rgba(0, 255, 204, 0.15);
  border-color: rgba(0, 255, 204, 0.5);
  box-shadow: 0 0 10px rgba(0, 255, 204, 0.3);
}

.network-icon {
  width: 40px;
  height: 40px;
  background: rgba(50, 50, 70, 0.5);
  border: 1px solid rgba(108, 99, 255, 0.3);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;

  flex-shrink: 0;
}

.network-icon i {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);

}

.network-content {
  flex: 1;
}

.network-name {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.9);
}

.network-description {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}

/* Verification Levels */
.verification-levels {
  margin-bottom: 25px;
}

.verification-level {
  display: block;
  background: rgba(30, 30, 50, 0.6);
  border: 1px solid rgba(108, 99, 255, 0.3);
  border-radius: 5px;
  padding: 15px;
  margin-bottom: 15px;
  cursor: pointer;

  position: relative;
}

.verification-level:hover {
  background: rgba(40, 40, 60, 0.8);
  border-color: rgba(0, 255, 204, 0.4);
  transform: translateY(-2px);
}

.verification-level input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.verification-level input[type="radio"]:checked ~ * {
  color: rgba(255, 255, 255, 0.9);
}

.verification-level input[type="radio"]:checked ~ .verification-header .verification-title {
  color: rgba(0, 255, 204, 0.9);
}

.verification-level input[type="radio"]:checked ~ .verification-header .verification-cost {
  background: rgba(0, 255, 204, 0.15);
  border-color: rgba(0, 255, 204, 0.5);
}

.verification-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.verification-title {
  font-weight: 600;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);

}

.verification-cost {
  background: rgba(50, 50, 70, 0.5);
  border: 1px solid rgba(108, 99, 255, 0.3);
  border-radius: 4px;
  padding: 3px 8px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);

}

.verification-description {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

/* Verification Buttons */
.verification-buttons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.verification-buttons .btn {
  flex: 1;
  padding: 12px 20px;
  text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .cyberpunk-modal .modal-content {
    width: 95%;
    max-height: 85vh;
  }
  
  .vehicle-summary {
    flex-direction: column;
  }
  
  .vehicle-image-container {
    width: 100%;
    height: 200px;
  }
  
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  
  .purchase-steps .step {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    line-height: 1;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .purchase-steps .step::after {
    display: none;
  }
  
  .modal-footer {
    flex-direction: column;
    gap: 15px;
  }
  
  .btn-back, .btn-next, .btn-complete {
    width: 100%;
    justify-content: center;
  }
  
  .network-options {
    grid-template-columns: 1fr;
  }
  
  .verification-buttons {
    flex-direction: column;
  }
  
  .blockchain-network-option {
    padding: 12px;
  }
  
  .network-icon {
    width: 35px;
    height: 35px;
  }
}
