@import url("https://fonts.googleapis.com/css2?family=DM+Mono:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --poppins: "Poppins", sans-serif;
  --dm-mono: "DM Mono", monospace;
  --theme: #8b2c6f;
  --theme-600: #5c0642;
  --theme-500: #8b2c6f;
  --theme-400: #8b2c6f;
  --theme-300: #8b2c6f;
  --theme-200: #f18fd4;
  --theme-100: #e6f2f0;
  --primary: #8b2c6f;
  --destructive: #d4183d;
  --muted: #ececf0;
  --muted-foreground: #717182;
  --switch-background: #cbced4;
  --login-container: #d4e9e6;
  --accent: #e9ebef;
  --bg: #f3f7f6;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 4rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--poppins);
}

body {
  background: var(--bg);
}

.fs-7 {
  font-size: var(--text-sm);
}

.fs-8 {
  font-size: var(--text-xs);
}

.text-gray {
  color: var(--muted-foreground);
}

.text-theme {
  color: var(--theme);
}

.bg-theme {
  background: var(--theme);
  color: #fff;
}

.btn-theme-outline {
  border: 1px solid var(--theme);
  color: var(--theme);
  background: white;
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  font-size: var(--text-sm);
}

.btn-theme-outline:hover {
  background: var(--theme);
  color: #fff;
}

/* ========== Messages ========== */
.messages {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: 90%;
  max-width: 400px;
  margin: 0;
}

.messages .alert {
  font-size: var(--text-sm);
  border-radius: 12px;
  padding: 14px 40px 14px 16px;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-align: center;
  position: relative;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Alert Success - Pastel Green */
.alert-success,
.messages .success,
.alert-message.success {
  background-color: #d1f2eb;
  border-color: #a7e9d7;
  color: #0a8b6f;
}

/* Alert Error/Danger - Pastel Red */
.alert-error,
.alert-danger,
.messages .error,
.alert-message.error {
  background-color: #ffd6d6;
  border-color: #ffb3b3;
  color: #c62828;
  padding: 10px 20px;
  border-radius: 10px;
}

/* Alert Warning - Pastel Orange */
.alert-warning,
.messages .warning,
.alert-message.warning {
  background-color: #fef3c7;
  border-color: #fde68a;
  color: #d97706;
  padding: 10px 20px;
  border-radius: 10px;
}

/* Alert Info - Pastel Blue */
.alert-info,
.messages .info,
.alert-message.info {
  background-color: #dbeafe;
  border-color: #bfdbfe;
  color: #1e40af;
}

/* Close Button */
.alert .btn-close,
.alert-message .btn-close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  padding: 0.5rem;
  background: transparent;
  border: none;
  opacity: 0.5;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  transition: opacity 0.2s ease;
}

.alert .btn-close:hover,
.alert-message .btn-close:hover {
  opacity: 1;
}

.alert .btn-close:focus,
.alert-message .btn-close:focus {
  outline: none;
  box-shadow: none;
}

.alert .btn-close::before,
.alert-message .btn-close::before {
  content: '×';
  font-size: 1.5rem;
  font-weight: 300;
}

/* Alert Message Container */
#alertContainer {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: 90%;
  max-width: 400px;
}

.alert-message {
  font-size: var(--text-sm);
  border-radius: 12px;
  padding: 14px 40px 14px 16px;
  border: 1px solid transparent;
  margin-bottom: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  position: relative;
  animation: slideDown 0.3s ease-out;
}

/* ========== Auth Container ========== */
.auth-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--bg) 0%, var(--theme-100) 100%);
}

.auth-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== Logo & Title ========== */
.auth-logo {
  text-align: center;
  margin-bottom: 1.5rem;
}

.auth-logo img {
  max-width: 180px;
  height: auto;
}

