@import "https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&display=swap";
/* [next]/internal/font/google/geist_a71539c9.module.css [app-client] (css) */
@font-face {
  font-family: Geist;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/8a480f0b521d4e75-s.8e0177b5.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: Geist;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/7178b3e590c64307-s.b97b3418.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Geist;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/caa3a2e1cccd8315-s.p.853070df.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Geist Fallback;
  src: local(Arial);
  ascent-override: 95.94%;
  descent-override: 28.16%;
  line-gap-override: 0.0%;
  size-adjust: 104.76%;
}

.geist_a71539c9-module__T19VSG__className {
  font-family: Geist, Geist Fallback;
  font-style: normal;
}

.geist_a71539c9-module__T19VSG__variable {
  --font-geist-sans: "Geist", "Geist Fallback";
}

/* [next]/internal/font/google/geist_mono_8d43a2aa.module.css [app-client] (css) */
@font-face {
  font-family: Geist Mono;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/4fa387ec64143e14-s.c1fdd6c2.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: Geist Mono;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/bbc41e54d2fcbd21-s.799d8ef8.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Geist Mono;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/797e433ab948586e-s.p.dbea232f.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Geist Mono Fallback;
  src: local(Arial);
  ascent-override: 74.67%;
  descent-override: 21.92%;
  line-gap-override: 0.0%;
  size-adjust: 134.59%;
}

.geist_mono_8d43a2aa-module__8Li5zG__className {
  font-family: Geist Mono, Geist Mono Fallback;
  font-style: normal;
}

.geist_mono_8d43a2aa-module__8Li5zG__variable {
  --font-geist-mono: "Geist Mono", "Geist Mono Fallback";
}

