/* =====================================================
   Vidzers â€” Global Design System
   Shared tokens, typography, and components across all pages
   ===================================================== */

/* ---- Design Tokens ---- */
:root {
  --vz-dark:      #0f0b2e;
  --vz-navy:      #1a1145;
  --vz-purple:    #2d1b69;
  --vz-red:       #f63854;
  --vz-orange:    #ff6b35;
  --vz-gray-50:   #f9fafb;
  --vz-gray-100:  #f3f4f6;
  --vz-gray-400:  #9ca3af;
  --vz-gray-600:  #4b5563;
  --vz-gray-700:  #374151;
  --vz-gray-900:  #111827;
  --vz-radius:    9999px;
  --vz-radius-lg: 16px;
  --vz-radius-md: 12px;
  --vz-shadow:    0 4px 24px rgba(0,0,0,0.07);
  --vz-shadow-lg: 0 16px 48px rgba(0,0,0,0.1);
}

/* ---- Base Typography ---- */
body, html {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--vz-gray-700);
  background: #fff;
  line-height: 1.6;
}

/* ---- Sticky footer: body fills viewport, main content expands ---- */
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body > #app,
body > #wrapper {
  flex: 1;
}
body > footer.vz-footer {
  flex-shrink: 0;
}

[v-cloak] { display: none !important; }

/* ---- Navbar ---- */
#navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 0 2rem !important;
  min-height: 0 !important;
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.03);
}
.osahan-nav {
  background: rgba(255,255,255,0.96) !important;
}
#navbar > div.d-flex {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
  align-items: center !important;
}
#navbar > div.ms-auto {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
}
#navbar .navbar-brand {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
#navbar .tagLine {
  display: block !important;
  margin-top: -4px;
  margin-left: 8px;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--vz-gray-600);
  line-height: 1.1;
  white-space: nowrap;
}

/* Nav link list */
.navbar-ul {
  list-style: none;
  padding-left: 0;
  align-items: center;
  gap: 2px;
}
.navbar-ul .nav-link {
  color: var(--vz-gray-600) !important;
  font-size: 0.875rem !important;
  font-weight: 500;
  padding: 6px 12px !important;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
  letter-spacing: -0.01em;
}
.navbar-ul .nav-link:hover {
  color: var(--vz-gray-900) !important;
  background: var(--vz-gray-50);
}
.navbar-ul .nav-active {
  color: var(--vz-red) !important;
  font-weight: 600;
  background: #fef2f2;
}
.navbar-ul .nav-active:hover {
  color: var(--vz-red) !important;
  background: #fde8e8;
}

/* Ensure nav dropdown menus render above page content */
#navbar .dropdown-menu {
  z-index: 1050;
}

/* ---- Hamburger Icon ---- */
.ham-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  cursor: pointer;
  color: var(--vz-gray-600);
  transition: background 0.15s, color 0.15s;
  flex-shrink: 0;
}
.ham-icon:hover {
  background: var(--vz-gray-100);
  color: var(--vz-gray-900);
}
.ham-icon i {
  display: inline-flex;
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.ham-icon.is-open i {
  transform: rotate(90deg);
}

/* ---- Nav Icon Buttons (bell, profile) ---- */
/* Use .nav-item--icon on the <li> so we can use d-sm-flex instead of d-sm-block */
.nav-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  color: var(--vz-gray-600) !important;
  font-size: 1rem;
  position: relative;
  transition: background 0.15s, color 0.15s;
  text-decoration: none !important;
  line-height: 1 !important;
}
.nav-icon-btn:hover {
  background: var(--vz-gray-100);
  color: var(--vz-gray-900) !important;
}

/* Notification badge */
.nav-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 15px;
  height: 15px;
  padding: 0 4px;
  border-radius: 8px;
  font-size: 0.6rem;
  font-weight: 700;
  line-height: 15px;
  text-align: center;
  background: var(--vz-red);
  color: #fff;
  border: 2px solid #fff;
  box-sizing: content-box;
}

/* ---- Profile Avatar Button ---- */
.user-dropdown-link {
  padding: 2px !important;
  border-radius: 50% !important;
}
.user-dropdown-link::after { display: none !important; } /* hide Bootstrap caret */

