:root {
  /* Colors - Light Mode Only */
  --color-primary: #FFC837;
  --color-primary-dark: #E6B200;
  --color-primary-light: #FFF4D6;
  
  --color-success: #34a853;
  --color-success-light: #e6f4ea;
  
  --color-warning: #fbbc04;
  --color-warning-light: #fef7e0;
  
  --color-error: #ea4335;
  --color-error-light: #fce8e6;
  
  --color-text-primary: #000000;
  --color-text-secondary: #666666;
  --color-text-tertiary: #999999;
  --color-text-inverse: #ffffff;
  
  --color-bg-primary: #ffffff;
  --color-bg-secondary: #f5f5f5;
  --color-bg-tertiary: #eeeeee;
  
  --color-border: #e0e0e0;
  --color-border-light: #f0f0f0;
  
  --color-accent: #ff6b00;
  --color-accent-light: #fff4ed;
  
  /* Spacing */
  --spacing-xs: 0.25rem;   /* 4px */
  --spacing-sm: 0.5rem;    /* 8px */
  --spacing-md: 1rem;      /* 16px */
  --spacing-lg: 1.5rem;    /* 24px */
  --spacing-xl: 2rem;      /* 32px */
  --spacing-2xl: 3rem;     /* 48px */
  
  /* Border Radius */
  --radius-sm: 0.25rem;    /* 4px */
  --radius-md: 0.5rem;     /* 8px */
  --radius-lg: 0.75rem;    /* 12px */
  --radius-xl: 1rem;       /* 16px */
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  
  /* Typography */
  --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  
  /* Z-index */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
  
  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Breakpoints (for reference in JS) */
  --breakpoint-sm: 640px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --breakpoint-xl: 1280px;
}
/* Typography System */
.text-xs {
  font-size: 0.75rem;    /* 12px */
  line-height: 1rem;     /* 16px */
}
.text-sm {
  font-size: 0.875rem;   /* 14px */
  line-height: 1.25rem;  /* 20px */
}
.text-base {
  font-size: 1rem;       /* 16px */
  line-height: 1.5rem;   /* 24px */
}
.text-lg {
  font-size: 1.125rem;   /* 18px */
  line-height: 1.75rem;  /* 28px */
}
.text-xl {
  font-size: 1.25rem;    /* 20px */
  line-height: 1.75rem;  /* 28px */
}
.text-2xl {
  font-size: 1.5rem;     /* 24px */
  line-height: 2rem;     /* 32px */
}
.text-3xl {
  font-size: 1.875rem;   /* 30px */
  line-height: 2.25rem;  /* 36px */
}
/* Font Weights */
.font-normal {
  font-weight: 400;
}
.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.font-bold {
  font-weight: 700;
}
/* Text Colors */
.text-primary {
  color: var(--color-text-primary);
}
.text-secondary {
  color: var(--color-text-secondary);
}
.text-tertiary {
  color: var(--color-text-tertiary);
}
.text-inverse {
  color: var(--color-text-inverse);
}
.text-error {
  color: var(--color-error);
}
.text-success {
  color: var(--color-success);
}
/* Headings */
h1, .h1 {
  font-size: 1.875rem;   /* 30px */
  line-height: 2.25rem;
  font-weight: 700;
  color: var(--color-text-primary);
}
h2, .h2 {
  font-size: 1.5rem;     /* 24px */
  line-height: 2rem;
  font-weight: 600;
  color: var(--color-text-primary);
}
h3, .h3 {
  font-size: 1.25rem;    /* 20px */
  line-height: 1.75rem;
  font-weight: 600;
  color: var(--color-text-primary);
}
h4, .h4 {
  font-size: 1.125rem;   /* 18px */
  line-height: 1.75rem;
  font-weight: 600;
  color: var(--color-text-primary);
}
/* Utility Classes */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.uppercase {
  text-transform: uppercase;
}
.capitalize {
  text-transform: capitalize;
}
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* Reset & Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  /* iOS viewport fix */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
body {
  font-family: var(--font-family);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-text-primary);
  background-color: var(--color-bg-primary);
  overflow-x: hidden;
  display: flex;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow-y: hidden;
}
#root {
  min-height: 100vh;
  width: 100%;
  max-width: 480px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
/* Links */
a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover {
  color: var(--color-primary-dark);
}
/* Images */
img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}
/* Buttons */
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
/* Form Elements */
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}
/* Scrollbar Styling (Webkit) */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg-secondary);
}
::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-text-tertiary);
}
/* Utility Classes */
.container {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}
.flex {
  display: flex;
}
.flex-col {
  display: flex;
  flex-direction: column;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-xs { gap: var(--spacing-xs); }
.gap-sm { gap: var(--spacing-sm); }
.gap-md { gap: var(--spacing-md); }
.gap-lg { gap: var(--spacing-lg); }
.gap-xl { gap: var(--spacing-xl); }
/* Spacing Utilities */
.mt-xs { margin-top: var(--spacing-xs); }
.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mt-xl { margin-top: var(--spacing-xl); }
.mb-xs { margin-bottom: var(--spacing-xs); }
.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mb-xl { margin-bottom: var(--spacing-xl); }
.pt-xs { padding-top: var(--spacing-xs); }
.pt-sm { padding-top: var(--spacing-sm); }
.pt-md { padding-top: var(--spacing-md); }
.pt-lg { padding-top: var(--spacing-lg); }
.pt-xl { padding-top: var(--spacing-xl); }
.pb-xs { padding-bottom: var(--spacing-xs); }
.pb-sm { padding-bottom: var(--spacing-sm); }
.pb-md { padding-bottom: var(--spacing-md); }
.pb-lg { padding-bottom: var(--spacing-lg); }
.pb-xl { padding-bottom: var(--spacing-xl); }
.p-xs { padding: var(--spacing-xs); }
.p-sm { padding: var(--spacing-sm); }
.p-md { padding: var(--spacing-md); }
.p-lg { padding: var(--spacing-lg); }
.p-xl { padding: var(--spacing-xl); }
/* Border Radius */
.rounded-sm { border-radius: var(--radius-sm); }
.rounded-md { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-full { border-radius: var(--radius-full); }
/* Width & Height */
.w-full { width: 100%; }
.h-full { height: 100%; }
/* Mobile-first responsive design */
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}#root {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
}

.logo {
  height: 6em;
  padding: 1.5em;
  will-change: filter;
  transition: filter 300ms;
}
.logo:hover {
  filter: drop-shadow(0 0 2em #646cffaa);
}
.logo.react:hover {
  filter: drop-shadow(0 0 2em #61dafbaa);
}

@keyframes logo-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: no-preference) {
  a:nth-of-type(2) .logo {
    animation: logo-spin infinite 20s linear;
  }
}

.card {
  padding: 2em;
}

.read-the-docs {
  color: #888;
}
/* Mobile Container - Shows mobile view on desktop */
html, body, #root {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #FFD700 0%, #FFFACD 50%, #FFE4B5 100%);
}

.mobile-app-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  background: linear-gradient(135deg, #FFD700 0%, #FFFACD 50%, #FFE4B5 100%);
  padding: 20px;
  box-sizing: border-box;
  overflow: hidden;
}

.mobile-app-container {
  width: 100%;
  max-width: 430px;
  height: 100%;
  max-height: 100%;
  background-color: #ffffff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 1px rgba(0, 0, 0, 0.1);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 24px;
}

/* Desktop view - full height, constrained width */
@media (min-width: 769px) {
  .mobile-app-wrapper {
    align-items: stretch;
    background: linear-gradient(135deg, #FFD700 0%, #FFFACD 50%, #FFE4B5 100%);
    padding: 20px;
  }

  .mobile-app-container {
    max-width: 530px;
    max-height: 100%;
    height: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 1px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
  }
}

/* Hide scrollbar but allow scrolling */
.mobile-app-container::-webkit-scrollbar {
  display: none;
}

.mobile-app-container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* On mobile devices, remove the wrapper styling */
@media (max-width: 480px) {
  html, body, #root {
    padding: 0;
  }

  .mobile-app-wrapper {
    padding: 0;
    background-color: #ffffff;
  }

  .mobile-app-container {
    max-width: 100%;
    box-shadow: none;
    border-radius: 0;
  }
}

/* Tablet view */
@media (min-width: 481px) and (max-width: 768px) {
  .mobile-app-wrapper {
    padding: 16px;
  }

  .mobile-app-container {
    max-width: 400px;
    border-radius: 24px;
    max-height: calc(100% - 32px);
  }
}
/* Global Footer Styles - Fixed at bottom with proper spacing */

/* Base page layout - flex column to push footer to bottom */
.welcome-page,
.student-details-page,
.pickup-location-page,
.review-details-page,
.select-plans-page,
.success-page,
.processing-page,
.edit-details-page {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

/* Container takes remaining space and scrolls */
.welcome-page__container,
.student-details-page__container,
.pickup-location-page__container,
.review-details-page__container,
.select-plans-page__container,
.success-page__container,
.processing-page__container,
.edit-details-page__container {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding-bottom: 20px;
  padding-right: env(safe-area-inset-right, 0);
  padding-left: env(safe-area-inset-left, 0);
}

/* Hide scrollbar */
.welcome-page__container::-webkit-scrollbar,
.student-details-page__container::-webkit-scrollbar,
.pickup-location-page__container::-webkit-scrollbar,
.review-details-page__container::-webkit-scrollbar,
.select-plans-page__container::-webkit-scrollbar,
.success-page__container::-webkit-scrollbar,
.processing-page__container::-webkit-scrollbar,
.edit-details-page__container::-webkit-scrollbar {
  display: none;
}

.welcome-page__container,
.student-details-page__container,
.pickup-location-page__container,
.review-details-page__container,
.select-plans-page__container,
.success-page__container,
.processing-page__container,
.edit-details-page__container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Footer - Fixed at bottom, never scrolls */
.welcome-page__footer,
.student-details-page__footer,
.pickup-location-page__footer,
.review-details-page__footer,
.select-plans-page__footer,
.success-page__footer,
.processing-page__footer,
.edit-details-page__footer {
  flex-shrink: 0;
  padding: 16px 20px;
  padding-bottom: max(16px, calc(16px + env(safe-area-inset-bottom, 0px)));
  background-color: #ffffff;
  border-top: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  box-sizing: border-box;
}

/* Button styling */
.welcome-page__button,
.student-details-page__button,
.pickup-location-page__button,
.review-details-page__continue-btn,
.select-plans-page__continue-btn,
.success-page__dashboard-btn,
.edit-details-page__primary-btn {
  width: 100%;
  padding: 14px 16px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-sizing: border-box;
}

.welcome-page__button:disabled,
.student-details-page__button:disabled,
.pickup-location-page__button:disabled,
.review-details-page__continue-btn:disabled,
.select-plans-page__continue-btn:disabled,
.success-page__dashboard-btn:disabled,
.edit-details-page__primary-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Secondary buttons */
.review-details-page__edit-details-btn,
.edit-details-page__secondary-btn {
  width: 100%;
  padding: 14px 16px;
  background-color: #ffffff;
  border: 2px solid #1d1d1f;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  color: #1d1d1f;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-sizing: border-box;
}

.review-details-page__edit-details-btn:hover,
.edit-details-page__secondary-btn:hover {
  background-color: #f9f9f9;
}
/* Toast Notification Styles */

.toast-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.toast-icon--success {
  color: #16a34a;
}

.toast-icon--error {
  color: #dc2626;
}

.toast-icon--warning {
  color: #ea580c;
}

.toast-icon--info {
  color: #0284c7;
}

/* Toast Notification */
.toast-notification {
  position: fixed;
  z-index: 9999;
  animation: toastSlideIn 0.3s ease-out forwards;
}

.toast-notification--visible {
  animation: toastSlideIn 0.3s ease-out forwards;
}

.toast-notification:not(.toast-notification--visible) {
  animation: toastSlideOut 0.3s ease-in forwards;
}

/* Position variants */
.toast-notification--top-right {
  top: 1rem;
  right: 1rem;
}

.toast-notification--top-left {
  top: 1rem;
  left: 1rem;
}

.toast-notification--bottom-right {
  bottom: 1rem;
  right: 1rem;
}

.toast-notification--bottom-left {
  bottom: 1rem;
  left: 1rem;
}

.toast-notification--top-center {
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
}

.toast-notification--bottom-center {
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
}

/* Toast content */
.toast-notification__content {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  max-width: 400px;
  min-width: 300px;
  border-radius: 10px;
  background-color: white;
  border: 1px solid;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Type variants */
.toast-notification--success .toast-notification__content {
  background-color: #f0fdf4;
  border-color: #86efac;
}

.toast-notification--error .toast-notification__content {
  background-color: #fef2f2;
  border-color: #fecaca;
}

.toast-notification--warning .toast-notification__content {
  background-color: #fffbeb;
  border-color: #fde68a;
}

.toast-notification--info .toast-notification__content {
  background-color: #f0f9ff;
  border-color: #bae6fd;
}

/* Text styles */
.toast-notification__text {
  flex: 1;
  min-width: 0;
}

.toast-notification__title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 4px;
}

.toast-notification__message {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  word-wrap: break-word;
}

/* Type-specific text colors */
.toast-notification--success .toast-notification__title {
  color: #166534;
}

.toast-notification--success .toast-notification__message {
  color: #15803d;
}

.toast-notification--error .toast-notification__title {
  color: #7f1d1d;
}

.toast-notification--error .toast-notification__message {
  color: #991b1b;
}

.toast-notification--warning .toast-notification__title {
  color: #92400e;
}

.toast-notification--warning .toast-notification__message {
  color: #b45309;
}

.toast-notification--info .toast-notification__title {
  color: #0c4a6e;
}

.toast-notification--info .toast-notification__message {
  color: #0369a1;
}

/* Close button */
.toast-notification__close {
  flex-shrink: 0;
  padding: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  color: inherit;
}

.toast-notification--success .toast-notification__close {
  color: #16a34a;
}

.toast-notification--success .toast-notification__close:hover {
  background-color: #dcfce7;
  color: #22c55e;
}

.toast-notification--error .toast-notification__close {
  color: #dc2626;
}

.toast-notification--error .toast-notification__close:hover {
  background-color: #fee2e2;
  color: #ef4444;
}

.toast-notification--warning .toast-notification__close {
  color: #ea580c;
}

.toast-notification--warning .toast-notification__close:hover {
  background-color: #fef3c7;
  color: #f97316;
}

.toast-notification--info .toast-notification__close {
  color: #0284c7;
}

.toast-notification--info .toast-notification__close:hover {
  background-color: #e0f2fe;
  color: #0ea5e9;
}

/* Toast Container */
.toast-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
  position: fixed;
  z-index: 9999;
}

.toast-container--top-right {
  top: 1rem;
  right: 1rem;
}

.toast-container--top-left {
  top: 1rem;
  left: 1rem;
}

.toast-container--bottom-right {
  bottom: 1rem;
  right: 1rem;
}

.toast-container--bottom-left {
  bottom: 1rem;
  left: 1rem;
}

.toast-container--top-center {
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
}

.toast-container--bottom-center {
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
}

.toast-container__item {
  pointer-events: auto;
}

