/* CUSTOMER-MODAL.CSS - Customer modal component styles */

/* ===== CUSTOMER MODAL STYLES ===== */
/* Modal backdrop */
.customer-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
  box-sizing: border-box;
}

/* Modal container */
.customer-modal {
  background: white;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Modal header */
.customer-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 1.5rem 1rem;
}

.customer-modal-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
}

.customer-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #6b7280;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.customer-modal-close:hover {
  background: #f3f4f6;
  color: #374151;
}

/* Multi-step specific styles */
.customer-modal-step {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* ===== INTRO STEP (Trin 0) ===== */
.intro-step {
  padding: 0.5rem 0 0.25rem;
}

.intro-step__lead {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
}

.intro-step__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.intro-step__card {
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  padding: 1rem 1.25rem;
  background: #f8fafc;
}

.intro-step__card--muted {
  background: #f3f4f6;
  border-color: #e5e7eb;
}

.intro-step__card-icon {
  color: #0f7a40;
  margin-bottom: 0.5rem;
}

.intro-step__card--muted .intro-step__card-icon {
  color: #6b7280;
}

.intro-step__card-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 0.4rem 0;
}

.intro-step__card-text {
  font-size: 0.8125rem;
  color: #6b7280;
  line-height: 1.55;
  margin: 0;
}

.intro-step__note {
  font-size: 0.875rem;
  color: #0f7a40;
  background: #f0fdf4;
  border: 1px solid rgba(15,122,64,0.2);
  border-radius: 0.4rem;
  padding: 0.65rem 0.9rem;
  margin-bottom: 1rem;
}

.intro-step__skip-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: #6b7280;
  cursor: pointer;
  user-select: none;
}

.intro-step__skip-label input[type="checkbox"] {
  accent-color: #0f7a40;
  width: 1rem;
  height: 1rem;
  cursor: pointer;
}

@media (max-width: 540px) {
  .intro-step__cards {
    grid-template-columns: 1fr;
  }
}

