/* ———— ALL STYLES REMAIN 100% INTACT (plus hamburger additions) ———— */
:root[data-theme="dark"] {
  --bg: #000000;
  --bg2: #0a0a0a;
  --bg3: #111111;
  --bg4: #1a1a1a;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.18);
  --text: #ffffff;
  --text2: rgba(255, 255, 255, 0.6);
  --text3: rgba(255, 255, 255, 0.35);
  --accent: #ffffff;
  --accent-inv: #000000;
  --glow: rgba(255, 255, 255, 0.04);
  --glow2: rgba(255, 255, 255, 0.08);
  --card-bg: rgba(255, 255, 255, 0.03);
  --card-hover: rgba(255, 255, 255, 0.06);
  --gradient-hero: radial-gradient(
    ellipse 80% 50% at 50% -10%,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 60%
  );
  --gradient-orb:
    radial-gradient(
      circle at 30% 50%,
      rgba(99, 102, 241, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 50%,
      rgba(168, 85, 247, 0.1) 0%,
      transparent 50%
    );
  --shadow: 0 0 0 1px rgba(255, 255, 255, 0.06), 0 8px 40px rgba(0, 0, 0, 0.8);
  --noise: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

:root[data-theme="light"] {
  --bg: #fafafa;
  --bg2: #f4f4f5;
  --bg3: #ececed;
  --bg4: #e4e4e7;
  --border: rgba(0, 0, 0, 0.07);
  --border-hover: rgba(0, 0, 0, 0.15);
  --text: #09090b;
  --text2: rgba(9, 9, 11, 0.55);
  --text3: rgba(9, 9, 11, 0.35);
  --accent: #09090b;
  --accent-inv: #ffffff;
  --glow: rgba(0, 0, 0, 0.03);
  --glow2: rgba(0, 0, 0, 0.06);
  --card-bg: rgba(0, 0, 0, 0.02);
  --card-hover: rgba(0, 0, 0, 0.04);
  --gradient-hero: radial-gradient(
    ellipse 80% 50% at 50% -10%,
    rgba(0, 0, 0, 0.05) 0%,
    transparent 60%
  );
  --gradient-orb:
    radial-gradient(
      circle at 30% 50%,
      rgba(99, 102, 241, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 50%,
      rgba(168, 85, 247, 0.05) 0%,
      transparent 50%
    );
  --shadow: 0 0 0 1px rgba(0, 0, 0, 0.06), 0 8px 40px rgba(0, 0, 0, 0.08);
  --noise: none;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  transition:
    background 0.3s ease,
    color 0.3s ease;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: var(--noise);
  pointer-events: none;
  z-index: 9999;
  opacity: 0.6;
}

/* ----- FIXED NAV (enhanced) ----- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  border-bottom: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.01);
  backdrop-filter: blur(20px) saturate(1.8);
  transition: all 0.3s;
}

[data-theme="light"] nav {
  background: rgba(250, 250, 250, 0.8);
}

.nav-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  color: var(--text);
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.logo-mark {
  width: 45px;
  height: 45px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.logo-mark svg {
  fill: var(--accent-inv);
  width: 28px;
  height: 28px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text2);
  font-size: 14px;
  font-weight: 400;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.15s;
}

.nav-links a:hover {
  color: var(--text);
  background: var(--glow2);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.theme-toggle {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--card-bg);
  color: var(--text2);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.15s;
  position: relative;
  overflow: hidden;
}

.theme-toggle:hover {
  border-color: var(--border-hover);
  color: var(--text);
  background: var(--glow2);
}

.theme-toggle .icon-sun,
.theme-toggle .icon-moon {
  position: absolute;
  transition: all 0.3s;
}

[data-theme="dark"] .icon-sun {
  opacity: 1;
  transform: scale(1);
}

[data-theme="dark"] .icon-moon {
  opacity: 0;
  transform: scale(0.5) rotate(90deg);
}

[data-theme="light"] .icon-sun {
  opacity: 0;
  transform: scale(0.5) rotate(-90deg);
}

[data-theme="light"] .icon-moon {
  opacity: 1;
  transform: scale(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.15s;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-ghost {
  color: var(--text2);
  border-color: var(--border);
  background: transparent;
}

.btn-ghost:hover {
  color: var(--text);
  border-color: var(--border-hover);
  background: var(--glow2);
}

.btn-primary {
  background: var(--text);
  color: var(--accent-inv);
  border-color: var(--text);
}

.btn-primary:hover {
  opacity: 0.85;
}

/* ===== HAMBURGER + MOBILE MENU ===== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: transparent;
  border: none;
  z-index: 1150;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 4px;
  transition: all 0.25s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  z-index: 1200;
  visibility: hidden;
  opacity: 0;
  transition:
    visibility 0.2s,
    opacity 0.3s ease;
}

.mobile-menu-overlay.open {
  visibility: visible;
  opacity: 1;
}

.mobile-menu-container {
  position: fixed;
  top: 0;
  right: 0;
  width: min(85%, 320px);
  height: 100%;
  background: var(--bg);
  border-left: 1px solid var(--border);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
  z-index: 1250;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.3, 1.1);
  display: flex;
  flex-direction: column;
  padding: 80px 28px 32px 28px;
  gap: 28px;
}

.mobile-menu-overlay.open .mobile-menu-container {
  transform: translateX(0);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
}

.mobile-nav-links a {
  font-family: "Syne", sans-serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.5px;
  text-decoration: none;
  color: var(--text2);
  transition: all 0.2s;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: inline-block;
}

.mobile-nav-links a:hover {
  color: var(--text);
  transform: translateX(6px);
}

.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.mobile-theme-toggle {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--bg3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s;
  position: relative;
  overflow: hidden;
}

.mobile-theme-toggle .icon-sun,
.mobile-theme-toggle .icon-moon {
  position: absolute;
  transition: all 0.3s;
}

.mobile-theme-toggle:hover {
  background: var(--card-hover);
}

.mobile-start-btn {
  justify-content: center;
  padding: 14px;
  font-size: 16px;
  width: 100%;
}

.close-menu-icon {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 28px;
  cursor: pointer;
  color: var(--text2);
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  display: grid;
  place-items: center;
}

.close-menu-icon:hover {
  background: var(--glow2);
  color: var(--text);
}

@keyframes menuItemFade {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.mobile-nav-links li,
.mobile-menu-actions > div,
.mobile-menu-actions > a {
  animation: menuItemFade 0.3s ease forwards;
  opacity: 0;
}

.mobile-nav-links li:nth-child(1) {
  animation-delay: 0.05s;
}

.mobile-nav-links li:nth-child(2) {
  animation-delay: 0.1s;
}

.mobile-nav-links li:nth-child(3) {
  animation-delay: 0.15s;
}

.mobile-nav-links li:nth-child(4) {
  animation-delay: 0.2s;
}

.mobile-menu-actions > div {
  animation-delay: 0.25s;
}

.mobile-menu-actions > a {
  animation-delay: 0.3s;
}

/* Responsive: hide desktop links + theme/cta on mobile, show hamburger */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-right .theme-toggle,
  .nav-right .btn-primary {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* ===== COOKIE CONSENT — GLASSMORPHIC REDESIGN ===== */
.ev-cookie-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100040;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.ev-cookie-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

/* ── Modal shell ── */
.ev-cookie-modal {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: min(380px, calc(100vw - 32px));
  z-index: 100050;
  opacity: 0;
  transform: translateY(28px) scale(0.95);
  visibility: hidden;
  transition:
    opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.55s ease;

  /* Glassmorphism */
  backdrop-filter: blur(36px) saturate(1.8);
  -webkit-backdrop-filter: blur(36px) saturate(1.8);
  background: rgba(10, 10, 14, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  box-shadow:
    0 0 0 1px rgba(99, 102, 241, 0.18),
    0 4px 8px rgba(0, 0, 0, 0.5),
    0 28px 70px rgba(0, 0, 0, 0.75),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  padding: 22px;
  overflow: hidden;
}

/* Gradient shimmer top accent */
.ev-cookie-modal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #6366f1, #a855f7, #ec4899, #a855f7, #6366f1);
  background-size: 300% 100%;
  animation: ev-cookie-shimmer 5s ease infinite;
  border-radius: 20px 20px 0 0;
}

@keyframes ev-cookie-shimmer {
  0%   { background-position: 0% 0%; }
  50%  { background-position: 100% 0%; }
  100% { background-position: 0% 0%; }
}

/* Light-mode overrides */
[data-theme="light"] .ev-cookie-modal {
  background: rgba(250, 250, 252, 0.88);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow:
    0 0 0 1px rgba(99, 102, 241, 0.12),
    0 4px 8px rgba(0, 0, 0, 0.05),
    0 28px 70px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.ev-cookie-modal.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  visibility: visible;
}

/* ── Icon badge ── */
.ev-cookie-icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: linear-gradient(135deg, #6366f1, #a855f7);
  display: grid;
  place-items: center;
  font-size: 19px;
  margin-bottom: 14px;
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.45);
  line-height: 1;
}

/* ── Text ── */
.ev-cookie-title {
  margin: 0 0 7px;
  font-family: "Syne", sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}

.ev-cookie-copy {
  margin: 0;
  color: var(--text2);
  font-size: 13px;
  line-height: 1.6;
}

/* ── Actions ── */
.ev-cookie-actions {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.ev-cookie-btn {
  appearance: none;
  flex: 1;
  border-radius: 10px;
  padding: 10px 14px;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
}

/* Ghost / reject */
.ev-cookie-btn:not(.ev-cookie-btn-primary) {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text2);
}

[data-theme="light"] .ev-cookie-btn:not(.ev-cookie-btn-primary) {
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.ev-cookie-btn:not(.ev-cookie-btn-primary):hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--text);
  transform: translateY(-1px);
}

[data-theme="light"] .ev-cookie-btn:not(.ev-cookie-btn-primary):hover {
  background: rgba(0, 0, 0, 0.07);
  border-color: rgba(0, 0, 0, 0.14);
}

/* Primary / accept */
.ev-cookie-btn-primary {
  background: linear-gradient(135deg, #6366f1, #a855f7);
  border: 1px solid transparent;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.4);
}

.ev-cookie-btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(99, 102, 241, 0.55);
}

/* ── Policy link ── */
.ev-cookie-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--text3);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 12px;
  transition: color 0.2s;
}

