/**
 * Momence Component Styles
 * Modern UI components for light theme
 * @author BUILDER
 * @date 2025-01-09
 */

/* ============================================
   APPOINTMENT CARDS - MOMENCE STYLE
   ============================================ */
[data-theme="light"] .appointment-card {
  background: var(--momence-bg-white);
  border: 1px solid var(--momence-border-default);
  border-radius: var(--momence-radius-lg);
  padding: 1.25rem;
  transition: all var(--momence-transition-base);
  position: relative;
  overflow: hidden;
}

[data-theme="light"] .appointment-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--momence-primary);
  opacity: 0;
  transition: opacity var(--momence-transition-fast);
}

[data-theme="light"] .appointment-card:hover {
  box-shadow: var(--momence-shadow-md);
  transform: translateY(-2px);
}

[data-theme="light"] .appointment-card:hover::before {
  opacity: 1;
}

[data-theme="light"] .appointment-card.confirmed {
  border-left: 4px solid var(--momence-success);
}

[data-theme="light"] .appointment-card.pending {
  border-left: 4px solid var(--momence-warning);
}

[data-theme="light"] .appointment-card.cancelled {
  border-left: 4px solid var(--momence-error);
  opacity: 0.7;
}

[data-theme="light"] .appointment-time {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--momence-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

[data-theme="light"] .appointment-client {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--momence-text-primary);
  margin-top: 0.5rem;
}

[data-theme="light"] .appointment-service {
  font-size: 0.9375rem;
  color: var(--momence-text-secondary);
  margin-top: 0.25rem;
}

[data-theme="light"] .appointment-meta {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  color: var(--momence-text-muted);
}

/* ============================================
   CALENDAR WIDGET - MOMENCE STYLE
   ============================================ */
[data-theme="light"] .calendar-widget {
  background: var(--momence-bg-white);
  border-radius: var(--momence-radius-xl);
  box-shadow: var(--momence-shadow-sm);
  overflow: hidden;
}

[data-theme="light"] .calendar-header {
  background: var(--momence-bg-secondary);
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--momence-border-default);
}

[data-theme="light"] .calendar-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--momence-text-primary);
}

[data-theme="light"] .calendar-nav {
  display: flex;
  gap: 0.5rem;
}

[data-theme="light"] .calendar-nav button {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--momence-radius-md);
  border: 1px solid var(--momence-border-default);
  background: var(--momence-bg-white);
  color: var(--momence-text-secondary);
  cursor: pointer;
  transition: all var(--momence-transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

[data-theme="light"] .calendar-nav button:hover {
  background: var(--momence-bg-tertiary);
  color: var(--momence-primary);
  border-color: var(--momence-primary);
}

[data-theme="light"] .calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: var(--momence-border-light);
}

[data-theme="light"] .calendar-day-header {
  background: var(--momence-bg-white);
  padding: 0.75rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--momence-text-muted);
  letter-spacing: 0.05em;
}

[data-theme="light"] .calendar-day {
  background: var(--momence-bg-white);
  min-height: 100px;
  padding: 0.75rem;
  position: relative;
  transition: background var(--momence-transition-fast);
}

[data-theme="light"] .calendar-day:hover {
  background: var(--momence-bg-secondary);
}

[data-theme="light"] .calendar-day-number {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--momence-text-primary);
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--momence-radius-full);
}

[data-theme="light"] .calendar-day.today .calendar-day-number {
  background: var(--momence-primary);
  color: white;
}

[data-theme="light"] .calendar-day.other-month .calendar-day-number {
  color: var(--momence-text-muted);
}

[data-theme="light"] .calendar-day.has-events::after {
  content: '';
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--momence-primary);
}

[data-theme="light"] .calendar-event {
  font-size: 0.6875rem;
  padding: 0.25rem 0.5rem;
  border-radius: var(--momence-radius-sm);
  margin-top: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
  transition: transform var(--momence-transition-fast);
}

