/* =========================================================
   KYD's Store — Admin Order Control Panel (Redesigned)
   Theme: Quantum Dark (Premium Operations Deck)
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;700&display=swap');

.admin {
  --color-canvas: #f8fafc;       /* Slate 50 */
  --color-white: #ffffff;        /* Pure White */
  --color-black: #0f172a;        /* Slate 900 */
  --color-border: #e2e8f0;       /* Slate 200 */
  --color-border-hover: #cbd5e1; /* Slate 300 */
  --color-muted: #64748b;        /* Slate 500 */
  --color-violet: #4f46e5;       /* Indigo 600 */
  --color-violet-wash: rgba(79, 70, 229, 0.05);
  --color-violet-glow: rgba(79, 70, 229, 0.15);
  --color-slate: #f1f5f9;        /* Slate 100 */
  
  --color-success: #10b981;      /* Emerald 500 */
  --color-success-bg: rgba(16, 185, 129, 0.06);
  --color-success-border: rgba(16, 185, 129, 0.15);

  --color-warning: #d97706;      /* Amber 600 */
  --color-warning-bg: rgba(217, 119, 6, 0.06);
  --color-warning-border: rgba(217, 119, 6, 0.15);

  --color-danger: #e11d48;       /* Rose 600 */
  --color-danger-bg: rgba(225, 29, 72, 0.06);
  --color-danger-border: rgba(225, 29, 72, 0.15);

  --color-info: #2563eb;         /* Blue 600 */
  --color-info-bg: rgba(37, 99, 235, 0.06);
  --color-info-border: rgba(37, 99, 235, 0.15);

  --font: 'Outfit', 'Inter', ui-sans-serif, system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-full: 9999px;
  
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-glow: 0 0 12px rgba(79, 70, 229, 0.12);
  --sidebar-w: 360px;
}

.admin *, .admin *::before, .admin *::after {
  box-sizing: border-box;
}

.admin {
  scroll-behavior: smooth;
}

/* Admin scrollbars */
.admin ::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.admin ::-webkit-scrollbar-track {
  background: transparent;
}
.admin ::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-border-hover);
}

.admin {
  margin: 0;
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-black);
  background: var(--color-canvas);
  -webkit-font-smoothing: antialiased;
  height: 100vh;
  overflow: hidden;
  display: flex;
}

.admin img {
  max-width: 100%;
  display: block;
}

.admin a {
  color: inherit;
  text-decoration: none;
}

.admin button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

/* Layout */
.panel-left {
  width: var(--sidebar-w);
  min-width: 280px;
  max-width: 600px;
  border-right: 1px solid var(--color-border);
  background: var(--color-white); /* White sidebar for light mode */
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  overflow: hidden;
}

.panel-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--color-canvas);
}

/* Left panel header */
.panel-left__head {
  padding: 20px 16px;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: 12px;
}

.panel-left__logo {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, #a78bfa 0%, #7c3aed 100%);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 0 15px rgba(124, 58, 237, 0.4);
}

.panel-left__title {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-black);
}

.panel-left__badge {
  margin-left: auto;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(139, 92, 246, 0.15);
  color: #a78bfa;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(139, 92, 246, 0.2);
  letter-spacing: 0.05em;
}

/* Admin Nav Tabs */
.admin-tabs {
  display: flex;
  border-bottom: 1px solid var(--color-border);
  padding: 0 8px;
  flex-shrink: 0;
  background: var(--color-slate);
}

.admin-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--color-muted);
  border-bottom: 2px solid transparent;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.admin-tab svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s;
}

.admin-tab:hover {
  color: var(--color-black);
}

.admin-tab:hover svg {
  transform: translateY(-1px);
}

.admin-tab.is-active {
  color: var(--color-violet);
  border-bottom-color: var(--color-violet);
}

/* Order list */
.order-list {
  flex: 1;
  overflow-y: auto;
  padding: 12px 8px;
}

.order-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 6px;
  border: 1px solid var(--color-border);
  background: var(--color-white);
}

.order-item:hover {
  background: #f8fafc;
  border-color: var(--color-border-hover);
  transform: translateX(2px);
}

.order-item.is-active {
  background: rgba(139, 92, 246, 0.08);
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: inset 0 0 8px rgba(139, 92, 246, 0.05);
}