/* Animations */
@keyframes toastSlideIn {
  from {
    opacity: 0;
    transform: translateY(-100%) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes toastSlideOut {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateY(-100%) scale(0.95);
  }
}

/* Bottom position animations */
.toast-notification--bottom-right,
.toast-notification--bottom-left,
.toast-notification--bottom-center {
  animation: toastSlideInBottom 0.3s ease-out forwards;
}

.toast-notification--bottom-right:not(.toast-notification--visible),
.toast-notification--bottom-left:not(.toast-notification--visible),
.toast-notification--bottom-center:not(.toast-notification--visible) {
  animation: toastSlideOutBottom 0.3s ease-in forwards;
}

@keyframes toastSlideInBottom {
  from {
    opacity: 0;
    transform: translateY(100%) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes toastSlideOutBottom {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateY(100%) scale(0.95);
  }
}

/* Responsive */
@media (max-width: 480px) {
  .toast-notification__content {
    min-width: 280px;
    max-width: 90vw;
  }

  .toast-notification--top-right,
  .toast-notification--top-left,
  .toast-notification--bottom-right,
  .toast-notification--bottom-left {
    left: 1rem !important;
    right: 1rem !important;
  }

  .toast-notification--top-center,
  .toast-notification--bottom-center {
    left: 50% !important;
    transform: translateX(-50%);
  }
}
.modal-alert__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
  animation: fadeIn 0.2s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

.modal-alert {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 32px 24px;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  text-align: center;
  animation: slideUp 0.3s ease-out;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
}

.modal-alert__icon-container {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}

.modal-alert__icon {
  font-size: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-alert__icon--success {
  color: #4caf50;
}

.modal-alert__icon--error {
  color: #dc2626;
}

.modal-alert__icon--warning {
  color: #f59e0b;
}

.modal-alert__icon--info {
  color: #3b82f6;
}

.modal-alert__title {
  font-size: 18px;
  font-weight: 700;
  color: #1d1d1f;
  margin: 0 0 12px 0;
  line-height: 1.4;
}

.modal-alert__description {
  font-size: 14px;
  color: #666;
  margin: 0 0 24px 0;
  line-height: 1.6;
}

.modal-alert__footer {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.modal-alert__button {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  min-width: 100px;
}

.modal-alert__button--primary {
  color: #ffffff;
}

.modal-alert__button--primary.modal-alert__button--success {
  background-color: #4caf50;
}

.modal-alert__button--primary.modal-alert__button--success:hover {
  background-color: #45a049;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.modal-alert__button--primary.modal-alert__button--error {
  background-color: #dc2626;
}

.modal-alert__button--primary.modal-alert__button--error:hover {
  background-color: #b91c1c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.modal-alert__button--primary.modal-alert__button--warning {
  background-color: #f59e0b;
}

.modal-alert__button--primary.modal-alert__button--warning:hover {
  background-color: #d97706;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.modal-alert__button--primary.modal-alert__button--info {
  background-color: #3b82f6;
}

.modal-alert__button--primary.modal-alert__button--info:hover {
  background-color: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.modal-alert__button--secondary {
  background-color: #f3f4f6;
  color: #1d1d1f;
  border: 1px solid #e5e7eb;
}

.modal-alert__button--secondary:hover {
  background-color: #e5e7eb;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 480px) {
  .modal-alert {
    padding: 24px 16px;
    max-width: 90%;
  }

  .modal-alert__title {
    font-size: 16px;
  }

  .modal-alert__description {
    font-size: 13px;
  }

  .modal-alert__button {
    padding: 10px 16px;
    font-size: 13px;
    min-width: 80px;
  }

  .modal-alert__footer {
    flex-direction: column;
    gap: 8px;
  }
}
.input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.input-wrapper--full {
  width: 100%;
}

.input-label {
  font-size: 12px;
  font-weight: 600;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: left;
  flex-shrink: 0;
}

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

.input {
  width: 100%;
  padding: var(--spacing-md);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-text-primary);
  background-color: var(--color-bg-primary);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  font-family: var(--font-family);
  overflow: hidden;
}

.input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-light);
}

.input::-moz-placeholder {
  color: var(--color-text-tertiary);
}

.input::placeholder {
  color: var(--color-text-tertiary);
}

.input:disabled {
  background-color: var(--color-bg-secondary);
  cursor: not-allowed;
  opacity: 0.6;
}

/* Icon Padding */
.input--with-left-icon {
  padding-left: 3rem;
}

.input--with-right-icon {
  padding-right: 0;
}

/* Icons */
.input-icon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-tertiary);
  pointer-events: none;
}

.input-icon--left {
  left: var(--spacing-md);
}

.input-icon--right {
  right: 0;
  width: 60px;
  height: 100%;
  pointer-events: auto;
}

/* Error State */
.input-container--error .input {
  border-color: var(--color-error);
}

.input-container--error .input:focus {
  box-shadow: 0 0 0 3px var(--color-error-light);
}

.input-error {
  font-size: 0.875rem;
  color: var(--color-error);
  margin-top: -2px;
}

.input-helper {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  margin-top: -2px;
  text-align: left;
  display: flex;
  align-items: center;
}

/* Number Input - Remove Arrows */
input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type='number'] {
  -moz-appearance: textfield;
}.phone-input-wrapper {
  position: relative;
}

.phone-input-helper-link {
  background: none;
  border: none;
  color: #0066cc;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  transition: opacity 0.2s;
  margin-top: 4px;
  display: block;
  font-family: inherit;
}

.phone-input-helper-link:hover {
  opacity: 0.7;
}

.phone-input-helper-link:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Edit Button */
.phone-input-edit-btn {
  /* background-color: #ffffff; */
  border: 2px solid var(--color-border, #d1d5db);
  border-left: none;
  color: #f5a623;
  font-size: 33px;
  cursor: pointer;
  padding: 0;
  width: 60px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  font-family: inherit;
  border-radius: 0 6px 6px 0;
  margin: -2px -2px -2px 0;
}

.phone-input-edit-btn:hover {
  color: #e89a1f;
  background-color: #f9f9f9;
  border-color: var(--color-border, #d1d5db);
}

.phone-input-edit-btn:active {
  background-color: #f0f0f0;
}

.phone-input-edit-btn:focus {
  outline: 2px solid #f5a623;
  outline-offset: -2px;
  border-color: var(--color-primary, #0066cc);
}

.phone-input-edit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}



/* Helper Text with Icon */
.phone-input-helper {
  display: flex;
  align-items: center;
  gap: 6px;
  text-align: left;
}

.phone-input-helper__icon {
  color: #25d366;
  flex-shrink: 0;
}

.phone-input-helper span {
  color: #666;
  font-size: 12px;
}
.otp-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  width: 100%;
}

.otp-container {
  display: flex;
  gap: 6px;
  justify-content: space-between;
  width: 100%;
}

.otp-input {
  flex: 1;
  min-width: 0;
  height: 3.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  color: var(--color-text-primary);
  background-color: var(--color-bg-primary);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  font-family: var(--font-family);
}

.otp-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-light);
}

.otp-input:disabled {
  background-color: var(--color-bg-secondary);
  cursor: not-allowed;
  opacity: 0.6;
}

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

.otp-input--error:focus {
  box-shadow: 0 0 0 3px var(--color-error-light);
}

.otp-error {
  font-size: 0.875rem;
  color: var(--color-error);
  text-align: center;
}

/* Mobile responsiveness */
@media (max-width: 375px) {
  .otp-input {
    height: 3rem;
    font-size: 1.25rem;
  }
}.info-card {
  display: flex;
  gap: 16px;
  padding: 16px;
  background-color: #FEFCE8 !important;
  border-radius: 12px;
  border: 2px solid #FEF9C3 !important;
  text-align: left;
  align-items: flex-start;
  margin: 20px 0 0 0;
}

.info-card__icon {
  font-size: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px !important;
  height: 56px !important;
  background-color: #ffffff !important;
  border-radius: 50% !important;
  min-width: 56px;
}

.info-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.info-card__title {
  font-size: 16px;
  font-weight: 700;
  color: #1d1d1f;
  margin: 0 0 3px 0;
  text-align: left;
}

.info-card__text {
  font-size: 13px;
  color: #666;
  margin: 0;
  line-height: 1.6;
  text-align: left;
}
.welcome-page {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  background-color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
}

/* Loading State */
.welcome-page__loading {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 100vh;
  color: #999;
  font-size: 14px;
}

/* Hide scrollbar */
.welcome-page::-webkit-scrollbar {
  display: none;
}

.welcome-page {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Header */
.welcome-page__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid #f0f0f0;
  background-color: #ffffff;
}

.welcome-page__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 16px;
}

.welcome-page__logo-img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
}

.welcome-page__logo-text {
  color: #000;
}

.welcome-page__logo-highlight {
  color: #ffd700;
}

.welcome-page__header-icons {
  display: flex;
  gap: 16px;
  font-size: 18px;
  color: #999;
}

.welcome-page__menu-icon {
  cursor: pointer;
}

/* Container */
.welcome-page__container {
  flex: 1;
  overflow-y: auto;
  padding: 24px 20px 0;
}

/* Hide scrollbar */
.welcome-page__container::-webkit-scrollbar {
  display: none;
}

.welcome-page__container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.welcome-page__content {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: max(60px, calc(60px + env(safe-area-inset-bottom, 0px)));
}

/* Badge */
.welcome-page__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #fffef5;
  color: #1d1d1f;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid #ffe680;
  justify-content: center;
}

/* Title Section */
.welcome-page__title-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.welcome-page__title {
  font-size: 32px;
  font-weight: 700;
  color: #1d1d1f;
  margin: 0;
  line-height: 1.2;
  text-align: left;
}

.welcome-page__subtitle {
  font-size: 14px;
  color: #999;
  margin: 0;
  line-height: 1.6;
  text-align: left;
}

.welcome-page__accent-line {
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, #0066cc 0%, #0066cc 60%, transparent 100%);
  margin-top: 8px;
}

/* Form */
.welcome-page__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.welcome-page__form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.welcome-page__form-group--otp {
  gap: 12px;
}

.welcome-page__label {
  font-size: 12px;
  font-weight: 600;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: left;
}

/* Phone Input */
.welcome-page__phone-input-wrapper {
  position: relative;
}

.welcome-page__phone-input {
  width: 100%;
  padding: 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  background-color: #ffffff;
  color: #1d1d1f;
  transition: all 0.2s;
}

.welcome-page__phone-input::-moz-placeholder {
  color: #ccc;
}

.welcome-page__phone-input::placeholder {
  color: #ccc;
}

.welcome-page__phone-input:focus {
  outline: none;
  border-color: #ffd700;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.welcome-page__phone-input.error {
  border-color: #ff6b6b;
}