[data-theme="light"] .calendar-event:hover {
  transform: scale(1.02);
}

[data-theme="light"] .calendar-event.booked {
  background: var(--momence-primary-light);
  color: var(--momence-primary);
}

[data-theme="light"] .calendar-event.available {
  background: var(--momence-success-light);
  color: #047857;
}

/* ============================================
   BOOKING FORM - MOMENCE STYLE
   ============================================ */
[data-theme="light"] .booking-form {
  background: var(--momence-bg-white);
  border-radius: var(--momence-radius-xl);
  padding: 2rem;
  box-shadow: var(--momence-shadow-md);
}

[data-theme="light"] .booking-form-header {
  text-align: center;
  margin-bottom: 2rem;
}

[data-theme="light"] .booking-form-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--momence-text-primary);
  margin-bottom: 0.5rem;
}

[data-theme="light"] .booking-form-subtitle {
  color: var(--momence-text-secondary);
  font-size: 0.9375rem;
}

[data-theme="light"] .booking-form-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--momence-border-light);
}

[data-theme="light"] .step-number {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--momence-radius-full);
  background: var(--momence-bg-tertiary);
  color: var(--momence-text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
  flex-shrink: 0;
  transition: all var(--momence-transition-fast);
}

[data-theme="light"] .step-number.active {
  background: var(--momence-primary);
  color: white;
  box-shadow: var(--momence-shadow-primary);
}

[data-theme="light"] .step-number.completed {
  background: var(--momence-success);
  color: white;
}

[data-theme="light"] .step-content {
  flex: 1;
}

[data-theme="light"] .step-title {
  font-weight: 600;
  color: var(--momence-text-primary);
  font-size: 0.9375rem;
}

[data-theme="light"] .step-description {
  font-size: 0.8125rem;
  color: var(--momence-text-muted);
}

/* Service Selection */
[data-theme="light"] .service-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 1.5px solid var(--momence-border-default);
  border-radius: var(--momence-radius-lg);
  cursor: pointer;
  transition: all var(--momence-transition-fast);
  margin-bottom: 0.75rem;
}

[data-theme="light"] .service-option:hover {
  border-color: var(--momence-primary);
  background: var(--momence-bg-secondary);
}

[data-theme="light"] .service-option.selected {
  border-color: var(--momence-primary);
  background: var(--momence-primary-light);
}

[data-theme="light"] .service-option-radio {
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid var(--momence-border-default);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--momence-transition-fast);
}

[data-theme="light"] .service-option.selected .service-option-radio {
  border-color: var(--momence-primary);
  background: var(--momence-primary);
}

[data-theme="light"] .service-option.selected .service-option-radio::after {
  content: '';
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
}

[data-theme="light"] .service-info {
  flex: 1;
}

[data-theme="light"] .service-name {
  font-weight: 600;
  color: var(--momence-text-primary);
}

[data-theme="light"] .service-duration {
  font-size: 0.8125rem;
  color: var(--momence-text-muted);
}

[data-theme="light"] .service-price {
  font-weight: 700;
  color: var(--momence-primary);
  font-size: 1.125rem;
}

/* Time Slot Selection */
[data-theme="light"] .time-slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 0.75rem;
}

[data-theme="light"] .time-slot {
  padding: 0.75rem;
  border: 1.5px solid var(--momence-border-default);
  border-radius: var(--momence-radius-md);
  text-align: center;
  cursor: pointer;
  transition: all var(--momence-transition-fast);
  background: var(--momence-bg-white);
}

[data-theme="light"] .time-slot:hover:not(.disabled) {
  border-color: var(--momence-primary);
  background: var(--momence-bg-secondary);
}

[data-theme="light"] .time-slot.selected {
  background: var(--momence-primary);
  border-color: var(--momence-primary);
  color: white;
  box-shadow: var(--momence-shadow-primary);
}