.order-item__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px currentColor;
}

.order-item__info {
  flex: 1;
  min-width: 0;
}

.order-item__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-black);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.order-item__meta {
  font-size: 11px;
  color: var(--color-muted);
  margin-top: 2px;
}

.order-item__amount {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-black);
  flex-shrink: 0;
}

.order-item__status {
  font-size: 9px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  flex-shrink: 0;
  border: 1px solid transparent;
}

/* Status colors map (Quantum Style) */
.st-pending_review { background: rgba(245, 158, 11, 0.1); color: #fbbf24; border-color: rgba(245, 158, 11, 0.2); }
.st-processing { background: rgba(59, 130, 246, 0.1); color: #60a5fa; border-color: rgba(59, 130, 246, 0.2); }
.st-approved { background: rgba(16, 185, 129, 0.1); color: #34d399; border-color: rgba(16, 185, 129, 0.2); }
.st-shipped { background: rgba(5, 150, 105, 0.15); color: #059669; border-color: rgba(5, 150, 105, 0.2); }
.st-on_hold { background: rgba(219, 39, 119, 0.1); color: #f472b6; border-color: rgba(219, 39, 119, 0.2); }
.st-declined { background: rgba(244, 63, 94, 0.1); color: #fb7185; border-color: rgba(244, 63, 94, 0.2); }
.st-info_requested { background: rgba(99, 102, 241, 0.1); color: #818cf8; border-color: rgba(99, 102, 241, 0.2); }

.dot-pending_review { background: var(--color-warning); color: var(--color-warning); }
.dot-processing { background: var(--color-info); color: var(--color-info); }
.dot-approved { background: var(--color-success); color: var(--color-success); }
.dot-shipped { background: #059669; color: #059669; }
.dot-on_hold { background: #db2777; color: #db2777; }
.dot-declined { background: var(--color-danger); color: var(--color-danger); }
.dot-info_requested { background: #6366f1; color: #6366f1; }

/* Right panel header */
.panel-right__head {
  padding: 20px 24px;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--color-white);
  backdrop-filter: var(--glass-backdrop);
}

.panel-right__head h2 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.02em;
  color: var(--color-black);
}

.panel-right__head .status-pill {
  margin-left: 8px;
}

.panel-right__actions {
  margin-left: auto;
  display: flex;
  gap: 8px;
}

/* Right panel body */
.panel-right__body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  scrollbar-width: thin;
}

.detail-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--color-muted);
  text-align: center;
  padding: 40px;
}

.detail-empty svg {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  opacity: .35;
  display: block;
  margin: 0 auto 16px;
  color: var(--color-violet);
  filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.2));
}

/* Sections */
.detail-section {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--color-border);
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}

.detail-section h3 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--color-muted);
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.detail-section h3 svg {
  color: var(--color-violet);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.detail-field {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  transition: all 0.2s;
}

.detail-field:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--color-border-hover);
}

.detail-field__label {
  font-size: 9px;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 4px;
}

.detail-field__value {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-black);
}

[data-copy] {
  cursor: pointer;
  position: relative;
}

[data-copy]:hover {
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.3);
}

.detail-field--full {
  grid-column: 1 / -1;
}

/* Items list */
.item-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  transition: all 0.2s;
}

.item-row:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--color-border-hover);
}

.item-row img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--color-border);
}

.item-row__info {
  flex: 1;
}

.item-row__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-black);
}

.item-row__meta {
  font-size: 11px;
  color: var(--color-muted);
  margin-top: 2px;
}

.item-row__price {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-black);
}

/* Action bar at bottom of detail */
.action-bar {
  padding: 16px 24px;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  backdrop-filter: var(--glass-backdrop);
}

.action-bar__label {
  font-size: 10px;
  font-weight: 700;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  width: 100%;
  margin-bottom: 6px;
}

/* Action Buttons (Glowing Quantum style) */
.btn-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 38px;
  border: 1px solid transparent;
}

.btn-action:hover {
  transform: translateY(-1px);
}

.btn-action:active {
  transform: translateY(1px);
}

