@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@500;600;700;800;900&display=swap');

:root {
  --nav-icon: rgba(24, 24, 27, 0.9);
  --nav-icon-muted: rgba(24, 24, 27, 0.55);
  --nav-pill-bg: rgba(255, 255, 255, 0.9);
  --nav-pill-border: rgba(0, 0, 0, 0.1);
  --nav-hover: rgba(0, 0, 0, 0.06);
  --nav-primary-active: rgba(59, 130, 246, 0.12);
  --primary: #3b82f6;
  --primary-glow: rgba(59, 130, 246, 0.3);
  --liquid-glass-bg: rgba(255, 255, 255, 0.03);
  --liquid-glass-border: rgba(255, 255, 255, 0.12);
  /* Light mode card text */
  --card-title: #18181b;
  --card-price: #27272a;
  --card-meta: #71717a;
  --chip-color: #52525b;
  --chip-border: rgba(0, 0, 0, 0.15);
  --chip-active-bg: rgba(0, 0, 0, 0.08);
  --chip-active-border: rgba(0, 0, 0, 0.25);
  --chip-active-color: #18181b;
  --card-bg: rgba(0, 0, 0, 0.02);
  --card-border: rgba(0, 0, 0, 0.1);
}

.dark {
  --nav-icon: rgba(245, 245, 245, 0.95);
  --nav-icon-muted: rgba(245, 245, 245, 0.5);
  --nav-pill-bg: rgba(10, 10, 12, 0.7);
  --nav-pill-border: rgba(255, 255, 255, 0.1);
  --nav-hover: rgba(255, 255, 255, 0.08);
  --nav-primary-active: rgba(255, 255, 255, 0.14);
  --card-title: #f4f4f5;
  --card-price: #d4d4d8;
  --card-meta: rgba(161, 161, 170, 0.95);
  --chip-color: #a1a1aa;
  --chip-border: rgba(255, 255, 255, 0.12);
  --chip-active-bg: rgba(255, 255, 255, 0.1);
  --chip-active-border: rgba(255, 255, 255, 0.22);
  --chip-active-color: #fafafa;
  --card-bg: rgba(255, 255, 255, 0.02);
  --card-border: rgba(255, 255, 255, 0.08);
}

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, .font-heading {
  font-family: 'Outfit', sans-serif;
}

@supports (backdrop-filter: blur(12px)) {
  .nav-pill {
    backdrop-filter: blur(24px) saturate(1.5);
    -webkit-backdrop-filter: blur(24px) saturate(1.5);
  }
}

.nav-pill {
  width: min(100vw - 1.25rem, 46rem);
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  background: var(--nav-pill-bg);
  border: 1px solid var(--nav-pill-border);
  box-shadow: 
    0 6px 30px -6px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.25) inset;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-pill::-webkit-scrollbar {
  display: none;
}

.nav-pill:hover {
  border-color: rgba(59, 130, 246, 0.35);
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: #3b82f6;
  color: white;
  padding: 0.75rem 1.5rem;
  z-index: 1000;
  border-radius: 0 0 1rem 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 0;
}