[data-theme="light"] .time-slot.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background: var(--momence-bg-secondary);
}

[data-theme="light"] .time-slot-time {
  font-weight: 600;
  font-size: 0.9375rem;
}

/* ============================================
   DASHBOARD STATS - MOMENCE STYLE
   ============================================ */
[data-theme="light"] .stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

[data-theme="light"] .stat-card {
  background: var(--momence-bg-white);
  border-radius: var(--momence-radius-lg);
  padding: 1.5rem;
  box-shadow: var(--momence-shadow-sm);
  border: 1px solid var(--momence-border-default);
  transition: all var(--momence-transition-base);
}

[data-theme="light"] .stat-card:hover {
  box-shadow: var(--momence-shadow-md);
  transform: translateY(-2px);
}

[data-theme="light"] .stat-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

[data-theme="light"] .stat-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--momence-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

[data-theme="light"] .stat-icon.primary {
  background: var(--momence-primary-light);
  color: var(--momence-primary);
}

[data-theme="light"] .stat-icon.success {
  background: var(--momence-success-light);
  color: var(--momence-success);
}

[data-theme="light"] .stat-icon.warning {
  background: var(--momence-warning-light);
  color: var(--momence-warning);
}

[data-theme="light"] .stat-icon.error {
  background: var(--momence-error-light);
  color: var(--momence-error);
}

[data-theme="light"] .stat-trend {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.25rem 0.5rem;
  border-radius: var(--momence-radius-sm);
}

[data-theme="light"] .stat-trend.up {
  background: var(--momence-success-light);
  color: #047857;
}

[data-theme="light"] .stat-trend.down {
  background: var(--momence-error-light);
  color: #B91C1C;
}

[data-theme="light"] .stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--momence-text-primary);
  line-height: 1.2;
}

[data-theme="light"] .stat-label {
  font-size: 0.875rem;
  color: var(--momence-text-secondary);
  margin-top: 0.25rem;
}

/* ============================================
   SEARCH & FILTERS - MOMENCE STYLE
   ============================================ */
[data-theme="light"] .search-bar {
  position: relative;
  max-width: 400px;
}

[data-theme="light"] .search-bar input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.75rem;
  border: 1.5px solid var(--momence-border-default);
  border-radius: var(--momence-radius-full);
  background: var(--momence-bg-white);
  font-size: 0.9375rem;
  transition: all var(--momence-transition-fast);
}

[data-theme="light"] .search-bar input:focus {
  outline: none;
  border-color: var(--momence-primary);
  box-shadow: 0 0 0 3px rgba(99, 96, 225, 0.15);
}

[data-theme="light"] .search-bar-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--momence-text-muted);
  pointer-events: none;
}

[data-theme="light"] .filter-bar {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
  padding: 1rem;
  background: var(--momence-bg-secondary);
  border-radius: var(--momence-radius-lg);
  margin-bottom: 1.5rem;
}

[data-theme="light"] .filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--momence-bg-white);
  border: 1px solid var(--momence-border-default);
  border-radius: var(--momence-radius-full);
  font-size: 0.875rem;
  color: var(--momence-text-secondary);
  cursor: pointer;
  transition: all var(--momence-transition-fast);
}

[data-theme="light"] .filter-chip:hover {
  border-color: var(--momence-primary);
  color: var(--momence-primary);
}

[data-theme="light"] .filter-chip.active {
  background: var(--momence-primary);
  border-color: var(--momence-primary);
  color: white;
}

[data-theme="light"] .filter-chip .remove {
  width: 1rem;
  height: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  font-size: 0.75rem;
}

/* ============================================
   TOGGLE SWITCH - MOMENCE STYLE
   ============================================ */
[data-theme="light"] .toggle-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

[data-theme="light"] .toggle-switch input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

[data-theme="light"] .toggle-slider {
  position: relative;
  width: 3rem;
  height: 1.75rem;
  background: var(--momence-border-default);
  border-radius: var(--momence-radius-full);
  transition: background var(--momence-transition-fast);
}