.nav-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--vz-red) 0%, var(--vz-orange) 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: box-shadow 0.2s;
}
.user-dropdown-link:hover .nav-avatar {
  box-shadow: 0 0 0 3px rgba(246, 56, 84, 0.18);
}
.user-dropdown-link[aria-expanded="true"] .nav-avatar {
  box-shadow: 0 0 0 3px rgba(246, 56, 84, 0.28);
}

/* ---- Modern Profile Dropdown ---- */
.vz-dropdown {
  border: 1px solid rgba(0,0,0,0.06) !important;
  border-radius: 14px !important;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.07),
              0 12px 32px -4px rgba(0,0,0,0.12) !important;
  padding: 6px !important;
  min-width: 190px !important;
  margin-top: 8px !important;
  animation: vzDropIn 0.16s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes vzDropIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.vz-dropdown .dropdown-divider {
  margin: 5px 6px !important;
  border-color: var(--vz-gray-100) !important;
  opacity: 1 !important;
}

.vz-dropdown-item {
  border-radius: 9px !important;
  padding: 9px 13px !important;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  color: var(--vz-gray-700) !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  transition: background 0.13s, color 0.13s !important;
  line-height: 1.3 !important;
}
.vz-dropdown-item i {
  font-size: 1rem;
  flex-shrink: 0;
  opacity: 0.75;
}
.vz-dropdown-item:hover {
  background: var(--vz-gray-50) !important;
  color: var(--vz-gray-900) !important;
}
.vz-dropdown-item:hover i { opacity: 1; }
.vz-dropdown-item--danger:hover {
  background: #fef2f2 !important;
  color: var(--vz-red) !important;
}

/* ---- Mobile Navbar Dropdown ---- */
@media (max-width: 575px) {
  #navbar {
    padding: 0 1rem !important;
    align-items: flex-start !important;
  }
  #navbar > div.d-flex {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
    align-items: center !important;
  }
  #navbar > div.ms-auto {
    width: 100%;
    margin-left: 0 !important;
    padding: 0 !important;
  }

  /* Default: collapsed, no sudden show/hide — use max-height for smooth slide */
  #navbar ul#link-list {
    display: flex !important;
    flex-direction: column;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0;
    border-top: none;
    transition: max-height 0.3s ease, opacity 0.22s ease, padding 0.25s ease;
  }

  /* Open state */
  #navbar ul#link-list.nav-menu-open {
    max-height: 480px;
    opacity: 1;
    padding: 6px 0 10px !important;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
  }

  /* Items: full width with a subtle divider between each */
  #navbar ul#link-list li.nav-item {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.055);
  }
  #navbar ul#link-list li.nav-item:last-child {
    border-bottom: none;
  }

  #navbar ul#link-list .nav-link {
    display: block;
    padding: 13px 12px !important;
    font-size: 0.95rem !important;
    border-radius: 0;
    width: 100%;
  }
  #navbar ul#link-list .nav-link:hover {
    background-color: var(--vz-gray-50);
    color: var(--vz-gray-900) !important;
    border-radius: 6px;
  }
}

/* ---- Buttons ---- */
.vz-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 13px 28px;
  border-radius: var(--vz-radius);
  font-size: 0.92rem;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none !important;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  outline: none;
  line-height: 1;
}
.vz-btn--primary {
  background: linear-gradient(90deg, var(--vz-red), var(--vz-orange));
  color: #fff !important;
  box-shadow: 0 4px 20px rgba(246, 56, 84, 0.3);
}
.vz-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(246, 56, 84, 0.45);
  color: #fff !important;
}
.vz-btn--outline {
  background: transparent;
  color: #fff !important;
  border: 2px solid rgba(255,255,255,0.35);
}
.vz-btn--outline:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
  color: #fff !important;
}

/* ---- Shared utilities extracted from HTML ---- */
.vz-nav--compact {
  padding: 0 1.5rem !important;
  min-height: 0 !important;
  height: auto;
  line-height: 1;
}
.vz-text-left { text-align: left !important; }
.vz-text-center { text-align: center !important; }
.vz-link-underline { text-decoration: underline; }
.vz-w-100 { width: 100% !important; }
.vz-min-vh-100 { min-height: 100vh; }
.vz-hidden { display: none !important; }
.vz-heading-sub-left {
  text-align: left;
  margin-left: 0;
  margin-bottom: 2rem;
}
.vz-icon-inline-sm { font-size: 0.85em; }

