/* Design Tokens */
:root,
:root[data-theme="light"] {
  color-scheme: light;

  --font-sans: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell,
    "Helvetica Neue", Arial, sans-serif;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto,
    "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";

  --color-white: #fff;
  --color-black: #000;
  --color-ink: #111;
  --color-ink-soft: #212121;

  --color-slate-900: #0f172a;
  --color-slate-800: #1f2937;
  --color-slate-700: #374151;
  --color-slate-600: #475569;
  --color-slate-500: #64748b;
  --color-slate-300: #cbd5e1;
  --color-slate-200: #e2e8f0;
  --color-slate-50: #f8fafc;

  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5db;
  --color-gray-500: #6b7280;
  --color-gray-600: #4b5563;
  --color-gray-700: #374151;

  --color-blue-500: #3b82f6;
  --color-blue-600: #2563eb;
  --color-blue-800: #1e40af;
  --color-brand: #6366f1;
  --color-link: #0b5ed7;
  --color-primary-hover: #1e293b;

  --color-danger: #dc3545;
  --color-success: #34d399;

  --surface-overlay-0: rgba(255, 255, 255, 0);
  --surface-overlay-10: rgba(255, 255, 255, 0.1);
  --surface-overlay-40: rgba(255, 255, 255, 0.4);
  --surface-overlay-50: rgb(255 255 255 / 50%);
  --surface-overlay-60: rgba(255, 255, 255, 0.6);
  --surface-overlay-70: rgba(255, 255, 255, 0.7);
  --surface-overlay-82: #ffffff82;
  --surface-overlay-90: rgba(255, 255, 255, 0.9);
  --surface-overlay-9c: #ffffff9c;
  --border-overlay-soft: rgba(255, 255, 255, 0.4);
  --border-overlay-strong: rgba(255, 255, 255, 1);
  --gradient-shine-start: rgba(255, 255, 255, 0);
  --gradient-shine-end: rgba(255, 255, 255, 0.3);

  --bg: var(--color-white);
  --text: var(--color-slate-900);
  --muted: var(--color-slate-500);
  --line: var(--color-gray-200);
  --pill-bg: var(--color-gray-100);
  --price-old: #9ca3af;
  --ok: var(--color-success);

  --brand: var(--color-blue-500);
  --brand-soft: rgba(59, 130, 246, 0.12);
  --card-bg: var(--color-white);
  --ring: var(--color-slate-200);
  --control-strong-bg: var(--color-slate-900);
  --control-strong-fg: var(--color-white);
  --accent: var(--color-brand);
  --glow: rgba(99, 102, 241, 0.15);

  --shadow-soft: 0 2px 3px rgba(0, 0, 0, 0.03),
    0 2px 2px -1px rgba(0, 0, 0, 0.03);
  --shadow-card: 0 25px 70px rgb(25 65 125 / 4%);
  --shadow-hover-soft: 0 4px 12px #0000000a;
  --shadow-press-soft: 0 2px 4px rgba(0, 0, 0, 0.02);
  --shadow-elevated: 0 10px 30px rgba(2, 6, 23, 0.06),
    0 2px 6px rgba(2, 6, 23, 0.04);
  --shadow: var(--shadow-elevated);

  --radius-pill: 100px;
  --radius-lg: 30px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --radius-outer: 28px;
  --radius-inner: 18px;

  --card-w: 620px;
}

:root[data-theme="dark"] {
  color-scheme: dark;

  --font-sans: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell,
    "Helvetica Neue", Arial, sans-serif;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto,
    "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";

  --color-white: #fff;
  --color-black: #000;
  --color-polar-50: #d7d7db;
  --color-polar-100: #c7c7cc;
  --color-polar-200: #a9aab1;
  --color-polar-300: #999aa3;
  --color-polar-400: #7e808b;
  --color-polar-500: #6f717b;
  --color-polar-600: #3a3b40;
  --color-polar-700: #1d1d20;
  --color-polar-800: #171719;
  --color-polar-900: #101011;
  --color-polar-950: #070708;
  --color-ink: var(--color-polar-50);
  --color-ink-soft: var(--color-polar-200);

  --color-slate-900: var(--color-polar-50);
  --color-slate-800: var(--color-polar-100);
  --color-slate-700: var(--color-polar-200);
  --color-slate-600: var(--color-polar-300);
  --color-slate-500: var(--color-polar-400);
  --color-slate-300: var(--color-polar-600);
  --color-slate-200: var(--color-polar-700);
  --color-slate-50: var(--color-polar-800);

  --color-gray-100: var(--color-polar-800);
  --color-gray-200: var(--color-polar-700);
  --color-gray-300: var(--color-polar-600);
  --color-gray-500: var(--color-polar-500);
  --color-gray-600: var(--color-polar-200);
  --color-gray-700: var(--color-polar-100);

  --color-blue-500: #3d7eff;
  --color-blue-600: #155dfc;
  --color-blue-800: #1148c9;
  --color-brand: #155dfc;
  --color-link: #7ea7ff;
  --color-primary-hover: var(--color-polar-600);

  --color-danger: #f87171;
  --color-success: #34d399;

  --surface-overlay-0: rgba(16, 16, 17, 0);
  --surface-overlay-10: rgba(16, 16, 17, 0.32);
  --surface-overlay-40: rgba(16, 16, 17, 0.52);
  --surface-overlay-50: rgba(16, 16, 17, 0.6);
  --surface-overlay-60: rgba(16, 16, 17, 0.68);
  --surface-overlay-70: rgba(16, 16, 17, 0.76);
  --surface-overlay-82: rgba(16, 16, 17, 0.82);
  --surface-overlay-90: rgba(16, 16, 17, 0.9);
  --surface-overlay-9c: rgba(16, 16, 17, 0.96);
  --border-overlay-soft: rgba(169, 170, 177, 0.22);
  --border-overlay-strong: rgba(169, 170, 177, 0.4);
  --gradient-shine-start: rgba(255, 255, 255, 0);
  --gradient-shine-end: rgba(255, 255, 255, 0.14);

  --bg: var(--color-polar-900);
  --text: var(--color-slate-900);
  --muted: var(--color-slate-500);
  --line: var(--color-gray-200);
  --pill-bg: var(--color-gray-100);
  --price-old: var(--color-polar-500);
  --ok: var(--color-success);

  --brand: var(--color-blue-600);
  --brand-soft: rgba(21, 93, 252, 0.2);
  --card-bg: var(--color-polar-800);
  --ring: var(--color-gray-300);
  --control-strong-bg: var(--color-polar-600);
  --control-strong-fg: var(--color-white);
  --accent: var(--color-brand);
  --glow: rgba(21, 93, 252, 0.32);

  --shadow-soft: 0 2px 3px rgba(0, 0, 0, 0.35),
    0 2px 2px -1px rgba(0, 0, 0, 0.3);
  --shadow-card: 0 20px 60px rgb(0 0 0 / 45%);
  --shadow-hover-soft: 0 8px 18px rgba(0, 0, 0, 0.35);
  --shadow-press-soft: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-elevated: 0 16px 40px rgba(0, 0, 0, 0.5),
    0 3px 10px rgba(0, 0, 0, 0.35);
  --shadow: var(--shadow-elevated);

  --radius-pill: 100px;
  --radius-lg: 30px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --radius-outer: 28px;
  --radius-inner: 18px;

  --card-w: 620px;
}

:root[data-theme="dark"] .bg-top,
:root[data-theme="dark"] .bg-top-decor {
  display: none !important;
}

* {
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  font-family: var(--font-sans);
  margin: 0;
  background: var(--bg);
  color: var(--text);
}

::placeholder {
  color: var(--color-gray-600);
  opacity: 1;
}

.container {
  width: 1368px;
  margin: 0 auto;
  padding: 16px;
  position: relative;
}

a {
  color: var(--color-link);
  text-decoration: none;
}

.nav a {
  color: var(--color-slate-900);
  border-radius: var(--radius-pill);
  padding: 0 15px;
  height: 38px;
  line-height: 38px;
  transition: background 0.3s ease 0s;
  font-weight: 500;
}
.nav {
  font-size: 14px;
}
.nav a:hover {
  background: var(--color-gray-100);
}
.nav span {
  color: var(--color-ink);
  position: relative;
  top: 1px;
}
.theme-toggle__icon--moon {
  top: -1px !important;
}
.nav strong {
  color: var(--color-ink);
  font-weight: 600;
}
.btn {
  padding: 10px 18px;
  border: 1px solid var(--color-slate-200);
  background: var(--color-white);
  border-radius: var(--radius-pill);
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
  transition: background 0.15s ease;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  color: var(--color-ink);
  font-weight: 500;
  &:hover {
    background: var(--color-slate-50);
  }
  svg {
    width: 14px;
    height: 11px;
  }
}
.btn-primary {
  border: none;
  background: var(--control-strong-bg);
  color: var(--control-strong-fg);
  box-shadow:
    0 1px 1px 0 rgba(0, 0, 0, 0.1),
    0 2px 3px 0 rgba(0, 0, 0, 0.08),
    1px 4px 8px 0 rgba(0, 0, 0, 0.12),
    inset 0 -3px 2px 0 rgba(0, 0, 0, 0.4),
    inset 0 2px 0.4px 0 hsla(0, 0%, 100%, 0.14);
  &:hover {
    background: var(--color-primary-hover);
  }
}
.btn-danger {
  background: var(--color-danger) !important;
  color: var(--color-white);
  border-color: var(--color-danger);
}
.relavo-editor {
  b,
  strong {
    font-weight: 600;
  }
  ul {
    margin-top: 15px;
    margin-bottom: 15px;
  }
  h2 {
    font-size: 24px !important;
    font-weight: 600 !important;
  }
}
.relavo-content {
  b,
  strong {
    font-weight: 600;
  }
  ul {
    margin-top: 15px;
    margin-bottom: 15px;
  }
  h2 {
    font-size: 24px !important;
    font-weight: 600 !important;
    margin: 8px 0 12px;
  }
}
.blog-show {
  .relavo-content {
    b,
    strong {
      font-weight: 600;
    }
    h2 {
      font-size: 24px !important;
      font-weight: 600 !important;
    }
  }
}
.card {
  border: 1px solid var(--color-gray-100);
  background: var(--surface-overlay-40);
  border-radius: var(--radius-lg);
  padding: 25px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-card);
}
.blog-card {
  border: 1px solid var(--color-gray-100);
  background: var(--surface-overlay-40);
  border-radius: var(--radius-lg);
  padding: 30px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-card);
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 15px;
}
.grid-admin {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(435px, 1fr));
  gap: 15px;
}
.grid-services {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(655px, 1fr));
  gap: 15px;
}