.btn-action--approve {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-action--approve:hover {
  box-shadow: 0 4px 18px rgba(16, 185, 129, 0.5);
}

.btn-action--process {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-action--process:hover {
  box-shadow: 0 4px 18px rgba(59, 130, 246, 0.5);
}

.btn-action--ship {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.btn-action--ship:hover {
  box-shadow: 0 4px 18px rgba(5, 150, 105, 0.5);
}

.btn-action--hold {
  background: linear-gradient(135deg, #db2777 0%, #be185d 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(219, 39, 119, 0.3);
}

.btn-action--hold:hover {
  box-shadow: 0 4px 18px rgba(219, 39, 119, 0.5);
}

.btn-action--info {
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.btn-action--info:hover {
  box-shadow: 0 4px 18px rgba(99, 102, 241, 0.5);
}

.btn-action--decline {
  background: linear-gradient(135deg, #f43f5e 0%, #e11d48 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(244, 63, 94, 0.3);
}

.btn-action--decline:hover {
  box-shadow: 0 4px 18px rgba(244, 63, 94, 0.5);
}

.btn-action--ghost {
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.02);
  color: var(--color-black);
}

.btn-action--ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--color-border-hover);
}

.btn-action__spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: btn-spin 0.6s linear infinite;
}

.btn-action--ghost .btn-action__spinner {
  border-color: rgba(255, 255, 255, 0.15);
  border-top-color: var(--color-black);
}

.btn-action:disabled {
  cursor: wait;
}

@keyframes btn-spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Top operation progress bar */
.admin-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 9999;
  pointer-events: none;
  overflow: hidden;
  opacity: 0;
  transition: opacity .2s;
}

.admin-progress.is-active {
  opacity: 1;
}

.admin-progress__bar {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--color-violet) 0%, #c084fc 100%);
  transform-origin: left;
  animation: admin-progress-slide 1.2s ease-in-out infinite;
}

@keyframes admin-progress-slide {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(0%); }
  100% { transform: translateX(100%); }
}

/* Notes Section */
.notes-input {
  width: 100%;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-black);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 13px;
  font-family: inherit;
  resize: vertical;
  min-height: 64px;
  outline: none;
  margin-top: 10px;
  transition: border-color 0.2s;
}

.notes-input:focus {
  border-color: var(--color-violet);
  box-shadow: 0 0 0 2px var(--color-violet-glow);
}

.admin-note {
  background: rgba(245, 158, 11, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-left: 3px solid var(--color-warning);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  color: #fbbf24;
  margin-top: 10px;
  line-height: 1.5;
}

/* Monospace Holographic Membership Card */
.membership-card {
  background: linear-gradient(135deg, #181528 0%, #221d3f 50%, #171128 100%);
  border-radius: var(--radius);
  padding: 22px;
  color: #fff;
  position: relative;
  overflow: hidden;
  margin-bottom: 12px;
  border: 1px solid rgba(139, 92, 246, 0.25);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 15px rgba(139, 92, 246, 0.1);
}

.membership-card::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -30%;
  width: 90%;
  height: 200%;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.08) 0%, transparent 70%);
  pointer-events: none;
  transform: rotate(-15deg);
}

.membership-card__number {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: var(--font-mono);
  margin-bottom: 16px;
  cursor: pointer;
  color: #e9d5ff;
  text-shadow: 0 0 8px rgba(167, 139, 250, 0.3);
}

.membership-card__number:hover {
  color: #fff;
}

.membership-card__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.membership-card__name {
  font-size: 11px;
  opacity: .6;
  text-transform: uppercase;
}

.membership-card__name strong {
  display: block;
  font-size: 14px;
  opacity: 1;
  font-family: var(--font);
  color: #fff;
  letter-spacing: normal;
  text-transform: none;
  margin-top: 4px;
}

.membership-card__expiry {
  font-size: 11px;
  opacity: .7;
  text-align: right;
  font-family: var(--font-mono);
}

.membership-card__tier {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: rgba(139, 92, 246, 0.2);
  color: #d8b4fe;
  border: 1px solid rgba(139, 92, 246, 0.3);
  text-transform: uppercase;
}

/* Store link */
.store-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-top: 1px solid var(--color-border);
  font-size: 12px;
  color: var(--color-muted);
  transition: all 0.2s;
  background: transparent;
}

.store-link:hover {
  color: var(--color-violet);
  background: rgba(139, 92, 246, 0.05);
}

.store-link svg {
  width: 16px;
  height: 16px;
}