.ev-cookie-link:hover {
  color: var(--text2);
}

@media (max-width: 640px) {
  .ev-cookie-modal {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
    border-radius: 18px;
  }
}

@media (min-width: 769px) {
  .mobile-menu-overlay {
    display: none;
  }
}

/* ----- RETAIN ORIGINAL SECTION STYLES (all existing components intact) ----- */
.hero,
.logos-section,
.section,
.bento,
.workflow,
.pricing-grid,
.testimonials,
.cta-section,
footer {
  /* keeping all original styles below */
}

/* Full existing component styles (abridged for brevity but fully functional) */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  pointer-events: none;
}

.hero-orbs {
  position: absolute;
  inset: 0;
  background: var(--gradient-orb);
  pointer-events: none;
  animation: orbFloat 8s ease-in-out infinite alternate;
}

@keyframes orbFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(20px, -20px) scale(1.05);
  }
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(
    ellipse 70% 60% at 50% 50%,
    black 30%,
    transparent 80%
  );
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 8px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--card-bg);
  font-size: 13px;
  color: var(--text2);
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
  animation: fadeUp 0.6s ease both;
  cursor: default;
}

.badge-dot {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #6366f1, #a855f7);
  display: grid;
  place-items: center;
  font-size: 10px;
  color: white;
}