.welcome-page__phone-note {
  font-size: 12px;
  color: #666;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* OTP Inputs */
.welcome-page__otp-inputs {
  display: flex;
  gap: 8px;
  justify-content: space-between;
}

.welcome-page__otp-input {
  width: 100%;
  max-width: 50px;
  height: 50px;
  padding: 0;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  background-color: #ffffff;
  color: #1d1d1f;
  transition: all 0.2s;
}

.welcome-page__otp-input:focus {
  outline: none;
  border-color: #ffd700;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.welcome-page__otp-input:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Error Message */
.welcome-page__error {
  font-size: 12px;
  color: #ff6b6b;
  margin-top: 4px;
}

/* Resend */
.welcome-page__resend {
  text-align: center;
  min-height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.welcome-page__resend-timer {
  font-size: 12px;
  color: #999;
  margin: 0;
}

.welcome-page__resend-btn {
  background: none;
  border: none;
  color: #0066cc;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  transition: opacity 0.2s;
}

.welcome-page__resend-btn:hover:not(:disabled) {
  opacity: 0.7;
}

.welcome-page__resend-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Info Card - Deprecated, use InfoCard component instead */

/* Trusted Section */
.welcome-page__trusted {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  margin-top: 8px;
}

.welcome-page__trusted-label {
  font-size: 11px;
  font-weight: 600;
  color: #999;
  margin: 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.welcome-page__icons {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.welcome-page__icon {
  font-size: 28px;
  opacity: 0.6;
}

/* Logos Section */
.welcome-page__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.welcome-page__logo {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.8;
  transition: opacity 0.2s ease;
  overflow: hidden;
}

.welcome-page__logo:hover {
  opacity: 1;
}

/* Terms */
.welcome-page__terms {
  font-size: 11px;
  color: #999;
  margin: 0;
  text-align: center;
  line-height: 1.5;
}

.welcome-page__terms-link {
  color: #0066cc;
  text-decoration: none;
  transition: opacity 0.2s;
}

.welcome-page__terms-link:hover {
  opacity: 0.7;
}

.welcome-page__button {
  width: 100%;
  padding: 14px 16px;
  background-color: #ffd700;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #1d1d1f;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-sizing: border-box;
}

.welcome-page__button:hover:not(:disabled) {
  background-color: #ffc700;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.welcome-page__button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Responsive */
@media (max-width: 480px) {
  .welcome-page__container {
    padding: 16px 16px;
  }

  .welcome-page__title {
    font-size: 28px;
  }

  .welcome-page__otp-inputs {
    gap: 6px;
  }

  .welcome-page__otp-input {
    max-width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .welcome-page__logos {
    gap: 20px;
  }

  .welcome-page__logo {
    height: 32px;
    width: 32px;
  }
}

/* Modal Overlay Styles */
.welcome-page__modal-overlay {
  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;
  animation: fadeIn 0.2s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.welcome-page__modal {
  background: white;
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  max-width: 320px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: scaleIn 0.3s ease-out;
}

@keyframes scaleIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.welcome-page__modal h3 {
  margin: 24px 0 8px 0;
  font-size: 18px;
  font-weight: 600;
  color: #111827;
}

.welcome-page__modal p {
  margin: 0;
  font-size: 14px;
  color: #6b7280;
}
/* Button Loader Spinner */
.btn-loader {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #ffffff;
  animation: spin 0.8s linear infinite;
  margin-right: 8px;
}

.btn-loader--dark {
  border: 2px solid rgba(29, 29, 31, 0.3);
  border-top-color: #1d1d1f;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Button with loader */
.btn-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0.8;
}
/* App Header Component Styles */

.app-header {
  width: 100%;
  background-color: #ffffff;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.app-header__logo-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  transition: opacity 0.2s ease;
  text-decoration: none;
}

.app-header__logo-btn:hover:not(:disabled) {
  opacity: 0.8;
}

.app-header__logo-btn:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.app-header__logo-btn:focus {
  outline: 2px solid rgba(0, 0, 0, 0.1);
  outline-offset: 2px;
  border-radius: 4px;
}

.app-header__logo-img {
  height: 32px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.app-header__logo-text {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  letter-spacing: -0.3px;
}

.app-header__logo-highlight {
  color: #ffffff;
  font-weight: 700;
}

/* Logout Button */
.app-header__logout-btn {
  margin-right: 20px;
  padding: 8px 16px;
  background-color: #ffffff;
  border: 1px solid #000000;
  border-radius: 6px;
  color: #111827;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.app-header__logout-btn:hover {
  background-color: #f5f5f5;
  border-color: #e0e0e0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.app-header__logout-btn:active {
  background-color: #eeeeee;
  transform: scale(0.98);
}

.app-header__logout-btn:focus {
  outline: 2px solid #f5a623;
  outline-offset: 2px;
}

/* Responsive Design */
@media (max-width: 640px) {
  .app-header {
    padding: 16px 0;
  }

  .app-header__logo-btn {
    margin-left: 16px;
    gap: 6px;
  }

  .app-header__logo-img {
    height: 28px;
  }

  .app-header__logo-text {
    font-size: 14px;
  }

  .app-header__logout-btn {
    margin-right: 16px;
    padding: 6px 12px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .app-header {
    padding: 12px 0;
  }

  .app-header__logo-btn {
    margin-left: 12px;
    gap: 4px;
  }

  .app-header__logo-img {
    height: 24px;
  }

  .app-header__logo-text {
    font-size: 12px;
  }

  .app-header__logout-btn {
    margin-right: 12px;
    padding: 6px 10px;
    font-size: 11px;
  }
}
.student-card {
  padding: 16px;
  background-color: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.student-card__header {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
}

.student-card__avatar {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fef3c7;
  border-radius: 50%;
}

.student-card__info {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.student-card__name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}

.student-card__name {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  margin: 0;
  line-height: 1.2;
  text-align: left;
}

.student-card__details {
  font-size: 13px;
  color: #6b7280;
  margin: 0 0 4px 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  line-height: 1.4;
  text-align: left;
}

.student-card__detail-icon {
  color: #9ca3af;
  flex-shrink: 0;
}

/* Status Badges */
.student-card__status-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: capitalize;
  white-space: nowrap;
}

.student-card__status-badge--pending {
  background-color: #fef3c7;
  color: #92400e;
}

.student-card__status-badge--routing {
  background-color: #dbeafe;
  color: #1e40af;
}

.student-card__status-badge--active {
  background-color: #d1fae5;
  color: #065f46;
}

.student-card__status-badge--inactive {
  background-color: #f3f4f6;
  color: #6b7280;
}

.student-card__status-badge--payment-in-progress {
  background-color: #fce7f3;
  color: #831843;
}

/* Action Required */
.student-card__action-required {
  display: flex;
  gap: 12px;
  padding: 12px;
  background-color: #fffbeb;
  border-radius: 8px;
  border-left: 3px solid #f59e0b;
  margin-bottom: 12px;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
}

.student-card__action-icon {
  color: #f59e0b;
  flex-shrink: 0;
}

.student-card__action-content {
  flex: 1;
  text-align: left;
}

.student-card__action-title {
  font-size: 13px;
  font-weight: 600;
  color: #92400e;
  margin: 0 0 4px 0;
  text-align: left;
}

.student-card__action-text {
  font-size: 12px;
  color: #a16207;
  margin: 0;
  line-height: 1.4;
  text-align: left;
}

/* Service Active */
.student-card__service-active {
  display: flex;
  gap: 12px;
  padding: 12px;
  background-color: #ecfdf5;
  border-radius: 8px;
  border-left: 3px solid #10b981;
  margin-bottom: 12px;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
}

.student-card__service-active.student-card__service-active--routing {
  background-color: #eff6ff;
  border-left-color: #3b82f6;
}

.student-card__service-active--routing .student-card__service-icon {
  color: #3b82f6;
}

.student-card__service-active--routing .student-card__service-title {
  color: #1e40af;
}

.student-card__service-active--routing .student-card__service-text {
  color: #1d4ed8;
}

.student-card__service-icon {
  color: #10b981;
  flex-shrink: 0;
}

.student-card__service-content {
  flex: 1;
  text-align: left;
}

.student-card__service-title {
  font-size: 13px;
  font-weight: 600;
  color: #065f46;
  margin: 0 0 4px 0;
  text-align: left;
}

.student-card__service-text {
  font-size: 12px;
  color: #047857;
  margin: 0;
  line-height: 1.4;
  text-align: left;
}

/* Payment Processing */
.student-card__payment-processing {
  display: flex;
  gap: 12px;
  padding: 12px;
  background-color: #fce7f3;
  border-radius: 8px;
  border-left: 3px solid #ec4899;
  margin-bottom: 12px;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
}

.student-card__payment-processing-icon {
  color: #ec4899;
  flex-shrink: 0;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.student-card__payment-processing-content {
  flex: 1;
  text-align: left;
}

.student-card__payment-processing-title {
  font-size: 13px;
  font-weight: 600;
  color: #831843;
  margin: 0 0 4px 0;
  text-align: left;
}

.student-card__payment-processing-text {
  font-size: 12px;
  color: #be185d;
  margin: 0;
  line-height: 1.4;
  text-align: left;
}

/* Buttons */
.student-card__payment-btn {
  width: 100%;
  padding: 12px 16px;
  background-color: #111827;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.student-card__payment-btn:hover {
  background-color: #1f2937;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.student-card__payment-btn:disabled {
  background-color: #d1d5db;
  color: #9ca3af;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.student-card__payment-btn:disabled:hover {
  background-color: #d1d5db;
  transform: none;
  box-shadow: none;
}

.student-card__edit-btn {
  width: 100%;
  padding: 10px 16px;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.student-card__edit-btn:hover {
  border-color: #f59e0b;
  background-color: #fffbeb;
  color: #92400e;
}

.student-card__edit-btn:active {
  background-color: #fef3c7;
}
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.skeleton {
  background: linear-gradient(
    90deg,
    #f0f0f0 25%,
    #e0e0e0 50%,
    #f0f0f0 75%
  );
  background-size: 1000px 100%;
  animation: shimmer 2s infinite;
  border-radius: 4px;
  display: inline-block;
}

.skeleton--text {
  border-radius: 4px;
}

.skeleton--card {
  border-radius: 12px;
  margin-bottom: 16px;
}

.skeleton--input {
  border-radius: 8px;
  height: 40px;
}

.skeleton--button {
  border-radius: 8px;
  height: 44px;
}

.skeleton--avatar {
  border-radius: 50%;
}

.skeleton--line {
  border-radius: 4px;
  margin-bottom: 8px;
}

.skeleton-card {
  display: flex;
  gap: 12px;
  padding: 12px;
  background-color: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  margin-bottom: 12px;
}

.skeleton-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.skeleton-detail-grid {
  display: grid;
  gap: 12px;
}

.skeleton-detail-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px;
  background-color: #f9fafb;
  border-radius: 8px;
}
.dashboard-page {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100vh;
  background-color: #FAFAFA;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
}

/* Header */
.dashboard-page__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid #f0f0f0;
  background-color: #ffffff;
}

.dashboard-page__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 16px;
}

.dashboard-page__logo-img {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
}

.dashboard-page__logo-text {
  color: #000;
}

.dashboard-page__logo-highlight {
  color: #ffd700;
}

.dashboard-page__logout-btn {
  padding: 8px 16px;
  background-color: transparent;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.dashboard-page__logout-btn:hover {
  background-color: #f5f5f5;
  border-color: #ccc;
  color: #333;
}

/* Container */
.dashboard-page__container {
  flex: 1;
  overflow-y: auto;
  padding: 24px 20px;
  -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar */
.dashboard-page__container::-webkit-scrollbar {
  display: none;
}

.dashboard-page__container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.dashboard-page__content {
  max-width: 480px;
  margin: 0 auto;
  padding-bottom: max(100px, calc(100px + env(safe-area-inset-bottom, 0px)));
}

/* Title Section */
.dashboard-page__title-section {
  margin-bottom: 24px;
  text-align: left;
}

.dashboard-page__title {
  font-size: 32px;
  font-weight: 700;
  color: #1d1d1f;
  margin: 0 0 8px 0;
  line-height: 1.2;
  text-align: left;
}

.dashboard-page__subtitle {
  font-size: 14px;
  color: #999;
  margin: 0;
  line-height: 1.5;
  text-align: left;
}

/* Loading */
.dashboard-page__loading {
  text-align: center;
  padding: 40px 20px;
  color: #999;
  font-size: 14px;
}

/* Students List */
.dashboard-page__students {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

/* Info Card */
.dashboard-page__info-card {
  display: flex;
  gap: 12px;
  padding: 16px;
  background-color: #e3f2fd;
  border-radius: 12px;
  border: 1px solid #bbdefb;
  margin-bottom: 16px;
  text-align: left;
}

.dashboard-page__info-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.dashboard-page__info-content {
  flex: 1;
  text-align: left;
}

.dashboard-page__info-title {
  font-size: 13px;
  font-weight: 600;
  color: #1565c0;
  margin: 0 0 4px 0;
  text-align: left;
}

.dashboard-page__info-text {
  font-size: 12px;
  color: #1976d2;
  margin: 0;
  line-height: 1.5;
  text-align: left;
}

/* Add Student Button */
.dashboard-page__add-student-btn {
  width: 100%;
  padding: 16px;
  background-color: #ffffff;
  border: 2px dashed #D1D5DB;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #1d1d1f;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  margin: 12px 24px 0 0;
}

.dashboard-page__add-student-btn:hover {
  border-color: #ffd700;
  background-color: #fffef5;
}

/* Phone Support Button */
.dashboard-page__phone-btn {
  position: fixed;
  bottom: max(24px, calc(24px + env(safe-area-inset-bottom, 0px)));
  right: max(24px, calc(24px + env(safe-area-inset-right, 0px)));
  width: 56px;
  height: 56px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  transition: all 0.2s;
  border: none;
  padding: 0;
  z-index: 100;
}

.dashboard-page__phone-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.dashboard-page__phone-btn:active {
  transform: scale(0.95);
}

.dashboard-page__whatsapp-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  background-color: #ff4444;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 480px) {
  .dashboard-page__container {
    padding: 16px 16px;
  }

  .dashboard-page__title {
    font-size: 28px;
  }

  .dashboard-page__phone-btn {
    bottom: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    font-size: 24px;
  }
}


/* Dashboard Info Card Override */
.dashboard-info-card {
  background-color: #EFF6FF !important;
  border: 2px dashed #BFDBFE !important;
  margin-bottom: 16px;
}

.dashboard-info-card .info-card__icon {
  background-color: #3B82F6 !important;
  border-radius: 50% !important;
  width: 56px !important;
  height: 56px !important;
}

.dashboard-info-card .info-card__title {
  color: #1e40af;
  font-weight: 700;
}

.dashboard-info-card .info-card__text {
  color: #1e40af;
}
.student-details-page {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #F9F9F9;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
}

/* Header */
.student-details-page__header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid #f0f0f0;
  background-color: #ffffff;
  gap: 20px;
}

.student-details-page__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 16px;
}

.student-details-page__logo-img {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
}

.student-details-page__logo-text {
  color: #000;
}

.student-details-page__logo-highlight {
  color: #ffd700;
}

.student-details-page__header-icons {
  display: none;
  gap: 16px;
  font-size: 18px;
  color: #999;
}

.student-details-page__menu-icon {
  cursor: pointer;
}

/* Container */
.student-details-page__container {
  flex: 1;
  overflow-y: auto;
  padding: 24px 20px;
  -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar */
.student-details-page__container::-webkit-scrollbar {
  display: none;
}

.student-details-page__container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.student-details-page__content {
  max-width: 480px;
  margin: 0 auto;
  padding-bottom: max(100px, calc(100px + env(safe-area-inset-bottom, 0px)));
}

/* Title Section */
.student-details-page__title-section {
  margin-bottom: 32px;
  text-align: left;
}

.student-details-page__title {
  font-size: 32px;
  font-weight: 700;
  color: #1d1d1f;
  margin: 0 0 12px 0;
  line-height: 1.2;
  text-align: left;
}

.student-details-page__subtitle {
  font-size: 14px;
  color: #999;
  margin: 0;
  line-height: 1.5;
  text-align: left;
}

/* Form */
.student-details-page__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

.student-details-page__form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.student-details-page__label {
  font-size: 12px;
  font-weight: 600;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: left;
  flex-shrink: 0;
}

/* Input */
.student-details-page__input {
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid #e5e7eb;
  border-radius: 0;
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  background-color: transparent;
  color: #1d1d1f;
  transition: all 0.2s;
  width: 100%;
  box-sizing: border-box;
}

.student-details-page__input::-moz-placeholder {
  color: #ccc;
}

.student-details-page__input::placeholder {
  color: #ccc;
}

.student-details-page__input:focus {
  outline: none;
  border-bottom-color: #ffd700;
}

.student-details-page__input.error {
  border-bottom-color: #ff6b6b;
}

/* Name Row */
.student-details-page__name-row {
  display: flex;
  gap: 20px;
}

.student-details-page__name-row .student-details-page__input {
  flex: 1;
}

/* Card Wrapper */
.student-details-page__card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 16px;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.student-details-page__card:hover {
  border-color: #ffd700;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.1);
}

.student-details-page__gender-card {
  padding: 16px;
}

.student-details-page__card-label {
  font-size: 12px;
  font-weight: 600;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: left;
  margin: 0;
}

/* Gender Group */
.student-details-page__gender-group {
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.student-details-page__gender-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 12px;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  background-color: #ffffff;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  font-weight: 500;
}

.student-details-page__gender-btn:hover {
  border-color: #ffd700;
  background-color: #fffef5;
}

.student-details-page__gender-btn.active {
  border-color: #ffd700;
  background-color: #fffef5;
}

.student-details-page__gender-icon {
  font-size: 24px;
  color: #2196F3;
}

.student-details-page__gender-label {
  font-size: 13px;
  font-weight: 500;
  color: #1d1d1f;
  text-align: center;
}

/* Select */
.student-select__control {
  min-height: 44px !important;
  border-radius: 0 !important;
  background-color: transparent !important;
  border: none !important;
  border-bottom: 1px solid #e5e7eb !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  transition: all 0.2s !important;
  box-shadow: none !important;
  text-align: left !important;
}

.student-select__value-container {
  padding-left: 0 !important;
  text-align: left !important;
}

.student-select__single-value {
  text-align: left !important;
  margin-left: 0 !important;
}

.student-select__control:hover {
  border-bottom-color: #ffd700 !important;
}

.student-select__control--is-focused {
  border-bottom-color: #ffd700 !important;
  box-shadow: none !important;
}

.student-select__control--is-disabled {
  opacity: 0.6 !important;
  cursor: not-allowed !important;
}

.student-select__menu {
  border-radius: 8px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
  z-index: 1000 !important;
}

.student-select__menu-list {
  padding: 0 !important;
}

.student-select__option {
  padding: 12px 16px !important;
  cursor: pointer !important;
  background-color: #ffffff !important;
  color: #1d1d1f !important;
}

.student-select__option--is-focused {
  background-color: #fffef5 !important;
}

.student-select__option--is-selected {
  background-color: #ffd700 !important;
  color: #1d1d1f !important;
}

.student-select__input-container {
  color: #1d1d1f !important;
}

.student-select__placeholder {
  color: #ccc !important;
}

/* Error Message */
.student-details-page__error {
  font-size: 12px;
  color: #ff6b6b;
  margin-top: 4px;
}

/* Info Card */
.student-details-page__info-card {
  display: flex;
  gap: 12px;
  padding: 16px;
  background-color: #fffef5;
  border-radius: 8px;
  border: 1px solid #ffe680;
  margin-bottom: 20px;
  text-align: left;
}

.student-details-page__info-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.student-details-page__info-content {
  flex: 1;
}

.student-details-page__info-title {
  font-size: 13px;
  font-weight: 600;
  color: #1d1d1f;
  margin: 0 0 4px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: left;
}

.student-details-page__info-text {
  font-size: 12px;
  color: #666;
  margin: 0;
  line-height: 1.5;
  text-align: left;
}

/* Footer */
.student-details-page__footer {
  padding: 0;
  background-color: transparent;
  border-top: none;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.student-details-page__button {
  width: 100%;
  padding: 14px 16px;
  background-color: #ffd700;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #1d1d1f;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-sizing: border-box;
}

.student-details-page__button:hover:not(:disabled) {
  background-color: #ffc700;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.student-details-page__button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Responsive */
@media (max-width: 480px) {
  .student-details-page__container {
    padding: 16px 16px;
  }

  .student-details-page__title {
    font-size: 28px;
  }

  .student-details-page__gender-group {
    gap: 8px;
  }

  .student-details-page__gender-btn {
    padding: 12px 8px;
    gap: 6px;
  }

  .student-details-page__gender-label {
    font-size: 12px;
  }
}


/* Student Details Info Card */
.student-details-info-card {
  background-color: #fffef5 !important;
  border: 2px dashed #ffe680 !important;
  margin-bottom: 6px !important;
  margin-top: 0 !important;
}

.student-details-info-card .info-card__icon {
  background-color: #ffffff !important;
  border-radius: 50% !important;
}

.student-details-info-card .info-card__title {
  color: #1d1d1f;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.student-details-info-card .info-card__text {
  color: #999;
}

/* Modal Overlay Styles */
.student-details-page__modal-overlay {
  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;
  animation: fadeIn 0.2s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.student-details-page__modal {
  background: white;
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  max-width: 320px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: scaleIn 0.3s ease-out;
}

@keyframes scaleIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.student-details-page__modal h3 {
  margin: 24px 0 8px 0;
  font-size: 18px;
  font-weight: 600;
  color: #111827;
}

.student-details-page__modal p {
  margin: 0;
  font-size: 14px;
  color: #6b7280;
}
.mobile-layout {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--color-bg-primary);
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
}

.mobile-layout__header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background-color: var(--color-bg-primary);
  border-bottom: 1px solid var(--color-border-light);
}

.mobile-layout__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  width: 100%;
}

.mobile-layout__content--with-footer {
  padding-bottom: 6rem;
}

.mobile-layout__footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  background-color: var(--color-bg-primary);
  border-top: 1px solid var(--color-border-light);
  padding: var(--spacing-md);
  box-shadow: 0 -4px 6px -1px rgb(0 0 0 / 0.1);
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
}

@media (min-width: 768px) {
  .mobile-layout {
    box-shadow: var(--shadow-xl);
  }
}.header {
  width: 100%;
}

.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-md);
  gap: var(--spacing-md);
  max-width: 480px;
  margin: 0 auto;
}

.header__back {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--color-text-primary);
  background: none;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  padding: 0;
}

.header__back:hover {
  background-color: var(--color-bg-secondary);
}

.header__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0;
}

.header__logo {
  flex: 1;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.logo-zero {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-primary);
  letter-spacing: -0.5px;
}

.logo-moblt {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.5px;
}

.header__action {
  display: flex;
  align-items: center;
}.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  font-weight: 600;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  font-family: var(--font-family);
  text-align: center;
  white-space: nowrap;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Sizes */
.btn--sm {
  padding: var(--spacing-sm) var(--spacing-md);
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.btn--md {
  padding: var(--spacing-md) var(--spacing-lg);
  font-size: 1rem;
  line-height: 1.5rem;
}

.btn--lg {
  padding: var(--spacing-lg) var(--spacing-xl);
  font-size: 1.125rem;
  line-height: 1.75rem;
}

/* Variants */
.btn--primary {
  background-color: var(--color-primary);
  color: var(--color-text-inverse);
}

.btn--primary:hover:not(:disabled) {
  background-color: var(--color-primary-dark);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background-color: var(--color-bg-tertiary);
  color: var(--color-text-primary);
}

.btn--secondary:hover:not(:disabled) {
  background-color: var(--color-border);
}

.btn--outline {
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn--outline:hover:not(:disabled) {
  background-color: var(--color-primary-light);
}

.btn--ghost {
  background-color: transparent;
  color: var(--color-text-primary);
}

.btn--ghost:hover:not(:disabled) {
  background-color: var(--color-bg-secondary);
}

.btn--link {
  background-color: transparent;
  color: var(--color-primary);
  padding: 0;
}

.btn--link:hover:not(:disabled) {
  text-decoration: underline;
}

/* Full Width */
.btn--full-width {
  width: 100%;
}

/* Loading State */
.btn--loading {
  position: relative;
  pointer-events: none;
}

.btn__loader {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.btn__spinner {
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}.info-card {
  display: flex;
  gap: var(--spacing-md);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  background-color: var(--color-bg-secondary);
}

.info-card--info {
  background-color: var(--color-primary-light);
}

.info-card--success {
  background-color: var(--color-success-light);
}

.info-card--warning {
  background-color: var(--color-warning-light);
}

.info-card__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--color-primary);
}

.info-card--info .info-card__icon {
  color: var(--color-primary);
}

.info-card--success .info-card__icon {
  color: var(--color-success);
}

.info-card--warning .info-card__icon {
  color: #9a7b0a;
}

.info-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info-card__title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0;
}

.info-card__description {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.5;
}.setup-service {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  padding: var(--spacing-lg) var(--spacing-md);
  max-width: 480px;
  margin: 0 auto;
}

.setup-service__header {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.setup-service__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
}

.setup-service__subtitle {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  margin: 0;
}

.setup-service__error {
  padding: var(--spacing-md);
  background-color: #fee;
  border: 1px solid #fcc;
  border-radius: 8px;
  color: #c33;
  font-size: 0.875rem;
}

.setup-service__error p {
  margin: 0;
}

.setup-service__section {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  padding: var(--spacing-md);
  background-color: #f9f9f9;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
}

.setup-service__section-header {
  display: flex;
  gap: var(--spacing-sm);
  align-items: flex-start;
}

.setup-service__section-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.setup-service__section-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0;
}

.setup-service__section-desc {
  font-size: 0.75rem;
  color: var(--color-text-secondary);
  margin: 2px 0 0 0;
}

.setup-service__location-display {
  display: flex;
  gap: var(--spacing-sm);
  align-items: center;
}

.setup-service__search-input {
  flex: 1;
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm) var(--spacing-md);
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.setup-service__input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 0.75rem;
  color: var(--color-text-primary);
  outline: none;
  font-family: inherit;
}

.setup-service__input::-moz-placeholder {
  color: #999;
}

.setup-service__input::placeholder {
  color: #999;
}

.setup-service__location-btn {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background-color: #FFD700;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}

.setup-service__location-btn:hover {
  background-color: #FFC700;
}

.setup-service__map-preview {
  width: 100%;
  height: 120px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #f0f0f0;
  border: 1px solid #e0e0e0;
}

.setup-service__map-hint {
  font-size: 0.75rem;
  color: var(--color-text-secondary);
  margin: 0;
  text-align: center;
}

.setup-service__date-input {
  padding: var(--spacing-sm) var(--spacing-md);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 0.875rem;
  color: var(--color-text-primary);
  background-color: #fff;
  font-family: inherit;
  cursor: pointer;
}

.setup-service__date-input:focus {
  outline: none;
  border-color: #FFD700;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.setup-service__transport-options {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.setup-service__transport-option {
  display: flex;
  gap: var(--spacing-md);
  align-items: center;
  padding: var(--spacing-md);
  background-color: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
}

.setup-service__transport-option:hover {
  border-color: #FFD700;
  background-color: #fffef5;
}

.setup-service__transport-option.active {
  border-color: #FFD700;
  background-color: #fffef5;
}

.setup-service__transport-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.setup-service__transport-content {
  flex: 1;
}

.setup-service__transport-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0;
}

.setup-service__transport-desc {
  font-size: 0.75rem;
  color: var(--color-text-secondary);
  margin: 2px 0 0 0;
}
.address-select {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.address-select__label {
  font-size: 12px;
  font-weight: 600;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: left;
}

/* Error Message */
.address-select__error {
  font-size: 12px;
  color: #ff6b6b;
}

/* Selected Location Display */
.address-select__selected-location {
  display: flex;
  gap: 12px;
  padding: 12px;
  background-color: #f9fafb;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  margin-top: 12px;
}

.address-select__selected-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.address-select__selected-content {
  flex: 1;
}

.address-select__selected-title {
  font-size: 13px;
  font-weight: 600;
  color: #1d1d1f;
  margin: 0 0 4px 0;
  text-align: left;
}

.address-select__selected-text {
  font-size: 12px;
  color: #666;
  margin: 0;
  line-height: 1.4;
  text-align: left;
}
.pickup-location-page {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #F9F9F9;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
}

/* Header */
.pickup-location-page__header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid #f0f0f0;
  background-color: #ffffff;
  gap: 20px;
}

.pickup-location-page__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 16px;
}

.pickup-location-page__logo-img {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
}

.pickup-location-page__logo-text {
  color: #000;
}

.pickup-location-page__logo-highlight {
  color: #ffd700;
}

.pickup-location-page__header-icons {
  display: none;
  gap: 16px;
  font-size: 18px;
  color: #999;
}

.pickup-location-page__menu-icon {
  cursor: pointer;
}

/* Container */
.pickup-location-page__container {
  flex: 1;
  overflow-y: auto;
  padding: 24px 20px;
  -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar */
.pickup-location-page__container::-webkit-scrollbar {
  display: none;
}

.pickup-location-page__container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.pickup-location-page__content {
  max-width: 480px;
  margin: 0 auto;
  padding-bottom: max(120px, calc(120px + env(safe-area-inset-bottom, 0px)));
}

/* Title Section */
.pickup-location-page__title-section {
  margin-bottom: 32px;
  text-align: left;
}

.pickup-location-page__title {
  font-size: 32px;
  font-weight: 700;
  color: #1d1d1f;
  margin: 0 0 12px 0;
  line-height: 1.2;
}

.pickup-location-page__subtitle {
  font-size: 14px;
  color: #9CA3AF;
  margin: 0;
  line-height: 1.5;
}

/* Search */
.pickup-location-page__search {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.pickup-location-page__search-input {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background-color: #ffffff;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  transition: all 0.2s;
}

.pickup-location-page__search-input:focus-within {
  border-color: #ffd700;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.pickup-location-page__search-icon {
  color: #999;
  flex-shrink: 0;
}

.pickup-location-page__input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 14px;
  color: #1d1d1f;
  outline: none;
  font-family: inherit;
}

.pickup-location-page__input::-moz-placeholder {
  color: #ccc;
}

.pickup-location-page__input::placeholder {
  color: #ccc;
}

.pickup-location-page__location-btn {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background-color: #ffd700;
  border: none;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}

.pickup-location-page__location-btn:hover {
  background-color: #ffc700;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

/* Search Results */
.pickup-location-page__results {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  max-height: 200px;
  overflow-y: auto;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: #ffffff;
}

.pickup-location-page__result-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: background-color 0.2s;
  text-align: left;
  font-family: inherit;
}

.pickup-location-page__result-item:hover {
  background-color: #fffef5;
}

.pickup-location-page__result-icon {
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.pickup-location-page__result-text {
  font-size: 13px;
  color: #1d1d1f;
  line-height: 1.4;
  flex: 1;
}

/* Map Container */
.pickup-location-page__map-container {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  background-color: #f9f9f9;
  margin-bottom: 16px;
  height: 300px;
}

.pickup-location-page__map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  color: #999;
  font-size: 14px;
}

/* Selected Location */
.pickup-location-page__selected {
  display: flex;
  gap: 12px;
  padding: 16px;
  background-color: #fffef5;
  border-radius: 8px;
  border: 1px solid #ffe680;
  margin-bottom: 24px;
}

.pickup-location-page__selected-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.pickup-location-page__selected-content {
  flex: 1;
}

.pickup-location-page__selected-title {
  font-size: 13px;
  font-weight: 600;
  color: #1d1d1f;
  margin: 0 0 4px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: left;
}

.pickup-location-page__selected-text {
  font-size: 12px;
  color: #666;
  margin: 0;
  line-height: 1.5;
  text-align: left;
}

/* Footer */
.pickup-location-page__footer {
  padding: 16px 0;
  padding-top: 24px;
  background-color: transparent;
  border-top: none;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.pickup-location-page__back-button {
  width: 100%;
  padding: 14px 16px;
  background-color: #ffffff;
  border: 2px solid #1d1d1f;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #1d1d1f;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.pickup-location-page__back-button:hover {
  background-color: #f5f5f5;
  border-color: #1d1d1f;
}

.pickup-location-page__back-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pickup-location-page__button {
  width: 100%;
  padding: 14px 16px;
  background-color: #ffd700;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #1d1d1f;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.pickup-location-page__button:hover:not(:disabled) {
  background-color: #ffc700;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.pickup-location-page__button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Responsive */
@media (max-width: 480px) {
  .pickup-location-page__container {
    padding: 16px 16px;
  }

  .pickup-location-page__title {
    font-size: 28px;
  }

  .pickup-location-page__map-container {
    height: 250px;
  }
}


/* Form Group */
.pickup-location-page__form-group {
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pickup-location-page__form-label {
  font-size: 13px;
  font-weight: 600;
  color: #1d1d1f;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pickup-location-page__form-input {
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  color: #1d1d1f;
  background-color: #ffffff;
  font-family: inherit;
  transition: all 0.2s;
  box-sizing: border-box;
}

.pickup-location-page__form-input:focus {
  outline: none;
  border-color: #ffd700;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.pickup-location-page__form-input:disabled {
  background-color: #f5f5f5;
  cursor: not-allowed;
  opacity: 0.6;
}


/* Section Styling */
.pickup-location-page__section {
  margin-bottom: 20px;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 20px;
}

.pickup-location-page__section-header {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.pickup-location-page__section-icon {
  font-size: 24px;
  color: #FFD700;
  flex-shrink: 0;
  margin-top: 2px;
}

.pickup-location-page__section-title {
  font-size: 16px;
  font-weight: 700;
  color: #1d1d1f;
  margin: 0 0 4px 0;
  text-align: left;
}

.pickup-location-page__section-subtitle {
  font-size: 13px;
  color: #9CA3AF;
  margin: 0;
  text-align: left;
}

/* Transport Options */
.pickup-location-page__transport-options {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pickup-location-page__transport-option {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  background-color: #F9F9F9;
  border: 2px solid #E5E7EB;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  text-align: left;
}

.pickup-location-page__transport-option:hover {
  border-color: #FFD700;
  background-color: #FFFEF5;
}

.pickup-location-page__transport-option.active {
  border-color: #FFD700;
  background-color: #FFFEF5;
}

.pickup-location-page__transport-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.pickup-location-page__transport-icon--green {
  filter: hue-rotate(120deg) saturate(1.5);
}

.pickup-location-page__transport-text {
  flex: 1;
}

.pickup-location-page__transport-title {
  font-size: 14px;
  font-weight: 600;
  color: #1d1d1f;
  margin: 0 0 4px 0;
}

.pickup-location-page__transport-desc {
  font-size: 12px;
  color: #9CA3AF;
  margin: 0;
}

/* Info Card Override */
.pickup-location-info-card {
  background-color: #FFFEF5 !important;
  border: 2px dashed #FFE680 !important;
  margin-bottom: 0 !important;
}

.pickup-location-info-card .info-card__icon {
  background-color: #ffffff !important;
  border-radius: 50% !important;
}

.pickup-location-info-card .info-card__title {
  color: #1d1d1f;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pickup-location-info-card .info-card__text {
  color: #999;
}

/* Ant Design Date Picker Override */
.pickup-location-page__ant-date-picker {
  width: 100% !important;
}

.pickup-location-page__ant-date-picker .ant-picker {
  width: 100% !important;
  padding: 16px 16px !important;
  border: 1px solid #e0e0e0 !important;
  border-radius: 8px !important;
  font-size: 16px !important;
  background-color: #ffffff !important;
  transition: all 0.2s !important;
  height: auto !important;
}

.pickup-location-page__ant-date-picker .ant-picker:hover {
  border-color: #ffd700 !important;
}

.pickup-location-page__ant-date-picker .ant-picker-focused {
  border-color: #ffd700 !important;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1) !important;
}


/* Distance Info */
.pickup-location-page__distance-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  background-color: #e8f5e9;
  border-radius: 8px;
  border-left: 4px solid #4caf50;
  margin-top: 16px;
  color: #2e7d32;
  text-align: left;
}

.pickup-location-page__distance-row {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  line-height: 1.4;
}

.pickup-location-page__distance-row span {
  font-weight: 500;
}

.pickup-location-page__distance-row strong {
  font-weight: 600;
  color: #1b5e20;
}

.pickup-location-page__distance-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 16px;
  background-color: #e8f5e9;
  border-radius: 8px;
  border-left: 4px solid #4caf50;
  margin-top: 16px;
  font-size: 13px;
  color: #2e7d32;
  line-height: 1.4;
  text-align: left;
}

.pickup-location-page__distance-info strong {
  font-weight: 600;
}

.pickup-location-page__distance-line {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Error Message */
.pickup-location-page__error {
  font-size: 12px;
  color: #dc2626;
  margin: 0;
  padding: 8px 12px;
  background-color: #fef2f2;
  border-radius: 6px;
  border-left: 3px solid #dc2626;
  text-align: left;
}
/* Location Card */
.location-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  background-color: #ffffff;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
}

.location-card__header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid #e0e0e0;
}

.location-card__edit-btn {
  background: none;
  border: none;
  color: #ffd700;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.2s;
}

.location-card__edit-btn:hover {
  opacity: 0.7;
}

.location-card__content {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
}

.location-card__item {
  display: flex;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid #e0e0e0;
}

.location-card__item:last-child {
  border-bottom: none;
}

.location-card__item-icon {
  font-size: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.location-card__item-label {
  font-size: 12px;
  font-weight: 600;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 4px 0;
  text-align: left;
}

.location-card__item-campus-name {
  font-size: 13px;
  font-weight: 600;
  color: #1d1d1f;
  margin: 0 0 4px 0;
  text-align: left;
}

.location-card__item-address {
  font-size: 13px;
  color: #1d1d1f;
  margin: 0;
  line-height: 1.4;
  text-align: left;
  font-weight: 500;
}
.review-details-page {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #F9F9F9;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
}

/* Header */
.review-details-page__header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid #f0f0f0;
  background-color: #ffffff;
  gap: 20px;
}

.review-details-page__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 16px;
}

.review-details-page__logo-img {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
}

.review-details-page__logo-text {
  color: #000;
}

.review-details-page__logo-highlight {
  color: #ffd700;
}

/* Container */
.review-details-page__container {
  flex: 1;
  overflow-y: auto;
  padding: 24px 20px;
}

/* Hide scrollbar */
.review-details-page__container::-webkit-scrollbar {
  display: none;
}

.review-details-page__container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.review-details-page__content {
  max-width: 480px;
  margin: 0 auto;
  padding-bottom: max(120px, calc(120px + env(safe-area-inset-bottom, 0px)));
}

/* Title */
.review-details-page__title {
  font-size: 32px;
  font-weight: 700;
  color: #1d1d1f;
  margin: 0 0 16px 0;
  line-height: 1.2;
  text-align: left;
}

/* Info Banner */
.review-details-page__info-banner {
  display: flex;
  gap: 12px;
  padding: 12px 16px;
  background-color: #e8f5e9;
  border-radius: 8px;
  border-left: 4px solid #4caf50;
  margin-bottom: 20px;
}

.review-details-page__info-icon {
  font-size: 20px;
  color: #4caf50;
  flex-shrink: 0;
}

.review-details-page__info-content {
  flex: 1;
}

.review-details-page__info-text {
  font-size: 13px;
  color: #2e7d32;
  margin: 0;
  line-height: 1.4;
  text-align: left;
}

.review-details-page__info-subtext {
  font-size: 12px;
  color: #2e7d32;
  margin: 8px 0 0 0;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: left;
}

.review-details-page__info-subtext strong {
  font-weight: 600;
}

/* Section */
.review-details-page__section {
  margin-bottom: 20px;
  padding: 16px;
  background-color: #ffffff;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
}

.review-details-page__section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.review-details-page__section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #1d1d1f;
}

.review-details-page__section-icon {
  font-size: 20px;
}

.review-details-page__edit-btn {
  background: none;
  border: none;
  color: #ffd700;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.2s;
}

.review-details-page__edit-btn:hover {
  opacity: 0.7;
}

/* Details Grid */
.review-details-page__details-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.review-details-page__detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
}

.review-details-page__detail-item:last-child {
  border-bottom: none;
}

.review-details-page__detail-label {
  font-size: 12px;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  flex: 0 0 calc(50% - 10px);
  text-align: left;
}

.review-details-page__detail-value {
  font-size: 14px;
  color: #1d1d1f;
  font-weight: 500;
  flex: 0 0 calc(50% - 10px);
  text-align: right;
}

.review-details-page__gender-icon[data-gender="boy"] {
  color: #2196F3;
}

.review-details-page__gender-icon[data-gender="girl"] {
  color: #E91E63;
}

.review-details-page__gender-icon[data-gender="other"] {
  color: #9C27B0;
}

/* Location Card */
.review-details-page__location-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  background-color: #ffffff;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
}

.review-details-page__location-card-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid #e0e0e0;
}

