/* ═══════════════════════════════════════════════════════════════
   MODALITÉ — Design System (Glassmorphism + SaaS multi-boutiques)
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* Brand palette MODALITÉ */
  --brand-1: #ff5e9f;      /* magenta vif */
  --brand-2: #ff8a5b;      /* coral */
  --brand-3: #ffcc4d;      /* sun gold */
  --brand-4: #6c63ff;      /* iris purple */
  --brand-5: #4dd0c3;      /* mint */

  /* Surfaces */
  --bg-base:   #fff8f5;
  --bg-mesh-1: rgba(255, 94, 159, 0.18);
  --bg-mesh-2: rgba(108, 99, 255, 0.16);
  --bg-mesh-3: rgba(77, 208, 195, 0.14);
  --bg-mesh-4: rgba(255, 204, 77, 0.18);

  /* Glass */
  --glass-bg:        rgba(255, 255, 255, 0.55);
  --glass-bg-strong: rgba(255, 255, 255, 0.78);
  --glass-bg-dark:   rgba(20, 16, 32, 0.42);
  --glass-border:    rgba(255, 255, 255, 0.65);
  --glass-border-dark: rgba(255, 255, 255, 0.14);
  --glass-shadow:    0 8px 32px rgba(108, 99, 255, 0.12), 0 2px 8px rgba(255, 94, 159, 0.08);
  --glass-shadow-lg: 0 20px 60px rgba(108, 99, 255, 0.18), 0 4px 16px rgba(255, 94, 159, 0.1);

  /* Typography */
  --ink:       #1a0f2e;
  --ink-2:     #4a4063;
  --ink-3:     #8a8298;
  --ink-4:     #c0bccd;
  --white:     #ffffff;

  /* Status */
  --success:   #16a34a;
  --success-l: rgba(34, 197, 94, 0.15);
  --error:     #ef4444;
  --error-l:   rgba(239, 68, 68, 0.12);
  --warning:   #f59e0b;
  --warning-l: rgba(245, 158, 11, 0.12);
  --info:      #3b82f6;
  --info-l:    rgba(59, 130, 246, 0.12);

  /* Radius */
  --r-sm: 8px;
  --r:    14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --r-full: 999px;

  /* Spacing */
  --gap-1: 4px;
  --gap-2: 8px;
  --gap-3: 12px;
  --gap-4: 16px;
  --gap-5: 24px;
  --gap-6: 32px;
  --gap-7: 48px;
  --gap-8: 64px;

  /* Font */
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Inter', system-ui, sans-serif;

  /* Animation */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);

  /* Boutique-specific (overridable per boutique) */
  --boutique-1: var(--brand-1);
  --boutique-2: var(--brand-2);
  --boutique-3: var(--brand-3);
}

/* ── Reset ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--ink);
  line-height: 1.5;
  min-height: 100vh;
  background: var(--bg-base);
  position: relative;
  overflow-x: hidden;
}

/* ══ Background Mesh (gradient mesh décoratif) ══ */
body.has-mesh::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 20%, var(--bg-mesh-1) 0%, transparent 45%),
    radial-gradient(circle at 85% 10%, var(--bg-mesh-2) 0%, transparent 50%),
    radial-gradient(circle at 50% 80%, var(--bg-mesh-3) 0%, transparent 45%),
    radial-gradient(circle at 90% 60%, var(--bg-mesh-4) 0%, transparent 45%);
}

body.boutique-themed::before {
  background:
    radial-gradient(circle at 10% 10%, var(--boutique-1, var(--brand-1)) 0%, transparent 40%),
    radial-gradient(circle at 90% 20%, var(--boutique-2, var(--brand-2)) 0%, transparent 45%),
    radial-gradient(circle at 50% 90%, var(--boutique-3, var(--brand-3)) 0%, transparent 40%);
  opacity: 0.22;
}

a { text-decoration: none; color: inherit; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
img, video { display: block; max-width: 100%; }

::selection { background: var(--brand-1); color: #fff; }

/* ══ Container ══ */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 960px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1440px; margin: 0 auto; padding: 0 24px; }

/* ══ Glass utilities ══ */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}
.glass-strong {
  background: var(--glass-bg-strong);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow-lg);
}
.glass-dark {
  background: var(--glass-bg-dark);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--glass-border-dark);
  color: #fff;
}