/* Notification flash toast */
.flash {
  position: fixed;
  bottom: 24px;
  right: 24px;
  top: auto; /* override top */
  background: #18181c;
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  box-shadow: var(--shadow-md), 0 0 15px rgba(139, 92, 246, 0.1);
  font-size: 13px;
  z-index: 999;
  transform: translateY(150%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-black);
}

.flash.is-visible {
  transform: translateY(0);
}

.flash__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-success);
  box-shadow: 0 0 8px var(--color-success);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

/* Stat cards for dashboard */
.stat-box {
  background: var(--color-white);
  border-radius: var(--radius-sm);
  padding: 18px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-box:hover {
  border-color: var(--color-border-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.stat-box__label {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--color-muted);
  margin-bottom: 6px;
}

.stat-box__value {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--color-black);
}

@media(max-width: 768px) {
  .stat-box__value { font-size: 20px; }
}

/* Live Toggle Switch */
.live-switch {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}

.live-switch__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.live-switch__track {
  width: 42px;
  height: 24px;
  border-radius: 12px;
  background: #27272a;
  border: 1px solid var(--color-border);
  position: relative;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.live-switch__track--on {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.3);
}

.live-switch__thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #a1a1aa;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.live-switch__track--on .live-switch__thumb {
  transform: translateX(18px);
  background: var(--color-success);
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
}

/* Order filter tabs */
.order-filter-tabs {
  display: flex;
  gap: 4px;
  padding: 8px;
  border-bottom: 1px solid var(--color-border);
  overflow-x: auto;
  scrollbar-width: none;
  flex-shrink: 0;
  background: var(--color-slate);
}

.order-filter-tabs::-webkit-scrollbar {
  display: none;
}

.order-filter-tab {
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--color-muted);
  border-radius: 8px;
  white-space: nowrap;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid transparent;
}

.order-filter-tab:hover {
  background: rgba(0, 0, 0, 0.02);
  color: var(--color-black);
}

.order-filter-tab.is-active {
  background: var(--color-violet-wash);
  color: var(--color-violet);
  border-color: var(--color-violet-glow);
}

.order-filter-tab__count {
  font-size: 9px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.08);
  padding: 1px 6px;
  border-radius: var(--radius-full);
  color: var(--color-muted);
}

.order-filter-tab.is-active .order-filter-tab__count {
  background: rgba(139, 92, 246, 0.2);
  color: #d8b4fe;
}

/* Status Indicator Dots */
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}

.status-dot--online {
  background: var(--color-success);
  box-shadow: 0 0 8px var(--color-success);
}

.status-dot--online::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--color-success);
  animation: statusPulse 2s ease-in-out infinite;
}

.status-dot--offline {
  background: var(--color-danger);
  box-shadow: 0 0 8px var(--color-danger);
}

@keyframes statusPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.2; transform: scale(1.8); }
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
}

.status-badge--online {
  background: rgba(16, 185, 129, 0.08);
  color: var(--color-success);
  border-color: rgba(16, 185, 129, 0.15);
}

.status-badge--offline {
  background: rgba(244, 63, 94, 0.08);
  color: var(--color-danger);
  border-color: rgba(244, 63, 94, 0.15);
}

.status-badge .status-dot {
  width: 6px;
  height: 6px;
}

.status-badge .status-dot--online::after {
  display: none;
}

/* Bulk Selection Checkbox styling */
.bulk-checkbox {
  width: 16px;
  height: 16px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  cursor: pointer;
  accent-color: var(--color-violet);
  background: rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}

.bulk-checkbox:hover {
  border-color: var(--color-violet);
}

.order-item.is-selected,
.product-list-item.is-selected {
  background: rgba(139, 92, 246, 0.08);
  border-left: 3px solid var(--color-violet);
  border-color: rgba(139, 92, 246, 0.2) rgba(139, 92, 246, 0.2) rgba(139, 92, 246, 0.2) var(--color-violet);
}

/* Bulk Action Bar */
.bulk-action-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  flex-shrink: 0;
}

.bulk-action-bar__selected {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #a78bfa;
}

.bulk-action-bar__actions {
  display: flex;
  gap: 8px;
}