.review-details-page__location-edit-btn {
  background: none;
  border: none;
  color: #ffd700;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.2s;
}

.review-details-page__location-edit-btn:hover {
  opacity: 0.7;
}

.review-details-page__location-card-content {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
}

.review-details-page__location-item {
  display: flex;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid #e0e0e0;
}

.review-details-page__location-item:last-child {
  border-bottom: none;
}

.review-details-page__location-item-icon {
  font-size: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.review-details-page__location-item-label {
  font-size: 12px;
  font-weight: 600;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 4px 0;
  text-align: left;
}

.review-details-page__location-item-campus-name {
  font-size: 13px;
  font-weight: 600;
  color: #1d1d1f;
  margin: 0 0 4px 0;
  text-align: left;
}

.review-details-page__location-item-address {
  font-size: 13px;
  color: #1d1d1f;
  margin: 0;
  line-height: 1.4;
  text-align: left;
  font-weight: 500;
}

.review-details-page__location-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.review-details-page__location-content {
  flex: 1;
}

.review-details-page__location-title {
  font-size: 13px;
  font-weight: 600;
  color: #1d1d1f;
  margin: 0 0 4px 0;
  text-align: left;
}

.review-details-page__location-address {
  font-size: 12px;
  color: #666;
  margin: 0 0 8px 0;
  line-height: 1.4;
  text-align: left;
}

.review-details-page__location-badge {
  display: inline-block;
  font-size: 11px;
  color: #4caf50;
  font-weight: 600;
}

/* Why Zero Section */
.review-details-page__why-zero {
  padding: 16px;
  background-color: #f3e5f5;
  border-radius: 12px;
  border: 1px solid #e1bee7;
  margin-bottom: 20px;
}

.review-details-page__why-zero-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.review-details-page__why-zero-icon {
  font-size: 20px;
}

.review-details-page__why-zero-title {
  font-size: 12px;
  font-weight: 700;
  color: #6a1b9a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.review-details-page__why-zero-text {
  font-size: 12px;
  color: #6a1b9a;
  margin: 0 0 16px 0;
  line-height: 1.5;
  text-align: left;
}

.review-details-page__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 100%;
}