.domain-type-selection {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.domain-type-options {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin-bottom: 0;
}

.domain-type-option {
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  padding: 1rem 1.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #ffffff;
  text-align: center;
}

.domain-type-option:hover {
  border-color: #007acc;
  background: #f8fafc;
}

.domain-type-option.selected {
  border-color: #007acc;
  background: #f0f9ff;
  box-shadow: 0 0 0 1px rgba(0, 122, 204, 0.1);
}

.domain-type-option h3 {
  margin: 0 0 0.5rem 0;
  color: #1f2937;
  font-size: 1rem;
  font-weight: 600;
}

.domain-type-option p {
  margin: 0;
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.4;
}

.domain-type-option.disabled {
  background: #f3f4f6;
  color: #9ca3af;
  cursor: not-allowed;
  opacity: 0.6;
}

.domain-type-option.disabled:hover {
  border-color: #e5e7eb;
  background: #f3f4f6;
}

.domain-example-text {
  margin: 0.25rem 0 0 0;
  text-align: center;
  font-size: 1rem;
}

.example-label {
  font-size: 0.9rem;
  color: #111827;
  font-weight: 700;
}

.example-text {
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
  color: #111827;
  font-weight: 700;
}

.domain-input-section {
  margin-top: 1rem;
  padding: 1.5rem;
  background: #f7fafc;
  border-radius: 0.5rem;
  border: 1px solid #e2e8f0;
}

.input-with-button {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
}

.input-with-button input {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

.input-with-button input:focus {
  outline: none;
  border-color: #007acc;
  box-shadow: 0 0 0 3px rgba(0, 122, 204, 0.1);
}

.input-with-button input:disabled {
  background-color: #f3f4f6;
  color: #9ca3af;
  cursor: not-allowed;
  border-color: #e5e7eb;
}

.test-button {
  padding: 0.75rem 1rem;
  background: #007acc;
  color: white;
  border: none;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
  white-space: nowrap;
}

.test-button:hover:not(:disabled) {
  background: #005c99;
}

.test-button:disabled {
  background: #9ca3af;
  cursor: not-allowed;
}

.test-button.success {
  background: #008c3c;
}

.test-button.success:hover:not(:disabled) {
  background: #16a34a;
}

.test-button.error {
  background: #ef4444;
}

.test-button.error:hover:not(:disabled) {
  background: #dc2626;
}

.test-result {
  margin-top: 0.75rem;
  padding: 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.test-result.success {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.test-result.error {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
}

/* Payment step styles */
.payment-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.payment-summary {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  padding: 1.5rem;
}

.payment-summary h3 {
  margin: 0 0 1rem 0;
  color: #1a202c;
  font-size: 1.125rem;
  font-weight: 600;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0 0 0;
  font-weight: 600;
  font-size: 1.125rem;
  color: #1a202c;
}

.price, .total-price {
  font-weight: 600;
  color: #007acc;
}

.payment-methods {
  margin-top: 1.5rem;
}

.payment-methods h3 {
  margin: 0 0 1rem 0;
  color: #1a202c;
  font-size: 1.125rem;
  font-weight: 600;
}

.payment-options {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  margin-bottom: 1.5rem;
}

.payment-option {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #ffffff;
}

.payment-option:hover {
  border-color: #007acc;
  background: #f8fafc;
}

.payment-option.selected {
  border-color: #007acc;
  background: #f0f9ff;
  box-shadow: 0 0 0 1px rgba(0, 122, 204, 0.1);
}

.payment-icon {
  font-size: 1.25rem;
}

.payment-option span:not(.payment-icon) {
  font-weight: 500;
  color: #1f2937;
  font-size: 0.875rem;
}

.payment-option.disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

/* Required field validation error state */
.customer-modal .form-group input.field-error,
.customer-modal .form-group select.field-error {
  border-color: #ef4444 !important;
  background-color: #fef2f2 !important;
}
.customer-modal .form-group input.field-error:focus,
.customer-modal .form-group select.field-error:focus {
  border-color: #ef4444 !important;
  outline: none;
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2);
}

/* MFA method selection cards */
.mfa-method-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.mfa-method-option {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  padding: 0.875rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #ffffff;
}
.mfa-method-option:hover { border-color: #007acc; background: #f8fafc; }
.mfa-method-option.selected { border-color: #007acc; background: #f0f9ff; box-shadow: 0 0 0 1px rgba(0,122,204,0.15); }
.mfa-method-option strong { font-size: 0.875rem; color: #1f2937; font-weight: 600; }
.mfa-method-option span { font-size: 0.75rem; color: #6b7280; }

/* SMS verification section */
.sms-flow { margin-top: 0.75rem; }
.sms-flow .form-row { display: flex; gap: 0.5rem; align-items: flex-end; }
.sms-flow input[type="tel"] {
  flex: 1;
  padding: 0.5rem 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  transition: border-color 0.2s;
}
.sms-flow input[type="tel"]:focus { border-color: #007acc; outline: none; }
.sms-verify-row { display: flex; gap: 0.5rem; align-items: flex-end; margin-top: 0.75rem; }
.sms-verify-row input[type="text"] {
  flex: 1;
  padding: 0.5rem 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  transition: border-color 0.2s;
}
.sms-verify-row input[type="text"]:focus { border-color: #007acc; outline: none; }
.btn-sms {
  background-color: #0284c7;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.btn-sms:hover:not(:disabled) { background-color: #0369a1; }
.btn-sms:disabled { background-color: #a0aec0; cursor: not-allowed; }
.btn-sms.success { background-color: #008c3c; }
.sms-sent-note { font-size: 0.8rem; color: #059669; margin-top: 0.5rem; }

/* Password and OTP Styling */
.form-group input.error {
  border-color: #e53e3e;
  box-shadow: 0 0 0 1px #e53e3e;
}

.error-message {
  color: #e53e3e;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  padding: 0.5rem;
  background-color: #fed7d7;
  border-radius: 0.375rem;
  border: 1px solid #e53e3e;
}

.password-section {
  margin: 1.5rem 0;
  padding: 1.5rem;
  background-color: #f0f9ff;
  border-radius: 0.5rem;
  border: 1px solid #bae6fd;
}

.password-section h4 {
  margin: 0 0 0.5rem 0;
  color: #0c4a6e;
  font-size: 1rem;
  font-weight: 600;
}

.password-section p {
  margin: 0 0 1rem 0;
  color: #0369a1;
  font-size: 0.875rem;
}

.btn-generate-password {
  background-color: #0284c7;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  width: 100%;
  max-width: 150px;
}

.btn-generate-password:hover:not(:disabled) {
  background-color: #0369a1;
  transform: translateY(-1px);
}

.btn-generate-password:disabled {
  background-color: #a0aec0;
  cursor: not-allowed;
  transform: none;
}

.btn-generate-password.success {
  background-color: #008c3c;
}

.btn-generate-password.success:hover:not(:disabled) {
  background-color: #16a34a;
}

.password-generation-area {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  min-height: 3rem;
}

.password-value {
  font-family: 'Courier New', monospace;
  font-size: 1rem;
  font-weight: 600;
  color: #1a202c;
  background-color: #f7fafc;
  padding: 0.75rem;
  border-radius: 0.25rem;
  border: 1px solid #e2e8f0;
  word-break: break-all;
  margin-top: 0;
  margin-left: 0;
  display: inline-block;
  max-width: fit-content;
}

.password-note {
  margin: 0.5rem 0 0 0;
  color: #718096;
  font-size: 0.75rem;
  font-style: italic;
}

.requirement-message {
  margin: 0.5rem 0;
  padding: 0.75rem;
  background-color: #fef3c7;
  border: 1px solid #f59e0b;
  border-radius: 0.375rem;
}

.requirement-message p {
  margin: 0;
  color: #92400e;
  font-size: 0.875rem;
  font-weight: 500;
}

.next-step-requirement {
  margin: 0.5rem 0;
  padding: 0.75rem;
  background-color: #fef2f2;
  border: 1px solid #f87171;
  border-radius: 0.375rem;
  text-align: center;
}

.next-step-requirement p {
  margin: 0;
  color: #dc2626;
  font-size: 0.875rem;
  font-weight: 500;
}

.btn-submit:disabled {
  background-color: #d1d5db;
  color: #9ca3af;
  cursor: not-allowed;
  opacity: 0.6;
}

.btn-submit:disabled:hover {
  background-color: #d1d5db;
  transform: none;
}

.otp-section {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background-color: #f7fafc;
  border-radius: 0.5rem;
  border: 1px solid #e2e8f0;
}

.otp-section h4 {
  margin: 0 0 1rem 0;
  color: #2d3748;
  font-size: 1rem;
  font-weight: 600;
}

.btn-otp {
  background-color: #3182ce;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  width: 100%;
  max-width: 200px;
}

.btn-otp:hover:not(:disabled) {
  background-color: #2c5282;
  transform: translateY(-1px);
}

.btn-otp:disabled {
  background-color: #a0aec0;
  cursor: not-allowed;
  transform: none;
}

.btn-otp.success {
  background-color: #008c3c;
}

.btn-otp.success:hover:not(:disabled) {
  background-color: #16a34a;
}

.qr-container {
  margin-top: 1rem;
  text-align: center;
}

.qr-display {
  display: inline-block;
  padding: 1rem;
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.qr-image {
  max-width: 200px;
  height: auto;
  border-radius: 0.25rem;
  display: block;
  margin: 0 auto;
}

.qr-instructions {
  margin: 1rem 0 0 0;
  color: #4a5568;
  font-size: 0.875rem;
  text-align: center;
  max-width: 300px;
  line-height: 1.4;
}

.qr-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.loading-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid #e2e8f0;
  border-top: 3px solid #3182ce;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 0.5rem;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.qr-placeholder p {
  margin: 0;
  color: #718096;
  font-size: 0.875rem;
}

/* OTP backup codes box */
.otp-backup-box {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: 0.5rem;
  font-size: 0.85rem;
}
.otp-backup-box p { margin: 0 0 0.4rem 0; }
.otp-backup-list { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 0.4rem; }
.otp-backup-list div { font-family: monospace; background: #fff; border: 1px solid #86efac; border-radius: 0.25rem; padding: 0.15rem 0.4rem; font-size: 0.8rem; }
.otp-backup-note { color: #166534; font-size: 0.78rem !important; margin: 0 !important; }

/* Completion step styles */
.completion-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

.completion-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.success-icon {
  font-size: 3rem;
}

.completion-header h3 {
  margin: 0;
  color: #16a34a;
  font-size: 1.5rem;
  font-weight: 600;
}

.completion-header p {
  margin: 0;
  color: #4a5568;
  font-size: 1rem;
}

.login-credentials {
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: left;
}

.login-credentials h4 {
  margin: 0 0 1.5rem 0;
  color: #1a202c;
  font-size: 1.125rem;
  font-weight: 600;
}

.credential-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #bae6fd;
}

.credential-item:last-of-type {
  border-bottom: none;
}

.credential-item label {
  font-weight: 500;
  color: #374151;
}

.credential-value {
  font-family: 'Courier New', monospace;
  font-weight: 600;
  color: #1e40af;
  background: white;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  border: 1px solid #bae6fd;
}

.credential-note {
  margin-top: 1rem;
  padding: 1rem;
  background: #fef3c7;
  border: 1px solid #fbbf24;
  border-radius: 0.375rem;
}

.credential-note p {
  margin: 0;
  color: #92400e;
  font-size: 0.875rem;
  font-weight: 500;
}

.customer-modal-form,
.customer-modal-step {
  padding: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #374151;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 1rem;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* CVR / Address lookup widgets */
.lookup-group {
  position: static;
}

.lookup-wrapper {
  position: relative;
}

.lookup-wrapper input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 1rem;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.lookup-wrapper input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.lookup-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-top: none;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  max-height: 220px;
  overflow-y: auto;
  z-index: 200;
}

.lookup-item {
  padding: 0.6rem 0.85rem;
  cursor: pointer;
  border-bottom: 1px solid #f3f4f6;
  font-size: 0.9rem;
  color: #111827;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.lookup-item:hover {
  background: #eff6ff;
}

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

.lookup-item .cvr-num {
  color: #6b7280;
  font-size: 0.8rem;
  font-weight: 400;
}

.lookup-item.no-result {
  color: #9ca3af;
  font-style: italic;
  cursor: default;
}

.lookup-item.no-result:hover {
  background: none;
}

.lookup-item-manual {
  background: #f8fafc;
  border-bottom: 1px solid #e5e7eb !important;
  align-items: center !important;
  gap: 0.5rem;
}
.lookup-item-manual:hover { background: #e0f2fe !important; }
.lookup-item-manual strong { color: #0369a1; font-size: 0.875rem; }
.cvr-manual-icon { font-size: 1rem; color: #0369a1; flex-shrink: 0; }
.cvr-manual-hint { color: #6b7280; font-size: 0.75rem; margin-left: auto; white-space: nowrap; }

.selected-tag {
  margin-top: 0.45rem;
  padding: 0.35rem 0.75rem;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 4px;
  font-size: 0.85rem;
  color: #1d4ed8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Action buttons */
.customer-modal-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}

.btn-cancel,
.btn-submit {
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.btn-cancel {
  background: #f3f4f6;
  color: #374151;
}

.btn-cancel:hover {
  background: #e5e7eb;
}

.btn-submit {
  background: #3b82f6;
  color: white;
}

.btn-submit:hover {
  background: #2563eb;
}

/* Collapsible Sections Styling */
.collapsible-sections {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.section-container {
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: all 0.2s ease;
}

.section-header {
  padding: 1rem;
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.2s ease;
}

.section-header:hover:not(.disabled) {
  background: #f3f4f6;
}

.section-header.active {
  background: #eff6ff;
  border-bottom-color: #3b82f6;
}

.section-header.disabled {
  background: #f3f4f6;
  color: #9ca3af;
  cursor: not-allowed;
}

.section-header.ready {
  background: #bfdbfe;
  border: 2px solid #2563eb;
  color: #1d4ed8;
  box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.3);
  transform: translateY(-1px);
  transition: all 0.2s ease;
}

.section-header h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.section-status {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  font-size: 0.875rem;
  font-weight: bold;
  color: #10b981;
}

.section-status.incomplete {
  color: #ef4444;
}

.section-status.invalid {
  color: #ef4444;
}

.section-content {
  padding: 1.5rem;
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
  to {
    opacity: 1;
    max-height: 1000px;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}

/* Responsive design */
@media (min-width: 768px) {
  .domain-type-options {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .input-with-button {
    max-width: 400px;
  }
  
  .payment-options {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .payment-options {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 640px) {
  .customer-modal-backdrop {
    padding: 0.5rem;
  }
  
  .customer-modal {
    max-height: 95vh;
  }
  
  .customer-modal-header {
    padding: 1rem 1rem 0.75rem;
  }
  
  .customer-modal-form {
    padding: 1rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .customer-modal-title {
    font-size: 1.25rem;
  }
}