.bulk-action-btn {
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
  color: white;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.bulk-action-btn:hover {
  opacity: 0.9;
  transform: translateY(-0.5px);
}

.bulk-action-btn--cancel {
  background: rgba(255, 255, 255, 0.04) !important;
  color: var(--color-muted) !important;
  border: 1px solid var(--color-border);
}

.bulk-action-btn--cancel:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  color: var(--color-black) !important;
}

/* loading.tsx page skeleton */
.admin-skel {
  background: linear-gradient(90deg, #1c1c22 25%, #2a2a35 50%, #1c1c22 75%);
  background-size: 200% 100%;
  animation: adminSkelShine 1.5s ease infinite;
  border-radius: 6px;
  display: block;
}

@keyframes adminSkelShine {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.admin-loading {
  display: flex;
  height: 100vh;
  overflow: hidden;
  background: var(--color-canvas);
}

.admin-loading__left {
  width: var(--sidebar-w);
  border-right: 1px solid var(--color-border);
  background: var(--color-white);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.admin-loading__head {
  padding: 16px;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-loading__tabs {
  display: flex;
  gap: 8px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--color-border);
}

.admin-loading__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  border-bottom: 1px solid var(--color-border);
}

.admin-loading__list {
  padding: 12px;
  flex: 1;
  overflow: hidden;
}

.admin-loading__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
}

.admin-loading__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.admin-loading__right-head {
  padding: 16px 24px;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-loading__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 24px;
}

.admin-loading__stat-card {
  background: var(--color-white);
  border-radius: var(--radius-sm);
  padding: 18px;
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
}

.admin-loading__content {
  padding: 0 24px 24px;
  flex: 1;
}

/* Product form styles */
.product-form {
  display: grid;
  gap: 20px;
  padding-bottom: 20px;
}

.product-form .pf-section {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 20px;
  display: grid;
  gap: 16px;
  box-shadow: var(--shadow);
}

.product-form .pf-section-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--color-muted);
  margin: 0 0 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-form .field label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--color-muted);
  margin-bottom: 6px;
  display: block;
}

.product-form .field input,
.product-form .field textarea,
.product-form .field select {
  font-size: 13px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-black);
  width: 100%;
  outline: none;
  font-family: inherit;
  transition: all 0.2s;
}

.product-form .field input:focus,
.product-form .field textarea:focus,
.product-form .field select:focus {
  border-color: var(--color-violet);
  box-shadow: 0 0 0 2px var(--color-violet-glow);
  background: var(--color-white);
}

.product-form textarea {
  min-height: 80px;
  resize: vertical;
  line-height: 1.5;
}

.product-form .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.product-form .field-row-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.product-form .field-hint {
  font-size: 10px;
  color: var(--color-muted);
  margin-top: 4px;
}

/* Image list */
.image-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.image-list__item {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--color-border);
  background: rgba(0,0,0,0.2);
}

.image-list__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-list__remove {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 10px;
  display: grid;
  place-items: center;
  cursor: pointer;
  line-height: 1;
  transition: background 0.15s;
}

.image-list__remove:hover {
  background: var(--color-danger);
}

/* Add product button */
.add-product-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  margin: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  color: #a78bfa;
  border: 1px dashed rgba(139, 92, 246, 0.3);
  transition: all 0.2s;
  background: rgba(139, 92, 246, 0.02);
}

.add-product-btn:hover {
  background: rgba(139, 92, 246, 0.06);
  border-color: var(--color-violet);
  transform: translateY(-0.5px);
}

/* Danger zone */
.danger-zone {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(244, 63, 94, 0.15);
}

.danger-zone button {
  color: #f43f5e;
  border: 1px solid rgba(244, 63, 94, 0.25);
  background: rgba(244, 63, 94, 0.02);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
  transition: all 0.2s;
}

.danger-zone button:hover {
  background: rgba(244, 63, 94, 0.08);
  border-color: var(--color-danger);
}

/* Product list item */
.product-list-wrap {
  flex: 1;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--color-border) transparent;
}

.product-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  margin-bottom: 4px;
  transition: all 0.2s;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.01);
}

.product-list-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--color-border);
}

.product-list-item.is-active {
  background: rgba(139, 92, 246, 0.08);
  border-color: rgba(139, 92, 246, 0.25);
}

.product-list-item img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--color-border);
}