label {
  font-size: 14px;
}

.admin-container {
  font-size: 14px;
}

select {
  appearance: none;
  background-image: url(/uploads/content/arrow-drop-down-line.svg) !important;
  background-repeat: no-repeat !important;
  background-position: calc(100% - 10px) center !important;
  background-size: 15px 15px !important;
}

.grid .blog-card {
  background: var(--surface-overlay-40);
  position: relative;
  transition:
    box-shadow 0.3s ease 0s,
    background 0.3s ease 0s;
  border: 1px solid var(--color-gray-100);
  display: block;
  img {
    object-fit: contain;
    margin-bottom: 15px;
    width: 100%;
    border-radius: var(--radius-sm);
  }
  &:hover {
    box-shadow: var(--shadow-hover-soft);
    background: var(--surface-overlay-70);
    .swirl::before {
      animation: 1s ease 0s 1 normal both running shine;
    }
  }
  &:active {
    box-shadow: var(--shadow-press-soft);
  }
}
.grid .card {
  background: var(--surface-overlay-40);
  position: relative;
  transition:
    box-shadow 0.3s ease 0s,
    background 0.3s ease 0s;
  border: 1px solid var(--color-gray-100);
  display: block;
  &:hover {
    box-shadow: var(--shadow-hover-soft);
    background: var(--surface-overlay-70);
    .swirl::before {
      animation: 1s ease 0s 1 normal both running shine;
    }
  }
  &:active {
    box-shadow: var(--shadow-press-soft);
  }
}
.blog-layout,
.blog-index {
  max-width: 1000px;
  margin: 70px auto 0;
}
.carousel__slide .card {
  background: var(--surface-overlay-40);
  position: relative;
  transition:
    box-shadow 0.3s ease 0s,
    background 0.3s ease 0s;
  border: 1px solid var(--color-gray-100);
  display: block;
  &:hover {
    box-shadow: var(--shadow-hover-soft);
    background: var(--surface-overlay-90);
    .swirl::before {
      animation: 1s ease 0s 1 normal both running shine;
    }
  }
  &:active {
    box-shadow: var(--shadow-press-soft);
  }
}
.trix-content {
  blockquote {
    border: none !important;
    border-left-width: 0 !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
    text-align: center !important;
  }
}
.table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  font-size: 14px;
}
.table th,
.table td {
  padding: 8px;
  border-bottom: 1px solid #eee;
  text-align: left;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 15px;
  input,
  select {
    margin-top: 5px;
  }
}

tbody {
  tr {
    th {
      &:last-child {
        text-align: right;
      }
    }
    td {
      &:last-child {
        text-align: right;
      }
    }
  }
}

trix-editor {
  border: none !important;
  border-radius: 0.5rem !important;
  &:focus {
    border-color: var(--color-black) !important;
  }
}
.form-row-line {
  grid-template-columns: auto;
}
.card {
  textarea {
    margin-top: 5px;
  }
}
.btn-auth {
  width: 100%;
  height: 40px;
  cursor: pointer;
}
.btn-contacts {
  width: 100%;
  height: 40px;
  cursor: pointer;
}
.contacts-links {
  margin: 0;
  padding: 0;
  list-style: none;
}
.contacts-links > li {
  min-width: 0;
}
.contacts-links__address {
    flex: 1 1 100%;
}
.contacts-links__address .sh-pill--address {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    line-height: 1.35;
}
.vendor-btn {
  width: 100%;
  margin-bottom: 0;
  margin-top: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 15px;
  font-weight: 500;
  background: var(--color-white);
  color: #111827;
  height: 45px;
  img {
    border-radius: 100% !important;
  }
}
input,
select,
textarea {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid var(--color-slate-200);
  width: 100%;
  padding: 10px 15px;
  background: var(--surface-overlay-9c);
  border-radius: 0.5rem;
  font-family:
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Ubuntu,
    Cantarell,
    "Helvetica Neue",
    Arial,
    sans-serif;
  outline: none;
  transition: box-shadow 0.15s ease;
  &:hover {
    box-shadow:
      0 1px 3px 0 rgba(0, 0, 0, 0.1),
      0 1px 2px -1px rgba(0, 0, 0, 0.1);
  }
}
input[type="checkbox"] {
  width: auto;
}
h1,
h2 {
  margin: 8px 0 12px;
}
.flash {
  padding: 10px 15px;
  border-radius: 8px;
  margin: 15px auto;
  font-size: 14px;
  max-width: 1080px;
}
.flash-ok {
  background: #e7fff2;
  color: #22a95b;
  border: 1px solid #93f7bd;
}
.flash-err {
  background: #ffeef0;
  color: #f55d71;
  border: 1px solid #ffdcd9;
}

.flash-stack {
  position: fixed;
  top: calc(env(safe-area-inset-top, 0px) + 18px);
  right: max(16px, env(safe-area-inset-right, 0px));
  z-index: 2100;
  width: min(420px, calc(100vw - 24px));
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

.flash-toast {
  --flash-accent: #21a764;
  --flash-duration: 6000ms;
  background: var(--color-white);
  border: 1px solid #e7e9ee;
  border-radius: 18px;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.14);
  overflow: hidden;
  pointer-events: auto;
  opacity: 0;
  transform: translate3d(24px, 0, 0);
  transition:
    opacity 0.28s ease,
    transform 0.28s cubic-bezier(0.22, 0.9, 0.31, 1);
  will-change: opacity, transform;
}

.flash-toast.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.flash-toast.is-leaving {
  opacity: 0;
  transform: translate3d(24px, 0, 0);
}

.flash-toast--ok {
  --flash-accent: #27ae60;
}

.flash-toast--err {
  --flash-accent: #e5484d;
}

.flash-toast__body {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 16px 14px;
}

.flash-toast__icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eafaf1;
  color: var(--flash-accent);
}

.flash-toast--err .flash-toast__icon {
  background: #fff1f2;
}

.flash-toast__icon svg {
  width: 20px;
  height: 20px;
  display: block;
  fill: currentColor;
}

.flash-toast__content {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
}

.flash-toast__title {
  color: #101828;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin: 0;
}

.flash-toast__close {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #8b95a7;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    background-color 0.18s ease,
    color 0.18s ease;
}

.flash-toast__close:hover {
  background: var(--color-gray-100);
  color: #111827;
}

.flash-toast__close svg {
  width: 14px;
  height: 14px;
  display: block;
  fill: currentColor;
}

.flash-toast__progress {
  height: 4px;
  background: #eef1f5;
}

.flash-toast__progress > span {
  height: 100%;
  display: block;
  background: var(--flash-accent);
  transform: scaleX(0);
  transform-origin: left center;
  animation: flash-toast-progress var(--flash-duration) linear forwards;
}

@keyframes flash-toast-progress {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@media (max-width: 640px) {
  .flash-stack {
    top: calc(env(safe-area-inset-top, 0px) + 12px);
    right: 12px;
    width: calc(100vw - 24px);
  }
}
.badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 12px;
  border: 1px solid var(--color-gray-200);
}
.role-admin {
  background: #ffeeba;
}
.role-seller {
  background: #cfe2ff;
}
.role-buyer {
  background: #e2e3e5;
}
.trix-content .attachment--file {
  border: none;
}
.nav {
  display: flex;
  gap: 5px;
  align-items: center;
  padding: 15px 0;
}
.right-menu {
  margin-left: auto;
  display: flex;
  gap: 8px;
  align-items: center;
}
.nav .search-form {
  display: flex;
  gap: 8px;
  align-items: center;
}
.nav .search-form input {
  transition:
    box-shadow 0.15s ease,
    background-color 0.15s ease;
  padding: 1px 15px 0 15px;
  border: 1px solid var(--color-gray-200);
  height: 38px;
  outline: none;
  border-radius: var(--radius-pill);
  min-width: 220px;
  background: var(--color-white);
  &:hover {
    background: var(--surface-overlay-70);
  }
}
.card .thumb {
  width: 100px;
  height: 100px;
  object-fit: contain;
  object-position: center;
  display: block;
  margin-bottom: 8px;
}
.card-sticky {
  height: fit-content;
  position: sticky;
  top: 80px;
  max-width: 350px;
  min-width: 350px;
  padding: 45px;
}
.card-product-shoq {
  width: 100%;
  padding: 45px;
}