.auth-title {
  font-size: var(--text-2xl);
  font-weight: 600;
  text-align: center;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.auth-subtitle {
  font-size: var(--text-sm);
  color: var(--muted-foreground);
  text-align: center;
  margin-bottom: 2rem;
}

/* ========== Form Styles ========== */
.auth-form {
  width: 100%;
}

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

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  color: #2d2d2d;
  margin-bottom: 0.5rem;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.75rem;
  font-size: var(--text-sm);
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  outline: none;
  transition: all 0.2s ease;
  background: white;
}

.form-input:focus {
  border-color: var(--theme);
  box-shadow: 0 0 0 3px rgba(139, 44, 111, 0.1);
}

.form-input::placeholder {
  color: #999;
}

.form-input.input-error {
  border-color: var(--destructive);
}

.form-input.input-error:focus {
  box-shadow: 0 0 0 3px rgba(212, 24, 61, 0.1);
}

.input-icon {
  position: absolute;
  left: 1rem;
  color: var(--muted-foreground);
  font-size: var(--text-sm);
  pointer-events: none;
}

.toggle-password {
  position: absolute;
  right: 1rem;
  background: none;
  border: none;
  color: var(--muted-foreground);
  cursor: pointer;
  padding: 0.25rem;
  transition: color 0.2s ease;
}

.toggle-password:hover {
  color: var(--theme);
}

.form-error {
  display: block;
  font-size: var(--text-xs);
  color: var(--destructive);
  margin-top: 0.375rem;
  min-height: 1rem;
}