.product-list-item__info {
  flex: 1;
  min-width: 0;
}

.product-list-item__name {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-black);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-list-item__meta {
  font-size: 11px;
  color: var(--color-muted);
}

/* Pagination component */
.admin-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-top: 1px solid var(--color-border);
  flex-shrink: 0;
  background: rgba(0, 0, 0, 0.05);
}

.admin-pagination__btn {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.02);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-black);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.2s;
}

.admin-pagination__btn:hover:not(:disabled) {
  background: rgba(139, 92, 246, 0.1);
  border-color: var(--color-violet);
  color: #a78bfa;
}

.admin-pagination__btn:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}

.admin-pagination__info {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-muted);
  min-width: 55px;
  text-align: center;
}

/* Analytics Charts */
.chart-box {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.chart-box__title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--color-muted);
  margin-bottom: 16px;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 110px;
}

.chart-bar-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.chart-bar-wrap {
  width: 100%;
  height: 85px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: rgba(255, 255, 255, 0.01);
  border-radius: 4px;
}

.chart-bar {
  width: 100%;
  max-width: 24px;
  min-height: 4px;
  border-radius: 6px 6px 0 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 10px rgba(139, 92, 246, 0.1);
}

.chart-bar:hover {
  filter: brightness(1.2);
  box-shadow: 0 0 15px currentColor;
}

.chart-bar-label {
  font-size: 10px;
  color: var(--color-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  text-align: center;
  margin-top: 2px;
}

.chart-bar-value {
  font-size: 10px;
  font-weight: 700;
  color: var(--color-black);
}

/* Conversion Funnel steps */
.funnel {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.funnel-step {
  display: flex;
  align-items: center;
  gap: 14px;
}

.funnel-bar-wrap {
  flex: 1;
  height: 24px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.funnel-bar {
  height: 100%;
  border-radius: 7px;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 8px;
  box-shadow: inset 0 2px 4px rgba(255,255,255,0.05);
}

.funnel-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 160px;
}

.funnel-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-black);
}

.funnel-value {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-muted);
  margin-left: auto;
}

.funnel-rate {
  font-size: 10px;
  color: var(--color-success);
  font-weight: 700;
  text-shadow: 0 0 6px rgba(16, 185, 129, 0.2);
}

@media(max-width:768px) {
  .chart-bars { height: 70px; }
  .chart-bar-wrap { height: 55px; }
  .funnel-meta { min-width: 120px; }
}

/* Admin Search Box */
.admin-search {
  position: relative;
  padding: 10px 12px;
  border-bottom: 1px solid var(--color-border);
  flex-shrink: 0;
  background: var(--color-slate);
}

.admin-search__input {
  width: 100%;
  padding: 8px 32px 8px 12px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-size: 12px;
  font-family: inherit;
  outline: none;
  background: var(--color-white);
  color: var(--color-black);
  transition: all 0.2s;
}

.admin-search__input:focus {
  border-color: var(--color-violet);
  background: var(--color-white);
  box-shadow: 0 0 0 2px var(--color-violet-glow);
}

.admin-search__input::placeholder {
  color: #52525b;
}

.admin-search__clear {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-border-hover);
  color: var(--color-muted);
  font-size: 12px;
  display: grid;
  place-items: center;
  cursor: pointer;
  border: none;
  line-height: 1;
  transition: all 0.15s;
}

.admin-search__clear:hover {
  background: var(--color-danger);
  color: #fff;
}

/* Audit Log Entries */
.audit-log-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.audit-log-entry {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}

.audit-log-entry:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--color-border-hover);
  transform: translateY(-0.5px);
}

.audit-log-entry__icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-border);
}

.audit-log-entry__body {
  flex: 1;
  min-width: 0;
}

.audit-log-entry__action {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.audit-log-entry__badge {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 6px;
  text-transform: uppercase;
}

.audit-log-entry__entity {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-black);
}

.audit-log-entry__details {
  font-size: 11px;
  color: var(--color-muted);
  margin-top: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.audit-log-entry__meta {
  font-size: 10px;
  color: #71717a;
  margin-top: 4px;
}

.audit-log-entry__time {
  font-size: 10px;
  font-weight: 600;
  color: var(--color-muted);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Order timeline */
.order-timeline {
  display: flex;
  flex-direction: column;
}

.order-timeline__item {
  display: flex;
  gap: 14px;
  min-height: 48px;
}

.order-timeline__rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 16px;
  flex-shrink: 0;
}

.order-timeline__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
  background: var(--color-violet);
}