.relavo-content {
  h2 {
    font-size: 1.625em;
  }
  h3 {
    font-size: 1.375em;
  }
  h4 {
    font-size: 1.125em;
  }
  img {
    max-width: 100%;
  }
}

.trix-content h2 {
  font-size: 1.625em;
}
.trix-content h3 {
  font-size: 1.375em;
}

.trix-content h4 {
  font-size: 1.125em;
}
.decor-img-1 {
  display: none;
  scale: 0.5;
  position: absolute;
  top: 300px;
  left: -140px;
  z-index: -1;
}
main {
  padding-top: 100px !important;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 9;
  background: var(--surface-overlay-0);
  -webkit-backdrop-filter: blur(0px);
  backdrop-filter: blur(0px);
  transition: all 0.5s ease 0s;
  .container {
    padding: 0 16px;
    .nav {
      padding: 10px 0;
    }
  }
}
.header-color {
  background: var(--surface-overlay-90);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  .nav .search-form input {
    border: 1px solid var(--color-gray-200);
  }
}

.card-row {
  display: flex;
  width: 100%;
  gap: 10px;
  .btn-cart {
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
    cursor: pointer;
    font-weight: 500;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.btn[disabled],
.btn.btn-disabled,
.btn-primary[disabled] {
  background: #d7d7d7;
  color: #666;
  border-color: #c7c7c7;
  cursor: not-allowed;
  box-shadow: none;
  opacity: 0.5;
}
.cart-count {
  display: inline-block;
  min-width: 20px;
  padding: 0 6px;
  margin-left: 6px;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  background: var(--control-strong-bg);
  color: var(--control-strong-fg) !important;
  border-radius: 999px;
  vertical-align: middle;
}

button {
  font-family:
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Ubuntu,
    Cantarell,
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-weight: 500;
}

.qo-submit {
  background: #23b47f;
  border-color: #23b47f;
  transition: background 0.15s ease;
  color: var(--color-white);
  cursor: pointer;
  box-shadow:
    0 1px 1px 0 rgb(0 0 0 / 0%),
    0 2px 3px 0 rgba(0, 0, 0, 0.08),
    1px 4px 8px 0 #4cd7a459,
    inset 0 -3px 2px 0 rgb(44 165 102),
    inset 0 2px 0.4px 0 hsl(148.99deg 39.95% 56.11%);
  &:hover {
    background: #2cbd88;
    border-color: #2cbd88;
    color: var(--color-white);
  }
}

.btn.btn-accent {
  background: #23b47f;
  border-color: #23b47f;
  transition: background 0.15s ease;
  color: var(--color-white);
  cursor: pointer;
  box-shadow:
    0 1px 1px 0 rgb(0 0 0 / 0%),
    0 2px 3px 0 rgba(0, 0, 0, 0.08),
    1px 4px 8px 0 #4cd7a459,
    inset 0 -3px 2px 0 rgb(44 165 102),
    inset 0 2px 0.4px 0 hsl(148.99deg 39.95% 56.11%);
}
.btn.btn-accent:hover {
  background: #2cbd88;
}
.search-block {
  display: flex;
  gap: 8px;
  max-width: 640px;
  margin: 24px auto 0;
}
.search-block input[type="text"] {
  flex: 1;
  padding: 0;
  font-size: 16px;
  border: none;
  outline: none;
  background: transparent;
  box-shadow: none !important;
}
.search-block .btn {
  padding: 12px 16px;
}
.label-search {
  width: 100%;
  display: flex;
  gap: 10px;
  padding: 15px 15px 100px 25px;
  box-shadow: 0 100px 70px rgba(25, 65, 125, 0.1);
  cursor: text;
  border-radius: var(--radius-lg);
  position: relative;
  background: var(--surface-overlay-40);
  border: 1px solid var(--border-overlay-soft);
  transition:
    background 0.5s ease 0s,
    transform 0.5s ease 0s;
  &:hover {
    background: var(--surface-overlay-60);
    transform: scale(1.02);
  }
}
.btn-search-top,
.btn-theme-toggle {
  min-width: 38px;
  height: 38px;
  padding: 2px 0 0 0;
  font-size: 20px;
  cursor: pointer;
  border-radius: var(--radius-pill);
  transition: background 0.15s ease;
  &:hover {
    background: var(--color-slate-50);
  }
}
.btn-theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-theme-toggle svg {
  width: 20px;
  height: 20px;
}
.theme-toggle__icon--moon {
  display: none;
}
:root[data-theme="dark"] .theme-toggle__icon--sun {
  display: none;
}
:root[data-theme="dark"] .theme-toggle__icon--moon {
  display: inline-flex;
}
.search-block {
  padding-bottom: 80px;
  padding-top: 15px;
  .btn-search {
    border-radius: 100%;
    background: var(--color-ink-soft);
    width: 50px;
    height: 50px;
    padding: 0;
    color: var(--color-white);
    font-size: 25px;
    line-height: 50px;
    cursor: pointer;
    svg {
      width: 25px;
      height: 25px;
    }
  }
}
.keywords-search {
  position: absolute;
  bottom: 20px;
  width: auto;
  display: flex;
  gap: 10px;
  & span {
    cursor: pointer;
    border-radius: var(--radius-pill);
    font-size: 14px;
    padding: 0 10px;
    line-height: 27px;
    height: 30px;
    background: #f3f4f652;
    border: 1px solid var(--border-overlay-soft);
    color: var(--color-gray-600);
    &:hover {
      background: var(--color-gray-100);
    }
    &:focus {
      outline: 2px solid var(--color-ink-soft);
      outline-offset: 2px;
    }
  }
}
.nav .logo-top {
  padding: 0;
  background: transparent !important;
  margin-right: 30px;
  height: auto;
  line-height: normal;
  outline: none;
  img {
    max-width: 130px;
    position: relative;
    top: 2px;
    height: auto;
  }
}

.tags {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-top: 15px;
}
.tags .tag {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 999px;
  background: #f2f2f2;
  font-size: 12px;
  text-decoration: none;
  color: #333;
}
.tags .tag:hover {
  background: #e8e8e8;
}

.card-preview {
  color: var(--color-slate-900);
}

.wrap {
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 32px;
}

.top {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  align-items: center;
  min-height: 120px;
}

.top h3 {
  margin-top: 0;
  margin-bottom: 5px;
}
.app-icon {
  width: 100px;
  height: 100px;
  position: relative;
}
.app-icon .swirl {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  &:before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(
      left,
      var(--gradient-shine-start) 0%,
      var(--gradient-shine-end) 100%
    );
    background: linear-gradient(
      to right,
      var(--gradient-shine-start) 0%,
      var(--gradient-shine-end) 100%
    );
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
    opacity: 0.2;
  }
}
.app-icon svg {
  width: 72px;
  height: 72px;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.12));
}

h1 {
  margin: 0 0 15px;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text);
}
.subtitle {
  font-size: 15px;
  line-height: 1.45;
  color: var(--color-gray-500);
  max-width: 480px;
}

.divider {
  margin: 20px 0 14px;
  border: 0;
  border-bottom: 1px dashed var(--line);
}

.meta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
}

.vendor {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  span {
    color: var(--color-gray-600);
  }
}
.vendor .logo {
  overflow: hidden;
  border: 1px solid #dddddd;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--color-white);
  display: grid;
  place-items: center;
}
.vendor .logo img {
  width: 100%;
  height: 100%;
  padding: 5px;
}
.vendor .title {
  font-size: 20px;
  color: #334155;
}

.trix-content img {
  pointer-events: none;
}

.card .price {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.old {
  font-size: 26px;
  color: var(--price-old);
  position: relative;
}
.old::after {
  content: "";
  position: absolute;
  left: -4px;
  right: -6px;
  top: 50%;
  height: 2px;
  background: currentColor;
  transform: rotate(-8deg);
}
.new {
  font-size: 26px;
  font-weight: 700;
  color: #111827;
}

.bottom {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  border-radius: 999px;
  background: #f3f4f682;
  color: var(--color-gray-600);
  font-size: 13px;
  line-height: 27px;
  height: 30px;
  border: 1px solid #ebeff88a;
}

.pill svg {
  width: 18px;
  height: 18px;
}

.verified {
  position: absolute;
  right: 20px;
  bottom: 30px;
  display: grid;
  place-items: center;
}
.verified svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-white);
  stroke-width: 3;
  fill: none;
}

@media (max-width: 860px) {
  .price .old {
    font-size: 26px;
  }
  .price .new {
    font-size: 26px;
  }
}

.bg-top {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto;
  z-index: -2;
  animation-name: transform;
  animation-duration: 3s;
  animation-fill-mode: forwards;
}

@keyframes transform {
  0% {
    opacity: 0;
    scale: 1.3;
    transform: rotate(-10deg);
  }
  100% {
    opacity: 1;
    scale: 1.9;
    transform: rotate(0);
  }
}

@keyframes shine {
  100% {
    left: 130%;
  }
}

h1,
h2,
h3,
h4 {
  font-family: "koho", sans-serif;
  font-weight: 600;
  font-style: normal;
}

h3 {
  line-height: 25px;
}

h2 {
  font-size: 26px;
}