.review-details-page__feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  padding: 12px 8px;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  min-width: 0;
}

.review-details-page__feature-icon {
  font-size: 24px;
  color: #4caf50;
  flex-shrink: 0;
}

.review-details-page__feature-icon--legal {
  font-size: 24px;
  color: #4caf50;
  background-color: #c8e6c9;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-details-page__feature-icon--verified {
  font-size: 24px;
  color: #2196F3;
  background-color: #bbdefb;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-details-page__feature-icon--fixed {
  font-size: 24px;
  color: #9c27b0;
  background-color: #e1bee7;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-details-page__feature-text {
  font-size: 11px;
  color: #1d1d1f;
  font-weight: 600;
  line-height: 1.3;
}

/* Footer */
.review-details-page__footer {
  padding: 0px 0;
  background-color: transparent;
  border-top: none;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.review-details-page__edit-details-btn {
  padding: 12px 16px;
  background-color: #ffffff;
  border: 2px solid #1d1d1f;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #1d1d1f;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.review-details-page__edit-details-btn:hover {
  background-color: #f9f9f9;
}

.review-details-page__continue-btn {
  padding: 14px 16px;
  background-color: #ffd700;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #1d1d1f;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.review-details-page__continue-btn:hover:not(:disabled) {
  background-color: #ffc700;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.review-details-page__continue-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Responsive */
@media (max-width: 480px) {
  .review-details-page__container {
    padding: 16px 16px;
  }

  .review-details-page__title {
    font-size: 28px;
  }

  .review-details-page__features {
    flex-direction: column;
    gap: 8px;
  }
}


/* Error Banner */
.review-details-page__error-banner {
  display: flex;
  gap: 12px;
  padding: 12px 16px;
  background-color: #fef2f2;
  border-radius: 8px;
  border-left: 4px solid #dc2626;
  margin-bottom: 24px;
}

.review-details-page__error-icon {
  font-size: 20px;
  color: #dc2626;
  flex-shrink: 0;
}

.review-details-page__error-content {
  flex: 1;
}

.review-details-page__error-text {
  font-size: 13px;
  color: #991b1b;
  margin: 0;
  line-height: 1.4;
}

/* Modal Overlay Styles */
.review-details-page__modal-overlay {
  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;
  animation: fadeIn 0.2s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.review-details-page__modal {
  background: white;
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  max-width: 320px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: scaleIn 0.3s ease-out;
}

@keyframes scaleIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.review-details-page__modal h3 {
  margin: 24px 0 8px 0;
  font-size: 18px;
  font-weight: 600;
  color: #111827;
}

.review-details-page__modal p {
  margin: 0;
  font-size: 14px;
  color: #6b7280;
}
.edit-details-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #F9F9F9;
}

.edit-details-page__header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 16px 20px;
  background-color: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  gap: 20px;
}

.edit-details-page__back-icon {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: #374151;
  border-radius: 8px;
  transition: background-color 0.2s;
  flex-shrink: 0;
}

.edit-details-page__back-icon:hover {
  background-color: #f3f4f6;
}

.edit-details-page__logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.edit-details-page__logo-img {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
}

.edit-details-page__logo-text {
  font-size: 16px;
  font-weight: 700;
  color: #1d1d1f;
}

.edit-details-page__logo-highlight {
  color: #f5a623;
}

.edit-details-page__header-spacer {
  display: none;
  width: 36px;
}

.edit-details-page__container {
  flex: 1;
  overflow-y: auto;
  padding: 24px 20px;
  -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar */
.edit-details-page__container::-webkit-scrollbar {
  display: none;
}

.edit-details-page__container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.edit-details-page__content {
  max-width: 480px;
  margin: 0 auto;
  padding-bottom: max(120px, calc(120px + env(safe-area-inset-bottom, 0px)));
}

.edit-details-page__title-section {
  margin-bottom: 24px;
  text-align: left;
}

.edit-details-page__title {
  font-size: 32px;
  font-weight: 700;
  color: #1d1d1f;
  margin: 0 0 12px 0;
  line-height: 1.2;
  text-align: left;
}

.edit-details-page__subtitle {
  font-size: 14px;
  color: #999;
  margin: 0;
  line-height: 1.5;
  text-align: left;
}

/* Info Banner */
.edit-details-page__info-banner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  background-color: #ecfdf5;
  border-radius: 10px;
  margin-bottom: 20px;
  text-align: left;
}

.edit-details-page__info-icon {
  color: #10b981;
  flex-shrink: 0;
  margin-top: 2px;
}

.edit-details-page__info-content {
  flex: 1;
}

.edit-details-page__info-text {
  font-size: 13px;
  color: #065f46;
  margin: 0;
  line-height: 1.4;
}

.edit-details-page__info-subtext {
  font-size: 12px;
  color: #065f46;
  margin: 8px 0 0 0;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

.edit-details-page__info-subtext strong {
  font-weight: 600;
}

/* Section */
.edit-details-page__section {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
  border: 1px solid #e5e7eb;
}

.edit-details-page__section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.edit-details-page__section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #111827;
}

.edit-details-page__section-icon {
  color: #f5a623;
}

.edit-details-page__edit-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: none;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  cursor: pointer;
  transition: all 0.2s;
}

.edit-details-page__edit-btn:hover {
  background-color: #fffbeb;
  border-color: #f5a623;
  color: #92400e;
}

/* Details Grid - View Mode */
.edit-details-page__details-grid {
  display: grid;
  gap: 12px;
}

.edit-details-page__detail-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px;
  background-color: #f9fafb;
  border-radius: 8px;
  text-align: left;
}

.edit-details-page__detail-label {
  font-size: 11px;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: left;
  flex-shrink: 0;
}

.edit-details-page__detail-value {
  font-size: 14px;
  font-weight: 500;
  color: #111827;
}

.edit-details-page__gender-icon[data-gender="boy"] {
  color: #2196F3;
}

.edit-details-page__gender-icon[data-gender="girl"] {
  color: #E91E63;
}

.edit-details-page__gender-icon[data-gender="other"] {
  color: #9C27B0;
}

/* Location Card */
.edit-details-page__location-card {
  display: flex;
  gap: 12px;
  padding: 12px;
  background-color: #f9fafb;
  border-radius: 8px;
  text-align: left;
}

.edit-details-page__location-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.edit-details-page__location-content {
  flex: 1;
}

.edit-details-page__location-title {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  margin: 0 0 4px 0;
}

.edit-details-page__location-address {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
  line-height: 1.4;
}

/* Notice */
.edit-details-page__notice {
  display: flex;
  gap: 12px;
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 16px;
  text-align: left;
}

.edit-details-page__notice--warning {
  background-color: #fffbeb;
  border: 1px solid #f59e0b;
}

.edit-details-page__notice-icon {
  color: #f59e0b;
  flex-shrink: 0;
}

.edit-details-page__notice-content {
  flex: 1;
}

.edit-details-page__notice-title {
  font-size: 14px;
  font-weight: 600;
  color: #92400e;
  margin: 0 0 4px 0;
}

.edit-details-page__notice-text {
  font-size: 13px;
  color: #a16207;
  margin: 0;
  line-height: 1.4;
}

/* Why Zero Section */
.edit-details-page__why-zero {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
  border: 1px solid #e5e7eb;
  text-align: left;
}

.edit-details-page__why-zero-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.edit-details-page__why-zero-icon {
  font-size: 18px;
}

.edit-details-page__why-zero-title {
  font-size: 11px;
  font-weight: 700;
  color: #6b7280;
  letter-spacing: 0.5px;
}

.edit-details-page__why-zero-text {
  font-size: 13px;
  color: #374151;
  margin: 0 0 12px 0;
  line-height: 1.5;
}

.edit-details-page__features {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.edit-details-page__feature {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #065f46;
}

.edit-details-page__feature-icon {
  color: #10b981;
}

/* ============ EDIT MODE STYLES ============ */

/* Section Divider */
.edit-details-page__section-divider {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 0;
  margin: 8px 0 16px 0;
  border-top: 1px solid #e5e7eb;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
}

.edit-details-page__section-divider svg {
  color: #f5a623;
}

/* Section Header Divider - New Style */
.edit-details-page__section-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 0 12px 0;
  margin: 24px 0 16px 0;
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}

.edit-details-page__section-header-icon {
  font-size: 18px;
  color: #ffd700;
}

.edit-details-page__section-header-title {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}

/* Form */
.edit-details-page__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}

.edit-details-page__form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.edit-details-page__field-label {
  font-size: 12px;
  font-weight: 600;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: left;
  margin: 0;
}

.edit-details-page__form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.edit-details-page__form-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: left;
}

.edit-details-page__label-icon {
  color: #9ca3af;
}

.edit-details-page__form-input {
  padding: 14px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  font-size: 14px;
  color: #111827;
  background-color: #ffffff;
  transition: all 0.2s;
}

.edit-details-page__form-input:focus {
  outline: none;
  border-color: #f5a623;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.1);
}

.edit-details-page__form-input::-moz-placeholder {
  color: #9ca3af;
}

.edit-details-page__form-input::placeholder {
  color: #9ca3af;
}

/* Gender Group */
.edit-details-page__gender-group {
  display: flex;
  gap: 12px;
}

.edit-details-page__gender-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 12px;
  background-color: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 500;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.2s;
}

.edit-details-page__gender-btn:hover {
  border-color: #ffd700;
  background-color: #fffef5;
}

.edit-details-page__gender-btn.active {
  border-color: #ffd700;
  background-color: #fffef5;
}

.edit-details-page__gender-icon {
  font-size: 24px;
}

.edit-details-page__gender-label {
  font-size: 13px;
  font-weight: 500;
  color: #1d1d1f;
  text-align: center;
}

/* Card Wrapper */
.edit-details-page__card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 16px;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.edit-details-page__card:hover {
  border-color: #ffd700;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.1);
}

.edit-details-page__student-info-card {
  gap: 16px;
  padding: 16px;
  margin-top: 24px;
}

.edit-details-page__pickup-location-card {
  gap: 20px;
  padding: 16px;
  margin-top: 24px;
}

.edit-details-page__card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  text-align: left;
}

.edit-details-page__card-header-icon {
  font-size: 18px;
  color: #ffd700;
}

.edit-details-page__card-header-title {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}

.edit-details-page__gender-card {
  padding: 16px;
}

.edit-details-page__card-label {
  font-size: 12px;
  font-weight: 600;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: left;
  margin: 0;
}

/* Input */
.edit-details-page__input {
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid #e5e7eb;
  border-radius: 0;
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  background-color: transparent;
  color: #1d1d1f;
  transition: all 0.2s;
  width: 100%;
  box-sizing: border-box;
}

.edit-details-page__input::-moz-placeholder {
  color: #ccc;
}

.edit-details-page__input::placeholder {
  color: #ccc;
}

.edit-details-page__input:focus {
  outline: none;
  border-bottom-color: #ffd700;
}

.edit-details-page__input.error {
  border-bottom-color: #ff6b6b;
}

/* Name Row */
.edit-details-page__name-row {
  display: flex;
  gap: 20px;
}

.edit-details-page__name-row .edit-details-page__input {
  flex: 1;
}

/* Select */
.edit-select__control {
  min-height: 44px !important;
  border-radius: 0 !important;
  background-color: transparent !important;
  border: none !important;
  border-bottom: 1px solid #e5e7eb !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  transition: all 0.2s !important;
  box-shadow: none !important;
  text-align: left !important;
}

.edit-select__value-container {
  padding-left: 0 !important;
  text-align: left !important;
}

.edit-select__single-value {
  text-align: left !important;
  margin-left: 0 !important;
}

.edit-select__control:hover {
  border-bottom-color: #ffd700 !important;
}

.edit-select__control--is-focused {
  border-bottom-color: #ffd700 !important;
  box-shadow: none !important;
}

.edit-select__control--is-disabled {
  opacity: 0.6 !important;
  cursor: not-allowed !important;
}

.edit-select__menu {
  border-radius: 8px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
  z-index: 1000 !important;
}

.edit-select__menu-list {
  padding: 0 !important;
}

.edit-select__option {
  padding: 12px 16px !important;
  cursor: pointer !important;
  background-color: #ffffff !important;
  color: #1d1d1f !important;
}

.edit-select__option--is-focused {
  background-color: #fffef5 !important;
}

.edit-select__option--is-selected {
  background-color: #ffd700 !important;
  color: #1d1d1f !important;
}

.edit-select__input-container {
  color: #1d1d1f !important;
}

.edit-select__placeholder {
  color: #ccc !important;
}

/* Info Card */
.edit-details-page__info-card {
  display: flex;
  gap: 12px;
  padding: 16px;
  background-color: #fffbeb;
  border-radius: 12px;
  margin-top: 16px;
  text-align: left;
}

.edit-details-page__info-card-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.edit-details-page__info-card-content {
  flex: 1;
}

.edit-details-page__info-card-title {
  font-size: 11px;
  font-weight: 700;
  color: #92400e;
  letter-spacing: 0.5px;
  margin: 0 0 4px 0;
}

.edit-details-page__info-card-text {
  font-size: 13px;
  color: #a16207;
  margin: 0;
  line-height: 1.4;
}

/* Footer */
.edit-details-page__footer {
  display: flex;
  gap: 12px;
  padding: 0 0 0 0;
  background-color: transparent;
  border-top: none;
  width: 100%;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
}