/* ---- Section Helpers ---- */
.vz-section { padding: 80px 0; }
.vz-section--gray { background: var(--vz-gray-100); }
.vz-section--dark {
  background: linear-gradient(135deg, var(--vz-dark) 0%, var(--vz-navy) 55%, var(--vz-purple) 100%);
}

.vz-section__label {
  display: inline-block;
  padding: 4px 14px;
  border-radius: var(--vz-radius);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.875rem;
  background: #fef2f2;
  color: var(--vz-red);
}
.vz-section__label--white {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
}
.vz-section__title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--vz-gray-900);
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.vz-section__title--white { color: #fff; }
.vz-section__sub {
  font-size: 1rem;
  color: var(--vz-gray-600);
  max-width: 560px;
  margin: 0 auto 3rem;
  line-height: 1.65;
}
.vz-section__sub--white { color: rgba(255,255,255,0.68); }

/* ---- Feature Cards ---- */
.vz-card {
  background: #fff;
  border-radius: var(--vz-radius-lg);
  border: 1px solid var(--vz-gray-100);
  padding: 32px 26px;
  transition: transform 0.22s, box-shadow 0.22s;
  height: 100%;
}
.vz-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--vz-shadow-lg);
}
.vz-card__icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: #fef2f2;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
  color: var(--vz-red);
  flex-shrink: 0;
}
.vz-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--vz-gray-900);
  margin-bottom: 0.6rem;
}
.vz-card__desc {
  font-size: 0.88rem;
  color: var(--vz-gray-600);
  line-height: 1.65;
  margin: 0;
}

/* ---- Steps ---- */
.vz-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-bottom: 2.25rem;
}
.vz-step:last-child { margin-bottom: 0; }
.vz-step__num {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--vz-red), var(--vz-orange));
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(246, 56, 84, 0.28);
  line-height: 1;
}
.vz-step__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--vz-gray-900);
  margin-bottom: 0.3rem;
}
.vz-step__desc {
  font-size: 0.88rem;
  color: var(--vz-gray-600);
  line-height: 1.65;
  margin: 0;
}

/* ---- Footer ---- */
.vz-footer {
  background: var(--vz-dark);
  padding: 64px 0 28px;
  color: rgba(255,255,255,0.5);
}
.vz-footer__brand {
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  text-decoration: none !important;
  letter-spacing: -0.03em;
  display: inline-block;
}
.vz-footer__tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.38);
  margin-top: 10px;
  line-height: 1.6;
}
.vz-footer__heading {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.vz-footer a {
  color: rgba(255,255,255,0.5);
  text-decoration: none !important;
  font-size: 0.87rem;
  transition: color 0.2s;
  display: block;
  margin-bottom: 9px;
}
.vz-footer a:hover { color: #fff; }
.vz-footer__divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 2rem 0 1.5rem;
}
.vz-footer__copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
}
.vz-footer__copy a { display: inline; color: rgba(255,255,255,0.45); }
.vz-footer__copy a:hover { color: #fff; }

/* ---- Notification Theme ---- */
.dark-theme {
  background-color: #fff5f5;
  padding: 5px;
  border-radius: 6px;
}
.light-theme {
  background-color: white;
  padding: 5px;
}

/* ---- Wizard / Form (from wizard.css) ---- */
#msform {
  text-align: center;
  position: relative;
  margin-top: 20px;
}
#msform fieldset .form-card {
  background: white;
  border: 0 none;
  border-radius: 0px;
  padding: 20px 40px 30px 40px;
  box-sizing: border-box;
  width: 94%;
  margin: 0 3% 20px 3%;
  position: relative;
}
#msform fieldset {
  background: white;
  border: 0 none;
  border-radius: 0.5rem;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding-bottom: 20px;
  position: relative;
}
#msform fieldset:not(:first-of-type) { display: none; }
#msform fieldset .form-card { color: #9E9E9E; }
#msform input, #msform textarea, #msform select {
  padding: 0px 8px 4px 8px;
  border: none;
  border-bottom: 1px solid #d48282;
  border-radius: 0px;
  margin-bottom: 25px;
  margin-top: 2px;
  box-sizing: border-box;
  color: #201111;
  font-size: 16px;
  letter-spacing: 1px;
}
#msform input:focus, #msform textarea:focus {
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border: none;
  font-weight: bold;
  border-bottom: 2px solid var(--vz-red);
  outline-width: 0;
}
#msform .action-button {
  min-width: 100px;
  background: var(--vz-red);
  font-weight: bold;
  color: white;
  border: 0 none;
  border-radius: 0px;
  cursor: pointer;
  padding: 10px 5px;
  margin: 10px 5px;
}
#msform .action-button:hover, #msform .action-button:focus {
  box-shadow: 0 0 0 2px white, 0 0 0 3px var(--vz-red);
}