.breadcrumbs {
  font-size: 13px;
  margin: 8px 0 16px;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumbs li {
  display: flex;
  align-items: center;
}
.breadcrumbs li + li::before {
  content: "/ ";
  margin: 0 10px 0 6px;
  position: relative;
  top: -1px;
}
.breadcrumbs a {
  padding: 0 10px;
  border-radius: 999px;
  background: #f3f4f65e;
  color: var(--color-gray-600);
  font-size: 13px;
  line-height: 27px;
  height: 30px;
  display: inline-flex;
  align-items: center;
}
.breadcrumbs span {
  padding: 0;
  border-radius: 999px;
  background: transparent;
  color: #484a4e;
  font-size: 13px;
  line-height: 27px;
  height: 30px;
  display: inline-flex;
  align-items: center;
}
.breadcrumbs a:hover {
  text-decoration: none;
}
.breadcrumbs .current {
  font-weight: 600;
}
.breadcrumbs .crumb-back {
  width: 35px;
  min-width: 35px;
  height: 35px;
  padding: 0;
  border: 0;
  background: var(--color-gray-100);
  color: var(--color-ink);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-right: 5px;
  line-height: 1;
  vertical-align: middle;
  transition: background 0.3s ease;
  position: relative;
  top: -2px;
}
.breadcrumbs .crumb-back:hover {
  background: #e8eaed;
}
.breadcrumbs .crumb-back:focus-visible {
  outline: 2px solid var(--color-ink);
  outline-offset: 2px;
}

.yt-thumb {
  position: relative;
  display: inline-block;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  line-height: 0;
}
.yt-thumb img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.vmodal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.vmodal.open {
  display: flex;
}
.vmodal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.vmodal__dialog {
  position: relative;
  width: min(90vw, 1000px);
  aspect-ratio: 16 / 9;
  background: var(--color-black);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}
.vmodal__close {
  position: absolute;
  top: 8px;
  right: 10px;
  border: 0;
  background: rgba(0, 0, 0, 0.5);
  color: var(--color-white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
}
.vmodal__content {
  width: 100%;
  height: 100%;
}
.vmodal__content iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.value {
  --text: var(--color-slate-900);
  --muted: var(--color-slate-500);
  --brand: var(--color-blue-500);
  --brand-soft: rgba(59, 130, 246, 0.12);
  --card-bg: var(--color-white);
  --shadow: 0 10px 30px rgba(20, 40, 80, 0.1), 0 2px 6px rgba(20, 40, 80, 0.06);

  padding: 80px 0;
  position: relative;
  border-radius: var(--radius-lg);
  ul {
    padding-left: 18px;
    color: var(--color-slate-900);
    line-height: 1.8;
  }
}

.value__container {
  max-width: 100%;
  margin: 0 auto;

  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.value__intro {
  flex: 1 1 118px;
  padding-right: 75px;
}

.value__title {
  margin: 76px 0 18px;
  line-height: 1.1;
  font-size: 35px;
  color: var(--text);
}

.value__lead {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  max-width: 48ch;
}

.value__cards {
  flex: 1 1 580px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.value__card {
  flex: 1 1 calc(50% - 14px);
  border-radius: var(--radius-lg);
  padding: 40px !important;
  box-shadow: var(--shadow-card);
  transition:
    background 0.7s ease 0s,
    border 0.7s ease 0s;
  background: var(--surface-overlay-10);
  position: relative;
  border: 1px solid var(--border-overlay-soft);
  &:hover {
    background: var(--surface-overlay-40);
    border: 1px solid var(--border-overlay-strong);

    & lottie-player {
      scale: 1.1;
    }
  }
  & lottie-player {
    transition: scale 0.7s ease 0s;
  }
}

.value__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--brand-soft);
  color: var(--brand);
  display: inline-grid;
  place-items: center;
  margin-bottom: 14px;
}

.value__card-title {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.3;
  color: var(--text);
}

.value__card-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 15px;
}

.value-number-1 {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px auto;
  border-radius: 100%;
  background: #c6b4f521;
  color: #6518ba;
  font-weight: 500;
  font-family: koho, sans-serif;
  font-size: 16px;
  margin-bottom: 15px;
}

.value-number-2 {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px auto;
  border-radius: 100%;
  background: #465a9017;
  color: #465a90;
  font-weight: 500;
  font-family: koho, sans-serif;
  font-size: 16px;
  margin-bottom: 15px;
}

.value-number-3 {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px auto;
  border-radius: 100%;
  background: #b4d5f54d;
  color: #185bba;
  font-weight: 500;
  font-family: koho, sans-serif;
  font-size: 16px;
  margin-bottom: 15px;
}

@media (max-width: 680px) {
  .value__card {
    flex-basis: 100%;
  }
  .value {
    padding: 44px 16px;
  }
}

.carousel {
  position: relative;
}

.carousel__top {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 8px;
  position: absolute;
  right: 0;
  top: -65px;
}

section.product-group.product-group-home h2 {
  margin-bottom: 30px;
}

.carousel__controls {
  display: inline-flex;
  gap: 8px;
}

.carousel__track {
  position: relative;
  min-height: 1px;
  overflow: hidden;
  touch-action: pan-y;
}

.carousel__track.has-viewport-pad {
  --carousel-shadow-pad-x: 30px;
  padding-inline: var(--carousel-shadow-pad-x);
  margin-left: -30px;
  margin-right: -30px;
}

.carousel__track.is-native-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  touch-action: auto;
  scroll-behavior: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.carousel__track.is-native-scroll::-webkit-scrollbar {
  display: none;
}

.carousel__track.is-native-scroll .carousel__slide {
  position: relative;
  top: auto;
  left: auto;
  flex: 0 0 auto;
  transform: none !important;
}

@media (pointer: fine) {
  .carousel__track {
    cursor: grab;
  }
  .carousel__track.is-dragging {
    cursor: grabbing;
  }
}

.carousel__slide {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(0);
  will-change: transform;
  a {
    margin-bottom: 60px;
  }
}

.carousel__slide.is-hidden {
  visibility: hidden;
  pointer-events: none;
}

.carousel__link {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  padding: 0 20px;
  margin-left: 20px;
  background: #7469f0;
  color: var(--color-white);
  transition: background 0.15s ease;
  vertical-align: middle;
  box-shadow:
    0 1px 1px 0 rgb(0 0 0 / 0%),
    0 2px 3px 0 rgba(0, 0, 0, 0.08),
    1px 4px 8px 0 rgba(0, 0, 0, 0.12),
    inset 0 -3px 2px 0 rgb(126 116 216),
    inset 0 2px 0.4px 0 hsl(245.84deg 50.92% 67.93%);
  border: 1px solid #766ccd;
  transition: background 0.15s ease;
  &:hover {
    background: #7c72ee;
  }
}

.carousel__btn {
  position: static;
  translate: none;
  border: none;
  background: var(--color-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--color-ink);
  transition: opacity 0.1s ease;
  &:hover {
    opacity: 0.5;
  }
}

.carousel__btn svg {
  display: block;
}

.carousel__btn:disabled {
  opacity: 0.4;
  cursor: default;
}

.carousel__btn[hidden] {
  display: none !important;
}

.auth-container {
  max-width: 500px;
  margin: 0 auto;
}
.user-menu {
  position: relative;
  margin-left: 8px;
  display: flex !important;
}
.user-menu .avatar-btn {
  background: transparent;
  padding: 0;
  cursor: pointer;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-gray-200);
  box-shadow: var(--shadow-soft);
  transition: background 0.15s ease;
  &:hover {
    background: var(--color-slate-50);
  }
}
.user-menu .avatar-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: var(--color-white);
  padding: 5px;
  border-radius: 100%;
  overflow: hidden;
}

.avatar-btn {
  span {
    top: -3px;
  }
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px var(--color-white) inset !important;
  box-shadow: 0 0 0 1000px var(--color-white) inset !important;
  -webkit-text-fill-color: var(--color-black) !important;
  caret-color: var(--color-black) !important;
}

.user-menu .menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 235px;
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 8px;
  display: none;
  z-index: 1000;
}
.user-menu,
.user-menu:focus-within .menu {
  display: block;
}
.user-menu .menu a {
  display: block;
  border-radius: 8px;
  text-decoration: none;
  color: #111827;
  font-size: 14px;
}
.user-menu .menu a:hover {
  background: var(--color-gray-100);
}
.user-menu .menu .menu-sep {
  height: 1px;
  background: var(--color-gray-200);
  margin: 6px 0;
}
.user-menu .menu .menu-header {
  padding: 4px 8px 8px;
  border-bottom: 1px dashed var(--color-gray-200);
  margin-bottom: 6px;
}
.user-menu .menu .menu-header .name {
  font-weight: 600;
}
.user-menu .menu .menu-header .role {
  font-size: 12px;
  color: var(--color-gray-500);
}

.user-menu.anon .avatar-btn {
  min-width: auto;
  height: 38px;
  padding: 0 10px 0 13px;
  border-radius: var(--radius-pill);
  background: var(--color-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #111827;
  width: auto;
  font-family:
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Ubuntu,
    Cantarell,
    "Helvetica Neue",
    Arial,
    sans-serif;
}
.user-menu .avatar-btn .avatar-text {
  font-weight: 500;
  top: -1px;
}

.nav-item.has-mega {
  position: relative;
}
.mega-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 10px;
}
.mega-trigger:focus {
  outline: none;
}