.edit-details-page__primary-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  background-color: #ffd700;
  color: #1d1d1f;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.edit-details-page__primary-btn:hover:not(:disabled) {
  background-color: #ffc700;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.edit-details-page__primary-btn:disabled {
  background-color: #9ca3af;
  cursor: not-allowed;
  transform: none;
}

.edit-details-page__primary-btn--full {
  flex: 1;
}

.edit-details-page__secondary-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  background-color: #ffffff;
  color: #374151;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.edit-details-page__secondary-btn:hover {
  background-color: #f9fafb;
  border-color: #d1d5db;
}

/* Loading & Error States */
.edit-details-page__loading,
.edit-details-page__error {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  gap: 16px;
  color: #6b7280;
}

.edit-details-page__back-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background-color: #111827;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}


/* Loading Section */
.edit-details-page__loading-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  color: #6b7280;
  font-size: 14px;
}

/* Map Search */
.edit-details-page__search {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.edit-details-page__search-input-wrapper {
  flex: 1;
  position: relative;
}

.edit-details-page__search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
}

.edit-details-page__search-input {
  width: 100%;
  padding: 14px 14px 14px 44px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  font-size: 14px;
  color: #111827;
  background-color: #ffffff;
  transition: all 0.2s;
}

.edit-details-page__search-input:focus {
  outline: none;
  border-color: #f5a623;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.1);
}

.edit-details-page__location-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.2s;
}

.edit-details-page__location-btn:hover {
  background-color: #fffbeb;
  border-color: #f5a623;
}

/* Search Results */
.edit-details-page__results {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
}

.edit-details-page__result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 16px;
  background: none;
  border: none;
  border-bottom: 1px solid #f3f4f6;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s;
}

.edit-details-page__result-item:last-child {
  border-bottom: none;
}

.edit-details-page__result-item:hover {
  background-color: #fffbeb;
}

.edit-details-page__result-icon {
  font-size: 16px;
  flex-shrink: 0;
}

.edit-details-page__result-text {
  font-size: 13px;
  color: #374151;
  line-height: 1.4;
}

/* Map Container */
.edit-details-page__map-container {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
  border: 1px solid #e5e7eb;
}

.edit-details-page__map-placeholder {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f3f4f6;
  color: #6b7280;
  font-size: 14px;
}

/* Map Placeholder Container */
.edit-details-page__map-placeholder-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px;
  background-color: #f3f4f6;
  border-radius: 12px;
  margin: 16px 0;
}

.edit-details-page__map-placeholder {
  font-size: 48px;
  margin: 0;
}

.edit-details-page__map-placeholder-text {
  font-size: 12px;
  color: #6b7280;
  margin: 0;
  text-align: center;
}

/* Distance Info */
.edit-details-page__distance-info {
  padding: 12px 16px;
  background-color: #ecfdf5;
  border-radius: 8px;
  margin: 16px 0;
  font-size: 13px;
  color: #065f46;
}

.edit-details-page__distance-info p {
  margin: 4px 0;
}

.edit-details-page__distance-info strong {
  font-weight: 600;
}

.edit-details-page__distance-loading {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background-color: #ecfdf5;
  border-radius: 8px;
  margin: 16px 0;
  font-size: 13px;
  color: #065f46;
}

/* Good to Know Card */
.edit-details-page__good-to-know {
  display: flex;
  gap: 12px;
  padding: 16px;
  background-color: #eff6ff;
  border-radius: 12px;
  border-left: 4px solid #3b82f6;
  margin: 24px 0;
}

.edit-details-page__good-to-know-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.edit-details-page__good-to-know-content {
  flex: 1;
}

.edit-details-page__good-to-know-title {
  font-size: 13px;
  font-weight: 600;
  color: #1e40af;
  margin: 0 0 4px 0;
}

.edit-details-page__good-to-know-text {
  font-size: 12px;
  color: #1e40af;
  margin: 0;
  line-height: 1.5;
}

/* Edit Details Info Card */
.edit-details-info-card {
  background-color: #eff6ff !important;
  border: 1px solid #bfdbfe !important;
  border-radius: 12px !important;
  padding: 16px !important;
}

.edit-details-info-card .info-card__icon {
  background-color: transparent !important;
  border-radius: 0 !important;
  width: auto !important;
  height: auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.edit-details-info-card .info-card__title {
  color: #1e40af !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  margin: 0 0 4px 0 !important;
}

.edit-details-info-card .info-card__text {
  color: #1e40af !important;
  font-size: 12px !important;
  margin: 0 !important;
  line-height: 1.5 !important;
}

/* Selected Location */
.edit-details-page__selected-location {
  display: flex;
  gap: 12px;
  padding: 12px;
  background-color: #f9fafb;
  border-radius: 10px;
  margin-bottom: 16px;
  text-align: left;
}

.edit-details-page__selected-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.edit-details-page__selected-content {
  flex: 1;
}

.edit-details-page__selected-title {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  margin: 0 0 4px 0;
}

.edit-details-page__selected-text {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
  line-height: 1.4;
}

/* Modal Overlay Styles */
.edit-details-page__modal-overlay {
  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;
  animation: fadeIn 0.2s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.edit-details-page__modal {
  background: white;
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  max-width: 320px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: scaleIn 0.3s ease-out;
}

@keyframes scaleIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.edit-details-page__modal h3 {
  margin: 24px 0 8px 0;
  font-size: 18px;
  font-weight: 600;
  color: #111827;
}

.edit-details-page__modal p {
  margin: 0;
  font-size: 14px;
  color: #6b7280;
}
.user-details-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #f9f9f9;
}

.user-details-page__container {
  flex: 1;
  overflow-y: auto;
  padding: 24px 20px;
}

/* Hide scrollbar */
.user-details-page__container::-webkit-scrollbar {
  display: none;
}

.user-details-page__container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.user-details-page__content {
  max-width: 480px;
  margin: 0 auto;
  padding-bottom: max(80px, calc(80px + env(safe-area-inset-bottom, 0px)));
}

/* Title Section */
.user-details-page__title-section {
  margin-bottom: 24px;
  text-align: left;
}

.user-details-page__title {
  font-size: 32px;
  font-weight: 700;
  color: #1d1d1f;
  margin: 0 0 12px 0;
  line-height: 1.2;
  text-align: left;
}

.user-details-page__subtitle {
  font-size: 14px;
  color: #999;
  margin: 0;
  line-height: 1.5;
  text-align: left;
}

/* Form */
.user-details-page__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}

.user-details-page__form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.user-details-page__card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.user-details-page__card-label {
  font-size: 11px;
  font-weight: 600;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: left;
  margin: 0;
}

.user-details-page__name-row {
  display: flex;
  gap: 12px;
}

.user-details-page__input {
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid #e5e7eb;
  border-radius: 0;
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  background-color: transparent;
  color: #1d1d1f;
  transition: all 0.2s;
  width: 100%;
  box-sizing: border-box;
}

.user-details-page__name-row .user-details-page__input {
  flex: 1;
}

.user-details-page__input::-moz-placeholder {
  color: #ccc;
}

.user-details-page__input::placeholder {
  color: #ccc;
}

.user-details-page__input:focus {
  outline: none;
  border-bottom-color: #ffd700;
}

.user-details-page__input--disabled {
  background-color: transparent;
  color: #9ca3af;
  cursor: not-allowed;
  opacity: 0.6;
}

.user-details-page__input--disabled:focus {
  border-bottom-color: #e5e7eb;
}

.user-details-page__form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.user-details-page__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.user-details-page__form-field-inline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.user-details-page__field-label {
  font-size: 12px;
  font-weight: 600;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: left;
  margin: 0;
}

.user-details-page__field-hint {
  font-size: 12px;
  color: #999;
  margin: 4px 0 0 0;
  line-height: 1.4;
  text-align: left;
}

.user-details-page__form-input {
  padding: 14px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  font-size: 14px;
  color: #111827;
  background-color: #ffffff;
  transition: all 0.2s;
  font-family: inherit;
}

.user-details-page__form-input:focus {
  outline: none;
  border-color: #f5a623;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.1);
}

.user-details-page__form-input::-moz-placeholder {
  color: #9ca3af;
}

.user-details-page__form-input::placeholder {
  color: #9ca3af;
}

.user-details-page__form-input--disabled {
  background-color: #f3f4f6;
  color: #9ca3af;
  cursor: not-allowed;
  opacity: 0.6;
}

.user-details-page__form-input--disabled:focus {
  border-color: #e5e7eb;
  box-shadow: none;
}

/* Form Actions */
.user-details-page__form-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.user-details-page__secondary-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  background-color: #ffffff;
  color: #374151;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.user-details-page__secondary-btn:hover:not(:disabled) {
  background-color: #f9fafb;
  border-color: #d1d5db;
}

.user-details-page__secondary-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.user-details-page__primary-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  background-color: #ffd700;
  color: #1d1d1f;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.user-details-page__primary-btn:hover:not(:disabled) {
  background-color: #ffc700;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.user-details-page__primary-btn:disabled {
  background-color: #9ca3af;
  cursor: not-allowed;
  transform: none;
}

/* Info Cards (View Mode) */
.user-details-page__info-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.user-details-page__info-card-wrapper {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
  text-align: left;
}

.user-details-page__card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.user-details-page__card-label {
  font-size: 11px;
  font-weight: 600;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: left;
  margin: 0;
}

.user-details-page__card-value {
  font-size: 16px;
  font-weight: 500;
  color: #1d1d1f;
  margin: 0 0 8px 0;
  line-height: 1.4;
}

.user-details-page__card-hint {
  font-size: 12px;
  color: #999;
  margin: 0;
  line-height: 1.4;
}

/* Edit Button */
.user-details-page__edit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 20px;
  background-color: #ffffff;
  color: #374151;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 24px;
}

.user-details-page__edit-btn:hover {
  background-color: #fffbeb;
  border-color: #f5a623;
  color: #92400e;
}

/* Privacy Card */
.user-details-page__privacy-card {
  margin: 24px 0 !important;
}

/* Continue Button */
.user-details-page__continue-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 20px;
  background-color: #ffd700;
  color: #1d1d1f;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 24px;
}

.user-details-page__continue-btn:hover {
  background-color: #ffc700;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

/* Loading State */
.user-details-page__loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  gap: 16px;
  color: #6b7280;
}

/* Subscription Summary Card */
.subscription-summary {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.subscription-summary__card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.subscription-summary__section-label {
  font-size: 11px;
  font-weight: 600;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.subscription-summary__plan-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.subscription-summary__plan-name {
  font-size: 18px;
  font-weight: 700;
  color: #1d1d1f;
}

.subscription-summary__plan-badge {
  font-size: 11px;
  font-weight: 600;
  color: #059669;
  background-color: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 20px;
  padding: 3px 10px;
  white-space: nowrap;
}

.subscription-summary__price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 4px;
}

.subscription-summary__price-main {
  font-size: 24px;
  font-weight: 700;
  color: #1d1d1f;
}

.subscription-summary__price-mrp {
  font-size: 14px;
  color: #9ca3af;
  text-decoration: line-through;
}

.subscription-summary__price-savings {
  font-size: 13px;
  font-weight: 600;
  color: #059669;
}

.subscription-summary__detail-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 0;
  border-bottom: 1px solid #f3f4f6;
}

.subscription-summary__detail-row:last-child {
  border-bottom: none;
}

.subscription-summary__detail-label {
  font-size: 13px;
  color: #6b7280;
  display: flex;
  align-items: center;
  flex: 0 0 calc(50% - 10px);
}

.subscription-summary__detail-value {
  font-size: 13px;
  font-weight: 600;
  color: #1d1d1f;
  text-align: right;
  flex: 0 0 calc(50% - 10px);
}

/* Payment schedule timeline */
.subscription-summary__schedule-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
}

.subscription-summary__schedule-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e5e7eb;
  flex-shrink: 0;
  margin-top: 3px;
}

.subscription-summary__schedule-dot--active {
  background: #059669;
}

.subscription-summary__schedule-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.subscription-summary__schedule-label {
  font-size: 13px;
  font-weight: 600;
  color: #1d1d1f;
}

.subscription-summary__schedule-date {
  font-size: 12px;
  color: #6b7280;
  margin-top: 2px;
}

.subscription-summary__schedule-amount {
  font-size: 14px;
  font-weight: 700;
  color: #1d1d1f;
}

.subscription-summary__total-row {
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
  margin-top: 4px;
  border-top: 1px solid #e5e7eb;
}

.subscription-summary__total-label {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
}

.subscription-summary__total-value {
  font-size: 16px;
  font-weight: 700;
  color: #1d1d1f;
}

/* Responsive */
@media (max-width: 480px) {
  .user-details-page__container {
    padding: 16px 16px;
  }

  .user-details-page__title {
    font-size: 28px;
  }

  .user-details-page__continue-btn {
    max-width: 100%;
  }
}

/* Modal Overlay Styles */
.user-details-page__modal-overlay {
  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;
  animation: fadeIn 0.2s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.user-details-page__modal {
  background: white;
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  max-width: 320px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: scaleIn 0.3s ease-out;
}

@keyframes scaleIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.user-details-page__modal h3 {
  margin: 24px 0 8px 0;
  font-size: 18px;
  font-weight: 600;
  color: #111827;
}

.user-details-page__modal p {
  margin: 0;
  font-size: 14px;
  color: #6b7280;
}
.plan-card {
  position: relative;
  background-color: #ffffff;
  border: 2px solid #e8e8e8;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: left;
  margin-bottom: 16px;
  overflow: visible;
}

.plan-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-color: #d0d0d0;
}

.plan-card.active {
  border-color: #f5a623;
  box-shadow: 0 4px 20px rgba(245, 166, 35, 0.15);
}

/* ===================== */
/* Best Value Badge      */
/* ===================== */
.plan-card__best-value-badge {
  position: absolute;
  top: -14px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  background: linear-gradient(135deg, #4caf50, #2e7d32);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 20px;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.35);
  z-index: 10;
}

/* ===================== */
/* Card Body             */
/* ===================== */
.plan-card__body {
  padding: 20px 20px 16px 20px;
}

/* ===================== */
/* Title & Description   */
/* ===================== */
.plan-card__header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0;
}

.plan-card__header-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  padding-right: 12px;
}

.plan-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.plan-card__title {
  font-size: 18px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.2;
}

.plan-card__total-amount {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.plan-card.active .plan-card__total-amount {
  transform: translateX(-24px);
}

.plan-card__total-label {
  font-size: 11px;
  color: #888;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.plan-card__total-value {
  font-size: 16px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.2;
}

.plan-card__original-mrp {
  font-size: 12px;
  color: #999;
  text-decoration: line-through;
  font-weight: 500;
}

/* Tag (e.g. "3 Payments") */
.plan-card__tag {
  display: inline-block;
  padding: 4px 12px;
  background-color: #e8f0fe;
  color: #1a73e8;
  font-size: 12px;
  font-weight: 700;
  border-radius: 20px;
  letter-spacing: 0.2px;
}

/* Savings Badge Inline */
.plan-card__savings-inline {
  display: inline-block;
  padding: 4px 12px;
  background-color: #e8f5e9;
  color: #2e7d32;
  font-size: 12px;
  font-weight: 700;
  border-radius: 20px;
  letter-spacing: 0.2px;
}

.plan-card__description {
  font-size: 13px;
  color: #777;
  margin: 0 0 12px 0;
  line-height: 1.5;
}

/* ===================== */
/* Tag (e.g. "3 Payments") */
/* ===================== */
.plan-card__tag {
  display: inline-block;
  padding: 4px 12px;
  background-color: #e8f0fe;
  color: #1a73e8;
  font-size: 12px;
  font-weight: 700;
  border-radius: 20px;
  margin-bottom: 10px;
  letter-spacing: 0.2px;
}

/* ===================== */
/* Savings Badge Inline  */
/* ===================== */
.plan-card__savings-inline {
  display: inline-block;
  padding: 4px 12px;
  background-color: #e8f5e9;
  color: #2e7d32;
  font-size: 12px;
  font-weight: 700;
  border-radius: 20px;
  margin-bottom: 10px;
  letter-spacing: 0.2px;
}

/* ===================== */
/* Plan Details Row      */
/* ===================== */
.plan-card__plan-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 0;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 14px;
}

.plan-card__detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.plan-card__detail-label {
  font-size: 13px;
  color: #999;
  font-weight: 400;
  flex: 0 0 calc(50% - 10px);
}

.plan-card__detail-value {
  font-size: 13px;
  color: #1a1a1a;
  font-weight: 700;
  flex: 0 0 calc(50% - 10px);
  text-align: right;
}