.nav-btn {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 0.6rem;
  border-radius: 9999px;
  color: var(--nav-icon);
  cursor: pointer;
  border: none;
  background: transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-btn:hover::after {
  opacity: 1;
}

.nav-btn:hover {
  transform: translateY(-2px);
  color: var(--primary);
}

.nav-btn .lucide {
  stroke-width: 1.5;
  transition: filter 0.3s ease;
}

.nav-btn:hover .lucide {
  filter: drop-shadow(0 0 6px rgba(59, 130, 246, 0.35));
}

.nav-btn--active {
  background: var(--nav-primary-active);
  box-shadow: 0 0 16px rgba(59, 130, 246, 0.2);
}

.nav-btn--active .lucide {
  stroke: var(--primary);
  filter: drop-shadow(0 0 8px var(--primary-glow));
}

@media (max-width: 380px) {
  .nav-pill {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    gap: 0;
  }

  .nav-pill .lucide {
    width: 1.1rem;
    height: 1.1rem;
  }

  .nav-btn--primary .lucide {
    width: 1.2rem;
    height: 1.2rem;
  }

  .nav-btn {
    padding: 0.4rem;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Search overlay */
.search-panel[hidden] {
  display: none;
}

.search-panel {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 5rem 1rem 2rem;
}

.search-panel__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.search-panel__sheet {
  position: relative;
  width: min(100%, 26rem);
  border-radius: 1rem;
  border: 1px solid var(--nav-pill-border);
  background: rgba(14, 14, 16, 0.92);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}

.search-panel__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem;
  border-radius: 9999px;
  border: none;
  background: transparent;
  color: var(--nav-icon);
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.search-panel__close:hover {
  background: var(--nav-hover);
}

.search-panel__close .lucide {
  stroke: var(--nav-icon);
  stroke-width: 1.35;
}

.search-panel__input {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.35);
  padding: 0.65rem 0.85rem;
  font-size: 0.9375rem;
  color: #fafafa;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-panel__input::placeholder {
  color: rgba(161, 161, 170, 0.9);
}

.search-panel__input:focus {
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.06);
}

body.overlay-open {
  overflow: hidden;
}

/* Quick-view modal */
.quick-view[hidden] {
  display: none;
}

.quick-view {
  position: fixed;
  inset: 0;
  z-index: 65;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
}

@media (min-width: 640px) {
  .quick-view {
    align-items: center;
    padding: 2rem 1rem;
  }
}

.quick-view__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.quick-view__sheet {
  position: relative;
  width: 100%;
  max-height: min(92vh, 40rem);
  overflow-y: auto;
  border-top-left-radius: 1.25rem;
  border-top-right-radius: 1.25rem;
  border: 1px solid var(--nav-pill-border);
  border-bottom: none;
  background: rgba(12, 12, 14, 0.96);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  box-shadow: 0 -8px 48px rgba(0, 0, 0, 0.5);
}

@media (min-width: 640px) {
  .quick-view__sheet {
    width: min(100%, 36rem);
    max-height: min(90vh, 44rem);
    border-radius: 1.25rem;
    border-bottom: 1px solid var(--nav-pill-border);
  }
}

/* Product grid */
.product-card {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  border-radius: 0.875rem;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  overflow: hidden;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.product-card:focus {
  outline: none;
}

.product-card:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.35);
  outline-offset: 3px;
}

.product-card:hover {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  transform: translateY(-3px);
}

/* Skeleton loader for async content */
.skeleton {
  border-radius: 0.5rem;
  background: linear-gradient(90deg,
    rgba(255,255,255,0.04) 0%,
    rgba(255,255,255,0.09) 50%,
    rgba(255,255,255,0.04) 100%
  );
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.4s ease infinite;
}
.skeleton-dark {
  background: linear-gradient(90deg,
    rgba(0,0,0,0.06) 0%,
    rgba(0,0,0,0.12) 50%,
    rgba(0,0,0,0.06) 100%
  );
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.4s ease infinite;
}
@keyframes skeleton-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
@media (prefers-reduced-motion: reduce) {
  .skeleton, .skeleton-dark { animation: none; }
}

.product-card__media {
  aspect-ratio: 4 / 5;
  background: linear-gradient(
    145deg,
    rgba(55, 55, 62, 0.6) 0%,
    rgba(22, 22, 26, 0.9) 100%
  );
}

.product-card__media--2 {
  background: linear-gradient(
    145deg,
    rgba(72, 62, 88, 0.55) 0%,
    rgba(18, 16, 24, 0.92) 100%
  );
}

.product-card__media--3 {
  background: linear-gradient(
    145deg,
    rgba(58, 72, 68, 0.5) 0%,
    rgba(16, 22, 20, 0.92) 100%
  );
}

.product-card__media--4 {
  background: linear-gradient(
    145deg,
    rgba(88, 72, 58, 0.5) 0%,
    rgba(24, 18, 14, 0.92) 100%
  );
}

.product-card__media--5 {
  background: linear-gradient(
    145deg,
    rgba(52, 58, 72, 0.55) 0%,
    rgba(14, 16, 22, 0.92) 100%
  );
}

.product-card__media--6 {
  background: linear-gradient(
    145deg,
    rgba(78, 58, 62, 0.48) 0%,
    rgba(22, 14, 18, 0.92) 100%
  );
}

.product-card__media--7 {
  background: linear-gradient(
    145deg,
    rgba(48, 58, 78, 0.55) 0%,
    rgba(14, 18, 28, 0.92) 100%
  );
}