.mega-panel {
  padding: 80px 10px 10px 10px;
  position: absolute;
  top: -25px;
  left: -195px;
  width: 1395px;
  margin-top: 10px;
  background: var(--color-white);
  border-radius: 20px;
  box-shadow:
    0 20px 50px rgba(15, 23, 42, 0.12),
    0 2px 10px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(2, 6, 23, 0.06);
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  z-index: -1;
}
.has-mega.open .mega-panel {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.has-mega.open .mega-trigger {
  background: var(--color-gray-100);
}

.mega-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 15px 10px;
  border-bottom: 1px dashed rgba(2, 6, 23, 0.08);
}
.mega-title {
  font-weight: 600;
  opacity: 0.9;
}
.mega-cta {
  padding: 8px 14px;
  border-radius: 10px;
}

.mega-grid {
  display: grid;
  gap: 5px;
  padding: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  &.mega-groups {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
  .mega-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.nav .mega-item {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.15s ease;
  height: auto;
  line-height: normal;
  padding: 8px 12px;
  span {
    color: var(--color-gray-500) !important;
  }
}
.nav .mega-item:hover {
  background: transparent !important;
  span {
    color: var(--color-slate-900) !important;
  }
}
.mega-title-left {
  justify-content: space-between;
  align-items: center;
  height: 56px;
  padding: 12px 20px;
  display: flex;
}
.nav .mega-btn {
  margin-left: auto;
  height: auto;
  line-height: normal;
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  white-space: nowrap;
  background-color: var(--color-white);
  border-radius: var(--radius-pill);
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  min-height: 35px;
  padding: 6px 14px;
  font-weight: 500;
  text-decoration: none;
  transition: box-shadow 0.3s;
  display: flex;
  font-size: 13px;
  box-shadow:
    0 2px 6px #122b690a,
    0 1px 2px #122b6914,
    0 0 0 1px #122b6914;
}
.mega-sec-groups {
  border-radius: 16px;
  background-image: linear-gradient(
    17deg,
    rgba(244, 238, 253, 0.5),
    rgba(240, 246, 253, 0.5)
  );
}

.mega-sec {
  margin-top: auto;
}

.mega-logo {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
}
.mega-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.mega-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--color-slate-600);
}
.mega-text {
  font-weight: 500;
}
.mega-columns {
  display: flex;
  gap: 16px;
}
.mega-description {
  padding: 0 20px 15px 20px;
  .mega-btn {
    margin-top: 20px;
  }
}
@media (max-width: 900px) {
  .mega-columns {
    grid-template-columns: 1fr;
  }
}
.mega-sec-title {
  font-weight: 600;

  padding: 15px 20px;
}

.bg-top-decor {
  position: absolute;
  left: 0;
  right: 0;
  top: 55px;
  margin: 0 auto;
  z-index: -2;
  opacity: 0.5;
  scale: 1.3;
}

.value-steps {
  position: relative;
  p {
    margin-top: 0;
  }
  .description {
    margin-bottom: 30px;
    color: #5b6472;
    font-size: 16px;
  }
  .mega-btn {
    height: auto;
    line-height: normal;
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    white-space: nowrap;
    background-color: var(--color-white);
    border-radius: var(--radius-pill);
    flex: 0 auto;
    justify-content: center;
    align-items: center;
    min-height: 35px;
    padding: 6px 14px;
    font-weight: 500;
    text-decoration: none;
    transition: box-shadow 0.3s;
    display: flex;
    font-size: 13px;
    box-shadow:
      0 2px 6px #122b690a,
      0 1px 2px #122b6914,
      0 0 0 1px #122b6914;
    max-width: 200px;
    margin-top: 30px;
  }
}

.qo-spinner {
  display: none;
  width: 16px;
  height: 16px;
  margin-left: 8px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  vertical-align: -2px;
  animation: qo-spin 0.8s linear infinite;
}

@keyframes qo-spin {
  to {
    transform: rotate(360deg);
  }
}

.btn--loading .qo-spinner {
  display: inline-block;
}

.relavo-video {
  margin: 15px 0 !important;
}

.relavo-content {
  img {
    border-radius: 8px;
    margin-top: 15px;
    margin-bottom: 15px;
    display: block;
  }
  p {
    margin-bottom: 15px;
  }
}

.trix-content .yt-card {
  position: relative;
  display: block;
  max-width: 100%;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  margin: 8px 0;
  border: 1px solid var(--color-slate-200);
}

.trix-content .yt-thumb {
  display: block;
  line-height: 0;
  position: relative;
}

.trix-content .yt-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.trix-content .yt-thumb__play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
}

.trix-content .yt-thumb__play::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-40%, -50%);
  border-left: 18px solid var(--color-white);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

.mega-panel .mega-columns {
  display: grid;
  grid-template-columns: 1.1fr 2.2fr 1.1fr;
  gap: 15px;
  align-items: start;
}

.qomodal {
  .btn {
    height: 45px;
  }
}

.mega-sec-groups .mega-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: auto;
  padding: 0 10px 15px;
  column-gap: 25px;
}
.mega-sec-groups .mega-one {
  grid-template-columns: 1fr;
  display: block;
  ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    li {
      width: 100%;
    }
  }
}
.mega-sec-groups .mega-head {
  margin: 0 0 15px 0;
  font-weight: 600;
  font-size: 16px;
  grid-row: 1;
}
.mega-sec-groups .mega-head:nth-child(1) {
  grid-column: 1;
}
.mega-sec-groups .mega-head:nth-child(2) {
  grid-column: 2;
}
.mega-sec-groups .mega-col {
  grid-row: 2;
}
.mega-sec-groups .mega-col:nth-of-type(1) {
  grid-column: 1;
}
.mega-sec-groups .mega-col:nth-of-type(2) {
  grid-column: 2;
}

.mega-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 8px;
  object-fit: cover;
  aspect-ratio: 1/1;
  background: var(--color-gray-100);
  display: block;
}

.mega-products-big {
  gap: 17px !important;
  a {
    height: 50px;
    .mega-icon {
      width: 40px;
      height: 40px;
      flex: 0 0 40px;
      border-radius: 8px;
      object-fit: cover;
      aspect-ratio: 1/1;
      background: var(--color-gray-100);
      display: block;
    }
  }
}

.mega-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  text-decoration: none;
  color: inherit;
}
.mega-row:hover {
  background: transparent !important;
}
.mega-text {
  font-size: 14px;
  line-height: 1.25;
}

.mega-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mega-products {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mega-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #eef2f7;
  color: var(--color-gray-500);
  font-size: 12px;
  font-weight: 700;
}
.store-hero {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  padding: 50px;
}
.sh-logo img {
  width: 96px;
  height: 96px;
  border-radius: 16px;
  object-fit: cover;
  display: block;
}
.sh-logo-ph {
  width: 96px;
  height: 96px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--color-gray-100);
  color: var(--color-gray-500);
  font-weight: 600;
  font-size: 28px;
}

.sh-title {
  margin: 0 0 6px;
  font-size: 20px;
  line-height: 1.2;
}
.sh-desc {
  color: var(--color-slate-700);
}

.sh-meta {
  display: flex;
  gap: 20px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--color-gray-200);
}
.sh-item {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.sh-label {
  color: var(--color-gray-500);
  font-size: 12px;
  flex: 0 0 auto;
}

.sh-pill {
  border: 1px solid var(--border-overlay-soft);
  display: inline-block;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: #f5f6fa78;
  font-size: 13px;
  color: var(--color-ink);
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.sh-pill:hover {
  background: #eef0f7;
}

.sh-socials {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
}
.sh-social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.home-title {
  text-align: center;
  font-size: 65px;
  padding-top: 70px;
}

.site-footer {
  margin-top: 80px;
  border-top: 1px solid var(--border-overlay-soft);
  background: var(--surface-overlay-0);
  z-index: 1;
  position: relative;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(50px);
}
.site-footer .container {
  padding: 28px 16px;
}
.f-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
@media (max-width: 1024px) {
  .f-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .f-grid {
    grid-template-columns: 1fr;
  }
}

.f-col {
  min-width: 0;
}
.f-col-wide {
  grid-column: span 1;
}
@media (min-width: 1025px) {
  .f-col-wide {
    grid-column: span 1;
  }
}
.f-brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.f-logo img {
  display: block;
  height: auto;
}
.f-tagline {
  margin: 0;
  color: var(--color-gray-500);
  font-size: 13px;
}

.f-title {
  margin: 0 0 15px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-ink);
}
.f-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.f-link {
  transition: color 0.1s ease;
  color: var(--color-slate-700);
  text-decoration: none;
  font-size: 13px;
}
.f-link:hover {
  color: var(--color-ink);
}

.f-list-media .f-media {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--color-slate-700);
}
.f-media:hover {
  color: var(--color-ink);
}
.f-img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--color-gray-100);
  display: inline-block;
}
.f-img-fallback {
  display: inline-grid;
  place-items: center;
  font-size: 12px;
  color: var(--color-gray-500);
}

.f-products {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 900px) {
  .f-products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.f-product {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--color-slate-700);
}
.f-product:hover {
  color: var(--color-ink);
}
.f-prod-img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  background: var(--color-gray-100);
}

