@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --primary-50: rgba(79, 70, 229, 0.08);
  --primary-100: #eeedfe;
  --primary-200: #c7c4fc;
  --primary-600: #4f46e5;
  --primary-700: #4338ca;
  --success-50: #ecfdf5;
  --success-100: #d1fae5;
  --success-200: #a7f3d0;
  --success-600: #16a34a;
  --success-main: #22c55e;
  --warning-100: #fef3c7;
  --warning-200: #fde68a;
  --warning-400: #fbbf24;
  --warning-600: #d97706;
  --warning-main: #f59e0b;
  --danger-50: #fef2f2;
  --danger-100: #fee2e2;
  --danger-400: #f87171;
  --danger-600: #dc2626;
  --danger-main: #ef4444;
  --info-50: #eff6ff;
  --info-main: #3b82f6;
  --cyan: #06b6d4;
  --cyan-50: #ecfeff;
  --cyan-100: #cffafe;
  --purple: #8b5cf6;
  --neutral-50: #f9fafb;
  --neutral-100: #f3f4f6;
  --neutral-200: #e5e7eb;
  --neutral-300: #d1d5db;
  --neutral-400: #9ca3af;
  --neutral-500: #6b7280;
  --neutral-700: #374151;
  --neutral-900: #111827;
  --text-primary-light: #1f2937;
  --text-secondary-light: #6b7280;
  --white: #ffffff;
  --bg-base: #ffffff;
  --body-bg: linear-gradient(163deg, rgb(245, 243, 230) 5%, rgb(242, 245, 250) 100%);
  --ts-rail-w: 72px;
  --ts-panel-w: 248px;
  --ts-purple: var(--primary-600);
  --ts-purple-soft: color-mix(in srgb, var(--primary-600) 12%, transparent);
  --ts-text: #5c667e;
  --ts-heading: #1f2937;
  --ts-border: #ececf2;
  --ts-hover: #f4f5fa;
}

[data-theme="dark"] {
  --bg-base: #1b2431;
  --text-primary-light: #e5e7eb;
  --text-secondary-light: #9ca3af;
  --neutral-50: #1e293b;
  --neutral-100: #243044;
  --neutral-200: #2d3748;
  --neutral-300: #3d4a5c;
  --neutral-400: #6b7280;
  --neutral-500: #9ca3af;
  --neutral-700: #d1d5db;
  --neutral-900: #f3f4f6;
  --primary-50: rgba(79, 70, 229, 0.16);
  --primary-100: rgba(79, 70, 229, 0.28);
  --success-50: rgba(22, 163, 74, 0.14);
  --danger-50: rgba(220, 38, 38, 0.14);
  --info-50: rgba(59, 130, 246, 0.14);
  --cyan-50: rgba(6, 182, 212, 0.14);
  --warning-100: rgba(245, 158, 11, 0.16);
  --body-bg: #141b27;
  --ts-text: #9ca3af;
  --ts-heading: #e5e7eb;
  --ts-border: #2d3748;
  --ts-hover: #243044;

  /* Align Bootstrap 5.3 color-mode tokens with Admina dark palette */
  --bs-body-color: #e5e7eb;
  --bs-body-color-rgb: 229, 231, 235;
  --bs-body-bg: #141b27;
  --bs-body-bg-rgb: 20, 27, 39;
  --bs-emphasis-color: #f9fafb;
  --bs-emphasis-color-rgb: 249, 250, 251;
  --bs-secondary-color: rgba(229, 231, 235, 0.75);
  --bs-secondary-bg: #243044;
  --bs-tertiary-bg: #1e293b;
  --bs-border-color: #2d3748;
  --bs-border-color-translucent: rgba(255, 255, 255, 0.12);
  --bs-heading-color: #e5e7eb;
  --bs-link-color: #a5b4fc;
  --bs-link-hover-color: #c7d2fe;
  --bs-form-control-bg: #243044;
  --bs-form-valid-color: #75b798;
  --bs-form-invalid-color: #ea868f;
}