/* .user-dropdown-link img removed â€” replaced by .nav-avatar icon */

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .vz-section__sub { margin-bottom: 2.5rem; }
}
@media (max-width: 768px) {
  .vz-section { padding: 56px 0; }
  .vz-section__sub { margin-bottom: 2rem; }
  .vz-footer { padding: 48px 0 24px; }
}
@media (max-width: 575px) {
  .vz-section { padding: 44px 0; }
  .vz-section__title { font-size: 1.55rem; }
  .vz-section__sub { font-size: 0.93rem; }
  .vz-footer__copy { font-size: 0.78rem; }
  .vz-step { gap: 1rem; }
  .vz-step__num { width: 36px; height: 36px; font-size: 0.9rem; }
}

/* Extracted shared marketing-page styles for index and how-it-works */

.signup-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 13px 32px;
  border-radius: var(--vz-radius);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none !important;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  outline: none;
  line-height: 1;
  background: linear-gradient(90deg, var(--vz-red), var(--vz-orange));
  color: #fff !important;
  box-shadow: 0 4px 20px rgba(246, 56, 84, 0.3);
}
.signup-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(246, 56, 84, 0.45);
  color: #fff !important;
}

.emailNotFoundDiv .row {
  display: flex;
  align-items: center;
  padding: 12px 16px;
}

.marketing-signup-wrap {
  margin-top: 3rem;
  margin-bottom: 2rem;
}