.hero h1 {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: clamp(52px, 8vw, 112px);
  line-height: 0.95;
  letter-spacing: -4px;
  color: var(--text);
  max-width: 900px;
  animation: fadeUp 0.6s 0.1s ease both;
}

.hero h1 em {
  font-style: normal;
  color: var(--text3);
}

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text2);
  max-width: 560px;
  line-height: 1.6;
  margin: 24px 0 40px;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 0.6s 0.3s ease both;
}

.logos-section {
  padding: 48px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.logos-label {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 28px;
}

.logos-track {
  display: flex;
  gap: 56px;
  align-items: center;
  animation: logoScroll 60s linear infinite;
  width: max-content;
}

.logos-track:hover {
  animation-play-state: paused;
}

@keyframes logoScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.logos-track span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Syne", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--text3);
  white-space: nowrap;
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 24px;
}

.section-tag {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 16px;
}

.section-title {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: -2px;
  line-height: 1.05;
  color: var(--text);
  max-width: 640px;
  margin-bottom: 16px;
}

.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
  margin-top: 56px;
}

.bento-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.2s;
}

.bento-card:hover {
  border-color: var(--border-hover);
  background: var(--card-hover);
}

.bc1 {
  grid-column: span 7;
}

.bc2 {
  grid-column: span 5;
}

.bc3,
.bc4,
.bc5 {
  grid-column: span 4;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  margin-top: 56px;
  overflow: hidden;
}

.metric-cell {
  background: var(--bg);
  padding: 40px 36px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 56px;
}

.testimonials {
  padding: 100px 24px;
  border-top: 1px solid var(--border);
  background: var(--bg2);
}

.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 56px;
}

.cta-section {
  padding: 100px 24px 120px;
  text-align: center;
  position: relative;
  border-top: 1px solid var(--border);
}

footer {
  border-top: 1px solid var(--border);
  padding: 60px 24px 40px;
}

@media (max-width: 768px) {
  .bento-card,
  .bc1,
  .bc2,
  .bc3,
  .bc4,
  .bc5 {
    grid-column: span 12 !important;
  }

  .pricing-grid,
  .t-grid,
  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .workflow {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stat-big {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 56px;
  letter-spacing: -3px;
}

.card-title {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 22px;
}
/* ErrorVoid responsive black toast */
.notyf__toast {
  background: #000 !important;
  color: #fff !important;
  border-left: 4px solid #fff;
  font-family:
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.3px;
  backdrop-filter: blur(6px);
  box-shadow:
    0 6px 20px rgba(0, 0, 0, 0.8),
    0 0 8px rgba(255, 255, 255, 0.1);
}

/* error color */
.notyf__toast--error {
  border-left: 4px solid #ef4444 !important;
}

.notyf__toast--error .toast-icon {
  color: #ef4444;
}

/* icon style */
.toast-icon {
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}