.f-text {
  font-size: 13px;
  line-height: 1.2;
}
.f-bottom {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px dashed var(--border-overlay-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.f-copy {
  font-size: 13px;
  color: var(--color-gray-500);
}

.home-description {
  text-align: center;
  font-size: 16px;
  margin: 20px auto 25px auto;
  max-width: 745px;
}

.mega-search-btn {
  display: none;
}

.testimonial {
  max-width: 920px;
  margin: 28px auto;
  padding: 0 16px;
}

.testimonial__card {
  margin: 0;
  position: relative;
  padding: 28px clamp(18px, 3vw, 25px);
}

.testimonial__card::before {
  /* content:"“"; */
  position: absolute;
  font-size: clamp(100px, 22vw, 170px);
  line-height: 1;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--accent);
  opacity: 0.1;
  pointer-events: none;
  transform: translateY(-10%);
  filter: blur(0.3px);
}
.testimonial__card::before {
  top: -50px;
  left: -15px;
}

.testimonial__media {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 14px;
}

.testimonial__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 16px -10px var(--glow);
  background: var(--color-slate-300);
}

.testimonial__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial__name {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.2px;
}

.testimonial__company {
  color: var(--muted);
  font-size: 0.95rem;
}

.testimonial__text {
  position: relative;
  margin: 10px 0 0 0;
  padding: clamp(6px, 1vw, 8px) 0 0 0;
  line-height: 1.65;
}

.product-group {
  margin: 80px auto -40px auto !important;
}

.product-group-home {
  margin-bottom: 20px !important;
  margin-top: 80px !important;
  z-index: 1 !important;
  position: relative !important;
}

.prime-btn {
  padding: 15px 35px !important;
  display: inline-block;
  background: #594cd6;
  color: var(--color-white);
  border-radius: var(--radius-pill);
  font-size: 16px;
  margin-top: 35px !important;
  box-shadow:
    0 2px 6px #122b690a,
    0 1px 2px #122b6914,
    0 0 0 1px #122b6914;
}

#desc_html {
  max-height: 700px;
}

.trix-button-group {
  border-bottom-color: transparent !important;
}

.blog-show {
  .cover {
    width: 100%;
    max-width: 100%;
    border-radius: var(--radius-sm);
  }
}

.post-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 40px 0;
  padding: 20px 0;
  border-top: 1px solid var(--color-gray-200);
  border-bottom: 1px solid var(--color-gray-200);
  gap: 20px;
}

.nav-previous {
  flex: 1;
}

.nav-next {
  flex: 1;
  text-align: right;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 10px;
  background: #f9fafb;
  color: var(--color-slate-700);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  border: 1px solid var(--color-gray-200);
}

.nav-link:hover {
  background: #4f46e5;
  color: var(--color-white);
  border-color: #4f46e5;
}

.nav-arrow {
  font-size: 18px;
}

.nav-label {
  font-size: 14px;
}

trix-toolbar .trix-button-group {
  margin-top: 0;
  margin-bottom: 10px;
}
.trix-wrapper {
  position: relative;
  border: 2px solid var(--color-gray-200) !important;
  border-radius: 10px;
  padding-top: 10px;
}

.trix-wrapper trix-toolbar {
  position: sticky;
  top: 69px;
  z-index: 2;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: var(--surface-overlay-90);
  padding: 0 10px;
}
/* Hide default Trix heading button (TT) */
trix-toolbar .trix-dialog {
  border-top: none;
}
.trix-button-group--headings {
  margin-right: 0;
  border-right: 1px solid var(--color-gray-200);
}

.trix-button--heading {
  font-size: 12px;
  padding: 2px 6px;
}

trix-toolbar .trix-button {
  border-bottom: none !important;
}

trix-toolbar .trix-button:not(:last-child) {
  border-right: none !important;
}

trix-toolbar .trix-button-group {
  border: none !important;
}

trix-toolbar .trix-dialog {
  border-top: none !important;
}

trix-toolbar .trix-button--icon {
  font-size: 14px !important;
}

trix-toolbar .trix-button:not(:first-child) {
  border-left: none !important;
}

.user-menu--mobile {
  display: none !important;
}

.pages-top-link-mobile {
  display: none;
}

trix-toolbar .trix-button-group {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}

.btn-erp {
  border-radius: 0.75rem !important;
  height: 41.3px !important;
  margin-bottom: 15px !important;
  font-weight: 400 !important;
  font-size: 14px !important;
  &.prime {
    background: var(--color-blue-600);
    background-image: linear-gradient(
      to bottom,
      var(--color-blue-500),
      var(--color-blue-600)
    );
    border: 1px solid var(--color-blue-600);
    box-shadow:
      0px 0px 0px 1px rgb(37 99 235 / 0.2),
      0px 1px 1px -0.5px rgb(37 99 235 / 0.2),
      0px 3px 3px -1.5px rgb(37 99 235 / 0.2),
      0px 6px 6px -3px rgb(37 99 235 / 0.2),
      0px 12px 12px -6px rgb(37 99 235 / 0.2),
      0px 24px 24px -12px rgb(37 99 235 / 0.2);
    transition: background-image 0.3s ease 0s;
    &:hover {
      background-image: linear-gradient(
        to bottom,
        var(--color-blue-800),
        var(--color-blue-800)
      );
    }
  }
  &.secondary {
    background: var(--color-white);
    color: #171717;
    box-shadow:
      0px 0px 0px 1px rgba(0, 0, 0, 0.06),
      0px 1px 1px -0.5px rgba(0, 0, 0, 0.06),
      0px 3px 3px -1.5px rgba(0, 0, 0, 0.06),
      0px 6px 6px -3px rgba(0, 0, 0, 0.06),
      0px 12px 12px -6px rgba(0, 0, 0, 0.06),
      0px 24px 24px -12px rgba(0, 0, 0, 0.06);
    &:hover {
      background: #f7f7f8;
    }
  }
  svg {
    width: 1rem;
    height: 1rem;
    margin-left: 0.5rem;
    vertical-align: middle;
  }
}

.social-list {
  display: flex;
  gap: 10px;
  margin-top: 5px;
  & a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 100%;
    background: var(--color-gray-100);
    transition: background-color 0.3s ease 0s;
    &:hover {
      & svg {
        fill: var(--color-ink);
      }
    }
    & svg {
      fill: var(--color-slate-700);
      width: 18px;
      height: 18px;
      transition: fill 0.3s ease 0s;
      vertical-align: middle;
    }
  }
}

.admin-container {
  max-width: 1080px;
  margin: 0 auto;
}

.admin-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  padding: 25px;
  border-radius: 20px;
  background: var(--color-white);
  border: 1px solid var(--color-gray-100);
  box-shadow: var(--shadow-card);
}

.admin-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 20px;
  background: var(--color-white);
  border-radius: 16px;
  border: 1px solid var(--color-gray-200);
  text-decoration: none;
  color: var(--color-slate-800);
  transition: all 0.2s ease;
  box-shadow: var(--shadow-soft);
}

.admin-card svg {
  width: 28px;
  height: 28px;
  fill: var(--color-blue-600);
}

.admin-card:hover {
  transform: translateY(-3px);
  border-color: #d5dae3;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
}

.admin-card[data-active="1"] {
  border-color: var(--color-blue-600);
  background: #f0f7ff;
}

.admin-card__title {
  font-size: 15px;
  font-weight: 600;
}

.admin-card__desc {
  font-size: 13px;
  color: var(--color-slate-500);
}

.admin-card__desc .count {
  font-weight: 600;
  color: var(--color-blue-600);
}

/* Layout: article + sticky TOC */
.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(220px, 1fr);
  gap: 40px;
  align-items: flex-start;
}

@media (max-width: 960px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }
  .blog-toc {
    position: static;
    order: -1;
    margin-bottom: 24px;
  }
}

.blog-toc {
  position: sticky;
  top: 100px;
  max-height: calc(100vh - 120px);
  overflow: auto;
  font-size: 0.875rem;
  color: var(--color-gray-600);
}

.blog-toc__inner {
  background: var(--surface-overlay-82);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  border: 1px solid var(--color-gray-200);
}

.blog-toc__title {
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #111827;
}

.blog-toc__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.blog-toc__list li {
  margin: 4px 0;
}

.blog-toc__list a {
  text-decoration: none;
  color: var(--color-slate-700);
  line-height: 1.4;
  display: block;
  padding: 4px 0;
  border-left: 2px solid transparent;
  padding-left: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-toc__list a:hover {
  color: #111827;
  border-left-color: var(--color-gray-300);
}

.blog-toc__list a.is-active {
  color: #111827;
  border-left-color: #4f46e5;
}

.blog-toc--empty {
  display: none;
}

#about {
  .prime-btn {
    box-shadow:
      0 1px 1px 0 rgb(0 0 0 / 0%),
      0 2px 3px 0 rgba(0, 0, 0, 0.08),
      1px 4px 8px 0 rgba(0, 0, 0, 0.12),
      inset 0 -3px 2px 0 rgb(126 116 216),
      inset 0 2px 0.4px 0 hsl(245.84deg 50.92% 67.93%);
    border: 1px solid #766ccd;
    background: #7469f0;
    transition: background 0.15s ease;
    margin-top: 5px !important;
    &:hover {
      background: #7c72ee;
    }
  }
  .ava {
    img {
      margin: 40px auto 0;
    }
  }
  .af-cta {
    .mega-btn {
      background: #23b47f;
      color: var(--color-white);
      max-width: 170px;
      margin-right: auto;
      margin-left: 0;
      box-shadow:
        0 1px 1px 0 rgb(0 0 0 / 0%),
        0 2px 3px 0 rgba(0, 0, 0, 0.08),
        1px 4px 8px 0 #4cd7a459,
        inset 0 -3px 2px 0 rgb(44 165 102),
        inset 0 2px 0.4px 0 hsl(148.99deg 39.95% 56.11%);
      border: 1px solid #23b47f;
      transition: background 0.15s ease;
      margin: 30px auto 0;
      height: 40px;
      &:hover {
        background: #2cbd88;
      }
    }
  }
}