[data-theme="light"] .toggle-slider::after {
  content: '';
  position: absolute;
  top: 0.25rem;
  left: 0.25rem;
  width: 1.25rem;
  height: 1.25rem;
  background: white;
  border-radius: 50%;
  transition: transform var(--momence-transition-fast);
  box-shadow: var(--momence-shadow-sm);
}

[data-theme="light"] .toggle-switch input:checked + .toggle-slider {
  background: var(--momence-primary);
}

[data-theme="light"] .toggle-switch input:checked + .toggle-slider::after {
  transform: translateX(1.25rem);
}

[data-theme="light"] .toggle-label {
  margin-left: 0.75rem;
  font-size: 0.9375rem;
  color: var(--momence-text-primary);
}

/* ============================================
   EMPTY STATE - MOMENCE STYLE
   ============================================ */
[data-theme="light"] .empty-state {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--momence-bg-white);
  border-radius: var(--momence-radius-xl);
  border: 2px dashed var(--momence-border-default);
}

[data-theme="light"] .empty-state-icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.5rem;
  background: var(--momence-bg-secondary);
  border-radius: var(--momence-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--momence-text-muted);
}

[data-theme="light"] .empty-state-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--momence-text-primary);
  margin-bottom: 0.5rem;
}

[data-theme="light"] .empty-state-description {
  color: var(--momence-text-secondary);
  max-width: 400px;
  margin: 0 auto 1.5rem;
}

/* ============================================
   LOADING STATES - MOMENCE STYLE
   ============================================ */
[data-theme="light"] .loading-spinner {
  width: 2.5rem;
  height: 2.5rem;
  border: 3px solid var(--momence-border-light);
  border-top-color: var(--momence-primary);
  border-radius: 50%;
  animation: spinner 0.8s linear infinite;
}

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

[data-theme="light"] .btn-loading {
  position: relative;
  color: transparent !important;
  pointer-events: none;
}

[data-theme="light"] .btn-loading::after {
  content: '';
  position: absolute;
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spinner 0.6s linear infinite;
  top: 50%;
  left: 50%;
  margin-top: -0.5rem;
  margin-left: -0.5rem;
}

/* ============================================
   TOAST NOTIFICATIONS - MOMENCE STYLE
   ============================================ */
[data-theme="light"] .toast-container {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

[data-theme="light"] .toast {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1rem 1.25rem;
  background: var(--momence-bg-white);
  border-radius: var(--momence-radius-lg);
  box-shadow: var(--momence-shadow-lg);
  border-left: 4px solid;
  min-width: 320px;
  max-width: 480px;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

[data-theme="light"] .toast.success {
  border-left-color: var(--momence-success);
}

[data-theme="light"] .toast.error {
  border-left-color: var(--momence-error);
}

[data-theme="light"] .toast.warning {
  border-left-color: var(--momence-warning);
}

[data-theme="light"] .toast.info {
  border-left-color: var(--momence-info);
}

[data-theme="light"] .toast-icon {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
}

[data-theme="light"] .toast.success .toast-icon {
  background: var(--momence-success-light);
  color: var(--momence-success);
}

[data-theme="light"] .toast.error .toast-icon {
  background: var(--momence-error-light);
  color: var(--momence-error);
}

[data-theme="light"] .toast-content {
  flex: 1;
}

[data-theme="light"] .toast-title {
  font-weight: 600;
  color: var(--momence-text-primary);
  font-size: 0.9375rem;
}

[data-theme="light"] .toast-message {
  color: var(--momence-text-secondary);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

[data-theme="light"] .toast-close {
  color: var(--momence-text-muted);
  cursor: pointer;
  padding: 0.25rem;
  transition: color var(--momence-transition-fast);
}

[data-theme="light"] .toast-close:hover {
  color: var(--momence-text-primary);
}

/* ============================================
   AVATAR & PROFILE - MOMENCE STYLE
   ============================================ */
[data-theme="light"] .avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--momence-radius-full);
  background: linear-gradient(135deg, var(--momence-primary) 0%, var(--momence-primary-hover) 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9375rem;
  flex-shrink: 0;
}

[data-theme="light"] .avatar-lg {
  width: 4rem;
  height: 4rem;
  font-size: 1.5rem;
}

[data-theme="light"] .avatar-sm {
  width: 2rem;
  height: 2rem;
  font-size: 0.8125rem;
}

[data-theme="light"] .avatar-group {
  display: flex;
  align-items: center;
}

[data-theme="light"] .avatar-group .avatar {
  margin-left: -0.75rem;
  border: 2px solid var(--momence-bg-white);
}

[data-theme="light"] .avatar-group .avatar:first-child {
  margin-left: 0;
}

[data-theme="light"] .profile-card {
  background: var(--momence-bg-white);
  border-radius: var(--momence-radius-xl);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--momence-shadow-sm);
}

[data-theme="light"] .profile-avatar {
  width: 6rem;
  height: 6rem;
  margin: 0 auto 1rem;
  border-radius: var(--momence-radius-full);
  background: linear-gradient(135deg, var(--momence-primary) 0%, var(--momence-primary-hover) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  font-weight: 600;
}

[data-theme="light"] .profile-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--momence-text-primary);
}