.product-card__media--8 {
  background: linear-gradient(
    145deg,
    rgba(92, 72, 52, 0.5) 0%,
    rgba(28, 20, 14, 0.92) 100%
  );
}

.product-card__media--9 {
  background: linear-gradient(
    145deg,
    rgba(58, 68, 82, 0.48) 0%,
    rgba(18, 22, 30, 0.92) 100%
  );
}

.product-card__cat {
  margin-bottom: 0.25rem;
}

.product-card__body {
  padding: 1rem 1.1rem 1.15rem;
}

.product-card__title {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--card-title);
  text-transform: capitalize;
}

.product-card__meta {
  margin-top: 0.35rem;
  font-size: 0.75rem;
  color: var(--card-meta);
}

.product-card__price {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--card-price);
}

.category-section--empty {
  display: none !important;
}

#catalog li.product-card--hidden {
  display: none;
}

/* Category filter chips */
.category-chip {
  border-radius: 9999px;
  border: 1px solid var(--chip-border);
  padding: 0.4rem 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--chip-color);
  background: transparent;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.category-chip:hover {
  border-color: var(--chip-active-border);
  color: var(--chip-active-color);
}

.category-chip--active {
  background: var(--chip-active-bg);
  border-color: var(--chip-active-border);
  color: var(--chip-active-color);
}

/* Side panels (account, notifications, history) */
.side-panel[hidden] {
  display: none;
}

.side-panel {
  position: fixed;
  inset: 0;
  z-index: 62;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 5rem 0.75rem 1rem;
}

@media (min-width: 640px) {
  .side-panel {
    padding: 5rem 1.25rem 2rem;
  }
}

.side-panel__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.side-panel__sheet {
  position: relative;
  display: flex;
  max-height: min(88vh, 36rem);
  width: min(100%, 22rem);
  flex-direction: column;
  border-radius: 1rem;
  border: 1px solid var(--nav-pill-border);
  background: rgba(12, 12, 14, 0.96);
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.45);
}

.side-panel__sheet--wide {
  width: min(100%, 26rem);
}

.side-panel__body {
  padding: 1.25rem 1.25rem 1.5rem;
}

.side-panel__body--scroll {
  overflow-y: auto;
  max-height: min(58vh, 26rem);
  flex: 1;
  min-height: 0;
}

.notification-row {
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.notification-row:last-child {
  border-bottom: none;
}

.notification-row:hover {
  background: rgba(255, 255, 255, 0.03);
}

.notification-row--unread {
  border-left: 2px solid rgba(250, 250, 250, 0.5);
  padding-left: 0.65rem;
  margin-left: -0.65rem;
}

.notification-row__title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #f4f4f5;
}

.notification-row__body {
  margin-top: 0.25rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #a1a1aa;
}

.notification-row__time {
  margin-top: 0.35rem;
  font-size: 0.6875rem;
  color: #71717a;
}

.history-row {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  padding: 0.85rem 0;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: transparent;
  text-align: left;
  cursor: pointer;
  color: inherit;
  transition: background-color 0.15s ease;
}

.history-row:last-child {
  border-bottom: none;
}

.history-row:hover {
  background: rgba(255, 255, 255, 0.04);
}

.history-row__title {
  font-size: 0.875rem;
  font-weight: 500;
  color: #f4f4f5;
}

.history-row__meta {
  font-size: 0.75rem;
  color: #71717a;
}

.panel-empty {
  padding: 1rem 0;
  font-size: 0.8125rem;
  color: #71717a;
}

.nav-btn[data-badge]::after {
  content: attr(data-badge);
  position: absolute;
  top: 1px;
  right: 1px;
  min-width: 1rem;
  height: 1rem;
  padding: 0 0.25rem;
  font-size: 0.5625rem;
  font-weight: 700;
  line-height: 1rem;
  text-align: center;
  color: #18181b;
  background: #fafafa;
  border-radius: 9999px;
}