.relavo-content {
  li {
    margin-bottom: 8px;
    &:last-child {
      margin-bottom: 0;
    }
  }
}

@media (min-width: 1080px) {
  .request-demo-mobile {
    display: none;
  }
}

.request-demo-mobile {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  z-index: 41;
  padding: 0 20px 15px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s ease;
  transform: scale(1.1);
  &.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: scale(1);
  }
  .request-demo-mobile__inner {
    background: var(--surface-overlay-10);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-pill);
    height: 70px;
    scrollbar-width: none;
    border: 1px solid var(--border-overlay-soft);
    .request-demo-mobile__inner__content {
      position: absolute;
      width: 100%;
      height: 100%;
      padding: 10px;
      top: 0;
      .request-demo-mobile__inner__content__btn {
        width: 100%;
        height: 100%;
        border-radius: var(--radius-pill);
        background: #23b47f;
        color: var(--color-white);
        border: none;
        font-size: 13px;
        font-weight: 500;
        cursor: pointer;
        transition: background 0.3s ease;
        box-shadow:
          0 1px 1px 0 rgb(0 0 0 / 0%),
          0 2px 3px 0 rgba(0, 0, 0, 0.08),
          1px 4px 8px 0 rgba(0, 0, 0, 0.12),
          inset 0 -3px 2px 0 rgb(44 165 102),
          inset 0 2px 0.4px 0 hsl(148.99deg 39.95% 56.11%);
        &:hover {
          background: #2cbd88;
        }
      }
    }
  }
}

.menu-mobile {
  position: fixed;
  bottom: -15px;
  left: 0;
  right: 0;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  z-index: 2;
  display: none;
  & ul {
    list-style: none;
    padding: 0;
    margin: 0;
    white-space: nowrap;
    display: flex;
    height: 80px;
    border-radius: 5px;
    background: var(--surface-overlay-50);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: height 0.3s ease;
    & li {
      width: 100%;
      height: 60px;
      display: inline-block;
      & a {
        padding: 6px 12px;
        margin-bottom: 0;
        font-weight: 400;
        line-height: 1.42857143;
        text-align: center;
        white-space: nowrap;
        vertical-align: middle;
        -ms-touch-action: manipulation;
        touch-action: manipulation;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        background-image: none;
        border: 1px solid transparent;
        border-radius: 4px;
        height: 100%;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        color: var(--color-slate-900);
        text-decoration: none;
        & svg {
          width: 20px;
          height: 20px;
          display: block;
          margin: 0 auto 5px;
        }
        & i {
          display: block;
          font-size: 14px;
          margin-bottom: 5px;
          color: var(--color-slate-900);
        }
        &.selected {
          position: relative;
          &:after {
            content: "";
            width: 37px;
            height: 3px;
            border-radius: 0 0 5px 5px;
            background: var(--control-strong-bg);
            position: absolute;
            bottom: 56px;
            left: 0;
            right: 0;
            margin: 0 auto;
            top: -1px;
          }
        }
      }
    }
  }
}
.menu-mobile {
  padding: 15px;
  bottom: 0;
}
.menu-mobile ul {
  background: var(--surface-overlay-10);
  box-shadow: 0px 0 70px #00000017;
  backdrop-filter: blur(10px);
  border-radius: var(--radius-pill);
  height: 70px;
  scrollbar-width: none;
  border: 1px solid var(--border-overlay-soft);
}
.menu-mobile ul li {
  height: 70px;
}
.menu-mobile ul li a {
  font-size: 12px;
}
.menu-mobile ul li a.selected:after {
  background: #74629a12;
  width: 100%;
  height: 100%;
  bottom: 0;
  top: -1px;
  margin: auto;
  border-radius: 50px;
  scale: 0.9;
  animation: scaleIn 0.5s ease forwards;
}
.blur-gradient-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 90px;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.blur-gradient-top::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(245 248 251 / 0%), rgb(255 255 255));
  pointer-events: none;
}
.blur-gradient {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 130px;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  display: none;
}
.blur-gradient::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgb(245 248 251 / 0%),
    rgb(255 255 255)
  );
  pointer-events: none;
}
@media (max-width: 1080px) {
  .menu-mobile {
    display: block;
  }
  .blur-gradient,
  .blur-gradient-top {
    display: block;
  }
}
.menu-mobile {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  z-index: 40;
}

.mobile-panel-overlay {
  position: fixed;
  inset: 0;
  bottom: 0;
  background: rgb(15 22 42 / 40%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 20;
}

.mobile-panel-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-panel {
  position: fixed;
  left: 0;
  right: 0;
  max-width: 1200px;
  margin: 0 auto;
  bottom: 0;
  background: var(--color-white);
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -18px 40px rgba(15, 23, 42, 0.08);
  transform: translateY(110%);
  transition: transform 0.3s ease;
  z-index: 30;
  display: flex;
  flex-direction: column;
  padding: 10px 16px 100px;
}

.mobile-panel.is-open {
  transform: translateY(0);
}

.mobile-panel__drag {
  width: 40px;
  height: 4px;
  border-radius: 999px;
  background: var(--color-slate-200);
  margin: 4px auto 12px;
}

.mobile-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 0 4px;
}

.mobile-panel__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-slate-900);
}

.mobile-panel__close {
  border: none;
  background: transparent;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  color: var(--color-slate-500);
  padding: 4px;
  svg {
    width: 15px;
    height: 15px;
  }
}

.mobile-panel__body {
  margin-top: 12px;
  padding: 0 4px 4px;
  max-height: min(70vh, 420px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-panel__hint {
  font-size: 12px;
  color: var(--color-slate-500);
  margin-top: 10px;
}

.search-form--mobile {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid var(--color-slate-200);
  padding: 6px 10px;
  background: var(--color-slate-50);
}
.search-form--mobile input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 14px;
  flex: 1;
  box-shadow: none;
}
.search-form--mobile .btn-search-top {
  border-radius: 999px;
  border: none;
  background: var(--control-strong-bg);
  color: var(--control-strong-fg);
  width: 38px;
  height: 38px;
  font-size: 18px;
  cursor: pointer;
}

.mobile-menu-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
  padding: 0;
}

.mobile-menu-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  font-size: 14px;
  color: var(--color-slate-900);
  padding: 10px 12px;
  border-radius: 999px;
  background: var(--color-slate-50);
  border: 1px solid var(--color-slate-200);
}

.mobile-menu-list a:hover {
  background: #edf2ff;
}

.nav .mega-btn-catalog {
  background: #7469f0;
  color: var(--color-white);
  max-width: 180px;
  margin-right: auto;
  margin-left: 0;
  box-shadow:
    0 1px 1px 0 rgb(0 0 0 / 0%),
    0 2px 3px 0 rgba(0, 0, 0, 0.08),
    1px 4px 8px 0 rgba(0, 0, 0, 0.12),
    inset 0 -3px 2px 0 rgb(126 116 216),
    inset 0 2px 0.4px 0 hsl(245.84deg 50.92% 67.93%);
  border: 1px solid #766ccd;
  transition: background 0.15s ease;
  &:hover {
    background: #7c72ee;
  }
}

.description .mega-btn-contact {
  background: #23b47f;
  color: var(--color-white);
  max-width: 170px;
  margin-right: auto;
  margin-left: 0;
  box-shadow:
    0 1px 1px 0 rgb(0 0 0 / 0%),
    0 2px 3px 0 rgba(0, 0, 0, 0.08),
    1px 4px 8px 0 #4cd7a459,
    inset 0 -3px 2px 0 rgb(44 165 102),
    inset 0 2px 0.4px 0 hsl(148.99deg 39.95% 56.11%);
  border: 1px solid #23b47f;
  transition: background 0.15s ease;
  margin: 30px auto 0;
  height: 40px;
  &:hover {
    background: #2cbd88;
  }
}

.nav .mega-btn-contact {
  background: #23b47f;
  color: var(--color-white);
  max-width: 170px;
  margin-right: auto;
  margin-left: 0;
  box-shadow:
    0 1px 1px 0 rgb(0 0 0 / 0%),
    0 2px 3px 0 rgba(0, 0, 0, 0.08),
    1px 4px 8px 0 #4cd7a459,
    inset 0 -3px 2px 0 rgb(44 165 102),
    inset 0 2px 0.4px 0 hsl(148.99deg 39.95% 56.11%);
  border: 1px solid #23b47f;
  transition: background 0.15s ease;
  &:hover {
    background: #2cbd88;
  }
}

@media (min-width: 1080px) {
  .footer-cookie-link {
    display: none !important;
  }
}

@media (max-width: 1080px) {
  .avatar-btn-mobile {
    border: 1px solid var(--color-gray-200) !important;
    width: 40px;
    height: 40px;
    img {
      border-radius: var(--radius-pill);
      padding: 3px !important;
    }
  }

  .menu-mobile {
    display: block;
    padding: 15px 20px;
  }
  .blur-gradient {
    display: block;
  }
}