/* ---- Shared Modal Theme ---- */
.vz-modal .modal-dialog,
.pf-modal .modal-dialog,
.reg-modal .modal-dialog {
  padding: 0.5rem;
}
.vz-modal .modal-content,
.pf-modal .modal-content,
.reg-modal .modal-content {
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 250, 251, 0.96));
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.18);
  overflow: hidden;
}
.vz-modal .modal-header,
.pf-modal .modal-header,
.reg-modal .modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.35rem 1.5rem 1.1rem;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.vz-modal .modal-title,
.pf-modal .modal-title,
.reg-modal .modal-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--vz-gray-900);
  letter-spacing: -0.02em;
  margin: 0;
}
.vz-modal .modal-body,
.pf-modal .modal-body,
.reg-modal .modal-body {
  padding: 1.4rem 1.5rem;
}
.vz-modal .modal-footer,
.pf-modal .modal-footer,
.reg-modal .modal-footer {
  padding: 1.1rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(17, 24, 39, 0.06);
  background: rgba(249, 250, 251, 0.78);
}
.vz-modal .btn-close,
.pf-modal .btn-close,
.reg-modal .btn-close {
  width: 2.2rem;
  height: 2.2rem;
  flex-shrink: 0;
  margin-left: auto;
  margin: 0;
  padding: 0;
  border-radius: 999px;
  background-color: rgba(243, 244, 246, 0.9);
  background-size: 0.8rem;
  opacity: 1;
  box-shadow: inset 0 0 0 1px rgba(17, 24, 39, 0.06);
}
.vz-modal .btn-close:hover,
.pf-modal .btn-close:hover,
.reg-modal .btn-close:hover {
  background-color: rgba(229, 231, 235, 0.95);
}
.vz-modal .modal-body .form-control,
.vz-modal .modal-body .form-select,
.pf-modal .modal-body .form-control,
.pf-modal .modal-body .form-select,
.reg-modal .modal-body .form-control,
.reg-modal .modal-body .form-select {
  border: 1.5px solid var(--vz-gray-100);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
}
.vz-modal .modal-body .form-control:focus,
.vz-modal .modal-body .form-select:focus,
.pf-modal .modal-body .form-control:focus,
.pf-modal .modal-body .form-select:focus,
.reg-modal .modal-body .form-control:focus,
.reg-modal .modal-body .form-select:focus {
  border-color: var(--vz-red);
  box-shadow: 0 0 0 4px rgba(246, 56, 84, 0.1);
}
.vz-modal .modal-footer .btn,
.pf-modal .modal-footer .btn,
.reg-modal .modal-footer .btn {
  min-width: 110px;
  border-radius: 999px;
  padding: 0.72rem 1.2rem;
  font-weight: 700;
  border: 0;
}
.vz-modal .modal-footer .btn-primary,
.pf-modal .modal-footer .btn-primary,
.reg-modal .modal-footer .btn-primary {
  background: linear-gradient(90deg, var(--vz-red), var(--vz-orange));
  box-shadow: 0 10px 24px rgba(246, 56, 84, 0.24);
}
.vz-modal .modal-footer .btn-secondary,
.pf-modal .modal-footer .btn-secondary,
.reg-modal .modal-footer .btn-secondary {
  background: var(--vz-gray-100);
  color: var(--vz-gray-700);
}
@media (max-width: 575px) {
  .vz-modal .modal-dialog,
  .pf-modal .modal-dialog,
  .reg-modal .modal-dialog {
    margin: 0.75rem;
    padding: 0;
  }
  .vz-modal .modal-content,
  .pf-modal .modal-content,
  .reg-modal .modal-content {
    border-radius: 20px;
  }
}

/* ---- Shared Toasts ---- */
.vz-toast-stack {
  z-index: 1085;
  max-width: min(360px, calc(100vw - 1.5rem));
  top: 4.75rem !important;
}
.vz-toast {
  width: 100%;
  border: 0;
  border-radius: 18px;
  background: rgba(17, 24, 39, 0.94);
  color: #fff;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
}
.vz-toast + .vz-toast {
  margin-top: 0.85rem;
}
.vz-toast__body {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1rem 1rem 1rem 1.05rem;
}
.vz-toast__icon {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.vz-toast__content {
  min-width: 0;
  flex: 1;
}
.vz-toast__title {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.15rem;
}
.vz-toast__message {
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
}
.vz-toast__close {
  margin: 0;
  padding: 0;
  opacity: 0.7;
  filter: invert(1) grayscale(1) brightness(200%);
}
.vz-toast__close:hover,
.vz-toast__close:focus {
  opacity: 1;
}
.vz-toast--success {
  background: linear-gradient(135deg, rgba(8, 89, 58, 0.97), rgba(14, 116, 144, 0.94));
}
.vz-toast--success .vz-toast__icon {
  background: rgba(110, 231, 183, 0.16);
  color: #86efac;
}
.vz-toast--error {
  background: linear-gradient(135deg, rgba(127, 29, 29, 0.97), rgba(190, 24, 93, 0.92));
}
.vz-toast--error .vz-toast__icon {
  background: rgba(254, 202, 202, 0.14);
  color: #fecaca;
}
.vz-toast--warning {
  background: linear-gradient(135deg, rgba(120, 53, 15, 0.97), rgba(180, 83, 9, 0.92));
}
.vz-toast--warning .vz-toast__icon {
  background: rgba(253, 230, 138, 0.16);
  color: #fde68a;
}
.vz-toast--info {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.97), rgba(8, 145, 178, 0.92));
}
.vz-toast--info .vz-toast__icon {
  background: rgba(191, 219, 254, 0.16);
  color: #bfdbfe;
}

@media (max-width: 575px) {
  .vz-toast-stack {
    top: 4.25rem !important;
    left: 0;
    right: 0;
    max-width: none;
    padding: 0.75rem !important;
  }
  .vz-toast {
    margin-left: auto;
    margin-right: auto;
  }
}