.order-timeline__line {
  width: 2px;
  flex: 1;
  background: var(--color-border);
  margin: 6px 0;
  min-height: 16px;
}

.order-timeline__content {
  flex: 1;
  padding-bottom: 16px;
}

.order-timeline__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-black);
  line-height: 1.3;
}

.order-timeline__detail {
  font-size: 11px;
  color: var(--color-muted);
  margin-top: 2px;
}

.order-timeline__time {
  font-size: 10px;
  color: #71717a;
  margin-top: 3px;
}

/* Bulk toggling button */
.admin-bulk-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 9px;
  font-weight: 700;
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.02);
  color: var(--color-muted);
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.admin-bulk-toggle:hover {
  border-color: var(--color-violet);
  color: #a78bfa;
  background: rgba(139, 92, 246, 0.05);
}

.admin-bulk-toggle.is-active {
  background: var(--color-violet);
  color: #fff;
  border-color: var(--color-violet);
  box-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
}

.list-section-head {
  padding: 10px 14px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--color-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-slate);
}

.list-section-head--online {
  color: var(--color-success);
}

.list-section-head--offline {
  color: #71717a;
}

.list-section-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.list-section-dot--online {
  background: var(--color-success);
  box-shadow: 0 0 6px var(--color-success);
}

/* Resize panel handle */
.panel-resize-handle {
  width: 6px;
  cursor: col-resize;
  background: transparent;
  position: relative;
  flex-shrink: 0;
  z-index: 10;
  transition: background .15s;
}

.panel-resize-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 40px;
  border-radius: 1px;
  background: var(--color-border-hover);
  opacity: 0;
  transition: opacity .2s;
}

.panel-resize-handle:hover {
  background: rgba(139, 92, 246, 0.05);
}

.panel-resize-handle:hover::after {
  opacity: 1;
}

/* Responsive queries */
@media(max-width: 768px) {
  .admin { flex-direction: column; }
  .panel-left { width: 100%; height: auto; max-height: 40vh; border-right: none; border-bottom: 1px solid var(--color-border); }
  .panel-right { min-height: 60vh; }
  .detail-grid { grid-template-columns: 1fr; }
  .action-bar { padding: 12px 16px; }
  .panel-right__body { padding: 16px; }
}

@keyframes vPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}

/* Visitor Sessions List styling */
.visitor-sessions {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.visitor-session-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--color-border);
  transition: all 0.2s;
}

.visitor-session-item:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--color-border-hover);
}

.visitor-session-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #52525b;
  flex-shrink: 0;
}

.visitor-session-dot--active {
  background: var(--color-success);
  box-shadow: 0 0 8px var(--color-success);
}

.visitor-session-info {
  flex: 1;
  min-width: 0;
}

.visitor-session-time {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-black);
  display: block;
}

.visitor-session-meta {
  font-size: 10px;
  color: var(--color-muted);
  margin-top: 1px;
}

.visitor-session-live {
  font-size: 9px;
  font-weight: 800;
  color: var(--color-success);
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.15);
  padding: 2px 8px;
  border-radius: 10px;
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: .03em;
}

/* Activity Timeline */
.activity-timeline {
  max-height: 320px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--color-border) transparent;
}

.activity-timeline::-webkit-scrollbar { width: 4px; }
.activity-timeline::-webkit-scrollbar-thumb { background: var(--color-border); border-radius: 4px; }

.activity-date-group {
  margin-bottom: 16px;
}

.activity-date-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--color-muted);
  padding: 6px 0 8px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 8px;
  position: sticky;
  top: 0;
  background: var(--color-white);
  z-index: 1;
}

.activity-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.activity-item:last-child {
  border-bottom: none;
}

.activity-item__icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  font-size: 12px;
  flex-shrink: 0;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
}

.activity-item__body {
  flex: 1;
  min-width: 0;
}

.activity-item__action {
  font-size: 12px;
  color: var(--color-black);
  line-height: 1.3;
}

.activity-item__time {
  font-size: 10px;
  color: #71717a;
  margin-top: 2px;
}