/* ══ Navbar ══ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--glass-bg-strong);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  padding: 16px 0;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand-1), var(--brand-4));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  font-size: 17px;
  box-shadow: 0 4px 12px rgba(255, 94, 159, 0.3);
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  transition: color 0.15s;
}
.nav-link:hover { color: var(--ink); }
.nav-link.active { color: var(--brand-1); font-weight: 600; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.mobile-open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 16px; right: 16px; padding: 20px; gap: 16px; }
}

/* ══ Buttons ══ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--r-full);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  transition: transform 0.15s var(--ease-out), box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
  cursor: pointer;
  border: 0;
}
.btn:active { transform: scale(0.97); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

.btn-primary {
  background: linear-gradient(135deg, var(--brand-1), var(--brand-4));
  color: #fff;
  box-shadow: 0 4px 16px rgba(255, 94, 159, 0.32);
}
.btn-primary:hover { box-shadow: 0 8px 24px rgba(255, 94, 159, 0.45); transform: translateY(-1px); }

.btn-secondary {
  background: linear-gradient(135deg, var(--brand-2), var(--brand-3));
  color: #fff;
  box-shadow: 0 4px 16px rgba(255, 138, 91, 0.32);
}
.btn-secondary:hover { box-shadow: 0 8px 24px rgba(255, 138, 91, 0.45); transform: translateY(-1px); }

.btn-ghost {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  color: var(--ink);
}
.btn-ghost:hover { background: var(--glass-bg-strong); transform: translateY(-1px); }

.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover { background: #2a1f44; transform: translateY(-1px); }

.btn-wa {
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.32);
}
.btn-wa:hover { background: #20bd5a; transform: translateY(-1px); }

.btn-sm { padding: 8px 14px; font-size: 13px; }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-block { width: 100%; }

/* ══ Cards ══ */
.card {
  background: var(--glass-bg-strong);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  box-shadow: var(--glass-shadow);
  overflow: hidden;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
}
.card-hover:hover { transform: translateY(-4px); box-shadow: var(--glass-shadow-lg); }
.card-head { padding: 20px 24px; border-bottom: 1px solid rgba(0,0,0,0.06); display: flex; align-items: center; justify-content: space-between; }
.card-head h2 { font-size: 16px; font-weight: 700; }
.card-body { padding: 24px; }

/* ══ Inputs ══ */
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.input, .field input, .field select, .field textarea {
  padding: 12px 16px;
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid var(--glass-border);
  border-radius: var(--r);
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
  width: 100%;
}
.input:focus, .field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--brand-1);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 0 4px rgba(255, 94, 159, 0.12);
}
.field textarea { resize: vertical; min-height: 100px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }

/* ══ Badge ══ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: var(--r-full);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.badge-success { background: var(--success-l); color: var(--success); }
.badge-error   { background: var(--error-l); color: var(--error); }
.badge-warning { background: var(--warning-l); color: var(--warning); }
.badge-info    { background: var(--info-l); color: var(--info); }
.badge-pink    { background: rgba(255, 94, 159, 0.14); color: var(--brand-1); }
.badge-purple  { background: rgba(108, 99, 255, 0.14); color: var(--brand-4); }
.badge-mint    { background: rgba(77, 208, 195, 0.18); color: #0d8a78; }

/* ══ Typography ══ */
.h1 { font-size: clamp(36px, 5.5vw, 72px); font-weight: 900; letter-spacing: -0.04em; line-height: 1.02; }
.h2 { font-size: clamp(28px, 4vw, 48px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; }
.h3 { font-size: clamp(22px, 3vw, 32px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; }
.h4 { font-size: 20px; font-weight: 700; letter-spacing: -0.015em; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--r-full);
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand-1); animation: pulse 2s infinite; }
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.55; transform: scale(1.35); }
}

.gradient-text {
  background: linear-gradient(135deg, var(--brand-1), var(--brand-4) 50%, var(--brand-5));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.muted { color: var(--ink-3); }
.text-lg  { font-size: 18px; line-height: 1.55; }
.text-base { font-size: 14px; }
.text-sm { font-size: 13px; }
.text-xs { font-size: 11px; }
.text-center { text-align: center; }

/* ══ Toast ══ */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  padding: 14px 22px;
  border-radius: var(--r);
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--glass-shadow-lg);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.3s var(--ease-out);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.success { background: var(--success); }
.toast.error   { background: var(--error); }

/* ══ Spinner ══ */
.spin {
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spinrot 0.7s linear infinite;
}
.spin-dark {
  border-color: rgba(0, 0, 0, 0.12);
  border-top-color: var(--ink);
}
@keyframes spinrot { to { transform: rotate(360deg); } }

/* ══ Modal ══ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(20, 16, 32, 0.42);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--glass-bg-strong);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  box-shadow: 0 24px 80px rgba(20, 16, 32, 0.25);
  max-width: 560px;
  width: 100%;
  max-height: 92vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.modal-head {
  padding: 24px 28px 16px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.modal-head h2 { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; }
.modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-2);
  transition: background 0.15s;
}
.modal-close:hover { background: rgba(0,0,0,0.12); }
.modal-body { padding: 8px 28px 24px; overflow-y: auto; flex: 1; }
.modal-foot { padding: 16px 28px 24px; border-top: 1px solid rgba(0,0,0,0.06); display: flex; gap: 12px; justify-content: flex-end; }

/* ══ Grid layouts ══ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
}
.boutique-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
@media (max-width: 640px) {
  .product-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .boutique-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ── Product card (shared) ── */
