/* Mobi Configurator Styles */
.mobi-configurator {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
} /* Progress Bar */
.configurator-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.4;
  transition: all 0.3s;
}
.progress-step.active,
.progress-step.completed {
  opacity: 1;
}
.progress-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  color: #666;
  transition: all 0.3s;
}
.progress-step.active .progress-circle {
  background: #000;
  color: #fff;
}
.progress-step.completed .progress-circle {
  background: #4caf50;
  color: #fff;
}
.progress-step.completed .progress-circle::before {
  content: "✓";
}
.progress-line {
  width: 100px;
  height: 2px;
  background: #e0e0e0;
  margin: 0 20px;
}
.progress-step span {
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
} /* Steps */
.configurator-step {
  display: none;
}
.configurator-step.active {
  display: block;
  animation: fadeInUp 0.5s ease;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.step-header {
  text-align: center;
  margin-bottom: 50px;
}
.step-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: #1a1a1a;
}
.step-header p {
  font-size: 18px;
  color: #666;
  margin: 0;
} /* Model Selection Grid */
.models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}
.model-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  cursor: pointer;
  border: 3px solid transparent;
}
.model-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.model-card.selected {
  border-color: #000;
}
.model-image {
  width: 100%;
  height: 250px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.model-price {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.model-info {
  padding: 25px;
}
.model-info h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: #1a1a1a;
}
.model-badge {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 10px;
}
.model-tagline {
  font-size: 14px;
  color: #666;
  margin: 10px 0 20px 0;
  line-height: 1.5;
}
.select-model-btn {
  width: 100%;
  padding: 12px 24px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}
.select-model-btn:hover {
  background: #333;
}
.model-card.selected .select-model-btn {
  background: #4caf50;
} /* Color Selection */
.color-selection {
  max-width: 900px;
  margin: 0 auto 40px;
}
.colors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
.color-option {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  border: 3px solid transparent;
}
.color-option:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.color-option.selected {
  border-color: #000;
  background: #f8f9fa;
}
.color-swatch {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  position: relative;
}
.rim-indicator {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 20px;
  height: 20px;
  background: #1a202c;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.color-name {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  display: block;
} /* Extras Selection */
.extras-container {
  max-width: 1200px;
  margin: 0 auto 40px;
}
.extras-category {
  margin-bottom: 50px;
}
.category-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 25px 0;
  color: #1a1a1a;
  padding-bottom: 15px;
  border-bottom: 2px solid #e0e0e0;
}
.extras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.extra-card {
  transition: all 0.3s;
}
.extra-card.selected {
  transform: translateY(-3px);
}
.extra-checkbox-wrapper {
  position: relative;
}
.extra-checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.extra-card-content {
  display: block;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
  border: 3px solid transparent;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.extra-card-content:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.extra-checkbox:checked + .extra-card-content {
  border-color: #4caf50;
  background: #f1f8f4;
}
.extra-image {
  width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center;
}
.extra-placeholder {
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
}
.extra-details {
  padding: 20px;
}
.extra-details h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: #1a1a1a;
}
.extra-description {
  font-size: 14px;
  color: #666;
  margin: 0 0 12px 0;
  line-height: 1.5;
}
.extra-price {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
}
.extra-checkbox:checked + .extra-card-content .extra-price {
  background: #4caf50;
} /* Review Section */
.review-container {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: start;
}
.review-content {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.review-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e0e0e0;
}
.review-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.review-section h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 20px 0;
  color: #1a1a1a;
}
.review-model-card {
  display: flex;
  gap: 20px;
  align-items: center;
}
.review-model-card img {
  width: 200px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
}
.review-model-details h4 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: #1a1a1a;
}
.review-price {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin: 0;
}
.review-color-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.color-swatch-large {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.review-color-item span {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}
.review-extras-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.review-extra-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: #f8f9fa;
  border-radius: 8px;
}
.extra-name {
  font-size: 16px;
  font-weight: 500;
  color: #333;
}
.review-extra-item .extra-price {
  font-size: 16px;
  font-weight: 700;
  color: #4caf50;
}
.no-extras {
  color: #999;
  font-style: italic;
} /* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}
.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #000;
} /* Price Summary */
.price-summary {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 20px;
}
.price-summary h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 25px 0;
  color: #1a1a1a;
}
.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  font-size: 16px;
  color: #666;
}
.summary-divider {
  height: 1px;
  background: #e0e0e0;
  margin: 15px 0;
}
.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
}
.summary-total span:last-child {
  font-size: 28px;
  color: #4caf50;
} /* Buttons */
.btn-primary,
.btn-secondary {
  padding: 14px 32px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-primary {
  background: #000;
  color: #fff;
  width: 100%;
  margin-bottom: 15px;
}
.btn-primary:hover:not(:disabled) {
  background: #333;
}
.btn-primary:disabled {
  background: #ccc;
  cursor: not-allowed;
}
.btn-secondary {
  background: #fff;
  color: #000;
  border: 2px solid #e0e0e0;
  width: 100%;
}
.btn-secondary:hover {
  background: #f8f9fa;
  border-color: #000;
}
.btn-large {
  padding: 18px 32px;
  font-size: 18px;
}
.step-navigation {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.step-navigation .btn-primary,
.step-navigation .btn-secondary {
  width: auto;
  margin: 0;
  min-width: 150px;
} /* Loading Overlay */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.loading-overlay p {
  color: #fff;
  font-size: 18px;
  margin-top: 20px;
} /* Success Message */
.success-message {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.success-content {
  background: #fff;
  padding: 60px 80px;
  border-radius: 16px;
  text-align: center;
  max-width: 600px;
}
.success-icon {
  color: #4caf50;
  margin-bottom: 20px;
}
.success-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 15px 0;
  color: #1a1a1a;
}
.success-content p {
  font-size: 18px;
  color: #666;
  margin: 0 0 30px 0;
  line-height: 1.6;
} /* Responsive */
@media (max-width: 1024px) {
  .review-container {
    grid-template-columns: 1fr;
  }
  .price-summary {
    position: static;
  }
}
@media (max-width: 768px) {
  .configurator-progress {
    padding: 20px 10px;
  }
  .progress-step span {
    font-size: 12px;
  }
  .progress-circle {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  .progress-line {
    width: 40px;
    margin: 0 10px;
  }
  .step-header h2 {
    font-size: 28px;
  }
  .models-grid,
  .colors-grid,
  .extras-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .review-model-card {
    flex-direction: column;
    text-align: center;
  }
  .review-model-card img {
    width: 100%;
  }
  .step-navigation {
    flex-direction: column;
  }
  .step-navigation .btn-primary,
  .step-navigation .btn-secondary {
    width: 100%;
  }
  .success-content {
    padding: 40px 30px;
  }
}