/* Toast */
.toast-nav {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  z-index: 70;
  max-width: min(90vw, 20rem);
  transform: translateX(-50%) translateY(120%);
  padding: 0.65rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(18, 18, 20, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  font-size: 0.8125rem;
  color: #e4e4e7;
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.35s ease;
}

.toast-nav.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.nav-btn[aria-pressed="true"] {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.nav-btn[aria-pressed="true"]::before {
  background: var(--nav-primary-active);
}

.nav-btn[aria-pressed="true"] .lucide {
  stroke: rgba(255, 255, 255, 0.98);
}

@media (prefers-reduced-motion: reduce) {
  .nav-btn--spinning .lucide {
    animation: none;
  }

  .nav-btn,
  .nav-btn::before,
  .nav-pill .lucide {
    transition-duration: 0.01ms;
  }

  .toast-nav {
    transition-duration: 0.01ms;
  }
}
/* --- LIQUID GLASS COMPONENTS --- */

.liquid-glass {
  background: var(--liquid-glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--liquid-glass-border);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.liquid-glass:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

/* Premium Orders Table */
.premium-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 8px;
}

.premium-table tr {
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.2s ease;
}

.premium-table tr:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: scale(1.005);
}

.premium-table td, .premium-table th {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.premium-table th {
  background: transparent;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: #71717a;
  border: none;
}

.premium-table td:first-child { border-radius: 12px 0 0 12px; border-right: none; }
.premium-table td:last-child { border-radius: 0 12px 12px 0; border-left: none; }
.premium-table td:not(:first-child):not(:last-child) { border-left: none; border-right: none; }

.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.status-shipped { background: rgba(34, 197, 94, 0.1); color: #22c55e; border: 1px solid rgba(34, 197, 94, 0.2); }
.status-delivered { background: rgba(161, 161, 170, 0.1); color: #a1a1aa; border: 1px solid rgba(161, 161, 170, 0.2); }

/* =============================================
   MISSING FEATURE CSS — Hero & Animations
   ============================================= */

/* Gradient text for hero headline */
.text-gradient-premium {
  background: linear-gradient(135deg, #22c55e 0%, #10b981 40%, #3b82f6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Dot grid background for hero */
.bg-dot-grid {
  background-image: radial-gradient(circle, rgba(100, 100, 120, 0.35) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* Fade-in animation for hero badge */
@keyframes fade-in {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-fade-in {
  animation: fade-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

/* Product card entrance animation */
@keyframes card-enter {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.product-card {
  animation: card-enter 0.4s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.product-card:nth-child(1) { animation-delay: 0.05s; }
.product-card:nth-child(2) { animation-delay: 0.10s; }
.product-card:nth-child(3) { animation-delay: 0.15s; }
.product-card:nth-child(4) { animation-delay: 0.20s; }
.product-card:nth-child(5) { animation-delay: 0.25s; }
.product-card:nth-child(6) { animation-delay: 0.30s; }

/* =========================================================
   Resell Mandu — Design System
   Typography: Playfair Display (headings) + Inter (body)
   Style: Liquid Glass + Premium Dark
   Skill: ui-ux-pro-max v1
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* Product card lift on hover */
.product-card:hover {
  transform: translateY(-4px);
}

/* Scroll-to-top button */
#scroll-top-btn {
  position: fixed;
  bottom: 6rem;
  right: 1.5rem;
  z-index: 48;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(18,18,20,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #e4e4e7;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
#scroll-top-btn.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
#scroll-top-btn:hover {
  background: rgba(30,30,34,0.95);
  border-color: rgba(255,255,255,0.22);
}

/* Page-load progress bar */
#page-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #22c55e, #3b82f6);
  z-index: 9999;
  transition: width 0.25s ease, opacity 0.4s ease 0.2s;
  opacity: 1;
}
#page-progress.done {
  width: 100%;
  opacity: 0;
}

/* Notification page row theming for standalone page */
.notif-page-row {
  padding: 1rem 1.25rem;
  border-radius: 0.875rem;
  border: 1px solid rgba(0,0,0,0.07);
  background: rgba(0,0,0,0.02);
  margin-bottom: 0.5rem;
  transition: background 0.15s ease;
  cursor: pointer;
}
.dark .notif-page-row {
  border-color: rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.02);
}
.notif-page-row:hover {
  background: rgba(0,0,0,0.05);
}
.dark .notif-page-row:hover {
  background: rgba(255,255,255,0.04);
}
.notif-page-row__title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #18181b;
}
.dark .notif-page-row__title { color: #f4f4f5; }
.notif-page-row__body {
  margin-top: 0.25rem;
  font-size: 0.8125rem;
  color: #52525b;
}
.dark .notif-page-row__body { color: #a1a1aa; }
.notif-page-row__time {
  margin-top: 0.35rem;
  font-size: 0.7rem;
  color: #a1a1aa;
}