.pcard {
  display: flex;
  flex-direction: column;
  background: var(--glass-bg-strong);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s, border-color 0.25s;
  cursor: pointer;
}
.pcard:hover {
  transform: translateY(-6px);
  box-shadow: var(--glass-shadow-lg);
  border-color: var(--brand-1);
}
.pcard-img {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: linear-gradient(135deg, #fce4ec, #fff3e0);
}
.pcard-img img, .pcard-img video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.pcard:hover .pcard-img img { transform: scale(1.07); }
.pcard-img-ph {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  color: rgba(0,0,0,0.18);
}
.pcard-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 12px;
  border-radius: var(--r-full);
  background: var(--glass-bg-strong);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid var(--glass-border);
}
.pcard-badge-video { background: rgba(20, 16, 32, 0.75); color: #fff; border-color: rgba(255,255,255,0.2); }
.pcard-badge-out { background: rgba(239, 68, 68, 0.9); color: #fff; }
.pcard-body { padding: 18px 18px 20px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.pcard-cat { font-size: 10px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); }
.pcard-name { font-size: 15px; font-weight: 700; color: var(--ink); line-height: 1.3; }
.pcard-price-row { display: flex; align-items: baseline; gap: 8px; margin-top: auto; padding-top: 8px; }
.pcard-price { font-size: 17px; font-weight: 800; color: var(--ink); }
.pcard-price-orig { font-size: 13px; color: var(--ink-3); text-decoration: line-through; }

.pcard-variants { display: flex; gap: 5px; margin-top: 8px; flex-wrap: wrap; }
.pcard-variant {
  width: 22px; height: 22px;
  border-radius: 6px;
  border: 1.5px solid rgba(0,0,0,0.08);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.15s, border-color 0.15s;
}
.pcard-variant:hover { transform: scale(1.15); border-color: var(--brand-1); }
.pcard-variant img { width: 100%; height: 100%; object-fit: cover; }
.pcard-variant-noimg {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--brand-1), var(--brand-4));
  color: #fff;
  font-size: 7px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1px;
  line-height: 1.05;
}
.pcard-variant-out { opacity: 0.35; cursor: not-allowed; pointer-events: none; }
.pcard-variant-out::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, rgba(0,0,0,0.25) 0, rgba(0,0,0,0.25) 1px, transparent 1px, transparent 5px);
}

/* ══ Footer ══ */
.footer {
  margin-top: 80px;
  padding: 56px 0 32px;
  background: linear-gradient(180deg, transparent, rgba(20, 16, 32, 0.04));
  border-top: 1px solid rgba(0,0,0,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-tagline { font-size: 14px; color: var(--ink-3); margin-top: 12px; line-height: 1.6; }
.footer-col h4 { font-size: 13px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 14px; }
.footer-col a { display: block; padding: 4px 0; font-size: 14px; color: var(--ink-2); transition: color 0.15s; }
.footer-col a:hover { color: var(--brand-1); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,0.06);
  font-size: 13px;
  color: var(--ink-3);
}

/* ══ Hero shapes (decorative blobs) ══ */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
}
.blob-1 { width: 420px; height: 420px; background: var(--brand-1); top: -100px; left: -80px; animation: floatBlob 18s ease-in-out infinite; }
.blob-2 { width: 360px; height: 360px; background: var(--brand-4); top: 80px; right: -60px; animation: floatBlob 22s ease-in-out infinite reverse; }
.blob-3 { width: 320px; height: 320px; background: var(--brand-5); bottom: -80px; left: 40%; animation: floatBlob 20s ease-in-out infinite; }
@keyframes floatBlob {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33%      { transform: translate(40px, -30px) rotate(15deg); }
  66%      { transform: translate(-30px, 40px) rotate(-12deg); }
}

/* ── Utility ── */
.flex { display: flex; }
.flex-col { display: flex; flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-5 { gap: 24px; }
.gap-6 { gap: 32px; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 16px; }
.mb-5 { margin-bottom: 24px; }
.mb-6 { margin-bottom: 32px; }
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 16px; }
.mt-5 { margin-top: 24px; }
.mt-6 { margin-top: 32px; }

.hidden { display: none !important; }

/* ── Reveal animation ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Scrollbar style ── */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(108, 99, 255, 0.25); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: rgba(108, 99, 255, 0.45); }