/* [project]/src/app/globals.css [app-client] (css) */
:root {
  --primary-glow: conic-gradient(from 180deg at 50% 50%, #2a8af633 0deg, #a853ba33 55deg, #e92a6733 120deg, #a853ba33 160deg, transparent 360deg);
  --bg-color: #0b0f19;
  --text-main: #fff;
  --text-muted: #94a1b2;
  --card-bg: #ffffff0d;
  --card-border: #ffffff1a;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  background-color: var(--bg-color);
  max-width: 100vw;
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: Inter, sans-serif;
  overflow-x: hidden;
}

.container {
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.container:before {
  content: "";
  background: var(--primary-glow);
  z-index: 0;
  opacity: .8;
  width: 200%;
  height: 200%;
  animation: 20s linear infinite rotateGlow;
  position: absolute;
  top: -50%;
  left: -50%;
}

.overlay {
  background: radial-gradient(circle at center, transparent 0%, var(--bg-color) 70%);
  z-index: 1;
  position: absolute;
  inset: 0;
}

@keyframes rotateGlow {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

.main-content {
  z-index: 10;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  width: 100%;
  max-width: 600px;
  padding: 2rem;
  display: flex;
  position: relative;
}

.logo-wrapper {
  filter: drop-shadow(0 10px 20px #00000080);
  animation: 6s ease-in-out infinite float;
}

.logo {
  object-fit: contain;
  max-width: 100%;
  height: auto;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0);
  }
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  text-align: center;
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  width: 100%;
  padding: 3rem 2.5rem;
  animation: .8s cubic-bezier(.16, 1, .3, 1) forwards slideUp;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px #0009, inset 0 1px #ffffff26;
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.title {
  -webkit-text-fill-color: transparent;
  letter-spacing: -.02em;
  background: linear-gradient(135deg, #fff 0%, #a3a3a3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 1.25rem;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.2;
}

.description {
  color: var(--text-muted);
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.6;
}

.glow-bar {
  background: linear-gradient(90deg, #0000, #2a8af6, #a853ba, #0000) 0 0 / 200% 100%;
  width: 100%;
  height: 4px;
  animation: 3s ease-in-out infinite scan;
  position: absolute;
  bottom: 0;
  left: 0;
}

@keyframes scan {
  0% {
    opacity: 0;
    background-position: 100% 0;
  }

  20% {
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    background-position: -100% 0;
  }
}

@media (max-width: 768px) {
  .title {
    font-size: 1.8rem;
  }

  .card {
    padding: 2.5rem 1.5rem;
  }
}

.login-card {
  width: 100%;
  max-width: 480px;
}

.login-form {
  text-align: left;
  flex-direction: column;
  gap: 1.5rem;
  display: flex;
}

.input-group {
  flex-direction: column;
  gap: .5rem;
  display: flex;
}

.input-group label {
  color: #e2e8f0;
  margin-left: .25rem;
  font-size: .9rem;
  font-weight: 500;
}

.input-field {
  color: #fff;
  background: #0f172a66;
  border: 1px solid #fff3;
  border-radius: 12px;
  outline: none;
  padding: 1rem 1.25rem;
  font-family: inherit;
  font-size: 1rem;
  transition: all .3s;
  box-shadow: inset 0 2px 4px #0003;
}

.input-field::placeholder {
  color: #64748b;
}

.input-field:focus {
  background: #0f172a99;
  border-color: #a853ba;
  box-shadow: 0 0 0 2px #a853ba33, inset 0 2px 4px #0003;
}

.input-field:disabled {
  opacity: .7;
  cursor: not-allowed;
}

.btn-primary {
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, #2a8af6, #a853ba);
  border: none;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  min-height: 56px;
  margin-top: .5rem;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 600;
  transition: all .3s cubic-bezier(.16, 1, .3, 1);
  display: flex;
  box-shadow: 0 4px 15px #a853ba4d;
}

.btn-primary:hover:not(:disabled) {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px #a853ba66;
}

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

.btn-primary:disabled {
  opacity: .7;
  cursor: not-allowed;
  filter: grayscale(.5);
}

.error-message {
  color: #fca5a5;
  text-align: center;
  background: #ef44441a;
  border: 1px solid #ef44444d;
  border-radius: 8px;
  padding: .75rem 1rem;
  font-size: .875rem;
  animation: .3s slideIn;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

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

.spinner {
  border: 3px solid #ffffff4d;
  border-top-color: #fff;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  animation: 1s ease-in-out infinite spin;
}

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

.admin-container {
  background-color: var(--bg-color);
  width: 100vw;
  min-height: 100vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.admin-glow-bg {
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% -20%, #a853ba26, #0000 70%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.admin-sidebar {
  -webkit-backdrop-filter: blur(20px);
  border-right: 1px solid var(--card-border);
  z-index: 10;
  background: #0f172a99;
  flex-direction: column;
  width: 280px;
  display: flex;
  box-shadow: 4px 0 24px #0000004d;
}

.admin-sidebar-header {
  border-bottom: 1px solid #ffffff0d;
  padding: 2rem 1.5rem;
}

.admin-logo {
  color: #fff;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(135deg, #2a8af6, #a853ba);
  -webkit-background-clip: text;
  background-clip: text;
  align-items: center;
  gap: .5rem;
  font-size: 1.5rem;
  font-weight: 800;
  text-decoration: none;
  display: flex;
}

.admin-logo span {
  -webkit-text-fill-color: var(--text-muted);
  font-weight: 300;
}

.admin-nav {
  flex-direction: column;
  flex: 1;
  gap: .5rem;
  padding: 1.5rem 1rem;
  display: flex;
}

.admin-nav-item {
  color: var(--text-muted);
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 12px;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all .3s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.admin-nav-item:hover {
  color: #fff;
  background: #ffffff0d;
}

.admin-nav-item.active {
  color: #fff;
  background: #2a8af61a;
  border: 1px solid #2a8af633;
}

.admin-nav-item.active:before {
  content: "";
  background: linear-gradient(#2a8af6, #a853ba);
  border-radius: 0 4px 4px 0;
  width: 4px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.admin-sidebar-footer {
  border-top: 1px solid #ffffff0d;
  padding: 1.5rem 1rem;
}

.admin-nav-item.logout {
  width: 100%;
}

.admin-nav-item.logout:hover {
  color: #fca5a5;
  background: #ef44441a;
}

.admin-main {
  z-index: 10;
  flex-direction: column;
  flex: 1;
  height: 100vh;
  display: flex;
  overflow-y: auto;
}

.admin-header {
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--card-border);
  z-index: 20;
  background: #0b0f19cc;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2.5rem;
  display: flex;
  position: sticky;
  top: 0;
}

.admin-header-title h2 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
}

.admin-user-profile {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  cursor: pointer;
  border-radius: 100px;
  align-items: center;
  gap: 1rem;
  padding: .5rem 1rem .5rem .5rem;
  transition: all .3s;
  display: flex;
}

.admin-user-profile:hover {
  background: #ffffff1a;
  box-shadow: 0 0 15px #a853ba33;
}

.user-avatar {
  color: #fff;
  background: linear-gradient(135deg, #2a8af6, #a853ba);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  font-size: .9rem;
  font-weight: bold;
  display: flex;
  box-shadow: inset 0 2px 4px #0003;
}

.admin-content {
  flex: 1;
  padding: 2.5rem;
}

.dashboard-grid {
  flex-direction: column;
  gap: 2rem;
  display: flex;
}

.stat-cards {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  display: grid;
}

.stat-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 1.5rem;
  transition: all .3s cubic-bezier(.16, 1, .3, 1);
  position: relative;
  overflow: hidden;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px #0006, 0 0 0 1px #a853ba4d;
}

.stat-title {
  color: var(--text-muted);
  margin-bottom: .5rem;
  font-size: .9rem;
  font-weight: 500;
}

.stat-value {
  color: #fff;
  margin-bottom: .5rem;
  font-size: 2.2rem;
  font-weight: 800;
}

.stat-trend {
  font-size: .85rem;
  font-weight: 600;
}

.stat-trend.positive {
  color: #34d399;
}

.stat-trend.negative {
  color: #f87171;
}

.dashboard-main-area {
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
  display: grid;
}

@media (max-width: 1024px) {
  .dashboard-main-area {
    grid-template-columns: 1fr;
  }
}

.admin-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 10px 30px #0006, inset 0 1px #ffffff0d;
}

.card-heading {
  color: #fff;
  border-bottom: 1px solid #ffffff0d;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.chart-placeholder {
  flex-direction: column;
  justify-content: flex-end;
  height: 250px;
  padding: 1rem 0 0;
  display: flex;
}

.bar-chart {
  border-bottom: 1px solid #ffffff1a;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  height: 200px;
  padding: 0 1rem;
  display: flex;
}

.bar {
  opacity: .8;
  background: linear-gradient(to top, #2a8af6, #a853ba);
  border-radius: 6px 6px 0 0;
  flex: 1;
  transition: all .4s;
  position: relative;
}

.bar:hover {
  opacity: 1;
  transform-origin: bottom;
  transform: scaleY(1.05);
  box-shadow: 0 0 15px #a853ba66;
}

.chart-labels {
  color: var(--text-muted);
  justify-content: space-between;
  padding: 1rem 1rem 0;
  font-size: .8rem;
  display: flex;
}

.activity-list {
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  display: flex;
}

.activity-item {
  background: #ffffff05;
  border: 1px solid #0000;
  border-radius: 12px;
  gap: 1rem;
  padding: 1rem;
  transition: all .3s;
  display: flex;
}

.activity-item:hover {
  background: #ffffff0d;
  border-color: #ffffff1a;
  transform: translateX(4px);
}

.activity-icon {
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  font-size: 1rem;
  font-weight: bold;
  display: flex;
}

.activity-icon.info {
  color: #60a5fa;
  background: #2a8af633;
}

.activity-icon.warning {
  color: #fbbf24;
  background: #f59e0b33;
}

.activity-icon.success {
  color: #34d399;
  background: #10b98133;
}

.activity-details p {
  color: #fff;
  margin-bottom: .35rem;
  font-size: .9rem;
  line-height: 1.4;
}

.activity-details strong {
  color: #e2e8f0;
  font-weight: 600;
}

.activity-time {
  color: var(--text-muted);
  font-size: .8rem;
}

.admin-page-header {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  display: flex;
}

.admin-page-title {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
}

.btn-new {
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, #34d399, #10b981);
  border: none;
  border-radius: 8px;
  padding: .75rem 1.5rem;
  font-weight: 600;
  transition: all .3s;
  box-shadow: 0 4px 15px #10b9814d;
}

.btn-new:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px #10b98166;
}

.table-container {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px #0000004d;
}

.data-table {
  border-collapse: collapse;
  text-align: left;
  width: 100%;
}

.data-table th {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  background: #0003;
  border-bottom: 1px solid #ffffff1a;
  padding: 1.25rem 1.5rem;
  font-size: .8rem;
  font-weight: 600;
}

.data-table td {
  color: #e2e8f0;
  border-bottom: 1px solid #ffffff0d;
  padding: 1.25rem 1.5rem;
  font-size: .95rem;
}

.data-table tbody tr {
  transition: all .3s;
}

.data-table tbody tr:hover {
  background: #ffffff08;
}

.badge {
  border-radius: 50px;
  padding: .35rem .75rem;
  font-size: .75rem;
  font-weight: 600;
  display: inline-block;
}

.badge.stock-high {
  color: #34d399;
  background: #10b98133;
}

.badge.stock-low {
  color: #fbbf24;
  background: #f59e0b33;
}

.badge.stock-out {
  color: #fca5a5;
  background: #ef444433;
}

.badge.status-paid {
  color: #34d399;
  background: #10b98133;
}

.badge.status-pending {
  color: #fbbf24;
  background: #f59e0b33;
}

.action-btn {
  color: #fff;
  cursor: pointer;
  background: none;
  border: 1px solid #fff3;
  border-radius: 6px;
  padding: .5rem 1rem;
  font-size: .8rem;
  transition: all .2s;
}

.action-btn:hover {
  background: #ffffff1a;
  border-color: #fff6;
}

.tabs-container {
  border-bottom: 1px solid #ffffff1a;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  display: flex;
  overflow-x: auto;
}

.tab-btn {
  color: var(--text-muted);
  cursor: pointer;
  white-space: nowrap;
  background: none;
  border: none;
  border-radius: 8px;
  padding: .75rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  transition: all .3s;
}

.tab-btn:hover {
  color: #fff;
  background: #ffffff0d;
}

.tab-btn.active {
  color: #60a5fa;
  background: #2a8af626;
  box-shadow: 0 0 15px #2a8af633;
}

.finance-summary-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
  display: grid;
}

.finance-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 5px 20px #0003;
}

.finance-val {
  margin-top: .5rem;
  font-size: 1.8rem;
  font-weight: 800;
}

.val-positive {
  color: #34d399;
}

.val-negative {
  color: #ef4444;
}

.val-warning {
  color: #fbbf24;
}

.val-neutral {
  color: #60a5fa;
}

.fade-in {
  animation: .4s ease-in forwards fadeInOpacity;
}

@keyframes fadeInOpacity {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

.settings-grid {
  grid-template-columns: 350px 1fr;
  align-items: start;
  gap: 2rem;
  display: grid;
}

@media (max-width: 1024px) {
  .settings-grid {
    grid-template-columns: 1fr;
  }
}

.settings-sidebar {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  flex-direction: column;
  gap: .5rem;
  padding: 1.5rem;
  display: flex;
  box-shadow: 0 5px 20px #0003;
}

.settings-menu-item {
  text-align: left;
  width: 100%;
  color: var(--text-muted);
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 10px;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  font-weight: 500;
  transition: all .3s;
  display: flex;
}

.settings-menu-item:hover {
  color: #fff;
  background: #ffffff0d;
}

.settings-menu-item.active {
  color: #60a5fa;
  background: #2a8af626;
  font-weight: 600;
}

.settings-content {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 5px 20px #0003;
}

.settings-section-title {
  color: #fff;
  border-bottom: 1px solid #ffffff1a;
  margin-bottom: .5rem;
  padding-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.settings-section-desc {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: .9rem;
  line-height: 1.5;
}

.form-grid {
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  display: grid;
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.setting-row {
  border-bottom: 1px solid #ffffff0d;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  display: flex;
}

.setting-row:last-child {
  border-bottom: none;
}

.setting-info h4 {
  color: #fff;
  margin-bottom: .25rem;
  font-size: 1rem;
  font-weight: 500;
}

.setting-info p {
  color: var(--text-muted);
  font-size: .85rem;
}

.switch {
  width: 50px;
  height: 26px;
  display: inline-block;
  position: relative;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  cursor: pointer;
  background-color: #ffffff1a;
  border-radius: 34px;
  transition: all .4s;
  position: absolute;
  inset: 0;
}

.slider:before {
  content: "";
  background-color: var(--text-muted);
  border-radius: 50%;
  width: 18px;
  height: 18px;
  transition: all .4s;
  position: absolute;
  bottom: 4px;
  left: 4px;
}

input:checked + .slider {
  background: linear-gradient(135deg, #34d399, #10b981);
}

input:checked + .slider:before {
  background-color: #fff;
  transform: translateX(24px);
}

.modal-overlay {
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  background: #000000b3;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  animation: .2s fadeIn;
  display: flex;
  position: fixed;
  inset: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.modal-box {
  background: #0f172af5;
  border: 1px solid #ffffff1f;
  border-radius: 24px;
  width: 100%;
  max-width: 760px;
  max-height: 88vh;
  animation: .3s cubic-bezier(.16, 1, .3, 1) slideUp;
  overflow-y: auto;
  box-shadow: 0 30px 80px #000000b3, inset 0 1px #ffffff14;
}

.modal-header {
  -webkit-backdrop-filter: blur(10px);
  z-index: 5;
  background: #0f172afa;
  border-bottom: 1px solid #ffffff14;
  border-radius: 24px 24px 0 0;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 2rem 2rem 1.5rem;
  display: flex;
  position: sticky;
  top: 0;
}

.modal-title {
  color: #fff;
  margin-bottom: .35rem;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.3;
}

.modal-subtitle {
  color: var(--text-muted);
  font-size: .85rem;
}

.modal-close-btn {
  color: var(--text-muted);
  cursor: pointer;
  background: #ffffff14;
  border: 1px solid #ffffff1f;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  font-size: 1rem;
  transition: all .2s;
  display: flex;
}

.modal-close-btn:hover {
  color: #fca5a5;
  background: #ef444433;
  border-color: #ef444466;
}

.modal-body {
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.5rem 2rem 2rem;
  display: flex;
}

.modal-section {
  background: #ffffff05;
  border: 1px solid #ffffff0f;
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
}

.modal-section-title {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 1rem;
  font-size: .9rem;
  font-weight: 600;
}

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

@media (max-width: 600px) {
  .detail-grid {
    grid-template-columns: 1fr;
  }
}

.detail-item {
  flex-direction: column;
  gap: .25rem;
  display: flex;
}

.detail-label {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: .75rem;
  font-weight: 500;
}

.detail-value {
  color: #e2e8f0;
  word-break: break-word;
  font-size: .95rem;
  font-weight: 500;
}

.order-timeline {
  align-items: flex-start;
  gap: 0;
  padding: .5rem 0 1rem;
  display: flex;
  overflow-x: auto;
}

.timeline-step {
  flex-direction: column;
  flex: 1;
  align-items: center;
  min-width: 80px;
  display: flex;
  position: relative;
}

.timeline-dot {
  color: #fff;
  z-index: 2;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  font-size: .85rem;
  font-weight: 700;
  transition: all .3s;
  display: flex;
  position: relative;
}

.timeline-line {
  z-index: 1;
  border-radius: 2px;
  width: calc(100% - 32px);
  height: 3px;
  transition: background .4s;
  position: absolute;
  top: 16px;
  left: calc(50% + 16px);
}

.timeline-label {
  text-align: center;
  max-width: 80px;
  margin-top: .6rem;
  font-size: .75rem;
  line-height: 1.3;
  transition: color .3s;
}

/*# sourceMappingURL=%5Broot-of-the-server%5D__0f0ba101._.css.map*/