* { box-sizing: border-box; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--body-bg);
  color: var(--text-primary-light);
  margin: 0;
  min-height: 100vh;
}
select{
  min-width: 100px;
}
select.ms-offscreen,
.ms-offscreen {
  min-width: 0 !important;
}
.page-link { color: var(--primary-600); }
.matrix-menu-nested{padding:2px 0px;}
.bg-base { background-color: var(--bg-base) !important; }
.text-primary-light { color: var(--text-primary-light) !important; }
.text-secondary-light { color: var(--text-secondary-light) !important; }
.text-primary-600 { color: var(--primary-600) !important; }
.text-success-600 { color: var(--success-600) !important; }
.text-warning-600 { color: var(--warning-600) !important; }
.text-danger-600 { color: var(--danger-600) !important; }
.text-neutral-700 { color: var(--neutral-700) !important; }
.text-neutral-900 { color: var(--neutral-900) !important; }
.text-neutral-500 { color: var(--neutral-500) !important; }
.text-neutral-400 { color: var(--neutral-400) !important; }
.text-cyan { color: var(--cyan) !important; }

.bg-primary-50 { background-color: var(--primary-50) !important; }
.bg-primary-600 { background-color: var(--primary-600) !important; }
.bg-success-50 { background-color: var(--success-50) !important; }
.bg-success-subtle { background-color: var(--success-50) !important; }
.bg-danger-50 { background-color: var(--danger-50) !important; }
.bg-warning-50 { background-color: #fffbeb !important; }
.bg-warning-100 { background-color: var(--warning-100) !important; }
.bg-cyan-50 { background-color: var(--cyan-50) !important; }
.bg-info-50 { background-color: var(--info-50) !important; }
.bg-neutral-50 { background-color: var(--neutral-50) !important; }
.bg-neutral-100 { background-color: var(--neutral-100) !important; }

.border-primary-100 { border-color: var(--primary-100) !important; }
.border-primary-200 { border-color: var(--primary-200) !important; }
.border-success-200 { border-color: var(--success-200) !important; }
.border-warning-100 { border-color: var(--warning-200) !important; }
.border-warning-200 { border-color: #fcd34d !important; }
.border-danger-100 { border-color: var(--danger-100) !important; }
.border-cyan-100 { border-color: var(--cyan-100) !important; }
.border-neutral-200 { border-color: var(--neutral-200) !important; }

.border-start-width-2-px { border-left: 2px solid; }
.border-warning-600 { border-color: var(--warning-600) !important; }

.radius-4 { border-radius: 4px; }
.radius-8 { border-radius: 8px; }
.radius-12 { border-radius: 12px; }
.radius-20 { border-radius: 20px; }

.p-16 { padding: 16px; }
.p-24 { padding: 24px; }
.py-16 { padding-top: 16px; padding-bottom: 16px; }
.px-16 { padding-left: 16px; padding-right: 16px; }
.py-10 { padding-top: 10px; padding-bottom: 10px; }
.pt-10 { padding-top: 10px; }
.gy-20-px { --bs-gutter-y: 20px; }
.gap-8 { gap: 8px; }
.gap-10 { gap: 10px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-48 { gap: 48px; }
.pb-20 { padding-bottom: 20px; }
.mb-8 { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }
.mb-24 { margin-bottom: 24px; }
.mb-56 { margin-bottom: 56px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-20 { margin-top: 20px; }
.text-2xl { font-size: 1.75rem; font-weight: 700; line-height: 1.2; }
.text-40-px { font-size: 40px; }
.text-lg { font-size: 1.125rem; }
.text-md { font-size: 0.9375rem; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-2xxl { font-size: 1.5rem; }
.text-xl { font-size: 1.25rem; }
.text-xxl { font-size: 1.375rem; }
.line-height-1 { line-height: 1; }
.w-6-px { width: 6px; }
.h-6-px { height: 6px; }
.w-8-px { width: 8px; }
.h-8-px { height: 8px; }
.w-10-px { width: 10px; }
.h-10-px { height: 10px; }
.w-40-px { width: 40px; }
.h-40-px { height: 40px; }
.w-44-px { width: 44px; }
.h-44-px { height: 44px; }
.w-48-px { width: 48px; }
.h-48-px { height: 48px; }
.w-56-px { width: 56px; }
.h-56-px { height: 56px; }
.w-64-px { width: 64px; }
.h-64-px { height: 64px; }
.rounded-3 { border-radius: 12px; }
.rounded-4 { border-radius: 16px; }
.rounded-circle { border-radius: 50% !important; }
.object-fit-cover { object-fit: cover; }
.flex-shrink-0 { flex-shrink: 0; }
.z-n1 { z-index: -1; }

.body-bg {
  object-fit: cover;
  pointer-events: none;
}

/* Twin Sidebar */
.twin-sidebar {
  position: fixed;
  inset-inline-start: 0;
  top: 0;
  height: 100vh;
  display: flex;
  background: #fff;
  box-shadow: 0 0 24px rgba(24, 27, 44, 0.06);
  z-index: 1045;
  transition: transform 0.3s ease;
}

[data-theme="dark"] .twin-sidebar { background: #1b2431; }

.twin-rail {
  width: var(--ts-rail-w);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0 18px;
  border-right: 1px solid var(--ts-border);
}

.twin-rail__brand {
  display: inline-flex;
  width: 40px;
  height: 40px;
  margin-bottom: 22px;
  align-items: center;
  justify-content: center;
  background: var(--primary-600);
  border-radius: 12px;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
}

.twin-rail__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-grow: 1;
  width: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  max-height: calc(100vh - 120px);
  padding-bottom: 8px;
}

.twin-rail__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-top: 10px;
}

.rail-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: var(--ts-text);
  font-size: 22px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.rail-icon:hover { background: var(--ts-hover); color: var(--ts-heading); }
.rail-icon.active { background: var(--ts-purple); color: #fff; }

.twin-panel {
  width: var(--ts-panel-w);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: width 0.25s, opacity 0.2s;
}

.twin-sidebar.is-collapsed .twin-panel {
  width: 0;
  opacity: 0;
  pointer-events: none;
}

.twin-panel__head {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 78px;
  padding: 0 20px;
}

.twin-panel__logo {
  font-size: 22px;
  font-weight: 700;
  color: var(--ts-heading);
  text-decoration: none;
}

[data-theme="dark"] .twin-panel__logo { color: #fff; }

[data-theme="dark"] .twin-panel__logo img {
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.twin-panel__body {
  flex-grow: 1;
  overflow-y: auto;
  padding: 4px 16px 16px;
  display: flex;
  flex-direction: column;
}

.twin-menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}

.twin-menu.active { display: block; }

.twin-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--ts-text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}

.twin-menu li a:hover,
.twin-menu li.active a {
  background: var(--ts-purple-soft);
  color: var(--ts-purple);
}

[data-theme="dark"] .twin-menu li a:hover,
[data-theme="dark"] .twin-menu li.active a {
  background: rgba(99, 102, 241, 0.22);
  color: #c7d2fe;
}

.twin-menu li a i { font-size: 18px; }

.twin-panel__foot {
  padding: 16px;
  border-top: 1px solid var(--ts-border);
}

.upgrade-card {
  background: linear-gradient(135deg, var(--primary-600), #6366f1);
  border-radius: 16px;
  padding: 20px 16px;
  text-align: center;
  color: #fff;
  margin-bottom: 12px;
}

.upgrade-card__art { font-size: 28px; display: block; margin-bottom: 8px; }
.upgrade-card__text { font-size: 13px; margin-bottom: 12px; opacity: 0.9; }

.upgrade-btn {
  display: inline-block;
  background: #fff;
  color: var(--primary-600);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.twin-version {
  display: block;
  text-align: center;
  font-size: 12px;
  color: var(--neutral-400);
}

.twin-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1040;
}

.twin-backdrop.show { display: block; }

.twin-mobile-toggle {
  display: none;
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 1030;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: var(--bg-base);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  font-size: 22px;
}

/* Dashboard layout */
.dashboard-main {
  margin-left: calc(var(--ts-rail-w) + var(--ts-panel-w));
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  transition: margin-left 0.25s;
}

body.twin-collapsed .dashboard-main {
  margin-left: var(--ts-rail-w);
}

.navbar-header {
  height: 4.5rem;
  padding: 1rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 4;
  background: linear-gradient(163deg, rgb(255, 255, 255) 5%, rgb(242, 245, 250) 100%);
}

[data-theme="dark"] .navbar-header { background: #1b2431; }

.matrix-topbar-user {
  color: var(--text-primary-light);
}

.matrix-topbar-user__name {
  color: var(--text-primary-light) !important;
}

.matrix-topbar-user__role {
  color: var(--text-secondary-light) !important;
}

.navbar-search { position: relative; }

.navbar-search input {
  width: 24.25rem;
  height: 2.75rem;
  border: 1px solid var(--white);
  padding: 0.5rem 3.25rem 0.5rem 1.5rem;
  border-radius: 50rem;
  background: var(--bg-base);
  color: var(--text-primary-light);
}

.navbar-search input:focus {
  outline: none;
  border-color: var(--primary-600);
}

.navbar-search .search-btn {
  position: absolute;
  top: 50%;
  right: 0.5rem;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: var(--primary-600);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.twin-collapse {
  border: 0;
  background: transparent;
  font-size: 24px;
  color: var(--text-primary-light);
  cursor: pointer;
  display: none;
}

@media (min-width: 1200px) {
  .twin-collapse { display: inline-block; }
}

.sidebar-toggle .icon.active { display: none; }
.sidebar-toggle.active .icon.non-active { display: none; }
.sidebar-toggle.active .icon.active { display: inline-block; }

[data-theme-toggle] {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--bg-base);
  cursor: pointer;
  font-size: 20px;
  color: var(--text-primary-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(24, 27, 44, 0.08);
  flex-shrink: 0;
}

[data-theme="dark"] [data-theme-toggle] {
  background: var(--neutral-100);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
}

.has-indicator { position: relative; border: 0; cursor: pointer; }

.has-indicator::after {
  content: '';
  position: absolute;
  top: 8px;
  right: 8px;
  width: 8px;
  height: 8px;
  background: var(--danger-main);
  border-radius: 50%;
  border: 2px solid var(--bg-base);
}

.dropdown-menu.to-top {
  border-radius: 12px;
  border: 1px solid var(--neutral-200);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  min-width: 320px;
}

.dashboard-main-body {
  padding: 10px 24px 24px;
  flex-grow: 1;
}

.card-dropdown-btn {
  border: 0;
  background: transparent;
  color: var(--text-secondary-light);
  cursor: pointer;
  padding: 4px;
}

.payment-status-bar {
  height: 8px;
  border-radius: 50px;
  overflow: hidden;
}

.payment-status-bar span {
  display: block;
  height: 100%;
}

.bg-hover-neutral-100:hover { background: var(--neutral-100) !important; }
.border-hover-neutral-200:hover { border-color: var(--neutral-200) !important; }

.list-style-gap { list-style: none; padding: 0; margin: 0; gap: 12px; }

.recent-orders-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.recent-orders-table th {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary-light);
  padding: 12px 16px;
  border-bottom: 1px solid var(--neutral-200);
  white-space: nowrap;
}

.recent-orders-table td {
  padding: 14px 16px;
  font-size: 14px;
  border-bottom: 1px solid var(--neutral-200);
  vertical-align: middle;
}

.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
}

.status-confirmed { background: #dcfce7; color: #16a34a; }
.status-pending { background: #fef3c7; color: #d97706; }
.status-rejected { background: #fee2e2; color: #dc2626; }
.status-shipped { background: #dbeafe; color: #2563eb; }

.stock-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--neutral-200);
}

.stock-item:last-child { border-bottom: 0; }

.restock-link {
  color: var(--primary-600);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.timeline-item {
  position: relative;
  padding-left: 28px;
  padding-bottom: 24px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 24px;
  bottom: 0;
  width: 2px;
  background: var(--neutral-200);
}

.timeline-item:last-child::before { display: none; }

.timeline-dot {
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 3px solid var(--primary-600);
  background: var(--bg-base);
}

.quick-action-btn {
  background: linear-gradient(135deg, var(--primary-600), #6366f1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.quick-action-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
  color: #fff !important;
}

.satisfaction-bar {
  height: 8px;
  border-radius: 50px;
  background: var(--neutral-100);
  overflow: hidden;
}

.satisfaction-bar span {
  display: block;
  height: 100%;
  border-radius: 50px;
  background: var(--primary-600);
}

.d-footer {
  padding: 1.375rem 1.5rem;
  margin-top: auto;
  border-top: 1px solid var(--neutral-200);
}

.d-footer a {
  text-decoration: none;
  color: var(--neutral-500);
  font-size: 14px;
}

.d-footer a:hover { color: var(--primary-600); }

/* Theme customization */
.theme-customization__button {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--primary-600);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(79, 70, 229, 0.4);
}

.theme-customization__button:hover { background: var(--primary-700); }

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

.animate-spin { animation: spin-slow 8s linear infinite; }

.theme-customization-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 360px;
  max-width: 100%;
  height: 100vh;
  background: var(--bg-base);
  z-index: 1060;
  transition: right 0.3s;
  box-shadow: -4px 0 24px rgba(0,0,0,0.1);
  overflow-y: auto;
}

.theme-customization-sidebar.open { right: 0; }

.body-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1055;
}

.body-overlay.show { display: block; }

.theme-setting-item__btn {
  border: 1px solid var(--neutral-200);
  background: var(--bg-base);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.theme-setting-item__btn.active,
.theme-setting-item__btn:hover {
  border-color: var(--primary-600);
  background: var(--primary-50);
}

.color-picker-btn {
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.color-picker-btn__box {
  display: block;
  width: 100%;
}

.grid-cols-2 { display: grid; grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { display: grid; grid-template-columns: repeat(3, 1fr); }

.location-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.location-item .progress-bar-wrap {
  flex-grow: 1;
  height: 8px;
  background: var(--neutral-100);
  border-radius: 50px;
  overflow: hidden;
}

.location-item .progress-bar-fill {
  height: 100%;
  background: var(--primary-600);
  border-radius: 50px;
}

.seller-stars { color: #fbbf24; font-size: 14px; }

@media (max-width: 1199px) {
  .twin-mobile-toggle { display: flex; align-items: center; justify-content: center; }
  .twin-sidebar { transform: translateX(-100%); }
  .twin-sidebar.is-open { transform: translateX(0); }
  .dashboard-main,
  body.twin-collapsed .dashboard-main { margin-left: 0; }
  .navbar-search input { width: 100%; max-width: 280px; }
}

@media (max-width: 991px) {
  .navbar-search { display: none; }
}

/* Auth pages */
.auth-wrapper { background: var(--body-bg); min-height: 100vh; }
.auth-card { box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.auth-logo .twin-rail__brand { margin: 0 auto; }

/* Email */
.email-item.unread { background: var(--primary-50); }
.email-nav .list-group-item.active { background: var(--primary-50); color: var(--primary-600); }

/* Chat */
.chat-bubble { max-width: 70%; padding: 10px 16px; border-radius: 16px; font-size: 14px; }
.chat-bubble.received { background: var(--neutral-100); border-bottom-left-radius: 4px; }
.chat-bubble.sent { background: var(--primary-600); color: #fff; border-bottom-right-radius: 4px; }

/* Kanban */
.kanban-column { min-width: 260px; background: var(--neutral-50); border-radius: 16px; padding: 16px; }
.kanban-column-header { font-weight: 600; margin-bottom: 12px; font-size: 14px; }
.kanban-card { background: var(--bg-base); padding: 12px; border-radius: 12px; margin-bottom: 8px; font-size: 14px; box-shadow: 0 1px 3px rgba(0,0,0,0.06); cursor: grab; }

/* Calendar */
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.calendar-header { text-align: center; font-size: 12px; font-weight: 600; color: var(--text-secondary-light); padding: 8px; }
.calendar-day { text-align: center; padding: 12px 8px; border-radius: 8px; font-size: 14px; cursor: pointer; }
.calendar-day:hover { background: var(--neutral-100); }
.calendar-day.has-event { background: var(--primary-50); color: var(--primary-600); font-weight: 600; }

/* Wizard */
.wizard-steps { position: relative; }
.wizard-step { flex: 1; text-align: center; font-size: 13px; color: var(--text-secondary-light); padding-bottom: 8px; border-bottom: 2px solid var(--neutral-200); }
.wizard-step.active { color: var(--primary-600); border-bottom-color: var(--primary-600); font-weight: 600; }

/* Gallery hover */
.gallery-item-hover { position: relative; overflow: hidden; border-radius: 12px; }
.gallery-item-hover img { transition: transform 0.3s; }
.gallery-item-hover:hover img { transform: scale(1.05); }
.gallery-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 12px; background: linear-gradient(transparent, rgba(0,0,0,0.7)); color: #fff; font-size: 13px; opacity: 0; transition: opacity 0.3s; }
.gallery-item-hover:hover .gallery-caption { opacity: 1; }

.hover-text-primary:hover { color: var(--primary-600) !important; }
.mt-20-px { margin-top: 20px; }