/* ========== Buttons ========== */
.btn-primary {
  width: 100%;
  padding: 0.875rem 1.5rem;
  font-size: var(--text-sm);
  font-weight: 600;
  color: white;
  background: linear-gradient(90deg, #a855f7 0%, #06b6d4 100%);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(168, 85, 247, 0.25);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-primary:disabled {
  background: var(--muted);
  color: var(--muted-foreground);
  cursor: not-allowed;
  transform: none;
}

/* ========== Links ========== */
.auth-link {
  display: block;
  text-align: center;
  margin-top: 1rem;
  font-size: var(--text-sm);
  color: var(--theme);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.auth-link:hover {
  color: var(--theme-600);
  text-decoration: underline;
}

/* ========== Demo Info ========== */
.demo-info {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--muted);
  text-align: center;
}

.demo-title {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.demo-item {
  font-size: var(--text-sm);
  color: var(--muted-foreground);
  font-family: var(--dm-mono);
  margin: 0.25rem 0;
}

/* ========== Responsive Design ========== */
@media (max-width: 480px) {
  .auth-card {
    padding: 2rem 1.5rem;
  }

  .auth-title {
    font-size: var(--text-xl);
  }

  .form-input {
    padding: 0.625rem 0.875rem 0.625rem 2.5rem;
  }
}

/* ========== Utility Classes ========== */
.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.fw-normal {
  font-weight: 400;
}

.fw-medium {
  font-weight: 500;
}

.fw-semibold {
  font-weight: 600;
}

/* ========== Navbar ========== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-brand img {
  height: 50px;
  width: auto;
}

.nav-toggle {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--theme);
  cursor: pointer;
}

/* ========== Sidebar ========== */
.sidebar {
  position: fixed;
  top: -100vh;
  /* Hidden above viewport */
  left: 0;
  right: 0;
  width: 100%;
  max-height: calc(100vh - 64px);
  /* Account for navbar height */
  background: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: top 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.sidebar.active {
  top: 0px;
  /* Position below navbar */
}

.sidebar-header {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--muted);
}

.sidebar-header img {
  height: 50px;
  width: auto;
}

.sidebar-close {
  background: none;
  border: none;
  font-size: 1.25rem;
  color: var(--muted-foreground);
  cursor: pointer;
}

.sidebar-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  text-decoration: none;
  color: var(--muted-foreground);
  border-radius: 12px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.sidebar-link:hover,
.sidebar-link.active {
  background: linear-gradient(90deg, #a855f7 0%, #06b6d4 100%);
  color: white;
}

.sidebar-link.text-destructive {
  color: var(--destructive);
  margin-top: auto;
}

.sidebar-link.text-destructive:hover {
  background: #fee2e2;
  color: var(--destructive);
}

.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ========== Main Content ========== */
.main-content {
  padding: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* ========== Dashboard Overview ========== */
.dashboard-header {
  margin-bottom: 2rem;
}

.dashboard-title {
  font-size: var(--text-xl);
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.25rem;
}

.dashboard-subtitle {
  font-size: var(--text-sm);
  color: var(--muted-foreground);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.stat-card {
  background: white;
  padding: 1.5rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease;
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin: 0 auto 1rem;
}

.stat-icon.sales {
  background: #dbeafe;
  color: #2563eb;
}

.stat-icon.cards {
  background: #f3e8ff;
  color: #9333ea;
}

.stat-icon.commission {
  background: #ccfbf1;
  color: #0f766e;
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.stat-value {
  font-size: var(--text-xl);
  font-weight: 600;
  color: #1a1a1a;
}

/* ========== Recent Sales List ========== */
.recent-sales-section {
  margin-bottom: 6rem;
}

.recent-sales-card {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.section-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.section-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: 1px solid #e2e8f0;
  color: #0f766e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
}

.section-title {
  font-size: var(--text-lg);
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
}

.section-subtitle {
  font-size: var(--text-xs);
  color: var(--muted-foreground);
  margin: 0;
}

.sales-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sale-item {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #f1f5f9;
}

.sale-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.sale-content {
  width: 100%;
}

.sale-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.sale-badge {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #009688;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: var(--text-sm);
  flex-shrink: 0;
}

.sale-date {
  font-size: var(--text-xs);
  color: var(--muted-foreground);
}

.sale-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.detail-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.detail-row:first-child {
  grid-template-columns: 1fr;
}

.detail-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.detail-label {
  font-size: var(--text-xs);
  color: var(--muted-foreground);
  margin-bottom: 0;
}

.detail-value {
  font-size: var(--text-sm);
  font-weight: 500;
  color: #1a1a1a;
}

.card-number-box {
  background: #f8fafc;
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  margin-top: 0.5rem;
}

.card-label {
  font-size: var(--text-xs);
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
}

.card-value {
  font-size: var(--text-base);
  font-weight: 500;
  color: #1a1a1a;
  font-family: var(--dm-mono);
}

/* ========== Floating Action Button ========== */
.fab-container {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 400px;
  z-index: 90;
}

.btn-fab {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(90deg, #a855f7 0%, #06b6d4 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: var(--text-base);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: 0 10px 25px rgba(168, 85, 247, 0.3);
  cursor: pointer;
  transition: transform 0.2s ease;
  text-decoration: none;
}

.btn-fab:hover {
  transform: translateY(-2px);
}

/* ========== View More Button ========== */
.btn-view-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(90deg, #a855f7 0%, #06b6d4 100%);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(168, 85, 247, 0.2);
}

.btn-view-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(168, 85, 247, 0.3);
}

/* ========== Back to Dashboard Button ========== */
.btn-back-dashboard {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  /* background: white; */
  color: #6b7280;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-back-dashboard:hover {
  /* background: #f9fafb; */
  border-color: #d1d5db;
}

/* ========== Responsive Adjustments ========== */
@media (max-width: 480px) {
  .stats-grid {
    gap: 0.75rem;
  }

  .stat-card {
    padding: 1rem;
  }

  .stat-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .stat-value {
    font-size: var(--text-lg);
  }
}

/* ========== Activation Page Styles ========== */
.activation-page {
  background: linear-gradient(180deg, #f0f9f7 0%, #f5f7fa 100%);
  min-height: 100vh;
  margin: 0;
  padding: 1.5rem;
  /* display: grid;
  place-content: center; */
}

.activation-wrapper {
  max-width: 500px;
  margin: 0 auto;
  padding-block: 20px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  /* border-radius: 2rem; */
}

.activation-header {
  margin-bottom: 24px;
}

.back-link {
  color: #6b7280;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  padding-top: 20px;
}

.back-link:hover {
  color: #374151;
}

/* Step Progress */
.step-progress {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.step-item {
  flex: 1;
}

.step-bar {
  height: 5px;
  background: #e5e7eb;
  border-radius: 10px;
  margin-bottom: 10px;
}

.step-item.active .step-bar,
.step-item.completed .step-bar {
  background: linear-gradient(90deg, #a855f7 0%, #14b8a6 100%);
}

.step-label {
  font-size: 14px;
  color: #9ca3af;
  font-weight: 500;
}

.step-item.active .step-label,
.step-item.completed .step-label {
  color: #a855f7;
}

/* Form Card */
.form-card {
  background: white;
  border-radius: 24px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  flex: 1;
  margin-bottom: 100px;
}

.form-card-title {
  font-size: 15px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 20px;
}

/* Form Groups */
.act-form-group {
  margin-bottom: 20px;
}

.act-form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 8px;
}

.act-form-group .required {
  color: #ef4444;
}

.act-form-group input[type="text"],
.act-form-group input[type="email"],
.act-form-group input[type="tel"],
.act-form-group input[type="number"] {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  font-size: 15px;
  color: #374151;
  background: white;
  outline: none;
  transition: border-color 0.2s;
}

.act-form-group input::placeholder {
  color: #c7cad1;
}

.act-form-group input:focus {
  border-color: #a855f7;
}

/* Phone Input */
.phone-input {
  display: flex;
  gap: 12px;
}

.phone-input .country-code {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 500;
  color: #6b7280;
  min-width: 80px;
}

.phone-input input {
  flex: 1;
}

.phone-input input.is-invalid {
  border-color: #c62828;
}

.phone-input input.is-invalid:focus {
  border-color: #c62828;
}

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

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

/* Customer Summary (Step 2) */
.customer-summary {
  background: #f0f4f8;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 24px;
}

.customer-summary h3 {
  font-size: 16px;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 12px;
}

.customer-summary p {
  font-size: 15px;
  color: #6b7280;
  margin: 8px 0;
}

.customer-summary strong {
  color: #374151;
  font-weight: 500;
}

/* Card Input */
.card-input-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.card-dots {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #d1d5db;
  font-size: 14px;
}

.card-last-digits {
  max-width: 100px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
}

.helper-text {
  font-size: 13px;
  color: #9ca3af;
  margin-top: 10px;
}

/* Info Notice */
.info-notice {
  background: #e0f2fe;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.info-icon {
  color: #0284c7;
  font-size: 18px;
  font-weight: bold;
}

.info-notice p {
  font-size: 14px;
  color: #0369a1;
  margin: 0;
  line-height: 1.5;
}

/* Activation Footer */
.activation-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: transparent;
}

.btn-continue,
.btn-activate {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px;
  background: linear-gradient(90deg, #a855f7 0%, #14b8a6 100%);
  color: white;
  border: none;
  border-radius: 20px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-continue:hover,
.btn-activate:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(168, 85, 247, 0.3);
}

/* ========== Success Page Styles ========== */
.success-page {
  text-align: center;
  padding-top: 60px;
}

.success-icon {
  margin-bottom: 24px;
}

.success-title {
  font-size: 24px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 28px;
}

.success-details {
  background: #f0f4f8;
  border-radius: 20px;
  padding: 24px;
  text-align: left;
  margin-bottom: 24px;
}

.success-details p {
  font-size: 15px;
  color: #6b7280;
  margin: 12px 0;
}

.success-details strong {
  color: #374151;
  font-weight: 500;
}

.commission-amount {
  color: #10b981;
  font-weight: 700;
}

.whatsapp-confirm {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #6b7280;
  font-size: 14px;
  margin-bottom: 32px;
}

.check-icon {
  color: #10b981;
  font-size: 18px;
}

.btn-add-another {
  display: block;
  width: 100%;
  padding: 18px;
  background: linear-gradient(90deg, #a855f7 0%, #14b8a6 100%);
  color: white;
  border: none;
  border-radius: 20px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  margin-bottom: 16px;
}

.btn-add-another:hover {
  box-shadow: 0 10px 25px rgba(168, 85, 247, 0.3);
}

.btn-back-dashboard {
  display: block;
  width: 100%;
  padding: 18px;
  /* background: #f3f4f6; */
  color: #6b7280;
  border: none;
  border-radius: 20px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
}

/* .btn-back-dashboard:hover {
  background: #e5e7eb;
} */

/* ========== Step 2 Card Activation - Exact Design ========== */
.customer-info-card {
  background: linear-gradient(135deg, #f8fafc 0%, #f0f4f8 100%);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 28px;
  border: 1px solid #e8ecf0;
}

.customer-info-title {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 12px;
}

.customer-info-row {
  font-size: 13px;
  color: #6b7280;
  margin: 8px 0;
  line-height: 1.5;
}

.customer-info-row span {
  color: #374151;
}

/* Card Number Section */
.card-number-section {
  margin-bottom: 24px;
}

.card-number-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 14px;
}

.card-number-label .required {
  color: #ef4444;
}

.card-dots-row {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.dots-group {
  display: flex;
  gap: 3px;
}

.dot {
  width: 10px;
  height: 10px;
  background: #d1d5db;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot-separator {
  color: #d1d5db;
  font-size: 14px;
  margin: 0 2px;
  flex-shrink: 0;
}

.card-digits-input {
  width: 80px;
  flex-grow: 1;
  padding: 12px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 2px;
  color: #374151;
  background: white;
  outline: none;
  flex-shrink: 0;
}

.card-digits-input::placeholder {
  color: #c7cad1;
  letter-spacing: 3px;
}

.card-digits-input:focus {
  border-color: #a855f7;
}

.card-helper-text {
  font-size: 12px;
  color: #6b7280;
  margin-top: 10px;
}

/* WhatsApp Info Box */
.whatsapp-info-box {
  background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.info-icon-blue {
  color: #0284c7;
  font-size: 20px;
  font-weight: bold;
  background: white;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.whatsapp-info-box p {
  font-size: 14px;
  color: #0369a1;
  margin: 0;
  line-height: 1.6;
}

/* ========== Success Page - Exact Design ========== */
.success-wrapper {
  max-width: 500px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  margin: 0 auto;
  width: 100%;
  padding: 60px 24px 40px;
  text-align: center;
  /* min-height: 100vh; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 1.5rem;
  background-color: white;
}

.success-check-icon {
  margin-bottom: 28px;
}

.success-heading {
  font-size: 18px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 32px;
}

.success-info-card {
  background: linear-gradient(135deg, #f8fafc 0%, #f0f4f8 100%);
  border-radius: 20px;
  padding: 24px 28px;
  width: 100%;
  text-align: left;
  margin-bottom: 28px;
}

.success-info-row {
  font-size: 15px;
  color: #6b7280;
  margin: 14px 0;
  line-height: 1.5;
}

.success-info-row .info-label {
  color: #6b7280;
}

.success-info-row span:last-child {
  color: #374151;
}

.commission-value {
  color: #10b981 !important;
  font-weight: 700;
}

.whatsapp-success-msg {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 32px;
}

.success-check {
  color: #10b981;
  font-size: 20px;
  margin-bottom: 4px;
}

.whatsapp-success-msg p {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
  text-align: center;
  line-height: 1.5;
}

.btn-another-activation {
  display: block;
  width: 100%;
  padding: 18px;
  background: linear-gradient(90deg, #a855f7 0%, #14b8a6 100%);
  color: white;
  border: none;
  border-radius: 20px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  margin-bottom: 16px;
  transition: box-shadow 0.2s;
}

.btn-another-activation:hover {
  box-shadow: 0 10px 25px rgba(168, 85, 247, 0.3);
}

.btn-back-home {
  display: block;
  width: 100%;
  padding: 18px;
  background: white;
  color: #6b7280;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s;
}

.btn-back-home:hover {
  background: #f9fafb;
}