/* ===================== */
/* Payment Schedule      */
/* ===================== */
.plan-card__payment-schedule {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 14px;
}

.plan-card__schedule-title {
  font-size: 11px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 12px 0;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.plan-card__schedule-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.plan-card__schedule-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.plan-card__schedule-info {
  flex: 1;
}

.plan-card__schedule-label {
  font-size: 13px;
  color: #333;
  margin: 0;
  line-height: 1.4;
}

.plan-card__schedule-label strong {
  color: #1a1a1a;
  font-weight: 700;
}

.plan-card__schedule-sublabel {
  font-size: 11px;
  color: #888;
  margin: 3px 0 0 0;
  line-height: 1.3;
}

.plan-card__schedule-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: #d0d0d0;
  flex-shrink: 0;
  margin-left: 14px;
  margin-top: 4px;
}

.plan-card__schedule-dot.active {
  background-color: #f5a623;
}

/* ===================== */
/* Features              */
/* ===================== */
.plan-card__features {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding-top: 4px;
}

.plan-card__feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #444;
}

.plan-card__feature-icon {
  color: #4caf50;
  font-size: 13px !important;
  flex-shrink: 0;
}

/* ===================== */
/* Policies Section      */
/* ===================== */
.plan-card__policies {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #f0f0f0;
}

.plan-card__policies-title {
  font-size: 11px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 10px 0;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.plan-card__policies-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.plan-card__policy-item {
  display: flex;
  align-items: center;
  gap: 3px;
}

.plan-card__policy-label {
  font-size: 13px;
  color: #555;
  font-weight: 500;
  cursor: pointer;
}

.plan-card__policy-icon {
  color: #1a73e8;
  font-size: 14px;
  cursor: pointer;
  padding: 4px;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.plan-card__policy-icon:hover {
  background-color: #e8f0fe;
  color: #1557b0;
}

.plan-card__policy-tooltip {
  max-width: 280px;
  font-size: 12px;
  line-height: 1.5;
}

/* ===================== */
/* Continue Button       */
/* ===================== */
.plan-card__continue-btn {
  width: 100%;
  padding: 12px 16px;
  margin-top: 12px;
  background-color: #f5a623;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  letter-spacing: 0.3px;
}

.plan-card__continue-btn:hover {
  background-color: #e89a1f;
  box-shadow: 0 4px 12px rgba(245, 166, 35, 0.3);
}

.plan-card__continue-btn:active {
  background-color: #d68a1a;
  transform: scale(0.98);
}

/* ===================== */
/* Selection Indicator   */
/* ===================== */
.plan-card__selected-indicator {
  position: absolute;
  top: 24px;
  right: 14px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #f5a623;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  z-index: 5;
  font-size: 11px;
}

/* ===================== */
/* Responsive            */
/* ===================== */
@media (max-width: 480px) {
  .plan-card__body {
    padding: 16px 16px 14px 16px;
  }

  .plan-card__title {
    font-size: 16px;
  }
}.select-plans-page {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100vh;
  background-color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
}

/* Header */
.select-plans-page__header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid #f0f0f0;
  background-color: #ffffff;
  position: relative;
  gap: 20px;
}

.select-plans-page__back-btn {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: #1d1d1f;
  display: flex;
  align-items: center;
  justify-content: center;
  position: static;
  flex-shrink: 0;
}

.select-plans-page__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 16px;
  margin: 0;
}

.select-plans-page__logo-img {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
}

.select-plans-page__logo-text {
  color: #000;
}

.select-plans-page__logo-highlight {
  color: #f5a623;
}

.select-plans-page__progress {
  display: flex;
  gap: 8px;
}

.select-plans-page__progress-dot {
  width: 24px;
  height: 4px;
  background-color: #e0e0e0;
  border-radius: 2px;
}

.select-plans-page__progress-dot.active {
  background-color: #f5a623;
}

/* Container */
.select-plans-page__container {
  flex: 1;
  overflow-y: auto;
  padding: 24px 20px;
}

.select-plans-page__container::-webkit-scrollbar {
  display: none;
}

.select-plans-page__container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.select-plans-page__content {
  max-width: 480px;
  margin: 0 auto;
  padding-bottom: max(60px, calc(60px + env(safe-area-inset-bottom, 0px)));
}

/* Title Section */
.select-plans-page__title-section {
  margin-bottom: 24px;
}

.select-plans-page__title {
  font-size: 28px;
  font-weight: 700;
  color: #1d1d1f;
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.select-plans-page__subtitle {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

/* Filters */
.select-plans-page__filters {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  padding: 0;
  background-color: transparent;
  border-radius: 0;
  border: none;
}

@media (min-width: 768px) {
  .select-plans-page__filters {
    flex-direction: row;
  }
}

/* Filter Select Overrides */
.select-plans-page__filters .select-label {
  display: none;
}

.select-plans-page__filters .select {
  padding: 8px 12px;
  font-size: 13px;
  height: 36px;
}

.select-plans-page__filters .select-wrapper {
  gap: 0;
}

/* Distance Info */
.select-plans-page__distance-info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background-color: #f8f9fa;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  margin-bottom: 24px;
}

.select-plans-page__distance-icon {
  color: #1976d2;
  flex-shrink: 0;
}

.select-plans-page__distance-content {
  flex: 1;
  text-align: left;
  margin-right: auto;
}

.select-plans-page__distance-label {
  font-size: 14px;
  font-weight: 600;
  color: #1d1d1f;
  margin: 0;
  text-align: left;
}

.select-plans-page__distance-time {
  font-size: 12px;
  color: #666;
  margin: 4px 0 0 0;
}

/* Service Dates */
.select-plans-page__service-dates {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid #e0e0e0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.select-plans-page__service-start,
.select-plans-page__service-end {
  font-size: 12px;
  color: #666;
  margin: 0;
}

/* Service Dates Card */
.select-plans-page__service-dates-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background-color: #f8f9fa;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  margin-bottom: 24px;
}

.select-plans-page__service-dates-icon {
  color: #f5a623;
  flex-shrink: 0;
}

.select-plans-page__service-dates-content {
  flex: 1;
  text-align: left;
}

.select-plans-page__service-dates-content .select-plans-page__service-start,
.select-plans-page__service-dates-content .select-plans-page__service-end {
  font-size: 13px;
  font-weight: 500;
  color: #1d1d1f;
  margin: 0;
  line-height: 1.5;
}

.select-plans-page__service-dates-content .select-plans-page__service-start {
  margin-bottom: 4px;
}

/* Pricing Options Container */
.select-plans-page__options {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 8px;
}

/* Transport Type Selection */
.select-plans-page__transport-selection {
  margin-bottom: 24px;
}

.select-plans-page__transport-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 12px;
}

.select-plans-page__transport-options {
  display: flex;
  gap: 12px;
}

.select-plans-page__transport-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 12px;
  background-color: #f8f9fa;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 12px;
  font-weight: 500;
  color: #666;
}

.select-plans-page__transport-btn:hover {
  border-color: #f5a623;
  background-color: #fffbeb;
}

.select-plans-page__transport-btn.active {
  border-color: #f5a623;
  background-color: #fffbeb;
  color: #f5a623;
}

.select-plans-page__transport-icon {
  font-size: 24px;
}

.select-plans-page__transport-name {
  font-size: 12px;
  font-weight: 600;
}

/* Plan Card */
.select-plans-page__plan-card {
  position: relative;
  padding: 24px 20px;
  background-color: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  margin-bottom: 16px;
}

.select-plans-page__plan-card:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.select-plans-page__plan-card.active {
  border-color: #f5a623;
}

/* Plan Color Variants */
.select-plans-page__plan-card.plan-color-1 {
  background-color: #ffffff;
  border-color: #e0e0e0;
}

.select-plans-page__plan-card.plan-color-1:hover {
  border-color: #e0e0e0;
}

.select-plans-page__plan-card.plan-color-1.active {
  border-color: #f5a623;
}

.select-plans-page__plan-card.plan-color-2 {
  background-color: #ffffff;
  border-color: #e0e0e0;
}

.select-plans-page__plan-card.plan-color-2:hover {
  border-color: #e0e0e0;
}

.select-plans-page__plan-card.plan-color-2.active {
  border-color: #f5a623;
}

.select-plans-page__plan-card.plan-color-3 {
  background-color: #ffffff;
  border-color: #e0e0e0;
}

.select-plans-page__plan-card.plan-color-3:hover {
  border-color: #e0e0e0;
}

.select-plans-page__plan-card.plan-color-3.active {
  border-color: #f5a623;
}

.select-plans-page__plan-card.plan-color-4 {
  background-color: #ffffff;
  border-color: #e0e0e0;
}

.select-plans-page__plan-card.plan-color-4:hover {
  border-color: #e0e0e0;
}

.select-plans-page__plan-card.plan-color-4.active {
  border-color: #f5a623;
}

.select-plans-page__plan-card.plan-color-5 {
  background-color: #ffffff;
  border-color: #e0e0e0;
}

.select-plans-page__plan-card.plan-color-5:hover {
  border-color: #e0e0e0;
}

.select-plans-page__plan-card.plan-color-5.active {
  border-color: #f5a623;
}

/* Plan Badge */
.select-plans-page__plan-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  background-color: #4caf50;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 20px;
}

.select-plans-page__plan-badge.secondary {
  background-color: #2196f3;
}

/* Plan Header */
.select-plans-page__plan-header {
  margin-bottom: 8px;
}

.select-plans-page__plan-name {
  font-size: 18px;
  font-weight: 700;
  color: #1d1d1f;
  margin: 0;
}

.select-plans-page__plan-capacity {
  display: inline-block;
  padding: 4px 10px;
  background-color: #f5a623;
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  border-radius: 4px;
  margin-top: 8px;
}

.select-plans-page__plan-savings {
  display: inline-block;
  padding: 4px 10px;
  background-color: #e8f5e9;
  color: #2e7d32;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  margin-top: 8px;
}

/* Plan Description */
.select-plans-page__plan-description {
  font-size: 13px;
  color: #666;
  margin: 8px 0 16px 0;
  line-height: 1.5;
}

/* Distance Range */
.select-plans-page__distance-range {
  font-size: 12px;
  color: #0066cc;
  background-color: #f0f7ff;
  padding: 6px 12px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 12px;
  font-weight: 500;
}

/* Price Breakdown */
.select-plans-page__price-breakdown {
  background-color: #fffde7;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
}

.select-plans-page__price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 8px 0;
}

.select-plans-page__price-row:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.select-plans-page__price-label {
  font-size: 13px;
  color: #666;
  text-align: left;
  flex: 0 0 calc(50% - 10px);
}

.select-plans-page__price-value {
  font-size: 14px;
  font-weight: 600;
  color: #1d1d1f;
  flex: 0 0 calc(50% - 10px);
  text-align: right;
}

.select-plans-page__price-row.discount .select-plans-page__price-label {
  color: #4caf50;
}

.select-plans-page__price-row.discount .select-plans-page__price-value {
  color: #4caf50;
}

.select-plans-page__price-row.total {
  padding-top: 12px;
  margin-top: 4px;
}

.select-plans-page__price-row.total .select-plans-page__price-label {
  font-weight: 600;
  color: #1d1d1f;
}

.select-plans-page__price-row.total .select-plans-page__price-value {
  font-size: 18px;
  color: #f5a623;
}

/* Plan Details */
.select-plans-page__plan-details {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 16px;
}

.select-plans-page__plan-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.select-plans-page__plan-detail-label {
  font-size: 11px;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: left;
  flex-shrink: 0;
}

.select-plans-page__plan-detail-value {
  font-size: 14px;
  color: #1d1d1f;
  font-weight: 600;
}

/* Payment Schedule */
.select-plans-page__payment-schedule {
  background-color: #fafafa;
  border-radius: 12px;
  padding: 16px;
}

.select-plans-page__schedule-title {
  font-size: 12px;
  font-weight: 700;
  color: #1d1d1f;
  margin: 0 0 16px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.select-plans-page__schedule-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 16px;
}

.select-plans-page__schedule-item:last-child {
  margin-bottom: 0;
}

.select-plans-page__schedule-info {
  flex: 1;
}

.select-plans-page__schedule-label {
  font-size: 14px;
  font-weight: 600;
  color: #1d1d1f;
  margin: 0;
  text-align: left;
  flex-shrink: 0;
}

.select-plans-page__schedule-sublabel {
  font-size: 11px;
  color: #000000;
  margin: 2px 0 0 0;
  text-align: left;
}

.select-plans-page__schedule-description {
  font-size: 12px;
  color: #4caf50;
  margin: 4px 0 0 0;
}

.select-plans-page__schedule-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #e0e0e0;
  flex-shrink: 0;
  margin-left: 12px;
  margin-top: 4px;
}

.select-plans-page__schedule-dot.active {
  background-color: #f5a623;
}

/* Selection Indicator */
.select-plans-page__selected-indicator {
  position: absolute;
  top: 24px;
  right: 16px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #f5a623;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

/* Terms */
.select-plans-page__terms {
  margin-top: 24px;
  padding: 16px;
  background-color: #f8f9fa;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
}

.select-plans-page__terms-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.select-plans-page__terms-checkbox {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: #f5a623;
}

.select-plans-page__terms-text {
  font-size: 12px;
  color: #666;
  line-height: 1.6;
}

.select-plans-page__terms-text a {
  color: #f5a623;
  font-weight: 600;
  text-decoration: none;
}

.select-plans-page__terms-text a:hover {
  text-decoration: underline;
}

/* Footer */
.select-plans-page__footer {
  padding: 16px 0;
  padding-top: 12px;
  background-color: transparent;
  border-top: none;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.select-plans-page__continue-btn {
  width: 100%;
  padding: 16px;
  background-color: #1d1d1f;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.select-plans-page__continue-btn:hover:not(:disabled) {
  background-color: #333;
  transform: translateY(-2px);
}

.select-plans-page__continue-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.select-plans-page__continue-btn.active {
  background-color: #1d1d1f;
}

.select-plans-page__continue-btn.active:hover:not(:disabled) {
  background-color: #333;
}

/* Responsive */
@media (max-width: 480px) {
  .select-plans-page__container {
    padding: 16px;
  }

  .select-plans-page__title {
    font-size: 24px;
  }

  .select-plans-page__plan-card {
    padding: 20px 16px;
  }
}


/* Error Display */
.select-plans-page__error {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background-color: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  margin-top: 16px;
}

.select-plans-page__error-icon {
  font-size: 16px;
  flex-shrink: 0;
}

.select-plans-page__error-text {
  font-size: 13px;
  color: #dc2626;
  line-height: 1.4;
}

/* Loading Configs */
.select-plans-page__loading-configs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  color: #666;
  font-size: 13px;
}

/* Loading Plans */
.select-plans-page__loading-plans {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 48px 24px;
  color: #666;
  font-size: 14px;
}


/* Distance Range */
.select-plans-page__distance-range {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  font-size: 13px;
  color: #666;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 12px;
}

.select-plans-page__range-label {
  font-weight: 600;
  color: #1d1d1f;
}

.select-plans-page__range-value {
  color: #f5a623;
  font-weight: 600;
}

/* Price Info */
.select-plans-page__price-info {
  background-color: rgba(245, 166, 35, 0.05);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 12px;
}

.select-plans-page__price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 13px;
}

.select-plans-page__price-item:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.select-plans-page__price-label {
  color: #666;
  font-weight: 500;
}

.select-plans-page__price-amount {
  color: #1d1d1f;
  font-weight: 600;
}

.select-plans-page__price-item.total {
  padding-top: 8px;
  margin-top: 4px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.select-plans-page__price-item.total .select-plans-page__price-label {
  color: #1d1d1f;
  font-weight: 700;
}

.select-plans-page__price-item.total .select-plans-page__price-amount {
  color: #f5a623;
  font-size: 16px;
}

/* Plan Note */
.select-plans-page__plan-note {
  font-size: 12px;
  color: #666;
  margin: 8px 0 0 0;
  padding: 8px;
  background-color: rgba(0, 0, 0, 0.02);
  border-radius: 4px;
  line-height: 1.4;
}


/* Plan Badge Section */
.select-plans-page__plan-badge-section {
  margin-bottom: 6px;
}

.select-plans-page__plan-badge {
  display: inline-block;
  padding: 4px 10px;
  background-color: #4caf50;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 20px;
}

/* Plan Title */
.select-plans-page__plan-title {
  font-size: 16px;
  font-weight: 700;
  color: #1d1d1f;
  margin: 0 0 4px 0;
}

/* Savings Badge */
.select-plans-page__savings-badge {
  display: inline-block;
  padding: 3px 8px;
  background-color: #e8f5e9;
  color: #2e7d32;
  font-size: 11px;
  font-weight: 600;
  border-radius: 4px;
  margin-bottom: 8px;
}

/* Distance Range Section */
.select-plans-page__distance-range-section {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  font-size: 13px;
  color: #666;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 12px;
}

.select-plans-page__range-label {
  font-weight: 600;
  color: #1d1d1f;
}

.select-plans-page__range-value {
  color: #f5a623;
  font-weight: 600;
}

/* Price Breakdown Section */
.select-plans-page__price-breakdown-section {
  background-color: #fffde7;
  border-radius: 8px;
  padding: 8px;
  margin-bottom: 8px;
}

.select-plans-page__price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
  font-size: 12px;
}