[data-theme="light"] .profile-role {
  color: var(--momence-text-secondary);
  font-size: 0.9375rem;
  margin-top: 0.25rem;
}

/* ============================================
   DIVIDER & SEPARATOR
   ============================================ */
[data-theme="light"] .divider {
  display: flex;
  align-items: center;
  margin: 1.5rem 0;
  color: var(--momence-text-muted);
  font-size: 0.875rem;
}

[data-theme="light"] .divider::before,
[data-theme="light"] .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--momence-border-default);
}

[data-theme="light"] .divider::before {
  margin-right: 1rem;
}

[data-theme="light"] .divider::after {
  margin-left: 1rem;
}

/* ============================================
   TOOLTIP - MOMENCE STYLE
   ============================================ */
[data-theme="light"] [data-tooltip] {
  position: relative;
}

[data-theme="light"] [data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-0.5rem);
  padding: 0.5rem 0.75rem;
  background: var(--momence-text-primary);
  color: white;
  font-size: 0.8125rem;
  border-radius: var(--momence-radius-md);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all var(--momence-transition-fast);
  z-index: 1000;
}

[data-theme="light"] [data-tooltip]:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-0.25rem);
}

/* ============================================
   PROGRESS STEPS - MOMENCE STYLE
   ============================================ */
[data-theme="light"] .progress-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 2rem;
}

[data-theme="light"] .progress-steps::before {
  content: '';
  position: absolute;
  top: 1rem;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--momence-border-default);
  z-index: 0;
}

[data-theme="light"] .progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
  background: var(--momence-bg-secondary);
  padding: 0 0.5rem;
}

[data-theme="light"] .progress-step-number {
  width: 2rem;
  height: 2rem;
  border-radius: var(--momence-radius-full);
  background: var(--momence-bg-white);
  border: 2px solid var(--momence-border-default);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--momence-text-muted);
  transition: all var(--momence-transition-fast);
}

[data-theme="light"] .progress-step.active .progress-step-number,
[data-theme="light"] .progress-step.completed .progress-step-number {
  background: var(--momence-primary);
  border-color: var(--momence-primary);
  color: white;
}

[data-theme="light"] .progress-step.completed .progress-step-number::after {
  content: '✓';
}

[data-theme="light"] .progress-step-label {
  font-size: 0.8125rem;
  color: var(--momence-text-muted);
  font-weight: 500;
}

[data-theme="light"] .progress-step.active .progress-step-label {
  color: var(--momence-primary);
  font-weight: 600;
}