@keyframes scaleIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 600px) {
  .carousel__link {
    margin-left: 0;
    margin-top: 10px;
  }
  .post-navigation {
    flex-direction: column;
    gap: 12px;
  }

  .nav-previous,
  .nav-next {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 460px) {
  .testimonial__media {
    grid-template-columns: 56px 1fr;
    gap: 12px;
  }
  .testimonial__avatar {
    width: 56px;
    height: 56px;
  }
}

@media (max-width: 1380px) {
  .container {
    width: 1250px;
  }
  .mega-panel {
    width: 1280px;
  }
}

@media (max-width: 1265px) {
  .card-sticky {
    height: auto;
  }
  .container {
    width: 100%;
    overflow: hidden;
  }
  header {
    .container {
      overflow: inherit;
    }
  }
  .mega-panel {
    width: 100vw;
  }
}

@media (max-width: 1080px) {
  #about {
    .af-band {
      .faq__intro-media {
        display: none;
      }
    }
    .af-super {
      .ph-16x10 {
        display: none;
      }
    }
    .af-cta {
      padding-top: 40px !important;
    }
  }

  .meta {
    font-size: 13px;
  }

  .breadcrumbs a {
    padding: 0 5px;
  }

  .blog-show {
    .relavo-content {
      h2 {
        line-height: 1.1;
      }
    }
  }

  .blog-layout {
    margin: 30px auto 0;
    .blog-toc {
      display: none;
    }
    .blog-show {
      .cover {
        border: 1px solid #e8e8e8;
      }
    }
  }

  .cky-btn-revisit-wrapper {
    display: none !important;
  }

  .form-row-margin {
    margin-bottom: 15px;
  }

  .value__lead {
    max-width: 100%;
  }

  h1.home-title {
    max-width: 640px;
    margin: 0 auto 15px;
  }

  p.home-description {
    max-width: 640px;
    margin: 0 auto;
    display: block;
    text-align: left;
  }

  .value__cards {
    flex: 1 1 auto;
    margin: 0 auto;
  }

  .store-hero {
    padding: 25px;
  }

  h1.home-title {
    text-align: left;
    margin-bottom: 15px;
  }

  .qomodal__content {
    .form-row {
      display: block;
    }
  }
  .card-product-shoq {
    padding: 40px;
  }
  .value-steps {
    .value__card {
      padding: 25px !important;
    }
  }
  .testimonial {
    padding: 0;
  }
  .testimonial__card {
    padding: 0;
  }
  .carousel__slide .card {
    border: 1px solid var(--color-gray-200);
  }
  .has-mega {
    display: none !important;
  }
  .pages-top-link-desktop {
    display: none;
  }
  .site-footer {
    backdrop-filter: none;
    padding: 0px 30px 100px 30px;
  }

  .contacts-container {
    .value__cards {
      display: block;
      padding: 0;
      border: none;
      box-shadow: none;
      .value__contacts {
        margin-bottom: 35px;
      }
    }
  }
  .nav .search-form input {
    border: 1px solid var(--border-overlay-soft) !important;
  }
  .card .form-row {
    display: block;
  }
  .card-sticky {
    & > img {
      max-width: 100% !important;
      width: 100% !important;
      height: auto;
    }
  }
  header {
    background: transparent !important;
    backdrop-filter: none;
  }
  .keywords-search {
    span {
      &:last-child {
        display: none;
      }
    }
  }
  .site-footer .container {
    padding: 20px 0 !important;
  }
  .card {
    border: 1px solid #e8e8e8;
  }
  .grid .card {
    border: 1px solid #e8e8e8;
    padding: 25px;
    h3 {
      margin-bottom: 5px;
    }
  }
  .carousel__slide .card {
    padding: 25px;
  }
  .top {
    grid-template-columns: 65px 1fr;
    align-items: normal;
  }
  .card .thumb {
    width: 90px;
    height: 90px;
  }
  .carousel__slide {
    .top {
      .thumb {
        width: 65px;
        height: 65px;
      }
    }
  }
  .grid {
    .top {
      .thumb {
        width: 65px;
        height: 65px;
      }
    }
  }
  .app-icon {
    width: 65px;
    height: 65px;
  }
  .product-group-home {
    margin-bottom: 30px;
    margin-top: 30px;
  }
  .value__intro {
    padding-right: 0;
  }
  .card-sticky {
    top: 0;
  }
  .product-group {
    padding: 0;
    h2 {
      padding: 0;
    }
  }
  .value {
    padding: 20px 0;
  }
  .mega-search-btn {
    width: 38px;
    line-height: 42px !important;
    text-align: center;
    display: inline-block;
    padding: 0 !important;
    vertical-align: bottom;
    margin-left: 5px;
  }
  .user-menu {
    display: none !important;
  }
  .user-menu--mobile {
    display: flex !important;
    margin-left: auto;
    padding-top: 2px !important;
  }
  .right-menu {
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: var(--color-white);
    border-radius: 20px;
    box-shadow:
      0 20px 50px rgba(15, 23, 42, 0.12),
      0 2px 10px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(2, 6, 23, 0.06);
    padding: 10px;
    display: none !important;
    width: 100%;
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
    transition:
      opacity 0.2s ease,
      transform 0.2s ease;
    margin: 0 auto;
  }
  .open-search {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
  }
  .value__title {
    margin-top: 15px;
  }
  .keywords-search {
    span {
      font-size: 12px;
      padding: 0 8px;
      line-height: 23px;
      height: 25px;
    }
  }
  .home-description {
    font-size: 16px;
  }
  .container {
    padding: 0 25px !important;
  }
  .home-title {
    font-size: 34px;
    padding-top: 50px;
  }
  .sh-socials {
    display: block;
    .sh-label {
      margin-bottom: 10px;
      display: block;
    }
  }
  .sh-item {
    margin-bottom: 10px;
  }
  .sh-meta {
    display: block;
  }
  .sh-logo {
    margin-bottom: 15px;
  }
  .store-hero {
    display: block;
  }
  .mega-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .mega-panel {
    padding: 10px;
    position: fixed;
    left: 0;
    top: auto;
    max-height: min-content;

    width: 100%;
    margin: 12px auto 0;

    right: 0;
  }
  .mega-sec-groups .mega-two {
    grid-template-columns: 1fr;
    display: block;
  }
  .mega-sec-groups .mega-head:nth-child(2),
  .mega-sec-groups .mega-col:nth-of-type(2) {
    grid-column: 1;
  }
  .mega-sec-groups {
    .mega-head {
      margin: 10px 0 0 0;
      border: none;
    }
  }
  .mega-panel {
    overflow: auto;
    height: 100vh;
    border: none;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    margin: 15px auto 0;
    padding: 0 0 150px 0;
    .mega-columns {
      grid-template-columns: 1fr;
      gap: 5px;
      background: var(--color-white);
      border-radius: 20px;
      border: 1px solid rgba(2, 6, 23, 0.06);
    }
  }
  .value__container {
    flex-direction: column;
  }
  .pages-top-link,
  .right-menu {
    display: none;
  }
  .pages-top-link-mobile {
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-left: auto;
    border: 1px solid var(--color-gray-200);
    box-shadow: var(--shadow-soft);
    svg {
      display: block !important;
      width: 20px;
      height: 20px;
      margin-right: 5px;
    }
  }
  .nav-item {
    &.has-mega {
      margin-left: auto;
      .mega-trigger,
      .mega-search-btn {
        border: 1px solid #d8d8d8;
        background: var(--color-gray-100);
      }
    }
  }
  .nav {
    transform: translateY(0px);
    translate: 0;
    .logo-top {
      img {
        max-width: 125px;
      }
    }
  }
  .card-row {
    display: block;
    max-width: 550px;
    margin: 0 auto;
  }
  .card-sticky {
    max-width: 100%;
    min-width: 100%;
    padding: 40px;
    .product-img {
      display: block;
      margin: 0 auto 15px;
    }
  }
  .value__title {
    font-size: 22px;
  }
  h2 {
    font-size: 22px;
  }
  main.container {
    padding-top: 100px !important;
  }
  header {
    position: absolute !important;
    -webkit-backdrop-filter: blur(0px) !important;
    backdrop-filter: blur(0px) !important;
    background: transparent !important;
  }
  .blur-gradient-top {
    position: absolute !important;
  }
  .mvd-stage {
    min-height: auto !important;
    margin-bottom: 25px !important;
    .card {
      padding: 25px !important;
    }
  }
  .af-cta {
    .value__cards {
      display: block !important;
    }
  }
  .contacts-container {
    .value__cards {
      background: transparent !important;
    }
  }
}

@media (max-width: 768px) {
  .top {
    min-height: auto;
  }

  .value-steps {
    .value__cards {
      display: block;
      width: 100%;
    }
  }

  p.home-description {
    max-width: 640px;
    margin: 0 auto;
    display: block;
  }

  .subtitle {
    font-size: 14px;
    line-height: normal;
  }

  section.product-group.product-group-home h2 {
    display: inline-grid;
    a {
      margin-left: 0;
      margin-top: 10px;
    }
  }

  .grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }

  .faq {
    lottie-player {
      width: 100% !important;
      max-width: 350px;
    }
  }
  .af-grid {
    display: block !important;
    lottie-player {
      width: 100% !important;
      max-width: 350px;
    }
  }
}

@media (max-width: 380px) {
  .home-title {
    font-size: 33px;
  }
  h1 {
    font-size: 27px;
  }
}