.select-plans-page__price-row:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.select-plans-page__price-label {
  color: #666;
  font-weight: 500;
}

.select-plans-page__price-value {
  color: #1d1d1f;
  font-weight: 600;
}

.select-plans-page__price-row.discount .select-plans-page__price-label {
  color: #4caf50;
}

.select-plans-page__price-row.discount .select-plans-page__price-value {
  color: #4caf50;
}

.select-plans-page__price-row.total {
  padding-top: 6px;
  margin-top: 2px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.select-plans-page__price-row.total .select-plans-page__price-label {
  color: #1d1d1f;
  font-weight: 700;
}

.select-plans-page__price-row.total .select-plans-page__price-value {
  color: #f5a623;
  font-size: 14px;
  font-weight: 700;
}

/* Plan Details Section */
.select-plans-page__plan-details-section {
  padding: 6px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 8px;
}

.select-plans-page__detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3px 0;
  font-size: 12px;
}

.select-plans-page__detail-label {
  color: #666;
  font-weight: 500;
}

.select-plans-page__detail-value {
  color: #1d1d1f;
  font-weight: 600;
}

/* Payment Schedule Section */
.select-plans-page__payment-schedule-section {
  margin-bottom: 8px;
}

.select-plans-page__schedule-title {
  font-size: 11px;
  font-weight: 700;
  color: #1d1d1f;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.select-plans-page__schedule-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 6px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.select-plans-page__schedule-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

.select-plans-page__schedule-info {
  flex: 1;
}

.select-plans-page__schedule-label {
  font-size: 12px;
  font-weight: 600;
  color: #1d1d1f;
  margin: 0;
}

.select-plans-page__schedule-sublabel {
  font-size: 10px;
  color: #666;
  margin: 1px 0 0 0;
}

.select-plans-page__schedule-description {
  font-size: 11px;
  color: #4caf50;
  margin: 2px 0 0 0;
}

.select-plans-page__schedule-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #e0e0e0;
  flex-shrink: 0;
  margin-left: 12px;
  margin-top: 4px;
}

.select-plans-page__schedule-dot.active {
  background-color: #f5a623;
}

/* Features Section */
.select-plans-page__features-section {
  padding: 6px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 8px;
}

.select-plans-page__feature-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 3px 0;
  font-size: 12px;
  color: #666;
}

.select-plans-page__feature-icon {
  color: #4caf50;
  flex-shrink: 0;
}

/* Policies Section */
.select-plans-page__policies-section {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.select-plans-page__policy-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 3px 0;
  font-size: 12px;
  color: #666;
  cursor: pointer;
  transition: color 0.2s;
}

.select-plans-page__policy-item:hover {
  color: #f5a623;
}

.select-plans-page__policy-icon {
  font-size: 12px;
  flex-shrink: 0;
}

/* ============================= */
/* Plans List (from ChoosePlan)  */
/* ============================= */
.select-plans-page__plans {
  display: flex;
  flex-direction: column;
}

.select-plans-page__plan-wrapper {
  /* Extra top margin to accommodate best-value badge that floats above card */
  margin-top: 18px;
}

.select-plans-page__plan-wrapper:first-child {
  margin-top: 18px;
}

/* ============================= */
/* Warning Card (from ChoosePlan) */
/* ============================= */
.select-plans-page__warning-wrapper {
  position: relative;
}

.select-plans-page__warning-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #aaa;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: color 0.2s, background 0.2s;
}

.select-plans-page__warning-close:hover {
  color: #555;
  background: rgba(0, 0, 0, 0.05);
}

/* ============================= */
/* Footer Note (from ChoosePlan) */
/* ============================= */
.select-plans-page__footer-note {
  font-size: 12px;
  color: #666;
  margin: 8px 0 0 0;
  text-align: center;
}
.processing-page {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background-color: #fafafa;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

/* Header */
.processing-page__header {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  padding: 16px 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.processing-page__header-content {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 400px;
  margin: 0 auto;
}

.processing-page__header-icon {
  width: 40px;
  height: 40px;
  background-color: #f5a623;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}

.processing-page__header-info {
  flex: 1;
  min-width: 0;
}

.processing-page__header-title {
  font-size: 18px;
  font-weight: 600;
  color: #1d1d1f;
  margin: 0;
}

.processing-page__header-subtitle {
  font-size: 13px;
  color: #666;
  margin: 4px 0 0 0;
}

/* Container */
.processing-page__container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
  padding-bottom: max(80px, calc(80px + env(safe-area-inset-bottom, 0px)));
}

.processing-page__content {
  max-width: 400px;
  width: 100%;
  text-align: center;
  padding-bottom: max(100px, calc(100px + env(safe-area-inset-bottom, 0px)));
}

/* Animation */
.processing-page__animation {
  position: relative;
  width: 96px;
  height: 96px;
  margin: 0 auto 32px;
}

.processing-page__pulse {
  position: absolute;
  inset: 0;
  background-color: #fef3c7;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.processing-page__icon-wrapper {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fef9e7;
  border-radius: 50%;
  border: 2px solid #fde68a;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.75;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.3;
  }
}

/* Spinner */
.processing-page__spinner {
  animation: spin 1s linear infinite;
}

.processing-page__spinner-large {
  color: #f5a623;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Title */
.processing-page__title {
  font-size: 24px;
  font-weight: 600;
  color: #1d1d1f;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.processing-page__subtitle {
  font-size: 15px;
  color: #666;
  margin: 0 0 24px 0;
  line-height: 1.5;
}

/* Progress Dots */
.processing-page__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}

.processing-page__dot {
  width: 10px;
  height: 10px;
  background-color: #f5a623;
  border-radius: 50%;
  animation: bounce 1.4s ease-in-out infinite;
}

.processing-page__dot:nth-child(1) {
  animation-delay: 0s;
}

.processing-page__dot:nth-child(2) {
  animation-delay: 0.1s;
}

.processing-page__dot:nth-child(3) {
  animation-delay: 0.2s;
}

@keyframes bounce {
  0%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
}

/* Card */
.processing-page__card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 24px;
}

.processing-page__secure-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: #059669;
  margin-bottom: 20px;
}

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

.processing-page__detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
}

.processing-page__detail-row:last-child {
  border-bottom: none;
}

.processing-page__detail-label {
  font-size: 14px;
  color: #666;
  font-weight: 500;
  text-align: left;
}

.processing-page__detail-value {
  font-size: 14px;
  color: #1d1d1f;
  font-weight: 600;
}

.processing-page__detail-value--amount {
  font-size: 22px;
  color: #f5a623;
}

.processing-page__detail-value--mono {
  font-size: 12px;
  font-family: 'SF Mono', 'Monaco', 'Inconsolata', monospace;
  background-color: #f5f5f5;
  padding: 6px 10px;
  border-radius: 6px;
  color: #666;
}

/* Gateway */
.processing-page__gateway {
  display: flex;
  align-items: center;
  gap: 8px;
}

.processing-page__gateway-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}

.processing-page__gateway-name {
  font-size: 14px;
  font-weight: 600;
  color: #1d1d1f;
}

/* Security */
.processing-page__security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: #666;
}

.processing-page__security-icon {
  color: #10b981;
}

/* Responsive */
@media (max-width: 480px) {
  .processing-page__title {
    font-size: 20px;
  }

  .processing-page__animation {
    width: 80px;
    height: 80px;
  }

  .processing-page__spinner-large {
    width: 36px;
    height: 36px;
  }
}


/* Debug Info */
.processing-page__debug {
  margin-top: 24px;
  padding: 12px 16px;
  background-color: #fef3c7;
  border: 1px solid #fcd34d;
  border-radius: 8px;
  font-size: 12px;
  color: #92400e;
  font-family: 'SF Mono', 'Monaco', monospace;
  word-break: break-all;
}

.processing-page__debug p {
  margin: 0;
}
.payment-success {
  min-height: 100vh;
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 20px;
  overflow-y: auto;
}

.payment-success--loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  gap: 16px;
  background: white;
  overflow-y: auto;
}

.payment-success__spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #e5e7eb;
  border-top-color: #22c55e;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.payment-success__container {
  background: white;
  border-radius: 0;
  padding: 40px 20px 60px 20px;
  max-width: 600px;
  width: 100%;
  box-shadow: none;
  text-align: center;
}

.payment-success__icon {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.payment-success__icon--success {
  margin-bottom: 8px;
}

.payment-success__icon--warning {
  margin-bottom: 8px;
}

.payment-success__check {
  color: #10b981;
  animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.payment-success__title {
  font-size: 28px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 8px 0;
}

.payment-success__subtitle {
  font-size: 16px;
  color: #6b7280;
  margin: 0 0 32px 0;
}

.payment-success__subtitle--warning {
  color: #d97706;
}

.payment-success__warning-card {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 12px;
  padding: 16px;
  text-align: left;
  font-size: 14px;
  color: #92400e;
  margin: 16px 0;
}

.payment-success__txn-ref {
  margin-top: 12px;
  font-size: 12px;
  color: #6b7280;
}

.payment-success__card {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 12px;
  width: 100%;
  text-align: left;
}

.payment-success__card--green {
  border-color: #bbf7d0;
  background: #f0fdf4;
}

.payment-success__card-title {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.payment-success__detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid #e5e7eb;
}

.payment-success__detail:last-child {
  border-bottom: none;
}

.payment-success__label {
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
  flex: 0 0 calc(50% - 10px);
}

.payment-success__value {
  font-size: 14px;
  color: #111827;
  font-weight: 600;
  flex: 0 0 calc(50% - 10px);
  text-align: right;
}

.payment-success__value--amount {
  color: #10b981;
  font-size: 16px;
}

.payment-success__value--success {
  color: #10b981;
  background: #d1fae5;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
}

.payment-success__value--highlight {
  color: #059669;
  font-size: 18px;
  font-weight: 700;
}

.payment-success__value--total {
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 700;
}

.payment-success__value--mono {
  font-family: monospace;
  font-size: 12px;
  color: #4b5563;
}

.payment-success__badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.payment-success__badge--active {
  background: #dcfce7;
  color: #15803d;
}

.payment-success__actions {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}

.payment-success__button {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.payment-success__button--primary {
  background: #667eea;
  color: white;
}

.payment-success__button--primary:hover {
  background: #5568d3;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.payment-success__button--secondary {
  background: #e5e7eb;
  color: #111827;
}

.payment-success__button--secondary:hover {
  background: #d1d5db;
  transform: translateY(-2px);
}

.payment-success__next-steps {
  text-align: left;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  padding: 16px;
}

.payment-success__next-steps h3 {
  margin: 0 0 12px 0;
  font-size: 14px;
  font-weight: 600;
  color: #065f46;
}

.payment-success__next-steps ul {
  margin: 0;
  padding-left: 20px;
  list-style: none;
}

.payment-success__next-steps li {
  font-size: 13px;
  color: #047857;
  margin-bottom: 8px;
  position: relative;
  padding-left: 16px;
}

.payment-success__next-steps li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

.payment-success__loading {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #6b7280;
}
/* ── Base ─────────────────────────────────────────────────── */
.payment-failure {
  min-height: 100vh;
  background: #f8f9fc;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 40px 32px 80px;
  overflow-y: auto;
}

.payment-failure__container {
  max-width: 520px;
  width: 100%;
  text-align: center;
  padding: 0 8px;
}

/* ── Icon ─────────────────────────────────────────────────── */
.payment-failure__icon {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.payment-failure__icon-wrapper {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #fff0f0;
  border: 3px solid #fecaca;
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-failure__x {
  color: #ef4444;
  animation: shake 0.55s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%       { transform: translateX(-8px); }
  40%       { transform: translateX(8px); }
  60%       { transform: translateX(-5px); }
  80%       { transform: translateX(5px); }
}

/* ── Headings ─────────────────────────────────────────────── */
.payment-failure__title {
  font-size: 26px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 8px 0;
  letter-spacing: -0.3px;
}

.payment-failure__subtitle {
  font-size: 15px;
  color: #6b7280;
  margin: 0 0 28px 0;
  line-height: 1.5;
}

/* ── Transaction detail card ──────────────────────────────── */
.payment-failure__card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 8px 24px;
  margin-bottom: 20px;
  text-align: left;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.payment-failure__detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #f3f4f6;
}

.payment-failure__detail:last-child {
  border-bottom: none;
}

.payment-failure__label {
  font-size: 13px;
  color: #6b7280;
  font-weight: 500;
}

.payment-failure__value {
  font-size: 13px;
  color: #111827;
  font-weight: 600;
}

.payment-failure__value--failed {
  color: #dc2626;
  background: #fee2e2;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

/* ── Info banner ──────────────────────────────────────────── */
.payment-failure__info {
  margin-bottom: 24px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 10px;
  padding: 12px 20px;
}

.payment-failure__info p {
  margin: 0;
  font-size: 13.5px;
  color: #1d4ed8;
  font-weight: 500;
}

/* ── Actions ──────────────────────────────────────────────── */
.payment-failure__actions {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.payment-failure__actions--single {
  display: flex;
  flex-direction: column;
  margin-bottom: 28px;
}

.payment-failure__button {
  flex: 1;
  padding: 13px 16px;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: all 0.22s ease;
  text-decoration: none;
}

/* Retry — indigo */
.payment-failure__button--primary {
  background: #4f46e5;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(79, 70, 229, 0.35);
}

.payment-failure__button--primary:hover:not(:disabled) {
  background: #4338ca;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(79, 70, 229, 0.4);
}

/* Dashboard — slate */
.payment-failure__button--secondary {
  background: #f1f5f9;
  color: #334155;
  border: 1px solid #e2e8f0;
}

.payment-failure__button--secondary:hover:not(:disabled) {
  background: #e2e8f0;
  transform: translateY(-2px);
}

/* Support — green */
.payment-failure__button--support {
  background: #059669;
  color: #ffffff;
  width: 100%;
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.3);
}

.payment-failure__button--support:hover {
  background: #047857;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(5, 150, 105, 0.35);
}

/* ── Common Issues card ────────────────────────────────────── */
.payment-failure__help {
  text-align: left;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 20px 24px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.payment-failure__help h3 {
  margin: 0 0 14px 0;
  font-size: 11px;
  font-weight: 700;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.payment-failure__help ul {
  margin: 0 0 14px 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.payment-failure__help li {
  font-size: 13px;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: #f9fafb;
  border-radius: 8px;
  border: 1px solid #f3f4f6;
}

.payment-failure__help li:before {
  content: '⚠';
  font-size: 12px;
  color: #f59e0b;
  flex-shrink: 0;
}

.payment-failure__help p {
  margin: 0;
  font-size: 12.5px;
  color: #9ca3af;
  text-align: center;
  border-top: 1px solid #f3f4f6;
  padding-top: 14px;
}

/* ── Loading ──────────────────────────────────────────────── */
.payment-failure__loading {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #6b7280;
}

/* ── Modal ────────────────────────────────────────────────── */
.payment-failure__modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  animation: fadeIn 0.2s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.payment-failure__modal {
  background: white;
  border-radius: 18px;
  padding: 44px 40px;
  text-align: center;
  max-width: 320px;
  width: 90%;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
  animation: scaleIn 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes scaleIn {
  from { transform: scale(0.88); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}

.payment-failure__modal h3 {
  margin: 24px 0 8px 0;
  font-size: 18px;
  font-weight: 700;
  color: #111827;
}

.payment-failure__modal p {
  margin: 0;
  font-size: 14px;
  color: #6b7280;
}

/* ── Disabled ─────────────────────────────────────────────── */
.payment-failure__button:disabled,
.payment-failure__button--disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
  transform: none !important;
  box-shadow: none !important;
}