/* ========================================================================== */
/* Project style.css */
/* Consolidated CSS from template style blocks. */
/* ========================================================================== */

/* ========================================================================== */
/* Rating stars UI */
/* ========================================================================== */

.tps-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.tps-rating-stars {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.tps-star {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid color-mix(in srgb, var(--ui-sec-accent) 18%, var(--ui-sec-border));
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--ui-sec-shadow-soft);
  color: #c7d1dd;
  cursor: pointer !important;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}

.tps-star:hover {
  border-color: color-mix(in srgb, var(--ui-sec-accent) 24%, var(--ui-sec-border));
  background: color-mix(in srgb, var(--ui-sec-accent) 5%, #ffffff);
  color: #f4b400;
  box-shadow: 0 14px 24px rgba(15, 23, 42, .05);
}

.tps-star.is-voted {
  border-color: color-mix(in srgb, var(--ui-sec-accent) 28%, var(--ui-sec-border));
  background: color-mix(in srgb, var(--ui-sec-accent) 8%, #ffffff);
  color: #f4b400;
  box-shadow: 0 14px 24px rgba(15, 23, 42, .06);
}

.tps-rating.is-locked .tps-star,
.tps-rating.is-sending .tps-star {
  cursor: default !important;
  pointer-events: none !important;
}

.tps-star:disabled {
  opacity: 1;
}

.tps-star-ico {
  position: relative;
  width: 24px;
  height: 24px;
  display: inline-flex;
  pointer-events: none;
}

.tps-star-svg {
  width: 24px;
  height: 24px;
  display: block;
}

.tps-star-svg path {
  fill: currentColor;
}

.tps-star-svg--base {
  color: #d3dbe5;
}

.tps-star-fill-clip {
  position: absolute;
  inset: 0;
  width: var(--fill, 0%);
  overflow: hidden;
}

.tps-star-fill {
  display: block;
  width: 24px;
  height: 24px;
}

.tps-star-svg--fill {
  color: #f4b400;
}

.tps-rating-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-height: 40px;
}

.tps-rating-current {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.tps-rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--ui-sec-border);
  background: #ffffff;
  box-shadow: var(--ui-sec-shadow-soft);
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  color: var(--ui-sec-title-color);
}

.tps-rating-pill i {
  font-size: 13px;
  line-height: 1;
}

.tps-rating-pill--score {
  border-color: color-mix(in srgb, var(--ui-sec-accent) 18%, var(--ui-sec-border));
  background: color-mix(in srgb, var(--ui-sec-accent) 5%, #ffffff);
}

.tps-rating-pill--score i {
  color: #f4b400;
}

.tps-rating-pill--votes i {
  color: color-mix(in srgb, var(--ui-sec-accent) 82%, #0f172a);
}

.tps-rating-pill__label,
.tps-rating-pill__muted {
  color: #708196;
}

.tps-rating-avg,
.tps-rating-count {
  font-size: 14px;
  font-weight: 700;
  color: var(--ui-sec-title-color);
}

.tps-rating-thanks {
  display: none;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid color-mix(in srgb, var(--ui-sec-accent) 18%, var(--ui-sec-border));
  border-radius: 999px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--ui-sec-accent) 7%, #ffffff) 0%, #ffffff 100%);
  box-shadow: var(--ui-sec-shadow-soft);
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  color: var(--ui-sec-title-color);
}

.tps-rating-thanks i {
  color: #22c55e;
  font-size: 14px;
  line-height: 1;
}

@media (max-width:767.98px) {
  .tps-star {
    width: 46px;
    height: 46px;
    border-radius: 16px;
  }

  .tps-star-ico,
  .tps-star-svg,
  .tps-star-fill {
    width: 22px;
    height: 22px;
  }

  .tps-rating-current {
    gap: 8px;
  }

  .tps-rating-pill,
  .tps-rating-thanks {
    font-size: 11px;
  }

  .tps-rating-avg,
  .tps-rating-count {
    font-size: 13px;
  }

}

/* ========================================================================== */
/* Promocode UI */
/* ========================================================================== */

/* Promocode UI start */
.ui-promocode,
.ui-promocode * {
  box-sizing: border-box;
}

.ui-promocode {
  --promo-accent: var(--accent-color, #0078d4);
  --promo-surface: #ffffff;
  --promo-heading: var(--heading-color, #111827);
  --promo-text: var(--default-color, #334155);
  --promo-muted: color-mix(in srgb, var(--default-color, #334155), transparent 38%);
  --promo-contrast: var(--contrast-color, #ffffff);
  --promo-success: #198754;
  --promo-border: color-mix(in srgb, var(--default-color, #111827), transparent 88%);
  --promo-border-strong: color-mix(in srgb, var(--default-color, #111827), transparent 82%);
  --promo-border-accent: color-mix(in srgb, var(--promo-accent), transparent 78%);
  --promo-soft: color-mix(in srgb, var(--promo-accent), transparent 93%);
  --promo-soft-2: color-mix(in srgb, var(--promo-accent), transparent 96%);
  --promo-shadow: 0 8px 24px color-mix(in srgb, var(--default-color, #111827), transparent 95%);
  --promo-shadow-hover: 0 12px 30px color-mix(in srgb, var(--default-color, #111827), transparent 92%);
  --promo-radius: 22px;
  position: relative;
  display: grid;
  gap: 16px;
  width: 100%;
  min-width: 0;
  padding: 20px;
  overflow: hidden;
  border: 1px solid var(--promo-border);
  border-radius: var(--promo-radius);
  background: var(--promo-surface);
  color: var(--promo-text);
  font-family: var(--default-font, "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  box-shadow: var(--promo-shadow);
  isolation: isolate;
}

.ui-promocode::before {
  content: "";
  position: absolute;
  right: -44px;
  top: -48px;
  z-index: 0;
  width: 148px;
  height: 148px;
  border: 1px solid color-mix(in srgb, var(--promo-accent), transparent 84%);
  border-radius: 44px;
  background: color-mix(in srgb, var(--promo-accent), transparent 96%);
  transform: rotate(14deg);
  pointer-events: none;
}

.ui-promocode > * {
  position: relative;
  z-index: 1;
}

.ui-promocode__top {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: flex-start;
  min-width: 0;
}

.ui-promocode__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  margin: 0;
  padding: 0;
  border: 1px solid var(--promo-border-accent);
  border-radius: 16px;
  background: var(--promo-soft);
  color: var(--promo-accent);
  font-size: 22px;
  line-height: 1;
}

.ui-promocode__mark i,
.ui-promocode__copy i {
  display: inline-flex;
  color: currentColor;
  font-size: inherit;
  line-height: 1;
}

.ui-promocode__head {
  min-width: 0;
  color: var(--promo-text);
}

.ui-promocode__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  margin: 0 0 8px;
  padding: 5px 10px;
  border: 1px solid var(--promo-border-accent);
  border-radius: 999px;
  background: var(--promo-soft);
  color: var(--promo-accent);
  font-family: var(--nav-font, "Montserrat", system-ui, sans-serif);
  font-size: 12px;
  font-weight: 560;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

.ui-promocode__eyebrow i {
  display: inline-flex;
  color: currentColor;
  font-size: 13px;
  line-height: 1;
}

.ui-promocode__title {
  display: block;
  margin: 0;
  padding: 0;
  color: var(--promo-heading);
  font-family: var(--heading-font, "Montserrat", system-ui, sans-serif);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.3;
  letter-spacing: -0.012em;
  text-decoration: none;
}

.ui-promocode__coupon {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-width: 0;
  margin: 0;
  padding: 10px;
  border: 1px dashed color-mix(in srgb, var(--promo-accent), transparent 62%);
  border-radius: 16px;
  background: color-mix(in srgb, var(--promo-accent), transparent 97%);
  color: var(--promo-text);
}

.ui-promocode__coupon-main {
  display: grid;
  gap: 4px;
  min-width: 0;
  color: var(--promo-text);
}

.ui-promocode__coupon-label {
  display: block;
  margin: 0;
  padding: 0;
  color: var(--promo-muted);
  font-family: var(--default-font, "Manrope", system-ui, sans-serif);
  font-size: 12px;
  font-weight: 520;
  line-height: 1;
  text-decoration: none;
}

.ui-promocode__badge {
  display: block;
  min-width: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  color: var(--promo-heading);
  font-family: var(--heading-font, "Montserrat", system-ui, sans-serif);
  font-size: 20px;
  font-weight: 680;
  line-height: 1.15;
  letter-spacing: 0.08em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
  text-decoration: none;
}

.ui-promocode__copy {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  min-height: 40px;
  margin: 0;
  padding: 9px 13px;
  border: 1px solid var(--promo-accent);
  border-radius: 999px;
  background: var(--promo-accent);
  color: var(--promo-contrast);
  font-family: var(--nav-font, "Montserrat", system-ui, sans-serif);
  font-size: 13px;
  font-weight: 560;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 10px 24px color-mix(in srgb, var(--promo-accent), transparent 82%);
  transition: border-color 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.ui-promocode__copy:hover {
  border-color: color-mix(in srgb, var(--promo-accent), #111827 12%);
  background: color-mix(in srgb, var(--promo-accent), #111827 12%);
  color: var(--promo-contrast);
  box-shadow: 0 12px 28px color-mix(in srgb, var(--promo-accent), transparent 78%);
  transform: translateY(-1px);
}

.ui-promocode__copy:focus {
  outline: 0;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--promo-accent), transparent 84%), 0 10px 24px color-mix(in srgb, var(--promo-accent), transparent 82%);
}

.ui-promocode__copy:active {
  transform: scale(0.98);
}

.ui-promocode__copy--icon {
  width: 40px;
  min-width: 40px;
  padding: 0;
}

.ui-promocode__note {
  display: block;
  margin: 0;
  padding: 0;
  color: var(--promo-text);
  font-family: var(--default-font, "Manrope", system-ui, sans-serif);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
  text-decoration: none;
}

.ui-promocode__note a {
  color: var(--promo-accent);
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--promo-accent), transparent 70%);
}

.ui-promocode__note a:hover {
  color: color-mix(in srgb, var(--promo-accent), #111827 12%);
  border-bottom-color: currentColor;
}

/* Square variant */
.ui-promocode--square {
  min-height: 100%;
  padding: 18px;
  border-radius: 20px;
}

.ui-promocode--square .ui-promocode__top {
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
}

.ui-promocode--square .ui-promocode__mark {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 15px;
  font-size: 20px;
}

.ui-promocode--square .ui-promocode__title {
  font-size: 17px;
}

.ui-promocode--square .ui-promocode__badge {
  font-size: 18px;
}

/* Wide variant */
.ui-promocode--wide {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 18px;
  align-items: center;
  padding: 22px;
}

.ui-promocode--wide .ui-promocode__wide-main {
  min-width: 0;
  color: var(--promo-text);
}

.ui-promocode--wide .ui-promocode__top {
  align-items: center;
}

.ui-promocode--wide .ui-promocode__title {
  font-size: 20px;
}

.ui-promocode--wide .ui-promocode__note {
  margin-top: 8px;
}

.ui-promocode--wide .ui-promocode__coupon {
  align-self: stretch;
}

/* Copy state */
.ui-promocode__copy.is-copied {
  border-color: var(--promo-success);
  background: var(--promo-success);
  color: #ffffff;
  box-shadow: 0 10px 24px color-mix(in srgb, var(--promo-success), transparent 80%);
}

.ui-promocode__copy.is-copied:hover {
  border-color: color-mix(in srgb, var(--promo-success), #111827 12%);
  background: color-mix(in srgb, var(--promo-success), #111827 12%);
}

/* Isolation from parent sections */
.ui-promocode h1,
.ui-promocode h2,
.ui-promocode h3,
.ui-promocode h4,
.ui-promocode h5,
.ui-promocode h6,
.ui-promocode p,
.ui-promocode span,
.ui-promocode strong,
.ui-promocode small,
.ui-promocode button {
  font-family: inherit;
}

.ui-promocode p {
  margin: 0;
  color: var(--promo-text);
  font-size: 13px;
  line-height: 1.55;
}

.ui-promocode strong {
  color: var(--promo-heading);
  font-weight: 650;
}

@media (max-width:991.98px) {
  .ui-promocode--wide {
    grid-template-columns: 1fr;
  }

}

@media (max-width:575.98px) {
  .ui-promocode {
    gap: 14px;
    padding: 16px;
    border-radius: 18px;
  }

  .ui-promocode::before {
    right: -62px;
    top: -62px;
  }

  .ui-promocode__top {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
  }

  .ui-promocode__mark {
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
    border-radius: 14px;
    font-size: 19px;
  }

  .ui-promocode__title {
    font-size: 16px;
  }

  .ui-promocode__coupon {
    grid-template-columns: 1fr;
  }

  .ui-promocode__copy {
    width: 100%;
  }

  .ui-promocode__copy--icon {
    width: 100%;
  }

  .ui-promocode__copy--icon::after {
    content: "Скопировать";
    margin-left: 8px;
  }

  .ui-promocode__badge {
    font-size: 18px;
  }

}

.ui-promocode p.ui-promocode__note,
.ui-promocode .ui-promocode__note {
  color: var(--promo-text);
}

.ui-promocode .ui-promocode__coupon-label {
  color: var(--promo-muted);
}

.ui-promocode .ui-promocode__title,
.ui-promocode .ui-promocode__badge,
.ui-promocode strong {
  color: var(--promo-heading);
}

/* Promocode UI end */

/* ========================================================================== */
/* Live search dropdown UI */
/* ========================================================================== */

/* ========================================================================== */
/* tps-live, live search dropdown container, close button, suggestion text, */
/* results columns grid, section titles, item list, item link hover states, */
/* item title truncation, item icon chip, footer "all results" button, mobile */
/* static dropdown positioning */
/* ========================================================================== */
.tps-live {
  position: relative;
}

.tps-live .tps-livebox {
  --tps-live-accent: var(--tps-accent, var(--accent-color, #7c3aed));
  --tps-live-contrast: var(--contrast-color, #ffffff);
  --tps-live-default: var(--default-color, #cbd5e1);
  --tps-live-bg: rgba(0, 0, 0, 0.58);
  --tps-live-border: rgba(255, 255, 255, 0.18);
  --tps-live-shadow: 0 14px 44px rgba(0, 0, 0, 0.28);
  --tps-live-text: color-mix(in srgb, var(--tps-live-contrast), transparent 12%);
  --tps-live-muted: color-mix(in srgb, var(--tps-live-default), transparent 20%);
  --tps-live-item-bg: rgba(255, 255, 255, 0.07);
  --tps-live-item-b: rgba(255, 255, 255, 0.10);
  --tps-live-item-bg-h: rgba(255, 255, 255, 0.10);
  --tps-live-item-b-h: color-mix(in srgb, var(--tps-live-accent), transparent 58%);
  --tps-live-radius: 14px;
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 10px);
  z-index: 50;
  background: var(--tps-live-bg);
  border: 1px solid var(--tps-live-border);
  border-radius: var(--tps-live-radius);
  backdrop-filter: blur(14px);
  box-shadow: var(--tps-live-shadow);
  padding: 10px;
  display: none;
}

.tps-live.is-open .tps-livebox {
  display: block;
}

.tps-live .tps-liveclose {
  position: absolute;
  top: -13px;
  right: -13px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--tps-live-contrast);
  cursor: pointer;
  padding: 0;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.16s ease, background-color 0.16s ease, border-color 0.16s ease;
}

.tps-live .tps-liveclose:hover {
  background: rgba(0, 0, 0, 0.72);
  border-color: color-mix(in srgb, var(--tps-live-accent), transparent 55%);
  transform: translateY(-1px);
}

.tps-live .tps-liveclose i {
  font-size: 13px;
  line-height: 0;
}

.tps-live .tps-livesuggest {
  margin: 0 0 8px 0;
  font-size: 12px;
  line-height: 1.25;
  color: var(--tps-live-muted);
}

.tps-live .tps-livesuggest strong {
  color: var(--tps-live-contrast);
  font-weight: 800;
}

.tps-live .tps-livegrid {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tps-live .tps-livecol {
  flex: 1 1 210px;
  min-width: 190px;
}

.tps-live .tps-livetitle {
  display: flex;
  align-items: center;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: color-mix(in srgb, var(--tps-live-contrast), transparent 30%);
  margin: 0 2px 6px 2px;
}

.tps-live .tps-livetitle i {
  margin-right: 8px;
  color: var(--tps-live-accent);
  font-size: 14px;
  line-height: 0;
}

.tps-live .tps-livelist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tps-live .tps-liveitem a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--tps-live-text);
  background: var(--tps-live-item-bg);
  border: 1px solid var(--tps-live-item-b);
  transition: transform 0.16s ease, background-color 0.16s ease, border-color 0.16s ease;
}

.tps-live .tps-liveitem a:hover {
  background: var(--tps-live-item-bg-h);
  border-color: var(--tps-live-item-b-h);
  transform: translateY(-1px);
}

.tps-live .tps-liveitem .tps-liveitem-title {
  flex: 1 1 auto;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.02px;
}

.tps-live .tps-liveitem .tps-liveitem-ico {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--tps-live-accent), transparent 84%);
  border: 1px solid color-mix(in srgb, var(--tps-live-accent), transparent 68%);
  color: var(--tps-live-contrast);
}

.tps-live .tps-liveitem .tps-liveitem-ico i {
  font-size: 13px;
  line-height: 0;
}

.tps-live .tps-livefoot {
  margin-top: 8px;
}

.tps-live .tps-liveall {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 10px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
  color: var(--tps-live-contrast);
  border: 1px solid color-mix(in srgb, var(--tps-live-accent), transparent 62%);
  background: color-mix(in srgb, var(--tps-live-accent), transparent 16%);
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}

.tps-live .tps-liveall:hover {
  background: color-mix(in srgb, var(--tps-live-accent), black 10%);
  transform: translateY(-1px);
}

@media (max-width:576px) {
  .tps-live .tps-livebox {
    position: static;
    top: auto;
    margin-top: 10px;
  }

  .tps-live .tps-liveclose {
    top: -12px;
    right: -12px;
  }

}

/* ========================================================================== */
/* END tps-live
/* ========================================================================== */

/* ========================================================================== */
/* Search minimum length hint UI */
/* ========================================================================== */

/* ========================================================================== */
/* tps-min3 (min length hint for search form)                                  */
/* ========================================================================== */
form.tps-min3 .tps-minhint {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 5;
  pointer-events: none;
}

form.tps-min3 .tps-minhint-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(0, 0, 0, .44);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .22);
}

form.tps-min3 .tps-minhint-text {
  color: rgba(255, 255, 255, .92);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .2px;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

form.tps-min3.tps-min3--hint .tps-minhint {
  display: block;
}

form.tps-min3.tps-min3--hint input[type="search"],
form.tps-min3.tps-min3--hint input[type="text"] {
  border-color: color-mix(in oklab, var(--tps-primary) 28%, rgba(255, 255, 255, .18));
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--tps-primary) 18%, transparent);
}

form.tps-min3 .search-btn.is-disabled,
form.tps-min3 button[type="submit"].is-disabled {
  opacity: .55;
  cursor: not-allowed;
  transform: none !important;
  filter: saturate(.85);
}

form.tps-min3[data-hint-place="bottom"] .tps-minhint,
form.tps-min3.tps-min3--bottom .tps-minhint {
  top: 100%;
  margin-top: 8px;
}

form.tps-min3[data-hint-place="top"] .tps-minhint,
form.tps-min3.tps-min3--top .tps-minhint {
  bottom: 100%;
  margin-bottom: 8px;
}

form.tps-min3:not([data-hint-place]) .tps-minhint {
  bottom: 100%;
  margin-bottom: 8px;
}

/* ========================================================================== */
/* END: tps-min3                                                              */
/* ========================================================================== */

/* ========================================================================== */
/* Copy toast UI */
/* ========================================================================== */

/* Copy toast UI start */
.tps-copy-toast,
.tps-copy-toast * {
  box-sizing: border-box;
}

.tps-copy-toast {
  --copy-toast-accent: var(--accent-color, #0078d4);
  --copy-toast-surface: #ffffff;
  --copy-toast-heading: var(--heading-color, #111827);
  --copy-toast-text: var(--default-color, #334155);
  --copy-toast-muted: color-mix(in srgb, var(--default-color, #334155), transparent 38%);
  --copy-toast-border: color-mix(in srgb, var(--default-color, #111827), transparent 88%);
  --copy-toast-border-accent: color-mix(in srgb, var(--accent-color, #0078d4), transparent 78%);
  --copy-toast-soft: color-mix(in srgb, var(--accent-color, #0078d4), transparent 93%);
  --copy-toast-shadow: 0 18px 46px color-mix(in srgb, #111827, transparent 84%);
  position: fixed;
  top: var(--tps-copy-toast-top, 92px);
  right: 22px;
  bottom: auto;
  z-index: 11000;
  width: min(420px, calc(100vw - 32px));
  overflow: hidden;
  border: 1px solid var(--copy-toast-border);
  border-radius: 22px;
  background: var(--copy-toast-surface);
  color: var(--copy-toast-text);
  font-family: var(--default-font, "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
  box-shadow: var(--copy-toast-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, -14px, 0) scale(0.98);
  pointer-events: none;
  transition: opacity 0.24s ease, visibility 0.24s ease, transform 0.24s ease;
}

.tps-copy-toast--visible {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0) scale(1);
  pointer-events: auto;
}

.tps-copy-toast::before {
  content: "";
  position: absolute;
  right: -42px;
  top: -46px;
  width: 138px;
  height: 138px;
  border: 1px solid color-mix(in srgb, var(--copy-toast-accent), transparent 84%);
  border-radius: 42px;
  background: color-mix(in srgb, var(--copy-toast-accent), transparent 96%);
  transform: rotate(14deg);
  pointer-events: none;
}

.tps-copy-toast-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 34px;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 16px 14px;
}

.tps-copy-toast-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--copy-toast-border-accent);
  border-radius: 16px;
  background: var(--copy-toast-soft);
  color: var(--copy-toast-accent);
  font-size: 20px;
  line-height: 1;
}

.tps-copy-toast-icon i {
  display: inline-flex;
  color: currentColor;
  font-size: inherit;
  line-height: 1;
}

.tps-copy-toast-content {
  min-width: 0;
  padding-top: 2px;
}

.tps-copy-toast-title {
  margin: 0;
  color: var(--copy-toast-heading);
  font-family: var(--heading-font, "Montserrat", system-ui, sans-serif);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.tps-copy-toast-text {
  margin-top: 5px;
  color: var(--copy-toast-muted);
  font-family: var(--default-font, "Manrope", system-ui, sans-serif);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
}

.tps-copy-toast-close {
  appearance: none;
  -webkit-appearance: none;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  margin: 0;
  padding: 0;
  border: 1px solid var(--copy-toast-border);
  border-radius: 12px;
  background: #ffffff;
  color: color-mix(in srgb, var(--copy-toast-text), transparent 28%);
  font-family: var(--nav-font, "Montserrat", system-ui, sans-serif);
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.tps-copy-toast-close:hover {
  border-color: var(--copy-toast-border-accent);
  background: var(--copy-toast-soft);
  color: var(--copy-toast-accent);
  transform: rotate(3deg);
}

.tps-copy-toast-close:focus {
  outline: 0;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--copy-toast-accent), transparent 86%);
}

.tps-copy-toast-progress {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 3px;
  overflow: hidden;
  background: color-mix(in srgb, var(--copy-toast-accent), transparent 92%);
}

.tps-copy-toast-progress-bar {
  width: 0;
  height: 100%;
  border-radius: 999px;
  background: var(--copy-toast-accent);
}

.tps-copy-toast--visible .tps-copy-toast-icon {
  animation: tpsCopyToastIconPulse 0.36s ease both;
}

@keyframes tpsCopyToastIconPulse {
  0% {
    transform: scale(0.88);
  }

  60% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }

}

@media (max-width:575.98px) {
  .tps-copy-toast {
    top: var(--tps-copy-toast-top-mobile, 76px);
    right: 12px;
    bottom: auto;
    width: calc(100vw - 24px);
    border-radius: 18px;
  }

  .tps-copy-toast::before {
    right: -64px;
    top: -64px;
  }

  .tps-copy-toast-inner {
    grid-template-columns: 42px minmax(0, 1fr) 32px;
    gap: 10px;
    padding: 14px;
  }

  .tps-copy-toast-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    font-size: 18px;
  }

  .tps-copy-toast-close {
    width: 32px;
    height: 32px;
    border-radius: 11px;
    font-size: 18px;
  }

  .tps-copy-toast-title {
    font-size: 14px;
  }

  .tps-copy-toast-text {
    font-size: 12px;
  }

}

/* Copy toast UI end */

/* ========================================================================== */
/* Cart modal layout UI */
/* ========================================================================== */

/* Cart modal start */
.cartx-modal,
.cartx-modal * {
  box-sizing: border-box;
}

.cartx-modal {
  --cartx-accent: var(--accent-color, #0078d4);
  --cartx-surface: #ffffff;
  --cartx-heading: var(--heading-color, #111827);
  --cartx-text: var(--default-color, #334155);
  --cartx-muted: color-mix(in srgb, var(--default-color, #334155), transparent 38%);
  --cartx-border: color-mix(in srgb, var(--default-color, #111827), transparent 88%);
  --cartx-border-strong: color-mix(in srgb, var(--default-color, #111827), transparent 82%);
  --cartx-border-accent: color-mix(in srgb, var(--accent-color, #0078d4), transparent 78%);
  --cartx-soft: color-mix(in srgb, var(--accent-color, #0078d4), transparent 93%);
  --cartx-soft-2: color-mix(in srgb, var(--accent-color, #0078d4), transparent 96%);
  --cartx-success: #198754;
  --cartx-success-soft: color-mix(in srgb, #198754, transparent 92%);
  --cartx-shadow: 0 24px 70px color-mix(in srgb, #111827, transparent 78%);
  --cartx-shadow-soft: 0 8px 24px color-mix(in srgb, #111827, transparent 95%);
  --cartx-radius-lg: 28px;
  --cartx-radius-md: 20px;
  color: var(--cartx-text);
  font-family: var(--default-font, "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
}

.cartx-modal .modal-backdrop,
.modal-backdrop.show {
  opacity: .54;
}

.cartx-modal__dialog {
  padding-right: 12px;
  padding-left: 12px;
}

.cartx-modal__content {
  position: relative;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, #111827, transparent 84%);
  border-radius: var(--cartx-radius-lg);
  background: var(--cartx-surface);
  color: var(--cartx-text);
  box-shadow: var(--cartx-shadow);
}

.cartx-modal__content::before {
  content: "";
  position: absolute;
  right: -52px;
  top: -56px;
  z-index: 0;
  width: 176px;
  height: 176px;
  border: 1px solid color-mix(in srgb, var(--cartx-accent), transparent 84%);
  border-radius: 52px;
  background: color-mix(in srgb, var(--cartx-accent), transparent 96%);
  transform: rotate(14deg);
  pointer-events: none;
}

.cartx-modal__header,
.cartx-modal__body,
.cartx-modal__footer {
  padding: 18px 22px 22px;
  border-top: 1px solid var(--cartx-border);
  background: #ffffff;
}

.cartx-modal__header {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--cartx-border);
  background: #ffffff;
}

.cartx-modal__title-wrap {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 14px;
}

.cartx-modal__title-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--cartx-border-accent);
  border-radius: 16px;
  background: var(--cartx-soft);
  color: var(--cartx-accent);
  font-size: 21px;
  line-height: 1;
}

.cartx-modal__title-icon i {
  display: inline-flex;
  color: currentColor;
  line-height: 1;
}

.cartx-modal__title {
  margin: 0;
  color: var(--cartx-heading);
  font-family: var(--heading-font, "Montserrat", system-ui, sans-serif);
  font-size: 22px;
  font-weight: 680;
  line-height: 1.18;
  letter-spacing: -0.022em;
}

.cartx-modal__subtitle {
  margin: 5px 0 0;
  color: var(--cartx-muted);
  font-size: 13px;
  line-height: 1.45;
}

.cartx-modal__close {
  position: relative;
  z-index: 4;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  margin: 0;
  padding: 0;
  border: 1px solid var(--cartx-border);
  border-radius: 14px;
  background-color: #ffffff;
  background-size: 12px;
  opacity: 1;
  box-shadow: none;
  transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.cartx-modal__close:hover {
  border-color: var(--cartx-border-accent);
  background-color: var(--cartx-soft);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--cartx-accent), transparent 88%);
  transform: rotate(3deg);
}

.cartx-modal__close:focus {
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--cartx-accent), transparent 86%);
}

.cartx-modal__body {
  padding: 22px;
  background: color-mix(in srgb, var(--background-color, #f8fafc), #ffffff 54%);
}

.cartx-modal__stack {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.cartx-status {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-width: 0;
  padding: 16px;
  border: 1px solid color-mix(in srgb, var(--cartx-success), transparent 78%);
  border-radius: var(--cartx-radius-md);
  background: #ffffff;
  box-shadow: var(--cartx-shadow-soft);
}

.cartx-status::before {
  content: "";
  position: absolute;
  right: -34px;
  top: -38px;
  width: 116px;
  height: 116px;
  border: 1px solid color-mix(in srgb, var(--cartx-success), transparent 84%);
  border-radius: 36px;
  background: color-mix(in srgb, var(--cartx-success), transparent 95%);
  transform: rotate(14deg);
  pointer-events: none;
}

.cartx-status__ico {
  position: relative;
  z-index: 1;
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--cartx-success), transparent 72%);
  border-radius: 17px;
  background: var(--cartx-success-soft);
  color: var(--cartx-success);
  font-size: 23px;
  line-height: 1;
}

.cartx-status__ico i {
  display: inline-flex;
  color: currentColor;
  line-height: 1;
}

.cartx-status__body {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.cartx-status__title {
  margin: 0;
  color: var(--cartx-heading);
  font-family: var(--heading-font, "Montserrat", system-ui, sans-serif);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.25;
}

.cartx-status__text {
  margin: 5px 0 0;
  color: var(--cartx-muted);
  font-size: 13px;
  line-height: 1.45;
}

.cartx-modal__section {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--cartx-border);
  border-radius: var(--cartx-radius-md);
  background: #ffffff;
  box-shadow: var(--cartx-shadow-soft);
}

.cartx-modal__section--promo {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.cartx-modal__section--promo .ui-promocode {
  box-shadow: var(--cartx-shadow-soft);
}

.cartx-modal__section #msCart {
  min-width: 0;
}

.cartx-modal__section #msCart .text-center,
.cartx-modal__section #msCart .text-muted {
  color: var(--cartx-muted) !important;
  font-size: 14px;
}

.cartx-modal__footer {
  padding: 18px 22px 22px;
  border-top: 1px solid var(--cartx-border);
  background: #ffffff;
}

.cartx-modal__footer-grid {
  width: 100%;
  min-width: 0;
  display: grid;
  gap: 14px;
}

.cartx-modal__footer-promo {
  width: 100%;
  min-width: 0;
}

.cartx-modal__footer-promo .ui-promocode {
  width: 100%;
  box-shadow: var(--cartx-shadow-soft);
}

.cartx-modal__actions {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(170px, 0.72fr) minmax(260px, 1.28fr);
  gap: 12px;
  align-items: stretch;
}

.cartx-modal__btn {
  width: 100%;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 18px;
  border-radius: 17px;
  font-family: var(--nav-font, "Montserrat", system-ui, sans-serif);
  font-size: 14px;
  font-weight: 560;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: border-color .22s ease, background-color .22s ease, color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.cartx-modal__footer .cartx-modal__actions {
  min-width: 0;
}

.cartx-modal__footer .cartx-modal__btn {
  box-sizing: border-box;
}

.cartx-modal__btn i {
  display: inline-flex;
  color: currentColor;
  line-height: 1;
  transition: transform .22s ease;
}

.cartx-modal__btn--ghost {
  border: 1px solid var(--cartx-border-strong);
  background: #ffffff;
  color: var(--cartx-heading);
}

.cartx-modal__btn--ghost:hover {
  border-color: var(--cartx-border-accent);
  background: var(--cartx-soft);
  color: var(--cartx-accent);
  transform: translateY(-1px);
}

.cartx-modal__btn--primary {
  border: 1px solid var(--cartx-accent);
  background: var(--cartx-accent);
  color: #ffffff;
  box-shadow: 0 12px 28px color-mix(in srgb, var(--cartx-accent), transparent 82%);
}

.cartx-modal__btn--primary:hover {
  border-color: color-mix(in srgb, var(--cartx-accent), #111827 12%);
  background: color-mix(in srgb, var(--cartx-accent), #111827 12%);
  color: #ffffff;
  box-shadow: 0 16px 34px color-mix(in srgb, var(--cartx-accent), transparent 78%);
  transform: translateY(-1px);
}

.cartx-modal__btn--primary:hover i {
  transform: translateX(2px);
}

.cartx-modal__btn:focus {
  outline: 0;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--cartx-accent), transparent 86%);
}

@media (max-width:767.98px) {
  .cartx-modal__dialog {
    margin: 10px auto;
  }

  .cartx-modal__content {
    border-radius: 22px;
  }

  .cartx-modal__header {
    min-height: 78px;
    align-items: flex-start;
    padding: 18px;
  }

  .cartx-modal__title-icon {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    border-radius: 14px;
    font-size: 19px;
  }

  .cartx-modal__title {
    font-size: 19px;
  }

  .cartx-modal__subtitle {
    font-size: 12px;
  }

  .cartx-modal__close {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    border-radius: 13px;
  }

  .cartx-modal__body {
    padding: 16px;
  }

  .cartx-modal__section {
    padding: 14px;
    border-radius: 18px;
  }

  .cartx-modal__section--promo {
    padding: 0;
  }

  .cartx-modal__footer {
    padding: 16px;
  }

}

@media (max-width:767.98px) {
  .cartx-modal__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .cartx-modal__btn {
    width: 100%;
    min-width: 100%;
    min-height: 54px;
    flex: 0 0 auto;
  }

  .cartx-modal__btn--primary {
    order: 1;
  }

  .cartx-modal__btn--ghost {
    order: 2;
  }

}

@media (max-width:575.98px) {
  .cartx-status {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
    border-radius: 18px;
  }

  .cartx-status__ico {
    width: 44px;
    height: 44px;
    border-radius: 15px;
    font-size: 20px;
  }

}

/* Cart modal end */

/* ========================================================================== */
/* Cart modal products UI */
/* ========================================================================== */

/* Cart modal products start */
.cartx-cart-block,
.cartx-cart-block * {
  box-sizing: border-box;
}

.cartx-cart-block {
  --cartx-product-accent: var(--accent-color, #0078d4);
  --cartx-product-surface: #ffffff;
  --cartx-product-heading: var(--heading-color, #111827);
  --cartx-product-text: var(--default-color, #334155);
  --cartx-product-muted: color-mix(in srgb, var(--default-color, #334155), transparent 38%);
  --cartx-product-border: color-mix(in srgb, var(--default-color, #111827), transparent 88%);
  --cartx-product-border-strong: color-mix(in srgb, var(--default-color, #111827), transparent 82%);
  --cartx-product-border-accent: color-mix(in srgb, var(--accent-color, #0078d4), transparent 78%);
  --cartx-product-soft: color-mix(in srgb, var(--accent-color, #0078d4), transparent 93%);
  --cartx-product-soft-2: color-mix(in srgb, var(--accent-color, #0078d4), transparent 96%);
  --cartx-product-danger: #dc3545;
  --cartx-product-danger-soft: color-mix(in srgb, #dc3545, transparent 93%);
  --cartx-product-warning: #f59e0b;
  --cartx-product-shadow: 0 8px 24px color-mix(in srgb, #111827, transparent 95%);
  --cartx-product-shadow-hover: 0 12px 30px color-mix(in srgb, #111827, transparent 92%);
  width: 100%;
  min-width: 0;
  color: var(--cartx-product-text);
  font-family: var(--default-font, "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
}

.cartx-cart-box {
  width: 100%;
  min-width: 0;
}

.cartx-cart-items {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.cartx-cart-item {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) minmax(136px, auto) minmax(180px, auto);
  gap: 14px;
  align-items: center;
  padding: 14px;
  overflow: hidden;
  border: 1px solid var(--cartx-product-border);
  border-radius: 20px;
  background: var(--cartx-product-surface);
  color: var(--cartx-product-text);
  box-shadow: var(--cartx-product-shadow);
  transition: border-color 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease, transform 0.24s ease;
}

.cartx-cart-item:hover {
  border-color: color-mix(in srgb, var(--cartx-product-accent), transparent 68%);
  background: color-mix(in srgb, var(--cartx-product-accent), transparent 98%);
  box-shadow: var(--cartx-product-shadow-hover);
  transform: translateY(-1px);
}

.cartx-cart-item::before {
  content: "";
  position: absolute;
  right: -42px;
  top: -46px;
  width: 126px;
  height: 126px;
  border: 1px solid color-mix(in srgb, var(--cartx-product-accent), transparent 88%);
  border-radius: 40px;
  background: color-mix(in srgb, var(--cartx-product-accent), transparent 97%);
  transform: rotate(14deg);
  pointer-events: none;
}

.cartx-cart-item > * {
  position: relative;
  z-index: 1;
}

.cartx-cart-media {
  width: 92px;
  height: 92px;
  min-width: 92px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border: 1px solid var(--cartx-product-border);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, color-mix(in srgb, var(--cartx-product-accent), transparent 97%) 100%);
}

.cartx-cart-media a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  text-decoration: none;
}

.cartx-cart-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  transition: transform 0.24s ease;
}

.cartx-cart-item:hover .cartx-cart-media img {
  transform: scale(1.04);
}

.cartx-cart-main {
  min-width: 0;
  display: grid;
  gap: 8px;
}

.cartx-cart-name {
  min-width: 0;
  color: var(--cartx-product-heading);
  font-family: var(--heading-font, "Montserrat", system-ui, sans-serif);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.28;
  letter-spacing: -0.012em;
}

.cartx-cart-name a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.cartx-cart-name a:hover {
  color: var(--cartx-product-accent);
}

.cartx-cart-main-price {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
}

.cartx-cart-main-price__current {
  color: var(--cartx-product-accent);
  font-family: var(--heading-font, "Montserrat", system-ui, sans-serif);
  font-size: 15px;
  font-weight: 680;
  line-height: 1;
}

.cartx-cart-main-price__old {
  color: color-mix(in srgb, var(--cartx-product-text), transparent 55%);
  font-size: 13px;
  line-height: 1;
  text-decoration: line-through;
}

.cartx-cart-main-price__discount {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 5px 8px;
  border: 1px solid color-mix(in srgb, var(--cartx-product-danger), transparent 78%);
  border-radius: 999px;
  background: var(--cartx-product-danger-soft);
  color: var(--cartx-product-danger);
  font-family: var(--nav-font, "Montserrat", system-ui, sans-serif);
  font-size: 11px;
  font-weight: 650;
  line-height: 1;
}

.cartx-cart-subtitle {
  width: fit-content;
  max-width: 100%;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 9px;
  border: 1px solid var(--cartx-product-border);
  border-radius: 999px;
  background: var(--cartx-product-soft-2);
  color: var(--cartx-product-muted);
  font-size: 12px;
  line-height: 1.2;
}

.cartx-cart-subtitle i {
  color: var(--cartx-product-accent);
  font-size: 13px;
}

.cartx-cart-qty-col {
  min-width: 0;
  display: flex;
  justify-content: center;
}

.cartx-cart-qty-form {
  margin: 0;
}

.cartx-cart-qty {
  display: grid;
  grid-template-columns: 34px 54px 34px;
  gap: 6px;
  align-items: center;
  padding: 5px;
  border: 1px solid var(--cartx-product-border);
  border-radius: 999px;
  background: color-mix(in srgb, var(--background-color, #f8fafc), #ffffff 54%);
}

.cartx-cart-qty__btn {
  appearance: none;
  -webkit-appearance: none;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  border: 1px solid var(--cartx-product-border);
  border-radius: 999px;
  background: #ffffff;
  color: var(--cartx-product-accent);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.cartx-cart-qty__btn i {
  display: inline-flex;
  color: currentColor;
  line-height: 1;
}

.cartx-cart-qty__btn:hover {
  border-color: var(--cartx-product-accent);
  background: var(--cartx-product-accent);
  color: #ffffff;
  transform: translateY(-1px);
}

.cartx-cart-qty__btn:focus {
  outline: 0;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--cartx-product-accent), transparent 86%);
}

.cartx-cart-qty__input {
  width: 54px;
  height: 34px;
  margin: 0;
  padding: 0 4px;
  border: 0;
  background: transparent;
  color: var(--cartx-product-heading);
  font-family: var(--heading-font, "Montserrat", system-ui, sans-serif);
  font-size: 14px;
  font-weight: 650;
  line-height: 1;
  text-align: center;
  outline: 0;
  -moz-appearance: textfield;
}

.cartx-cart-qty__input::-webkit-outer-spin-button,.cartx-cart-qty__input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.cartx-cart-actions {
  min-width: 0;
  display: grid;
  gap: 10px;
  justify-items: end;
}

.cartx-cart-prices {
  min-width: 170px;
  display: grid;
  gap: 7px;
  padding: 10px;
  border: 1px solid var(--cartx-product-border);
  border-radius: 16px;
  background: color-mix(in srgb, var(--background-color, #f8fafc), #ffffff 54%);
}

.cartx-cart-price-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: var(--cartx-product-muted);
  font-size: 12px;
  line-height: 1;
}

.cartx-cart-price-line strong,
.cartx-cart-price-line span:last-child {
  color: var(--cartx-product-heading);
  font-family: var(--heading-font, "Montserrat", system-ui, sans-serif);
  font-size: 13px;
  font-weight: 620;
}

.cartx-cart-price-line--sum {
  padding-top: 7px;
  border-top: 1px solid var(--cartx-product-border);
}

.cartx-cart-price-line--sum strong,
.cartx-cart-price-line--sum .ms2_cost {
  color: var(--cartx-product-accent);
  font-size: 14px;
  font-weight: 700;
}

.cartx-cart-remove-form {
  margin: 0;
}

.cartx-cart-remove {
  appearance: none;
  -webkit-appearance: none;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 0;
  padding: 8px 11px;
  border: 1px solid color-mix(in srgb, var(--cartx-product-danger), transparent 78%);
  border-radius: 12px;
  background: var(--cartx-product-danger-soft);
  color: var(--cartx-product-danger);
  font-family: var(--nav-font, "Montserrat", system-ui, sans-serif);
  font-size: 12px;
  font-weight: 560;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.cartx-cart-remove i {
  display: inline-flex;
  color: currentColor;
  font-size: 13px;
  line-height: 1;
}

.cartx-cart-remove:hover {
  border-color: var(--cartx-product-danger);
  background: var(--cartx-product-danger);
  color: #ffffff;
  transform: translateY(-1px);
}

.cartx-cart-remove:focus {
  outline: 0;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--cartx-product-danger), transparent 86%);
}

.cartx-cart-empty {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 18px;
  border: 1px solid color-mix(in srgb, var(--cartx-product-warning), transparent 74%);
  border-radius: 20px;
  background: color-mix(in srgb, var(--cartx-product-warning), transparent 93%);
  color: var(--cartx-product-text);
}

.cartx-cart-empty__icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--cartx-product-warning), transparent 70%);
  border-radius: 17px;
  background: #ffffff;
  color: var(--cartx-product-warning);
  font-size: 22px;
}

.cartx-cart-empty strong {
  display: block;
  color: var(--cartx-product-heading);
  font-family: var(--heading-font, "Montserrat", system-ui, sans-serif);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.25;
}

.cartx-cart-empty span:not(.cartx-cart-empty__icon) {
  display: block;
  margin-top: 5px;
  color: var(--cartx-product-muted);
  font-size: 13px;
  line-height: 1.45;
}

@media (max-width:1199.98px) {
  .cartx-cart-item {
    grid-template-columns: 86px minmax(0, 1fr) minmax(120px, auto);
  }

  .cartx-cart-actions {
    grid-column: 2 / -1;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    justify-items: stretch;
  }

  .cartx-cart-prices {
    min-width: 0;
  }

  .cartx-cart-remove-form {
    justify-self: end;
  }

}

@media (max-width:767.98px) {
  .cartx-cart-items {
    gap: 10px;
  }

  .cartx-cart-item {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
    border-radius: 18px;
  }

  .cartx-cart-media {
    width: 76px;
    height: 76px;
    min-width: 76px;
    padding: 10px;
    border-radius: 16px;
  }

  .cartx-cart-qty-col,
  .cartx-cart-actions {
    grid-column: 1 / -1;
  }

  .cartx-cart-qty-col {
    justify-content: flex-start;
  }

  .cartx-cart-actions {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  .cartx-cart-remove-form {
    justify-self: stretch;
  }

  .cartx-cart-remove {
    width: 100%;
  }

}

@media (max-width:575.98px) {
  .cartx-cart-item {
    grid-template-columns: 1fr;
  }

  .cartx-cart-media {
    width: 100%;
    height: 112px;
  }

  .cartx-cart-media a {
    max-width: 120px;
  }

  .cartx-cart-qty-col {
    justify-content: stretch;
  }

  .cartx-cart-qty {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    width: 100%;
  }

  .cartx-cart-qty__btn {
    width: 38px;
    height: 38px;
  }

  .cartx-cart-qty__input {
    width: 100%;
    height: 38px;
  }

  .cartx-cart-empty {
    grid-template-columns: 1fr;
  }

}

/* Cart modal products end */

/* ========================================================================== */
/* Product page UI components */
/* ========================================================================== */

/* Product rating chip start */
.productx-rating-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  max-width: 100%;
  min-width: 0;
  color: color-mix(in srgb, var(--default-color), transparent 28%);
  line-height: 1;
}

.productx-rating-chip__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: #d79a00;
  font-size: 15px;
  line-height: 1;
}

.productx-rating-chip__value {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

.productx-rating-chip__divider {
  display: inline-block;
  flex: 0 0 auto;
  width: 1px;
  height: 13px;
  margin: 0 2px;
  background: color-mix(in srgb, var(--default-color), transparent 82%);
}

.productx-rating-chip__count {
  overflow: hidden;
  color: color-mix(in srgb, var(--default-color), transparent 38%);
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width:575.98px) {
  .productx-rating-chip {
    gap: 6px;
  }

  .productx-rating-chip__icon {
    font-size: 14px;
  }

  .productx-rating-chip__value {
    font-size: 13px;
  }

  .productx-rating-chip__divider {
    height: 12px;
    margin: 0 1px;
  }

  .productx-rating-chip__count {
    font-size: 12px;
  }

}

/* Product rating chip end */
/* Product info note start */
.productx-note {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: flex-start;
  width: 100%;
  padding: 14px;
  border-radius: 16px;
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
  color: var(--heading-color);
}

.productx-note__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 13px;
  background: var(--surface-color);
  color: var(--accent-color);
  font-size: 17px;
  line-height: 1;
}

.productx-note__body {
  min-width: 0;
  display: grid;
  gap: 4px;
  padding-top: 1px;
}

.productx-note__title {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.productx-note__desc {
  color: color-mix(in srgb, var(--default-color), transparent 34%);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
}

@media (max-width:575.98px) {
  .productx-note {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
    padding: 12px;
    border-radius: 14px;
  }

  .productx-note__icon {
    width: 34px;
    height: 34px;
    border-radius: 11px;
    font-size: 15px;
  }

  .productx-note__title {
    font-size: 13px;
  }

  .productx-note__desc {
    font-size: 12px;
  }

}

/* Product info note end */
/* Product version switch start */
.productx-version-switch {
  display: grid;
  gap: 10px;
  width: 100%;
}

.productx-version-switch__head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.productx-version-switch__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.productx-version-switch__eyebrow i {
  font-size: 13px;
  line-height: 1;
}

.productx-version-switch__body {
  min-width: 0;
}

.productx-version-tile {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px;
  gap: 8px;
  align-items: center;
  min-height: 42px;
  height: 100%;
  padding: 8px 9px 8px 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 13px;
  background: color-mix(in srgb, var(--background-color), var(--surface-color) 56%);
  color: color-mix(in srgb, var(--default-color), transparent 26%);
  text-decoration: none;
  transition: border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.productx-version-tile:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--default-color), transparent 95%);
}

.productx-version-tile.is-active {
  border-color: color-mix(in srgb, var(--accent-color), transparent 58%);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  box-shadow: none;
}

.productx-version-tile__title {
  min-width: 0;
  overflow: hidden;
  color: inherit;
  font-family: var(--nav-font);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.productx-version-tile__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: var(--surface-color);
  color: var(--accent-color);
  font-size: 14px;
  line-height: 1;
}

.productx-version-tile.is-active .productx-version-tile__icon {
  background: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width:575.98px) {
  .productx-version-switch {
    gap: 9px;
  }

  .productx-version-switch__eyebrow {
    min-height: 26px;
    padding: 5px 9px;
    font-size: 11px;
  }

  .productx-version-tile {
    min-height: 40px;
    grid-template-columns: minmax(0, 1fr) 26px;
    padding: 8px 8px 8px 10px;
    border-radius: 12px;
  }

  .productx-version-tile__title {
    font-size: 12px;
  }

  .productx-version-tile__icon {
    width: 26px;
    height: 26px;
    border-radius: 9px;
    font-size: 13px;
  }

}

/* Product version switch end */
.msocp2-root,
.msocp2-root * {
  box-sizing: border-box;
}

.msocp2-form {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding: 14px;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 22px;
  background: radial-gradient(circle at 100% 0%, color-mix(in srgb, var(--tps-accent, var(--accent-color, #0078d4)) 7%, transparent) 0%, transparent 38%), linear-gradient(180deg, #ffffff 0%, color-mix(in srgb, var(--tps-accent, var(--accent-color, #0078d4)) 1.5%, #ffffff) 100%);
  box-shadow: 0 10px 24px rgba(15, 23, 42, .035);
}

.msocp2-form__head {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.msocp2-form__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  min-height: 24px;
  padding: 0 9px;
  border: 1px solid color-mix(in srgb, var(--tps-accent, var(--accent-color, #0078d4)) 16%, rgba(15, 23, 42, .08));
  border-radius: 999px;
  background: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 9px;
  font-weight: 650;
  line-height: 1;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--tps-accent, var(--accent-color, #0078d4)) 82%, #0f172a);
}

.msocp2-form__title {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 520;
  line-height: 1.15;
  color: #162435;
}

.msocp2-form__text {
  font-family: "Manrope", sans-serif;
  font-size: 12.5px;
  font-weight: 340;
  line-height: 1.48;
  color: #5f7187;
}

.msocp2-form__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.msocp2-field {
  display: block;
  min-width: 0;
}

.msocp2-field__label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 7px;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #162435;
}

.msocp2-field__input {
  width: 100%;
  min-height: 46px;
  padding: 0 13px;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 14px;
  background: #ffffff;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 360;
  color: #162435;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.msocp2-field__input:focus {
  outline: none;
  border-color: color-mix(in srgb, var(--tps-accent, var(--accent-color, #0078d4)) 24%, rgba(15, 23, 42, .08));
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--tps-accent, var(--accent-color, #0078d4)) 10%, transparent);
}

.msocp2-submit {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid rgba(45, 143, 87, .24);
  border-radius: 16px;
  background: linear-gradient(135deg, #49ba79 0%, #319760 55%, #26784c 100%);
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 650;
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(45, 143, 87, .20);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.msocp2-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(45, 143, 87, .28);
  filter: saturate(1.04);
}

.msocp2-submit__icon,
.msocp2-submit__arrow {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, .14);
}

.msocp2-submit__text {
  min-width: 0;
}

.msocp2-submit__arrow {
  margin-left: auto;
}

.msocp2-inline-error {
  margin-top: 9px;
  padding: 9px 11px;
  border: 1px solid #f1c7cd;
  border-radius: 12px;
  background: #fff5f5;
  font-family: "Manrope", sans-serif;
  font-size: 12.5px;
  line-height: 1.45;
  color: #842029;
}

.msocp2-debug {
  display: block;
  margin-top: 10px;
  padding: 12px;
  border: 1px solid #0d6efd;
  border-radius: 12px;
  background: #f8fbff;
  white-space: pre-wrap;
  font-size: 12px;
  line-height: 1.45;
  color: #0f172a;
}

.msocp2-modal .modal-dialog {
  max-width: 860px;
}

.msocp2-modal__content {
  border: 1px solid rgba(15, 23, 42, .10);
  border-radius: 24px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 18px 54px rgba(15, 23, 42, .18), 0 0 0 1px color-mix(in srgb, var(--tps-accent, var(--accent-color, #0078d4)) 8%, transparent);
  overflow: hidden;
}

.msocp2-modal__header {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(15, 23, 42, .07);
}

.msocp2-modal__head {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.msocp2-modal__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  min-height: 24px;
  padding: 0 9px;
  border: 1px solid color-mix(in srgb, var(--tps-accent, var(--accent-color, #0078d4)) 16%, rgba(15, 23, 42, .08));
  border-radius: 999px;
  background: color-mix(in srgb, var(--tps-accent, var(--accent-color, #0078d4)) 5%, #ffffff);
  font-family: "Montserrat", sans-serif;
  font-size: 9px;
  font-weight: 650;
  line-height: 1;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--tps-accent, var(--accent-color, #0078d4)) 82%, #0f172a);
}

.msocp2-modal__title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 520;
  line-height: 1.15;
  color: #162435;
}

.msocp2-modal__body {
  padding: 16px;
}

.msocp2-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.msocp2-box {
  padding: 14px;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .03);
}

.msocp2-product {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.msocp2-product__thumb {
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 14px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--tps-accent, var(--accent-color, #0078d4)) 4%, #ffffff) 0%, #ffffff 100%);
}

.msocp2-product__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.msocp2-thumb-empty {
  font-size: 20px;
  color: color-mix(in srgb, var(--tps-accent, var(--accent-color, #0078d4)) 76%, #0f172a);
}

.msocp2-product__main {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.msocp2-product__label,
.msocp2-total__label,
.msocp2-email__label,
.msocp2-created__label {
  font-family: "Montserrat", sans-serif;
  font-size: 9px;
  font-weight: 650;
  line-height: 1;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #7b8ca1;
}

.msocp2-product__title {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.18;
  color: #162435;
}

.msocp2-product__chips,
.msocp2-product__chips > div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.msocp2-chip {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  border: 1px solid color-mix(in srgb, var(--tps-accent, var(--accent-color, #0078d4)) 18%, rgba(15, 23, 42, .08));
  border-radius: 999px;
  background: color-mix(in srgb, var(--tps-accent, var(--accent-color, #0078d4)) 5%, #ffffff);
  font-family: "Montserrat", sans-serif;
  font-size: 9px;
  font-weight: 650;
  color: color-mix(in srgb, var(--tps-accent, var(--accent-color, #0078d4)) 82%, #0f172a);
}

.msocp2-product__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.msocp2-price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.msocp2-price__current {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 560;
  line-height: 1;
  color: #162435;
}

.msocp2-price__old {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  color: #7b8ca1;
  text-decoration: line-through;
}

.msocp2-price__discount {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: #e9f8ef;
  font-family: "Montserrat", sans-serif;
  font-size: 9px;
  font-weight: 700;
  color: #18794e;
}

.msocp2-product__controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.msocp2-qty {
  display: inline-grid;
  grid-template-columns: 30px 44px 30px;
  align-items: center;
  min-height: 34px;
  padding: 3px;
  width: max-content;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff 0%, color-mix(in srgb, var(--tps-accent, var(--accent-color, #0078d4)) 1.5%, #ffffff) 100%);
}

.msocp2-qty__btn {
  width: 30px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  background: color-mix(in srgb, var(--tps-accent, var(--accent-color, #0078d4)) 6%, #ffffff);
  font-size: 13px;
  color: #162435;
  cursor: pointer;
  transition: transform .18s ease, background-color .18s ease;
}

.msocp2-qty__btn:hover {
  transform: scale(1.06);
  background: color-mix(in srgb, var(--tps-accent, var(--accent-color, #0078d4)) 10%, #ffffff);
}

.msocp2-qty__input {
  width: 44px;
  border: 0;
  background: transparent;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 650;
  color: #162435;
  appearance: textfield;
  -moz-appearance: textfield;
}

.msocp2-qty__input::-webkit-outer-spin-button,.msocp2-qty__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.msocp2-total {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}

.msocp2-total__value {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 560;
  line-height: 1;
  color: #162435;
}

.msocp2-email {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border-radius: 999px;
}

.msocp2-email__value {
  min-width: 0;
  font-family: "Manrope", sans-serif;
  font-size: 12.5px;
  font-weight: 360;
  color: #162435;
  word-break: break-word;
}

.msocp2-box__head {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 12px;
}

.msocp2-box__title {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 520;
  line-height: 1.18;
  color: #162435;
}

.msocp2-box__text {
  font-family: "Manrope", sans-serif;
  font-size: 12.5px;
  font-weight: 340;
  line-height: 1.45;
  color: #5f7187;
}

.msocp2-payments__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.msocp2-payment {
  width: 100%;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 28px;
  gap: 10px;
  align-items: center;
  padding: 11px;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 16px;
  background: #ffffff;
  text-align: left;
  cursor: pointer;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background-color .22s ease;
}

.msocp2-payment:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--tps-accent, var(--accent-color, #0078d4)) 24%, rgba(15, 23, 42, .08));
  box-shadow: 0 10px 24px rgba(15, 23, 42, .05), 0 0 0 3px color-mix(in srgb, var(--tps-accent, var(--accent-color, #0078d4)) 11%, transparent), 0 8px 18px color-mix(in srgb, var(--tps-accent, var(--accent-color, #0078d4)) 10%, transparent);
  background: linear-gradient(180deg, color-mix(in srgb, var(--tps-accent, var(--accent-color, #0078d4)) 6%, #ffffff) 0%, #ffffff 100%);
}

.msocp2-payment__icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--tps-accent, var(--accent-color, #0078d4)) 15%, rgba(15, 23, 42, .08));
  border-radius: 14px;
  background: color-mix(in srgb, var(--tps-accent, var(--accent-color, #0078d4)) 4%, #ffffff);
  color: color-mix(in srgb, var(--tps-accent, var(--accent-color, #0078d4)) 76%, #0f172a);
  transition: transform .22s ease, box-shadow .22s ease;
}

.msocp2-payment:hover .msocp2-payment__icon {
  transform: scale(1.03);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--tps-accent, var(--accent-color, #0078d4)) 10%, transparent);
}

.msocp2-payment__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 7px;
  display: block;
}

.msocp2-payment__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.msocp2-payment__title {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.18;
  color: #162435;
}

.msocp2-payment__text {
  font-family: "Manrope", sans-serif;
  font-size: 11.5px;
  font-weight: 340;
  line-height: 1.42;
  color: #5f7187;
}

.msocp2-payment__arrow {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: color-mix(in srgb, var(--tps-accent, var(--accent-color, #0078d4)) 5%, #ffffff);
  color: color-mix(in srgb, var(--tps-accent, var(--accent-color, #0078d4)) 76%, #0f172a);
  transition: transform .22s ease;
}

.msocp2-payment:hover .msocp2-payment__arrow {
  transform: translateX(3px);
}

.msocp2-created__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.msocp2-created__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 13px;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, color-mix(in srgb, var(--tps-accent, var(--accent-color, #0078d4)) 2%, #ffffff) 100%);
}

.msocp2-created__item--total {
  grid-column: 1 / -1;
}

.msocp2-created__value {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 520;
  color: #162435;
  word-break: break-word;
}

.msocp2-created__payment {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
}

.msocp2-created__icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 13px;
  background: color-mix(in srgb, var(--tps-accent, var(--accent-color, #0078d4)) 4%, #ffffff);
}

.msocp2-created__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 7px;
  display: block;
}

.msocp2-created__sum {
  font-family: "Montserrat", sans-serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
  color: #162435;
}

.msocp2-final {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 12px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--tps-accent, var(--accent-color, #0078d4)) 4%, #ffffff) 0%, #ffffff 100%);
}

.msocp2-final__icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: #ffffff;
  color: color-mix(in srgb, var(--tps-accent, var(--accent-color, #0078d4)) 78%, #0f172a);
  box-shadow: 0 10px 20px rgba(15, 23, 42, .04);
}

.msocp2-final__body {
  min-width: 0;
}

.msocp2-final__title {
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  font-weight: 540;
  line-height: 1.18;
  color: #162435;
}

.msocp2-final__text {
  margin-top: 6px;
  font-family: "Manrope", sans-serif;
  font-size: 12.5px;
  font-weight: 340;
  line-height: 1.5;
  color: #5f7187;
}

.msocp2-final__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.msocp2-btn {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 13px;
  border-radius: 13px;
  border: 1px solid rgba(15, 23, 42, .08);
  background: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 650;
  color: #162435;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.msocp2-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(15, 23, 42, .05);
}

.msocp2-btn--accent {
  border-color: rgba(45, 143, 87, .24);
  background: linear-gradient(135deg, #49ba79 0%, #319760 100%);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(45, 143, 87, .18);
}

.msocp2-empty {
  padding: 13px;
  border: 1px dashed rgba(15, 23, 42, .16);
  border-radius: 16px;
  background: rgba(15, 23, 42, .02);
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  color: #5f7187;
}

@media (max-width:767.98px) {
  .msocp2-modal__body {
    padding: 12px;
  }

  .msocp2-product {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .msocp2-product__thumb {
    width: 56px;
    height: 56px;
    border-radius: 13px;
  }

  .msocp2-product__title {
    font-size: 15px;
  }

  .msocp2-product__controls {
    width: 100%;
    justify-content: space-between;
    margin-left: 0;
  }

  .msocp2-created__grid {
    grid-template-columns: 1fr;
  }

  .msocp2-final {
    grid-template-columns: 1fr;
  }

  .msocp2-final__actions {
    flex-direction: column;
  }

  .msocp2-btn {
    width: 100%;
  }

}

/* Product options start */
.productx-options {
  display: grid;
  gap: 14px;
  width: 100%;
  margin-bottom: 20px;
}

.productx-options__group {
  min-width: 0;
}

.productx-options__head {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.productx-options__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.productx-options__eyebrow i {
  font-size: 13px;
  line-height: 1;
}

.productx-option {
  display: block;
  height: 100%;
  margin: 0;
  cursor: pointer;
}

.productx-option__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.productx-option__card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 9px;
  min-height: 72px;
  height: 100%;
  padding: 11px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 14px;
  background: color-mix(in srgb, var(--background-color), var(--surface-color) 56%);
  color: color-mix(in srgb, var(--default-color), transparent 24%);
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.productx-option:hover .productx-option__card {
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--default-color), transparent 95%);
}

.productx-option__input:checked + .productx-option__card {
  border-color: color-mix(in srgb, var(--accent-color), transparent 54%);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
}

.productx-option__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px;
  gap: 8px;
  align-items: center;
}

.productx-option__name {
  min-width: 0;
  overflow: hidden;
  color: inherit;
  font-family: var(--nav-font);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.productx-option__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 9px;
  background: var(--surface-color);
  color: color-mix(in srgb, var(--default-color), transparent 48%);
  font-size: 13px;
  line-height: 1;
}

.productx-option__input:checked + .productx-option__card .productx-option__check {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.productx-option__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-width: 0;
}

.productx-option__price {
  min-width: 0;
  overflow: hidden;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.productx-option__save {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: 22px;
  padding: 0 7px;
  border-radius: 999px;
  background: color-mix(in srgb, #198754, transparent 88%);
  color: #198754;
  font-family: var(--nav-font);
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
}

.productx-option__save.is-off,
.productx-option__save:empty {
  display: none;
}

@media (max-width:575.98px) {
  .productx-options {
    gap: 12px;
  }

  .productx-options__head {
    margin-bottom: 8px;
  }

  .productx-options__eyebrow {
    min-height: 26px;
    padding: 5px 9px;
    font-size: 11px;
  }

  .productx-option__card {
    min-height: 68px;
    padding: 10px;
    border-radius: 13px;
  }

  .productx-option__name {
    font-size: 12px;
  }

  .productx-option__price {
    font-size: 13px;
  }

  .productx-option__save {
    min-height: 20px;
    padding: 0 6px;
    font-size: 10px;
  }

}

/* Product options end */
/* Product review form start */
.productx-review-form,
.productx-review-form * {
  box-sizing: border-box;
}

.productx-review-form .ec-form {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 16px;
  width: 100%;
  margin: 0;
  padding: 20px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 22px;
  background: radial-gradient(circle at 100% 0%, color-mix(in srgb, var(--accent-color), transparent 92%) 0%, transparent 38%), linear-gradient(180deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  box-shadow: 0 12px 28px color-mix(in srgb, var(--default-color), transparent 95%);
}

.productx-review-form .ec-form.well {
  min-height: 0;
  border-color: color-mix(in srgb, var(--default-color), transparent 88%);
  background-color: transparent;
}

.productx-review-form .ec-form__row {
  display: grid;
  gap: 8px;
  min-width: 0;
  margin: 0;
}

.productx-review-form .ec-antispam {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.productx-review-form .control-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0;
  color: var(--heading-color);
  font-family: var(--nav-font);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.25;
}

.productx-review-form .form-control,
.productx-review-form input[type="text"],
.productx-review-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 14px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 14px;
  background: var(--surface-color);
  color: var(--heading-color);
  font-family: var(--default-font);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
  box-shadow: none;
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.productx-review-form textarea.form-control {
  min-height: 128px;
  resize: vertical;
}

.productx-review-form .form-control::placeholder,.productx-review-form input[type="text"]::placeholder,.productx-review-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 56%);
}

.productx-review-form .form-control:focus,.productx-review-form input[type="text"]:focus,.productx-review-form textarea:focus {
  outline: none;
  border-color: color-mix(in srgb, var(--accent-color), transparent 58%);
  background: var(--surface-color);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.productx-review-form .ec-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 14px;
  background: color-mix(in srgb, var(--background-color), var(--surface-color) 56%);
}

.productx-review-form .ec-rating-stars {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex: 0 0 auto;
  color: #d79a00;
  line-height: 1;
}

.productx-review-form .ec-rating-stars span {
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.productx-review-form .ec-rating-stars span:hover {
  transform: translateY(-1px) scale(1.06);
}

.productx-review-form .ec-rating-description {
  min-width: 0;
  color: color-mix(in srgb, var(--default-color), transparent 38%);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.35;
}

.productx-review-form input[type="file"] {
  width: 100%;
  padding: 11px;
  border: 1px dashed color-mix(in srgb, var(--default-color), transparent 82%);
  border-radius: 14px;
  background: color-mix(in srgb, var(--background-color), var(--surface-color) 56%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-family: var(--default-font);
  font-size: 13px;
  line-height: 1.35;
  cursor: pointer;
}

.productx-review-form input[type="file"]::file-selector-button {
  min-height: 34px;
  margin-right: 12px;
  padding: 7px 12px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 72%);
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
  color: var(--accent-color);
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.productx-review-form input[type="file"]::file-selector-button:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 52%);
  background: var(--accent-color);
  color: var(--contrast-color);
}

.productx-review-form .checkbox {
  display: block;
  padding: 0;
}

.productx-review-form .checkbox label {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  cursor: pointer;
}

.productx-review-form input[type="checkbox"] {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: var(--accent-color);
  cursor: pointer;
}

.productx-review-form .ec-error,
.productx-review-form .help-block {
  display: block;
  min-height: 0;
  margin: 0;
  color: #dc2626;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
}

.productx-review-form .ec-error:empty,.productx-review-form .help-block:empty {
  display: none;
}

.productx-review-form .has-error .form-control,
.productx-review-form .has-error input[type="text"],
.productx-review-form .has-error textarea {
  border-color: color-mix(in srgb, #dc2626, transparent 48%);
  box-shadow: 0 0 0 4px color-mix(in srgb, #dc2626, transparent 91%);
}

.productx-review-form .btn,
.productx-review-form .btn-primary,
.productx-review-form input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 46px;
  padding: 12px 22px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 46%);
  border-radius: 999px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--nav-font);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 12px 24px color-mix(in srgb, var(--accent-color), transparent 82%);
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, border-color 0.22s ease;
}

.productx-review-form .btn:hover,.productx-review-form .btn-primary:hover,.productx-review-form input[type="submit"]:hover {
  transform: translateY(-1px);
  border-color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), #000 8%);
  color: var(--contrast-color);
  box-shadow: 0 16px 30px color-mix(in srgb, var(--accent-color), transparent 76%);
}

.productx-review-form .btn:focus,.productx-review-form .btn-primary:focus,.productx-review-form input[type="submit"]:focus {
  outline: none;
  box-shadow: 0 12px 24px color-mix(in srgb, var(--accent-color), transparent 82%), 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 88%);
}

.productx-review-form + [id$="-success"],
.productx-review-form [id$="-success"] {
  margin-top: 14px;
  color: #198754;
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width:575.98px) {
  .productx-review-form .ec-form {
    gap: 14px;
    padding: 16px;
    border-radius: 18px;
  }

  .productx-review-form .control-label {
    font-size: 12px;
  }

  .productx-review-form .form-control,
  .productx-review-form input[type="text"],
  .productx-review-form textarea {
    min-height: 44px;
    padding: 10px 12px;
    border-radius: 13px;
    font-size: 13px;
  }

  .productx-review-form textarea.form-control {
    min-height: 116px;
  }

  .productx-review-form .ec-rating {
    gap: 10px;
    min-height: 44px;
    padding: 10px;
    border-radius: 13px;
  }

  .productx-review-form .ec-rating-description {
    font-size: 12px;
  }

  .productx-review-form input[type="file"] {
    padding: 10px;
    border-radius: 13px;
    font-size: 12px;
  }

  .productx-review-form .checkbox label {
    font-size: 12px;
  }

  .productx-review-form .btn,
  .productx-review-form .btn-primary,
  .productx-review-form input[type="submit"] {
    width: 100%;
    min-height: 44px;
    padding: 11px 18px;
    font-size: 12px;
  }

}

/* Product review form end */
/* Product reviews entries start */
.productx-review-entry {
  position: relative;
}

.productx-review-entry + .productx-review-entry {
  margin-top: 18px;
}

.productx-review-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.productx-review-avatar span {
  display: inline-block;
  transform: translateY(-1px);
  color: inherit;
  font-size: 0;
  font-weight: inherit;
  line-height: 1;
  text-transform: uppercase;
}

.productx-review-avatar span::first-letter {
  color: inherit;
  font-family: inherit;
  font-size: 18px;
  font-weight: inherit;
  line-height: 1;
  text-transform: uppercase;
}

.productx-review-avatar--1 {
  background: #eaf4ff;
  color: #2563eb;
}

.productx-review-avatar--2 {
  background: #ecfdf3;
  color: #16803c;
}

.productx-review-avatar--3 {
  background: #fff7ed;
  color: #c25a12;
}

.productx-review-avatar--4 {
  background: #f3e8ff;
  color: #7e22ce;
}

.productx-review-avatar--5 {
  background: #fef2f2;
  color: #dc2626;
}

.productx-review-avatar--6 {
  background: #eef2ff;
  color: #4f46e5;
}

.productx-review-avatar--7 {
  background: #f0fdfa;
  color: #0f766e;
}

.productx-review-avatar--8 {
  background: #fdf2f8;
  color: #be185d;
}

.productx-review-avatar--admin {
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
}

.productx-review-entry .entry-top {
  display: flex;
  align-items: center;
  gap: 13px;
}

.productx-review-entry .entry-meta {
  min-width: 0;
}

.productx-review-entry .entry-meta strong {
  display: block;
  margin-bottom: 5px;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
}

.productx-review-entry .meta-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.productx-review-stars-wrap {
  display: inline-flex;
  align-items: center;
  flex: 0 0 104px;
  width: 104px;
  height: 16px;
  overflow: hidden;
  color: #d79a00;
  line-height: 1;
}

.productx-review-stars {
  flex: 0 0 auto;
  margin: 0;
  transform: scale(0.72);
  transform-origin: left center;
}

.productx-review-entry .entry-date {
  display: inline-flex;
  flex: 0 0 auto;
  margin-left: 0;
  color: color-mix(in srgb, var(--default-color), transparent 42%);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.35;
  white-space: nowrap;
}

.productx-review-entry > p {
  margin: 16px 0 0;
  color: color-mix(in srgb, var(--default-color), transparent 28%);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
}

.productx-review-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.productx-review-thumb {
  display: block;
  width: 132px;
  overflow: hidden;
  border-radius: 16px;
  background: color-mix(in srgb, var(--default-color), transparent 94%);
  text-decoration: none;
}

.productx-review-thumb__ratio {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 75%;
  overflow: hidden;
}

.productx-review-thumb__ratio img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.productx-review-thumb:hover img {
  transform: scale(1.04);
}

.productx-review-entry .entry-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin-top: 16px;
}

.productx-review-entry .ec-message__votes,
.productx-review-entry .ec-message__votes-item {
  display: inline-flex;
  margin: 0;
  padding: 0;
  opacity: 1 !important;
  filter: none !important;
}

.productx-review-entry .action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 999px;
  background: color-mix(in srgb, var(--background-color), var(--surface-color) 56%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  opacity: 1 !important;
  filter: none !important;
  white-space: nowrap;
  word-spacing: 0;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
  transition: border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.productx-review-entry .action-btn:hover,.productx-review-entry .action-btn.active {
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
  color: var(--accent-color);
  opacity: 1 !important;
  filter: none !important;
}

.productx-review-helpful {
  min-width: 112px;
  gap: 6px;
  opacity: 1 !important;
  filter: none !important;
  color: color-mix(in srgb, var(--default-color), transparent 30%) !important;
  word-spacing: -0.32em;
}

.productx-review-helpful i {
  order: -1;
  flex: 0 0 auto;
  font-size: 13px;
  line-height: 1;
  word-spacing: normal;
}

.productx-review-helpful:hover,.productx-review-helpful.active {
  color: var(--accent-color) !important;
}

.productx-review-helpful::before {
  content: "Полезно\00a0(";
  word-spacing: normal;
}

.productx-review-helpful::after {
  content: ")";
  word-spacing: normal;
}

.productx-review-helpful.ec-message__votes-button-like::before {
  display: inline !important;
  content: "Полезно\00a0(" !important;
  word-spacing: normal;
}

.productx-review-helpful.ec-message__votes-button-like::after {
  display: inline !important;
  content: ")" !important;
  word-spacing: normal;
}

.productx-review-helpful.enabled,
.productx-review-helpful.disabled,
.productx-review-helpful[disabled],
.productx-review-helpful:not(.enabled),.productx-review-helpful.ec-message__votes-button,.productx-review-helpful.ec-message__votes-button-like {
  opacity: 1 !important;
  filter: none !important;
}

.productx-review-reply {
  margin-top: 16px;
  padding: 16px;
  border-radius: 18px;
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
}

.productx-review-reply p {
  margin-top: 12px;
}

@media (max-width:575.98px) {
  .productx-review-entry + .productx-review-entry {
    margin-top: 14px;
  }

  .productx-review-avatar {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }

  .productx-review-avatar span::first-letter {
    font-size: 16px;
  }

  .productx-review-entry .entry-top {
    gap: 11px;
  }

  .productx-review-entry .meta-line {
    gap: 12px;
  }

  .productx-review-stars-wrap {
    flex-basis: 96px;
    width: 96px;
  }

  .productx-review-stars {
    transform: scale(0.67);
  }

  .productx-review-entry .entry-date {
    font-size: 12px;
  }

  .productx-review-entry > p {
    margin-top: 14px;
    font-size: 13px;
  }

  .productx-review-thumb {
    width: 108px;
    border-radius: 14px;
  }

  .productx-review-entry .action-btn {
    min-height: 32px;
    padding: 7px 10px;
    font-size: 11px;
  }

  .productx-review-helpful {
    min-width: 104px;
  }

  .productx-review-reply {
    padding: 14px;
    border-radius: 16px;
  }

}

/* Product reviews entries end */
/* Product reviews list start */
.productx-reviews-list {
  min-width: 0;
}

.productx-reviews-list__rows {
  display: grid;
  gap: 18px;
}

.productx-reviews-list__rows .review-entry.is-hidden {
  display: none !important;
}

.productx-reviews-list__rows .productx-review-entry + .productx-review-entry {
  margin-top: 0;
}

.productx-reviews-list__more {
  display: flex;
  justify-content: center;
  margin-top: 22px;
  padding: 0;
}

.productx-reviews-list__more.is-hidden {
  display: none !important;
}

.productx-reviews-list__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 42px;
  padding: 10px 20px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
  color: var(--accent-color);
  font-family: var(--nav-font);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  box-shadow: none;
  transition: border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.productx-reviews-list__btn i {
  font-size: 18px;
  line-height: 1;
}

.productx-reviews-list__btn:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 52%);
  background: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width:575.98px) {
  .productx-reviews-list__rows {
    gap: 14px;
  }

  .productx-reviews-list__more {
    margin-top: 18px;
  }

  .productx-reviews-list__btn {
    width: 100%;
    min-height: 40px;
    font-size: 12px;
  }

}

/* Product reviews list end */
/* Product page ShopWise adaptation start */
.productx-page {
  background: var(--background-color);
}

.productx-section {
  overflow: visible;
}

.productx-image-showcase {
  position: sticky;
  top: 92px;
}

.productx-image-showcase img {
  max-width: 100%;
  height: auto;
}

.productx-detail-card .product-heading {
  margin-bottom: 14px;
}

.productx-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
}

.productx-flag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.productx-flag--popular {
  background: color-mix(in srgb, #d79a00, transparent 90%);
  color: color-mix(in srgb, #d79a00, #000 18%);
}

.productx-flag--new {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
}

.productx-flag--favorite {
  background: color-mix(in srgb, #198754, transparent 90%);
  color: #198754;
}

.productx-order-form {
  margin: 0;
}

.productx-quick-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  min-height: 48px;
  margin-top: 12px;
  border-radius: 999px;
  font-family: var(--nav-font);
  font-size: 15px;
  font-weight: 500;
}

.productx-info-lead {
  margin-bottom: 20px;
}

.productx-info-lead p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 15px;
  line-height: 1.7;
}

.productx-info-tabs .tps-license-card {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  align-items: flex-start;
  height: 100%;
  padding: 18px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 84%);
  border-radius: 18px;
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
}

.productx-info-tabs .tps-license-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 78%);
  border-radius: 16px;
  background: var(--surface-color);
  color: var(--accent-color);
  font-size: 21px;
}

.productx-info-tabs .tps-license-card__body {
  min-width: 0;
  display: grid;
  gap: 12px;
}

.productx-info-tabs .tps-license-card__top {
  min-width: 0;
}

.productx-info-tabs .tps-license-card__label {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin-bottom: 8px;
  padding: 0 9px;
  border-radius: 999px;
  background: var(--surface-color);
  color: color-mix(in srgb, var(--default-color), transparent 34%);
  font-family: var(--nav-font);
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
}

.productx-info-tabs .tps-license-card__title {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
}

.productx-info-tabs .tps-license-card__format {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 84%);
  border-radius: 14px;
  background: var(--surface-color);
}

.productx-info-tabs .tps-license-card__format-name {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-family: var(--nav-font);
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.productx-info-tabs .tps-license-card__format-value {
  min-width: 0;
  color: color-mix(in srgb, var(--default-color), transparent 22%);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
  word-break: break-word;
}

@media (max-width:575.98px) {
  .productx-info-tabs .tps-license-card {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    padding: 15px;
  }

  .productx-info-tabs .tps-license-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    font-size: 18px;
  }

  .productx-info-tabs .tps-license-card__title {
    font-size: 16px;
  }

}

.productx-order-options {
  display: grid;
  gap: 18px;
  margin-bottom: 20px;
}

.productx-picker {
  margin: 0;
}

.productx-picker-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.productx-info-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  padding: 6px 10px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 999px;
  background: var(--surface-color);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
}

.productx-variant-tile,
.productx-bind-tile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 42px;
  height: 100%;
  padding: 9px 11px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 13px;
  background: var(--surface-color);
  color: color-mix(in srgb, var(--default-color), transparent 22%);
  font-family: var(--nav-font);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.25;
  text-decoration: none;
  transition: border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.productx-variant-tile span,
.productx-bind-tile span {
  min-width: 0;
}

.productx-variant-tile span:first-child,.productx-bind-tile strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.productx-bind-tile {
  min-height: 62px;
}

.productx-bind-tile > span {
  display: grid;
  gap: 4px;
}

.productx-bind-tile small {
  color: color-mix(in srgb, var(--default-color), transparent 42%);
  font-size: 12px;
  font-weight: 400;
}

.productx-variant-tile i,
.productx-bind-tile i {
  flex: 0 0 auto;
  color: var(--accent-color);
}

.productx-variant-tile:hover,.productx-variant-tile.is-active,.productx-bind-tile:hover,.productx-bind-tile.is-active {
  border-color: color-mix(in srgb, var(--accent-color), transparent 66%);
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
  color: var(--accent-color);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--default-color), transparent 95%);
}

/* Product tabs navigation fix start */
.productx-info-tabs {
  overflow: visible;
}

.productx-info-tabs .tab-nav {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  max-width: 100%;
  padding-bottom: 2px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.productx-info-tabs .tab-nav::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.productx-info-tabs .tab-nav > li {
  flex: 0 0 auto;
  min-width: 0;
  margin: 0;
  padding: 0;
}

.productx-info-tabs .tab-nav .nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  overflow: visible;
  white-space: nowrap;
}

.productx-reviews-section__content {
  min-width: 0;
}

@media (max-width:575.98px) {
  .productx-info-tabs .tab-nav {
    gap: 6px;
  }

  .productx-info-tabs .tab-nav .nav-link {
    min-height: 40px;
  }

}

/* Product tabs navigation fix end */
.productx-typo {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 15px;
  line-height: 1.7;
}

.productx-typo > *:first-child {
  margin-top: 0;
}

.productx-typo > *:last-child {
  margin-bottom: 0;
}

.productx-sku {
  margin-bottom: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 36%);
  font-size: 14px;
}

.productx-activation-box {
  height: 100%;
  padding: 18px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 82%);
  border-radius: 18px;
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
}

.productx-activation-head {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}

.productx-activation-head > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: var(--surface-color);
  color: var(--accent-color);
  font-size: 20px;
}

.productx-activation-head small {
  display: block;
  margin-bottom: 4px;
  color: color-mix(in srgb, var(--default-color), transparent 42%);
  font-size: 12px;
}

.productx-activation-head h3 {
  margin: 0;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 600;
}

.productx-review-gallery {
  margin-bottom: 24px;
  padding: 18px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 18px;
  background: var(--surface-color);
}

.productx-review-gallery h3 {
  margin: 0 0 14px;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 20px;
  font-weight: 600;
}

@media (min-width:768px) {
  .productx-section {
    padding-bottom: 108px;
  }

}

.productx-sticky-shell {
  --productx-sticky-bottom: 18px;
  --productx-sticky-safe: env(safe-area-inset-bottom, 0px);
  position: sticky;
  right: 0;
  bottom: calc(var(--productx-sticky-bottom) + var(--productx-sticky-safe));
  left: 0;
  z-index: 1025;
  margin-top: 0;
  padding-bottom: 18px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.24s ease, visibility 0.24s ease, transform 0.24s ease;
}

.productx-sticky-shell.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.productx-sticky-shell__container {
  display: flex;
  justify-content: center;
}

.productx-stickybar {
  width: min(920px, 100%);
  margin: 0;
  padding: 10px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 9px;
  background: color-mix(in srgb, var(--surface-color), transparent 2%);
  box-shadow: 0 1px 3px color-mix(in srgb, #000, transparent 95%);
  pointer-events: auto;
  backdrop-filter: blur(14px);
}

.productx-stickybar__inner {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto auto;
  gap: 14px;
  align-items: center;
}

.productx-stickybar__media,
.productx-stickybar__media-ph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 86%);
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
  color: var(--accent-color);
}

.productx-stickybar__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.productx-stickybar__main {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.productx-stickybar__title {
  overflow: hidden;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.productx-stickybar__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  max-width: 100%;
  min-height: 28px;
  padding: 6px 10px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 82%);
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
  color: var(--accent-color);
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.productx-stickybar__badge i {
  flex: 0 0 auto;
  color: currentColor;
  font-size: 13px;
  line-height: 1;
}

.productx-stickybar__badge span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.productx-stickybar__prices {
  min-width: 112px;
  display: grid;
  gap: 5px;
  justify-items: flex-end;
  text-align: right;
}

.productx-stickybar__price-current {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.productx-stickybar__price-old-wrap {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
}

.productx-stickybar__price-old {
  color: color-mix(in srgb, var(--default-color), transparent 48%);
  font-size: 12px;
  line-height: 1;
  text-decoration: line-through;
  white-space: nowrap;
}

.productx-stickybar__discount {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 4px 7px;
  border-radius: 999px;
  background: color-mix(in srgb, #dc3545, transparent 91%);
  color: #dc3545;
  font-family: var(--nav-font);
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.productx-stickybar__cta {
  min-width: 0;
}

.productx-stickybar__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 18px;
  border: 0;
  border-radius: 8px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--nav-font);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  box-shadow: 0 10px 22px color-mix(in srgb, var(--accent-color), transparent 78%);
}

.productx-stickybar__btn:hover {
  background: color-mix(in srgb, var(--accent-color), #000 8%);
  color: var(--contrast-color);
}

@media (max-width:767.98px) {
  .productx-sticky-shell {
    position: fixed;
    --productx-sticky-bottom: 0px;
    margin: 0;
    padding-bottom: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
  }

  .productx-sticky-shell__container {
    display: block;
    padding-right: 0;
    padding-left: 0;
  }

  .productx-stickybar {
    width: 100%;
    padding: 8px 10px calc(8px + var(--productx-sticky-safe));
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 18px 18px 0 0;
    background: var(--surface-color);
    box-shadow: 0 -10px 28px color-mix(in srgb, var(--default-color), transparent 90%);
    backdrop-filter: blur(12px);
  }

  .productx-stickybar__inner {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    gap: 4px 9px;
    align-items: center;
  }

  .productx-stickybar__media,
  .productx-stickybar__media-ph {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .productx-stickybar__main {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    gap: 0;
    align-self: end;
  }

  .productx-stickybar__title {
    font-size: 12px;
    line-height: 1.25;
  }

  .productx-stickybar__badge {
    display: none;
  }

  .productx-stickybar__prices {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    min-width: 0;
    gap: 3px;
    justify-items: flex-start;
    align-self: start;
    text-align: left;
  }

  .productx-stickybar__price-current {
    font-size: 16px;
  }

  .productx-stickybar__price-old-wrap {
    justify-content: flex-start;
  }

  .productx-stickybar__price-old,
  .productx-stickybar__discount {
    font-size: 10px;
  }

  .productx-stickybar__cta {
    grid-column: 3 / 4;
    grid-row: 1 / 3;
    align-self: center;
  }

  .productx-stickybar__btn {
    min-height: 38px;
    padding: 9px 12px;
    font-size: 12px;
    box-shadow: none;
  }

}

@media (max-width:390px) {
  .productx-stickybar__inner {
    grid-template-columns: 42px minmax(0, 1fr) 38px;
    gap: 4px 8px;
  }

  .productx-stickybar__media,
  .productx-stickybar__media-ph {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  .productx-stickybar__btn span {
    display: none;
  }

  .productx-stickybar__btn {
    width: 38px;
    min-width: 38px;
    min-height: 38px;
    padding-right: 0;
    padding-left: 0;
  }

}

.ms-cta--hidden {
  display: none !important;
}

@media (max-width:991.98px) {
  .productx-image-showcase {
    position: static;
  }

}

@media (max-width:767.98px) {
  .productx-picker-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .productx-info-btn {
    width: 100%;
    justify-content: center;
  }

}

/* Product reviews below info-tabs start */
.productx-reviews-info-tabs {
  margin-top: 24px;
}

.productx-reviews-info-tabs .tab-content {
  min-width: 0;
}

.productx-reviews-info-tabs .tab-pane {
  display: block;
  opacity: 1;
}

.productx-info-tabs .tab-nav {
  overflow-x: auto;
  overflow-y: hidden;
}

.productx-info-tabs .tab-nav .nav-link {
  overflow: visible;
}

@media (max-width:575.98px) {
  .productx-reviews-info-tabs {
    margin-top: 18px;
  }

}

/* Product reviews below info-tabs end */
/* Product page ShopWise adaptation end */

/* ========================================================================== */
/* Download hub page UI */
/* ========================================================================== */

.download-hub-page > .container-fluid > .section,
.download-hub-page > .container-xl > .section,
.download-hub-page > .container-fluid.container-xl > .section {
  padding-top: 24px;
  padding-bottom: 24px;
}

.download-hub-page > .container-fluid > .section:first-child,.download-hub-page > .container-xl > .section:first-child,.download-hub-page > .container-fluid.container-xl > .section:first-child {
  padding-top: 8px;
}

.download-hub-page > .container-fluid > .section:last-child,.download-hub-page > .container-xl > .section:last-child,.download-hub-page > .container-fluid.container-xl > .section:last-child {
  padding-bottom: 32px;
}

.download-hub-page {
  position: relative;
  overflow: hidden;
  background: var(--background-color);
}

.download-hub-page::before {
  content: "";
  position: absolute;
  top: 6%;
  right: -180px;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 88%), transparent 68%);
  pointer-events: none;
}

.download-hub-page::after {
  content: "";
  position: absolute;
  left: -220px;
  bottom: 18%;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 93%), transparent 70%);
  pointer-events: none;
}

.download-hub-page > .container-fluid {
  position: relative;
  z-index: 2;
}

.download-hub-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 12px;
  padding: 6px 12px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent-color), transparent 91%);
  color: var(--accent-color);
  font-family: var(--nav-font);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
}

.download-hub-badge--light {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: color-mix(in srgb, var(--accent-color), white 28%);
}

.download-hub-btn {
  min-height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 16px;
  border-radius: 13px;
  font-family: var(--nav-font);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: border-color 0.22s ease, background-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.download-hub-btn:hover {
  transform: translateY(-1px);
}

.download-hub-btn--primary {
  border: 1px solid var(--accent-color);
  background: var(--accent-color);
  color: #ffffff;
  box-shadow: 0 10px 24px color-mix(in srgb, var(--accent-color), transparent 82%);
}

.download-hub-btn--primary:hover {
  border-color: color-mix(in srgb, var(--accent-color), black 12%);
  background: color-mix(in srgb, var(--accent-color), black 12%);
  color: #ffffff;
}

.download-hub-btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.download-hub-btn--ghost:hover {
  border-color: color-mix(in srgb, var(--accent-color), white 18%);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.download-hub-hero {
  position: relative;
}

.download-hub-hero__shell {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid color-mix(in srgb, #0f172a, transparent 35%);
  border-radius: 34px;
  background: radial-gradient(circle at 78% 20%, color-mix(in srgb, var(--accent-color), transparent 74%), transparent 30%), #0f172a;
}

.download-hub-hero__decor {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--download-hub-decor-color);
  pointer-events: none;
}

.download-hub-hero__decor i {
  display: inline-flex;
  color: currentColor;
  font-size: var(--download-hub-decor-icon);
  line-height: 1;
  transform: rotate(var(--download-hub-decor-icon-rotate));
}

.download-hub-hero__decor--one {
  --download-hub-decor-color: rgba(255, 255, 255, 0.09);
  --download-hub-decor-icon: 82px;
  --download-hub-decor-icon-rotate: -18deg;
  left: -80px;
  bottom: -100px;
  width: 300px;
  height: 300px;
  border: 1px solid var(--download-hub-decor-color);
  border-radius: 70px;
  transform: rotate(18deg);
}

.download-hub-hero__decor--two {
  --download-hub-decor-color: rgba(255, 255, 255, 0.14);
  --download-hub-decor-icon: 34px;
  --download-hub-decor-icon-rotate: -12deg;
  right: 36px;
  top: 34px;
  width: 110px;
  height: 110px;
  border: 1px solid var(--download-hub-decor-color);
  border-radius: 34px;
  transform: rotate(12deg);
}

.download-hub-hero__content {
  position: relative;
  z-index: 3;
  max-width: 820px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.download-hub-hero__content h1 {
  max-width: 840px;
  margin: 0;
  color: #ffffff;
  font-family: var(--heading-font);
  font-size: clamp(38px, 4.8vw, 68px);
  font-weight: 740;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.download-hub-hero__content p {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.72;
}

.download-hub-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.download-hub-search,
.download-hub-nav,
.download-hub-category,
.download-hub-activate,
.download-hub-info,
.download-hub-guide {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  background: var(--surface-color);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--default-color), transparent 95%);
}

.download-hub-search {
  position: relative;
  z-index: 3;
  overflow: hidden;
  height: 100%;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  border-color: rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.09);
  color: #ffffff;
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px color-mix(in srgb, #0f172a, transparent 62%);
}

.download-hub-search::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 34%), rgba(255, 255, 255, 0.02);
  pointer-events: none;
}

.download-hub-search__spark {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--download-hub-spark-color);
  border: 1px solid var(--download-hub-spark-color);
  pointer-events: none;
}

.download-hub-search__spark i {
  display: inline-flex;
  color: currentColor;
  font-size: var(--download-hub-spark-icon);
  line-height: 1;
  transform: rotate(var(--download-hub-spark-icon-rotate));
}

.download-hub-search__spark--one {
  --download-hub-spark-color: rgba(255, 255, 255, 0.16);
  --download-hub-spark-icon: 28px;
  --download-hub-spark-icon-rotate: -12deg;
  right: 22px;
  top: 22px;
  width: 82px;
  height: 82px;
  border-radius: 24px;
  transform: rotate(12deg);
}

.download-hub-search__spark--two {
  --download-hub-spark-color: rgba(255, 255, 255, 0.1);
  --download-hub-spark-icon: 24px;
  --download-hub-spark-icon-rotate: 0deg;
  left: 22px;
  top: 104px;
  width: 70px;
  height: 70px;
  border-radius: 999px;
}

.download-hub-search__head,
.download-hub-search__form,
.download-hub-search__tags {
  position: relative;
  z-index: 3;
}

.download-hub-search__head {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.download-hub-search__head > span {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: color-mix(in srgb, var(--accent-color), white 24%);
  font-size: 21px;
}

.download-hub-search__head strong {
  display: block;
  margin-bottom: 4px;
  color: #ffffff;
  font-family: var(--heading-font);
  font-size: 19px;
  font-weight: 650;
  line-height: 1.25;
}

.download-hub-search__head small {
  display: block;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  line-height: 1.4;
}

.download-hub-search__form {
  min-width: 0;
}

.download-hub-search__form > * {
  width: 100%;
}

.download-hub-search__form input {
  min-height: 46px;
  border-radius: 14px;
}

.download-hub-search__form button,
.download-hub-search__form .btn {
  min-height: 42px;
  border-radius: 14px;
  font-weight: 500;
}

.download-hub-search__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.download-hub-search__tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.download-hub-guide {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(410px, 1.18fr);
  gap: 28px;
  align-items: center;
  padding: 28px;
  border-radius: 30px;
  background: #ffffff;
}

.download-hub-guide::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 22px;
  width: 78px;
  height: 78px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 82%);
  border-radius: 24px;
  transform: rotate(12deg);
  opacity: 0.5;
  pointer-events: none;
}

.download-hub-guide__intro {
  position: relative;
  z-index: 2;
}

.download-hub-guide__intro h2,
.download-hub-section-head h2 {
  margin: 0;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 690;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.download-hub-guide__intro h2 {
  max-width: 720px;
  font-size: clamp(28px, 3.3vw, 46px);
}

.download-hub-guide__intro p,
.download-hub-section-head p {
  max-width: 700px;
  margin: 15px 0 0;
  color: color-mix(in srgb, var(--default-color), transparent 32%);
  font-size: 15px;
  line-height: 1.72;
}

.download-hub-guide__steps {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
}

.download-hub-guide-step {
  position: relative;
  overflow: visible;
  min-height: 112px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 20px;
  background: linear-gradient(135deg, #ffffff 0%, color-mix(in srgb, var(--accent-color), transparent 97%) 100%);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--default-color), transparent 96%);
}

.download-hub-guide-step:nth-child(2) {
  margin-left: 42px;
}

.download-hub-guide-step::before {
  content: "";
  position: absolute;
  left: 29px;
  top: 76px;
  bottom: -28px;
  width: 1px;
  background: color-mix(in srgb, var(--accent-color), transparent 78%);
}

.download-hub-guide-step:last-child::before {
  display: none;
}

.download-hub-guide-step__num {
  position: relative;
  z-index: 3;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 78%);
  border-radius: 18px;
  background: color-mix(in srgb, var(--accent-color), transparent 91%);
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-size: 17px;
  font-weight: 740;
  line-height: 1;
  box-shadow: 0 10px 24px color-mix(in srgb, var(--accent-color), transparent 88%);
}

.download-hub-guide-step__spark {
  position: absolute;
  left: 48px;
  top: 52px;
  z-index: 4;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 72%);
  border-radius: 9px;
  background: #ffffff;
  color: color-mix(in srgb, var(--accent-color), transparent 16%);
  transform: rotate(12deg);
  pointer-events: none;
  box-shadow: 0 8px 18px color-mix(in srgb, var(--accent-color), transparent 88%);
}

.download-hub-guide-step__spark i {
  display: inline-flex;
  color: currentColor;
  font-size: 14px;
  line-height: 1;
  transform: rotate(-12deg);
}

.download-hub-guide-step > div {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.download-hub-guide-step strong {
  display: block;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.2;
}

.download-hub-guide-step span:last-child {
  display: block;
  margin-top: 7px;
  color: color-mix(in srgb, var(--default-color), transparent 38%);
  font-size: 14px;
  line-height: 1.55;
}

.download-hub-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
  gap: 10px;
  padding: 14px;
  border-radius: 22px;
}

.download-hub-nav__item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 16px;
  background: color-mix(in srgb, var(--background-color), var(--surface-color) 56%);
  color: color-mix(in srgb, var(--default-color), transparent 26%);
  font-family: var(--nav-font);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  line-height: 1.25;
  transition: border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.download-hub-nav__item i {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: var(--surface-color);
  color: var(--accent-color);
  font-size: 14px;
}

.download-hub-nav__item span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.download-hub-nav__item:hover,.download-hub-nav__item.is-active {
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
  color: var(--accent-color);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--default-color), transparent 95%);
  transform: translateY(-1px);
}

.download-hub-section-head {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}

.download-hub-section-head h2 {
  font-size: clamp(30px, 3.4vw, 48px);
}

.download-hub-category {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 16px;
  align-items: flex-start;
  height: 100%;
  min-height: 170px;
  padding: 20px;
  border-radius: 24px;
  color: inherit;
  text-decoration: none;
  background: #ffffff;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.download-hub-category::before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  top: 0;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: color-mix(in srgb, var(--accent-color), transparent 72%);
  opacity: 0.75;
  pointer-events: none;
}

.download-hub-category::after {
  content: "";
  position: absolute;
  right: -52px;
  bottom: -58px;
  width: 154px;
  height: 154px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.download-hub-category:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 66%);
  background: #ffffff;
  box-shadow: 0 14px 34px color-mix(in srgb, var(--default-color), transparent 92%);
  transform: translateY(-2px);
}

.download-hub-category:hover::after {
  opacity: 0.95;
  transform: scale(1.08);
}

.download-hub-category--no-meta {
  align-items: flex-start;
}

.download-hub-category__spark {
  display: none;
}

.download-hub-category__icon {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  padding: 12px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 78%);
  border-radius: 22px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 91%) 0%, #ffffff 100%);
  color: var(--accent-color);
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
  transition: border-color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.download-hub-category:hover .download-hub-category__icon {
  border-color: color-mix(in srgb, var(--accent-color), transparent 58%);
  transform: translateY(-1px);
}

.download-hub-category__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.download-hub-category__icon i {
  font-size: 25px;
}

.download-hub-category__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding-right: 58px;
}

.download-hub-category--no-meta .download-hub-category__body {
  justify-content: flex-start;
}

.download-hub-category__title {
  display: block;
  margin-bottom: 8px;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.22;
  letter-spacing: -0.015em;
}

.download-hub-category--no-meta .download-hub-category__title:last-child {
  margin-bottom: 0;
}

.download-hub-category__text {
  display: -webkit-box;
  overflow: hidden;
  color: color-mix(in srgb, var(--default-color), transparent 36%);
  font-size: 14px;
  line-height: 1.52;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.download-hub-category__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.download-hub-category__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 5px 9px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 89%);
  border-radius: 999px;
  background: color-mix(in srgb, var(--background-color), var(--surface-color) 62%);
  color: color-mix(in srgb, var(--default-color), transparent 34%);
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.download-hub-category__count {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 34px;
  padding: 0 10px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 78%);
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-size: 13px;
  font-weight: 650;
  line-height: 1;
  transition: border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.download-hub-category__count i {
  font-size: 15px;
}

.download-hub-category:hover .download-hub-category__count {
  border-color: var(--accent-color);
  background: var(--accent-color);
  color: #ffffff;
  transform: translateX(1px);
}

.download-hub-activate {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 46px;
  gap: 16px;
  align-items: center;
  padding: 26px;
  border-color: color-mix(in srgb, #0f172a, transparent 40%);
  border-radius: 28px;
  color: #ffffff;
  text-decoration: none;
  background: #0f172a;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.download-hub-activate__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, color-mix(in srgb, var(--accent-color), transparent 70%), transparent 34%), linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent);
  pointer-events: none;
}

.download-hub-activate:hover {
  color: #ffffff;
  border-color: color-mix(in srgb, var(--accent-color), transparent 64%);
  box-shadow: 0 16px 38px color-mix(in srgb, #0f172a, transparent 82%);
  transform: translateY(-2px);
}

.download-hub-activate__icon,
.download-hub-activate__arrow,
.download-hub-activate__body {
  position: relative;
  z-index: 2;
}

.download-hub-activate__icon,
.download-hub-activate__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: color-mix(in srgb, var(--accent-color), white 24%);
}

.download-hub-activate__icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  font-size: 22px;
}

.download-hub-activate__arrow {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  font-size: 17px;
}

.download-hub-activate__body {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.download-hub-activate__label {
  color: color-mix(in srgb, var(--accent-color), white 24%);
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 650;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.download-hub-activate__title {
  color: #ffffff;
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.12;
}

.download-hub-activate__text {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.55;
}

.download-hub-info {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: 24px;
  background: #ffffff;
}

.download-hub-info__spark {
  position: absolute;
  right: 24px;
  top: 24px;
  z-index: 1;
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 82%);
  border-radius: 22px;
  color: color-mix(in srgb, var(--accent-color), transparent 42%);
  transform: rotate(10deg);
  pointer-events: none;
}

.download-hub-info__spark i {
  font-size: 24px;
  transform: rotate(-10deg);
}

.download-hub-info__content {
  position: relative;
  z-index: 2;
  color: color-mix(in srgb, var(--default-color), transparent 32%);
  font-size: 15px;
  line-height: 1.7;
}

.download-hub-info__content > *:first-child {
  margin-top: 0;
}

.download-hub-info__content > *:last-child {
  margin-bottom: 0;
}

@media (max-width:1199.98px) {
  .download-hub-guide {
    grid-template-columns: 1fr;
  }

  .download-hub-guide-step:nth-child(2) {
    margin-left: 0;
  }

}

@media (max-width:991.98px) {
  .download-hub-hero__content {
    min-height: auto;
  }

  .download-hub-search {
    min-height: 320px;
  }

  .download-hub-activate {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .download-hub-activate__arrow {
    grid-column: 2;
    justify-self: start;
  }

}

@media (max-width:767.98px) {
  .download-hub-hero__shell,
  .download-hub-guide {
    padding: 22px;
    border-radius: 22px;
  }

  .download-hub-hero__actions {
    flex-direction: column;
  }

  .download-hub-btn {
    width: 100%;
  }

  .download-hub-hero__content h1 {
    font-size: clamp(31px, 8vw, 43px);
  }

}

@media (max-width:575.98px) {
  .download-hub-search,
  .download-hub-category,
  .download-hub-activate,
  .download-hub-info {
    padding: 20px;
    border-radius: 18px;
  }

  .download-hub-nav {
    grid-template-columns: 1fr;
  }

  .download-hub-category {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .download-hub-category__icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }

  .download-hub-category__count {
    grid-column: 2;
    justify-self: start;
    margin-top: 4px;
  }

  .download-hub-category--no-meta .download-hub-category__count {
    align-self: start;
  }

  .download-hub-activate {
    grid-template-columns: 1fr;
  }

  .download-hub-activate__arrow {
    grid-column: auto;
  }

  .download-hub-guide-step {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .download-hub-guide-step::before {
    display: none;
  }

}

@media (max-width:575.98px) {
  .download-hub-category {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 14px;
    min-height: 150px;
    padding: 18px;
  }

  .download-hub-category::before {
    left: 18px;
    right: 18px;
  }

  .download-hub-category__icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
  }

  .download-hub-category__body {
    padding-right: 46px;
  }

  .download-hub-category__count {
    right: 16px;
    top: 16px;
    grid-column: auto;
    justify-self: auto;
    margin-top: 0;
  }

}

.download-hub-hero__shell {
  padding: 34px;
}

.download-hub-hero__layout {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 24px;
}

.download-hub-hero__content {
  max-width: none;
  min-height: auto;
  padding-right: 126px;
}

.download-hub-hero__content h1 {
  max-width: 1120px;
}

.download-hub-hero__content p {
  max-width: 760px;
}

.download-hub-search--wide,
.download-hub-search {
  min-height: auto;
}

.download-hub-search--wide {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(320px, 1fr) auto;
  gap: 18px;
  align-items: center;
  justify-content: stretch;
  padding: 18px;
  border-radius: 24px;
}

.download-hub-search--wide::before {
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 30%), linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
}

.download-hub-search--wide .download-hub-search__head {
  min-width: 0;
  margin: 0;
}

.download-hub-search--wide .download-hub-search__form {
  min-width: 0;
}

.download-hub-search--wide .download-hub-search__tags {
  justify-content: flex-end;
  margin: 0;
  min-width: 0;
}

.download-hub-search--wide .download-hub-search__spark--one {
  right: 18px;
  top: 14px;
  width: 66px;
  height: 66px;
  border-radius: 21px;
}

.download-hub-search--wide .download-hub-search__spark--two {
  left: auto;
  right: 92px;
  top: auto;
  bottom: 12px;
  width: 52px;
  height: 52px;
}

.download-hub-search__form .softsearch-form,
.download-hub-search__form form.softsearch-modal-trigger {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  width: 100%;
  margin: 0;
}

.download-hub-search__form .softsearch-form input,
.download-hub-search__form form.softsearch-modal-trigger input {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-family: var(--default-font);
  font-size: 14px;
  line-height: 1;
  outline: 0;
  box-shadow: none;
  transition: border-color 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease;
}

.download-hub-search__form .softsearch-form input::placeholder,.download-hub-search__form form.softsearch-modal-trigger input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.download-hub-search__form .softsearch-form input:focus,.download-hub-search__form form.softsearch-modal-trigger input:focus {
  border-color: color-mix(in srgb, var(--accent-color), white 12%);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 84%);
}

.download-hub-search__form .softsearch-form button,
.download-hub-search__form form.softsearch-modal-trigger button {
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid var(--accent-color);
  border-radius: 16px;
  background: var(--accent-color);
  color: #ffffff;
  font-family: var(--nav-font);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  transition: border-color 0.22s ease, background-color 0.22s ease, transform 0.22s ease;
}

.download-hub-search__form .softsearch-form button:hover,.download-hub-search__form form.softsearch-modal-trigger button:hover {
  border-color: color-mix(in srgb, var(--accent-color), black 12%);
  background: color-mix(in srgb, var(--accent-color), black 12%);
  transform: translateY(-1px);
}

.download-hub-category {
  grid-template-columns: 58px minmax(0, 1fr) 42px;
  gap: 12px;
  align-items: center;
  min-height: 124px;
  padding: 14px;
  border-radius: 22px;
  background: linear-gradient(135deg, #ffffff 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  box-shadow: 0 8px 22px color-mix(in srgb, var(--default-color), transparent 96%);
}

.download-hub-category::before {
  display: none;
  content: none;
}

.download-hub-category::after {
  right: -46px;
  bottom: -54px;
  width: 132px;
  height: 132px;
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
}

.download-hub-category:hover {
  background: linear-gradient(135deg, #ffffff 0%, color-mix(in srgb, var(--accent-color), transparent 96%) 100%);
  box-shadow: 0 12px 30px color-mix(in srgb, var(--default-color), transparent 93%);
}

.download-hub-category__icon {
  width: 58px;
  height: 58px;
  padding: 10px;
  border-radius: 18px;
}

.download-hub-category__icon i {
  font-size: 23px;
}

.download-hub-category__body {
  align-self: center;
  justify-content: center;
  padding-right: 0;
}

.download-hub-category__title {
  margin-bottom: 6px;
  font-size: 17px;
  line-height: 1.22;
}

.download-hub-category__text {
  font-size: 13px;
  line-height: 1.42;
  -webkit-line-clamp: 2;
}

.download-hub-category__meta {
  gap: 5px;
  margin-top: 10px;
}

.download-hub-category__meta span {
  min-height: 23px;
  padding: 4px 8px;
  font-size: 11px;
}

.download-hub-category__count {
  position: relative;
  right: auto;
  top: auto;
  align-self: center;
  justify-self: end;
  width: 38px;
  min-width: 38px;
  height: 38px;
  padding: 0;
  border-radius: 14px;
}

.download-hub-category--no-meta {
  align-items: center;
}

.download-hub-category--no-meta .download-hub-category__body {
  min-height: 58px;
  justify-content: center;
}

.download-hub-category--no-meta .download-hub-category__title {
  margin-bottom: 0;
}

.download-hub-category--no-meta .download-hub-category__text {
  margin-top: 6px;
}

.download-hub-category--no-meta .download-hub-category__count {
  align-self: center;
}

.download-hub-category--no-meta .download-hub-category__text + .download-hub-category__meta {
  margin-top: 0;
}

@media (max-width:991.98px) {
  .download-hub-search--wide {
    grid-template-columns: 1fr;
  }

  .download-hub-search--wide .download-hub-search__tags {
    justify-content: flex-start;
  }

}

@media (max-width:767.98px) {
  .download-hub-hero__content {
    padding-right: 0;
  }

  .download-hub-hero__decor--two {
    opacity: 0.45;
  }

}

@media (max-width:575.98px) {
  .download-hub-hero__shell {
    padding: 22px;
    border-radius: 24px;
  }

  .download-hub-hero__actions {
    flex-direction: column;
  }

  .download-hub-btn {
    width: 100%;
  }

  .download-hub-search--wide {
    padding: 16px;
    border-radius: 20px;
  }

  .download-hub-search__form .softsearch-form,
  .download-hub-search__form form.softsearch-modal-trigger {
    grid-template-columns: 1fr;
  }

  .download-hub-search__form .softsearch-form button,
  .download-hub-search__form form.softsearch-modal-trigger button {
    width: 100%;
  }

  .download-hub-category {
    grid-template-columns: 54px minmax(0, 1fr) 38px;
    gap: 10px;
    min-height: 112px;
    padding: 12px;
    border-radius: 18px;
  }

  .download-hub-category__icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
  }

  .download-hub-category__count {
    grid-column: auto;
    justify-self: end;
    width: 36px;
    min-width: 36px;
    height: 36px;
    margin-top: 0;
  }

  .download-hub-category__title {
    font-size: 16px;
  }

}

.download-hub-page .download-hub-search__form {
  position: relative;
  z-index: 4;
  overflow: visible;
  display: block;
  width: 100%;
  background: transparent;
}

.download-hub-page .download-hub-search__form::before,.download-hub-page .download-hub-search__form::after {
  display: none;
  content: none;
}

.download-hub-page .download-hub-search__form > * {
  width: 100%;
}

.download-hub-page .download-hub-search__form .softsearch-form,
.download-hub-page .download-hub-search__form form.softsearch-modal-trigger {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  width: 100%;
  margin: 0;
}

.download-hub-page .download-hub-search__form .softsearch-form input,
.download-hub-page .download-hub-search__form form.softsearch-modal-trigger input {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-family: var(--default-font);
  font-size: 14px;
  line-height: 1;
  outline: 0;
  box-shadow: none;
  transition: border-color 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease;
}

.download-hub-page .download-hub-search__form .softsearch-form input::placeholder,.download-hub-page .download-hub-search__form form.softsearch-modal-trigger input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.download-hub-page .download-hub-search__form .softsearch-form input:focus,.download-hub-page .download-hub-search__form form.softsearch-modal-trigger input:focus {
  border-color: color-mix(in srgb, var(--accent-color), white 12%);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 84%);
}

.download-hub-page .download-hub-search__form .softsearch-form button,
.download-hub-page .download-hub-search__form form.softsearch-modal-trigger button {
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid var(--accent-color);
  border-radius: 16px;
  background: var(--accent-color);
  color: #ffffff;
  font-family: var(--nav-font);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  transition: border-color 0.22s ease, background-color 0.22s ease, transform 0.22s ease;
}

.download-hub-page .download-hub-search__form .softsearch-form button:hover,.download-hub-page .download-hub-search__form form.softsearch-modal-trigger button:hover {
  border-color: color-mix(in srgb, var(--accent-color), black 12%);
  background: color-mix(in srgb, var(--accent-color), black 12%);
  transform: translateY(-1px);
}

.download-hub-page .tps-live-modal {
  --ssm-accent: var(--accent-color);
  --ssm-dark: #0f172a;
  --ssm-border: color-mix(in srgb, var(--default-color), transparent 88%);
  --ssm-muted: color-mix(in srgb, var(--default-color), transparent 38%);
  --ssm-soft-bg: color-mix(in srgb, var(--background-color), var(--surface-color) 58%);
}

.download-hub-page .tps-live-modal .modal-dialog {
  padding-right: 12px;
  padding-left: 12px;
}

.download-hub-page .tps-live-modal .modal-content {
  position: relative;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--ssm-dark), transparent 34%);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 24px 70px color-mix(in srgb, var(--ssm-dark), transparent 70%);
}

.download-hub-page .tps-live-modal .modal-content::before {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  z-index: 0;
  width: 160px;
  height: 160px;
  border: 1px solid color-mix(in srgb, var(--ssm-accent), transparent 72%);
  border-radius: 48px;
  transform: rotate(14deg);
  pointer-events: none;
}

.download-hub-page .tps-live-modal .modal-content::after {
  display: none;
  content: none;
}

.download-hub-page .tps-live-modal .modal-header,
.download-hub-page .tps-live-modal .modal-body,
.download-hub-page .tps-live-modal .modal-footer {
  position: relative;
  z-index: 2;
}

.download-hub-page .tps-live-modal .modal-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 40px;
  align-items: center;
  gap: 14px;
  min-height: 82px;
  padding: 20px 22px 18px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  background: linear-gradient(135deg, #ffffff 0%, color-mix(in srgb, var(--ssm-accent), transparent 97%) 100%);
}

.download-hub-page .tps-live-modal .modal-title {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  margin: 0;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: clamp(20px, 2.1vw, 28px);
  font-weight: 690;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.download-hub-page .tps-live-modal .modal-title::before {
  content: "\F52A";
  width: 42px;
  height: 42px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--ssm-accent), transparent 74%);
  border-radius: 15px;
  background: color-mix(in srgb, var(--ssm-accent), transparent 91%);
  color: var(--ssm-accent);
  font-family: "bootstrap-icons";
  font-size: 18px;
  line-height: 1;
}

.download-hub-page .tps-live-modal .btn-close {
  position: relative;
  z-index: 4;
  justify-self: end;
  align-self: center;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 86%);
  border-radius: 14px;
  background-color: #ffffff;
  background-size: 12px;
  opacity: 1;
  box-shadow: none;
  transform: none;
  transition: border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}

.download-hub-page .tps-live-modal .btn-close:hover {
  border-color: color-mix(in srgb, var(--ssm-accent), transparent 68%);
  background-color: color-mix(in srgb, var(--ssm-accent), transparent 95%);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--ssm-accent), transparent 88%);
  transform: none;
}

.download-hub-page .tps-live-modal .btn-close:focus {
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--ssm-accent), transparent 86%);
}

.download-hub-page .tps-live-modal .modal-body {
  padding: 22px 24px 14px;
  background: #ffffff;
}

.download-hub-page .tps-live-modal .modal-body .softsearch-form,
.download-hub-page .tps-live-modal .modal-body .tps-live--modal {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
}

.download-hub-page .tps-live-modal .modal-body .softsearch-form::before {
  content: "\F52A";
  position: absolute;
  left: 16px;
  top: 50%;
  z-index: 2;
  color: var(--ssm-accent);
  font-family: "bootstrap-icons";
  font-size: 17px;
  line-height: 1;
  transform: translateY(-50%);
  pointer-events: none;
}

.download-hub-page .tps-live-modal .modal-body .search-input,
.download-hub-page .tps-live-modal .modal-body input[type="search"] {
  width: 100%;
  min-height: 56px;
  padding: 0 18px 0 48px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 84%);
  border-radius: 18px;
  background: var(--ssm-soft-bg);
  color: color-mix(in srgb, var(--default-color), transparent 18%);
  font-family: var(--default-font);
  font-size: 15px;
  line-height: 1;
  outline: 0;
  box-shadow: none;
  transition: border-color 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease;
}

.download-hub-page .tps-live-modal .modal-body .search-input::placeholder,.download-hub-page .tps-live-modal .modal-body input[type="search"]::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 52%);
}

.download-hub-page .tps-live-modal .modal-body .search-input:focus,.download-hub-page .tps-live-modal .modal-body input[type="search"]:focus {
  border-color: color-mix(in srgb, var(--ssm-accent), transparent 58%);
  background: #ffffff;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--ssm-accent), transparent 88%);
}

.download-hub-page .tps-live-modal .modal-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
  padding: 14px 24px 24px;
  border-top: 0;
  background: #ffffff;
}

.download-hub-page .tps-live-modal .tps-live-modal-top,
.download-hub-page .tps-live-modal .tps-live-modal__top,
.download-hub-page .tps-live-modal .tps-live-top {
  margin-bottom: 14px;
}

.download-hub-page .tps-live-modal .tps-livetitle {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin: 0 0 12px;
  padding: 7px 12px;
  border: 1px solid color-mix(in srgb, var(--ssm-accent), transparent 78%);
  border-radius: 999px;
  background: color-mix(in srgb, var(--ssm-accent), transparent 93%);
  color: var(--ssm-accent);
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}

.download-hub-page .tps-live-modal .tps-livetitle::before {
  content: "\F52A";
  display: inline-flex;
  color: currentColor;
  font-family: "bootstrap-icons";
  font-size: 13px;
  line-height: 1;
}

.download-hub-page .tps-live-modal .tps-livesuggest {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 14px;
  padding: 9px 12px;
  border: 1px solid color-mix(in srgb, var(--ssm-accent), transparent 78%);
  border-radius: 15px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--ssm-accent), transparent 94%) 0%, #ffffff 100%);
  color: color-mix(in srgb, var(--default-color), transparent 28%);
  font-size: 13px;
  line-height: 1.35;
}

.download-hub-page .tps-live-modal .tps-livesuggest::before {
  content: "\F430";
  width: 28px;
  height: 28px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--ssm-accent), transparent 78%);
  border-radius: 10px;
  background: color-mix(in srgb, var(--ssm-accent), transparent 92%);
  color: var(--ssm-accent);
  font-family: "bootstrap-icons";
  font-size: 13px;
  line-height: 1;
}

.download-hub-page .tps-live-modal .tps-livesuggest strong {
  color: var(--ssm-accent);
  font-family: var(--nav-font);
  font-weight: 650;
}

.download-hub-page .tps-live-modal .tps-livesuggest--hint {
  margin-bottom: 14px;
}

.download-hub-page .tps-live-modal .tps-livebox {
  min-width: 0;
  max-height: min(54vh, 520px);
  overflow-y: auto;
  padding: 0 6px 2px 0;
  scrollbar-width: thin;
  scrollbar-color: color-mix(in srgb, var(--ssm-accent), transparent 40%) color-mix(in srgb, var(--default-color), transparent 92%);
}

.download-hub-page .tps-live-modal .tps-livebox:empty {
  min-height: 120px;
  display: grid;
  place-items: center;
  border: 1px dashed color-mix(in srgb, var(--default-color), transparent 84%);
  border-radius: 20px;
  background: color-mix(in srgb, var(--background-color), var(--surface-color) 58%);
}

.download-hub-page .tps-live-modal .tps-livebox:empty::before {
  content: "Начните вводить запрос — результаты появятся здесь";
  max-width: 320px;
  color: color-mix(in srgb, var(--default-color), transparent 48%);
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

.download-hub-page .tps-live-modal .tps-livebox::-webkit-scrollbar {
  width: 8px;
}

.download-hub-page .tps-live-modal .tps-livebox::-webkit-scrollbar-track {
  border-radius: 999px;
  background: color-mix(in srgb, var(--default-color), transparent 94%);
}

.download-hub-page .tps-live-modal .tps-livebox::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: color-mix(in srgb, var(--ssm-accent), transparent 42%);
}

.download-hub-page .tps-live-modal .tps-livebtn-close {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid var(--ssm-accent);
  border-radius: 15px;
  background: var(--ssm-accent);
  color: #ffffff;
  font-family: var(--nav-font);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  box-shadow: 0 10px 24px color-mix(in srgb, var(--ssm-accent), transparent 84%);
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.download-hub-page .tps-live-modal .tps-livebtn-close::before {
  content: "\F659";
  display: inline-flex;
  font-family: "bootstrap-icons";
  font-size: 13px;
  line-height: 1;
}

.download-hub-page .tps-live-modal .tps-livebtn-close:hover {
  border-color: color-mix(in srgb, var(--ssm-accent), black 12%);
  background: color-mix(in srgb, var(--ssm-accent), black 12%);
  color: #ffffff;
  box-shadow: 0 12px 28px color-mix(in srgb, var(--ssm-accent), transparent 80%);
  transform: translateY(-1px);
}

.download-hub-page .tps-live-modal .tps-livebox ul,
.download-hub-page .tps-live-modal .tps-livebox ol,
.download-hub-page .tps-live-modal .tps-livebox menu {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.download-hub-page .tps-live-modal .tps-livebox li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.download-hub-page .tps-live-modal .tps-livebox li::marker {
  content: "";
  display: none;
}

.download-hub-page .tps-live-modal .tps-livebox > *:last-child {
  margin-bottom: 0;
}

.download-hub-page .tps-live-modal .tps-livebox li > a,
.download-hub-page .tps-live-modal .tps-livebox a,
.download-hub-page .tps-live-modal .tps-livebox .tps-live-item,
.download-hub-page .tps-live-modal .tps-livebox .softsearch-item,
.download-hub-page .tps-live-modal .tps-livebox .search-result,
.download-hub-page .tps-live-modal .tps-livebox .pdo-row,
.download-hub-page .tps-live-modal .tps-livebox .resource-item,
.download-hub-page .tps-live-modal .tps-livebox .ss-result,
.download-hub-page .tps-live-modal .tps-livebox .softsearch-result {
  position: relative;
  width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  gap: 12px;
  align-items: center;
  margin: 0 0 10px;
  padding: 14px 14px 14px 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 18px;
  background: color-mix(in srgb, var(--background-color), var(--surface-color) 58%);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 8px 22px color-mix(in srgb, var(--default-color), transparent 97%);
  transition: border-color 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.download-hub-page .tps-live-modal .tps-livebox li > a:hover,.download-hub-page .tps-live-modal .tps-livebox a:hover,.download-hub-page .tps-live-modal .tps-livebox .tps-live-item:hover,.download-hub-page .tps-live-modal .tps-livebox .softsearch-item:hover,.download-hub-page .tps-live-modal .tps-livebox .search-result:hover,.download-hub-page .tps-live-modal .tps-livebox .pdo-row:hover,.download-hub-page .tps-live-modal .tps-livebox .resource-item:hover,.download-hub-page .tps-live-modal .tps-livebox .ss-result:hover,.download-hub-page .tps-live-modal .tps-livebox .softsearch-result:hover {
  border-color: color-mix(in srgb, var(--ssm-accent), transparent 66%);
  background: #ffffff;
  color: inherit;
  box-shadow: 0 12px 30px color-mix(in srgb, var(--default-color), transparent 93%);
  transform: translateY(-1px);
}

.download-hub-page .tps-live-modal .tps-livebox li::before,.download-hub-page .tps-live-modal .tps-livebox li::after,.download-hub-page .tps-live-modal .tps-livebox a::before,.download-hub-page .tps-live-modal .tps-livebox a::after,.download-hub-page .tps-live-modal .tps-livebox .tps-live-item::before,.download-hub-page .tps-live-modal .tps-livebox .tps-live-item::after,.download-hub-page .tps-live-modal .tps-livebox .softsearch-item::before,.download-hub-page .tps-live-modal .tps-livebox .softsearch-item::after,.download-hub-page .tps-live-modal .tps-livebox .search-result::before,.download-hub-page .tps-live-modal .tps-livebox .search-result::after,.download-hub-page .tps-live-modal .tps-livebox .pdo-row::before,.download-hub-page .tps-live-modal .tps-livebox .pdo-row::after,.download-hub-page .tps-live-modal .tps-livebox .resource-item::before,.download-hub-page .tps-live-modal .tps-livebox .resource-item::after,.download-hub-page .tps-live-modal .tps-livebox .ss-result::before,.download-hub-page .tps-live-modal .tps-livebox .ss-result::after,.download-hub-page .tps-live-modal .tps-livebox .softsearch-result::before,.download-hub-page .tps-live-modal .tps-livebox .softsearch-result::after {
  display: none;
  content: none;
}

.download-hub-page .tps-live-modal .tps-liveitem-title {
  min-width: 0;
  display: block;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.download-hub-page .tps-live-modal .tps-liveitem-ico {
  width: 34px;
  height: 34px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  justify-self: end;
  align-self: center;
  border: 1px solid color-mix(in srgb, var(--ssm-accent), transparent 76%);
  border-radius: 12px;
  background: color-mix(in srgb, var(--ssm-accent), transparent 92%);
  color: var(--ssm-accent);
  line-height: 1;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.download-hub-page .tps-live-modal .tps-liveitem-ico i {
  display: inline-flex;
  color: currentColor;
  font-size: 15px;
  line-height: 1;
}

.download-hub-page .tps-live-modal .tps-livebox a:hover .tps-liveitem-ico {
  border-color: var(--ssm-accent);
  background: var(--ssm-accent);
  color: #ffffff;
}

.download-hub-page .tps-live-modal .tps-livebox h2,
.download-hub-page .tps-live-modal .tps-livebox h3,
.download-hub-page .tps-live-modal .tps-livebox h4,
.download-hub-page .tps-live-modal .tps-livebox .title,
.download-hub-page .tps-live-modal .tps-livebox .pagetitle,
.download-hub-page .tps-live-modal .tps-livebox .search-title,
.download-hub-page .tps-live-modal .tps-livebox .softsearch-title {
  margin: 0;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.28;
}

.download-hub-page .tps-live-modal .tps-livebox p,
.download-hub-page .tps-live-modal .tps-livebox .desc,
.download-hub-page .tps-live-modal .tps-livebox .description,
.download-hub-page .tps-live-modal .tps-livebox .introtext,
.download-hub-page .tps-live-modal .tps-livebox .search-desc,
.download-hub-page .tps-live-modal .tps-livebox .softsearch-desc {
  margin: 0;
  color: var(--ssm-muted);
  font-size: 13px;
  line-height: 1.45;
}

.download-hub-page .tps-live-modal .tps-livebox small,
.download-hub-page .tps-live-modal .tps-livebox .meta,
.download-hub-page .tps-live-modal .tps-livebox .category,
.download-hub-page .tps-live-modal .tps-livebox .breadcrumb {
  display: inline-flex;
  width: fit-content;
  margin-top: 2px;
  padding: 4px 8px;
  border: 1px solid color-mix(in srgb, var(--ssm-accent), transparent 82%);
  border-radius: 999px;
  background: color-mix(in srgb, var(--ssm-accent), transparent 94%);
  color: var(--ssm-accent);
  font-family: var(--nav-font);
  font-size: 11px;
  font-weight: 560;
  line-height: 1;
}

@media (max-width:767.98px) {
  .download-hub-page .download-hub-search__form .softsearch-form,
  .download-hub-page .download-hub-search__form form.softsearch-modal-trigger {
    grid-template-columns: 1fr;
  }

  .download-hub-page .download-hub-search__form .softsearch-form button,
  .download-hub-page .download-hub-search__form form.softsearch-modal-trigger button {
    width: 100%;
  }

  .download-hub-page .tps-live-modal .modal-dialog {
    margin: 10px auto;
  }

  .download-hub-page .tps-live-modal .modal-content {
    border-radius: 22px;
  }

  .download-hub-page .tps-live-modal .modal-content::before {
    right: -48px;
    top: -48px;
    width: 148px;
    height: 148px;
  }

  .download-hub-page .tps-live-modal .modal-header {
    min-height: 74px;
    grid-template-columns: minmax(0, 1fr) 38px;
    padding: 18px 18px 14px;
  }

  .download-hub-page .tps-live-modal .modal-title {
    grid-template-columns: 38px minmax(0, 1fr);
    font-size: 20px;
  }

  .download-hub-page .tps-live-modal .modal-title::before {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    font-size: 17px;
  }

  .download-hub-page .tps-live-modal .btn-close {
    width: 38px;
    height: 38px;
    border-radius: 13px;
  }

  .download-hub-page .tps-live-modal .modal-body {
    padding: 18px 18px 12px;
  }

  .download-hub-page .tps-live-modal .modal-footer {
    grid-template-columns: 1fr;
    padding: 12px 18px 18px;
  }

  .download-hub-page .tps-live-modal .tps-livebox {
    max-height: 52vh;
    padding-right: 4px;
  }

  .download-hub-page .tps-live-modal .tps-livebtn-close {
    width: 100%;
  }

}

@media (max-width:575.98px) {
  .download-hub-page .tps-live-modal .modal-header {
    gap: 10px;
  }

  .download-hub-page .tps-live-modal .modal-title {
    font-size: 18px;
  }

  .download-hub-page .tps-live-modal .modal-body .search-input,
  .download-hub-page .tps-live-modal .modal-body input[type="search"] {
    min-height: 52px;
    border-radius: 16px;
  }

  .download-hub-page .tps-live-modal .tps-livebox li > a,
  .download-hub-page .tps-live-modal .tps-livebox a,
  .download-hub-page .tps-live-modal .tps-livebox .tps-live-item,
  .download-hub-page .tps-live-modal .tps-livebox .softsearch-item,
  .download-hub-page .tps-live-modal .tps-livebox .search-result,
  .download-hub-page .tps-live-modal .tps-livebox .pdo-row,
  .download-hub-page .tps-live-modal .tps-livebox .resource-item,
  .download-hub-page .tps-live-modal .tps-livebox .ss-result,
  .download-hub-page .tps-live-modal .tps-livebox .softsearch-result {
    grid-template-columns: minmax(0, 1fr) 32px;
    gap: 10px;
    padding: 13px 12px 13px 14px;
    border-radius: 16px;
  }

  .download-hub-page .tps-live-modal .tps-liveitem-ico {
    width: 32px;
    height: 32px;
    border-radius: 11px;
  }

}

/* ========================================================================== */
/* File modal UI */
/* ========================================================================== */

/* File modal design start */
:root {
  --fx-a: var(--accent-color);
  --fx-d: var(--default-color);
  --fx-h: var(--heading-color);
  --fx-s: var(--surface-color);
  --fx-c: var(--contrast-color);
  --fx-b88: color-mix(in srgb, var(--default-color), transparent 88%);
  --fx-b90: color-mix(in srgb, var(--default-color), transparent 90%);
  --fx-b95: color-mix(in srgb, var(--default-color), transparent 95%);
  --fx-t34: color-mix(in srgb, var(--default-color), transparent 34%);
  --fx-t38: color-mix(in srgb, var(--default-color), transparent 38%);
  --fx-t44: color-mix(in srgb, var(--default-color), transparent 44%);
  --fx-a70: color-mix(in srgb, var(--accent-color), transparent 70%);
  --fx-a76: color-mix(in srgb, var(--accent-color), transparent 76%);
  --fx-a78: color-mix(in srgb, var(--accent-color), transparent 78%);
  --fx-a80: color-mix(in srgb, var(--accent-color), transparent 80%);
  --fx-a88: color-mix(in srgb, var(--accent-color), transparent 88%);
  --fx-a92: color-mix(in srgb, var(--accent-color), transparent 92%);
  --fx-a94: color-mix(in srgb, var(--accent-color), transparent 94%);
  --fx-a95: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.filex-modal {
  --filex-modal-border: var(--fx-b88);
  --filex-modal-muted: var(--fx-t38);
  --filex-modal-soft: var(--fx-a94);
}

.filex-modal .modal-dialog {
  padding: 12px;
}

.filex-modal .modal-content {
  position: relative;
  border: 1px solid color-mix(in srgb, var(--fx-d), transparent 84%);
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 26px 80px color-mix(in srgb, var(--fx-d), transparent 78%), inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.filex-modal .modal-header,
.filex-modal .modal-body,
.filex-modal .modal-footer {
  position: relative;
  z-index: 2;
}

.filex-modal .modal-header {
  position: relative;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 82px 20px 28px;
  border-bottom: 1px solid var(--filex-modal-border);
  background: #ffffff;
}

.filex-modal__title-wrap {
  min-width: 0;
  display: grid;
  gap: 8px;
}

.filex-modal__eyebrow {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  padding: 6px 10px;
  border: 1px solid var(--fx-a80);
  border-radius: 999px;
  background: color-mix(in srgb, var(--fx-a), transparent 93%);
  color: var(--fx-a);
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 560;
  line-height: 1;
}

.filex-modal__eyebrow i,
.filex-modal-products__label i {
  color: currentColor;
  font-size: 13px;
}

.filex-modal .modal-title {
  margin: 0;
  color: var(--fx-h);
  font-family: var(--heading-font);
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.026em;
}

.filex-modal .btn-close {
  position: absolute;
  right: 28px;
  top: 24px;
  z-index: 5;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  margin: 0;
  padding: 0;
  border: 1px solid var(--filex-modal-border);
  border-radius: 13px;
  background-color: #ffffff;
  box-shadow: 0 8px 18px color-mix(in srgb, var(--fx-d), transparent 94%);
  opacity: 1;
  transition: border-color 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.filex-modal .btn-close:hover {
  border-color: var(--fx-a70);
  background-color: var(--filex-modal-soft);
  box-shadow: 0 12px 24px var(--fx-a88);
  transform: translateY(-1px);
}

.filex-modal .modal-body {
  padding: 24px 28px 26px;
}

.filex-modal-status {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--fx-a78);
  border-radius: 22px;
  background: var(--fx-a95);
  box-shadow: 0 10px 26px color-mix(in srgb, var(--fx-a), transparent 90%);
}

.filex-modal-status::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -32px;
  width: 110px;
  height: 110px;
  border-radius: 999px;
  background: var(--fx-a92);
  pointer-events: none;
}

.filex-modal-status__icon {
  position: relative;
  z-index: 2;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--fx-a), transparent 72%);
  border-radius: 19px;
  background: #ffffff;
  color: var(--fx-a);
  box-shadow: 0 10px 22px color-mix(in srgb, var(--fx-a), transparent 86%);
  transform: rotate(-7deg);
}

.filex-modal-status__icon i {
  color: currentColor;
  font-size: 25px;
  line-height: 1;
  transform: rotate(7deg);
}

.filex-modal-status__body {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.filex-modal-status strong {
  display: block;
  color: var(--fx-h);
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 670;
  line-height: 1.18;
}

.filex-modal-status p {
  max-width: 720px;
  margin: 7px 0 0;
  color: var(--filex-modal-muted);
  font-size: 14px;
  line-height: 1.58;
}

.filex-modal-products,
.filex-modal-promo {
  margin-top: 22px;
}

.filex-modal-products__head {
  max-width: 780px;
  margin-bottom: 16px;
}

.filex-modal-products__label {
  min-height: 27px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  margin-bottom: 10px;
  padding: 6px 10px;
  border: 1px solid color-mix(in srgb, var(--fx-a), transparent 82%);
  border-radius: 999px;
  background: var(--fx-a94);
  color: var(--fx-a);
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 560;
  line-height: 1;
}

.filex-modal-products__head h3 {
  margin: 0;
  color: var(--fx-h);
  font-family: var(--heading-font);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 690;
  line-height: 1.16;
  letter-spacing: -0.022em;
}

.filex-modal-products__head p {
  max-width: 680px;
  margin: 8px 0 0;
  color: var(--filex-modal-muted);
  font-size: 14px;
  line-height: 1.58;
}

.filex-modal-products__grid {
  align-items: stretch;
}

.filex-modal-products__grid > [class*="tps-col"],
.filex-modal-products__grid > .tps-col,
.filex-modal-products__grid > .tps-col-12,
.filex-modal-products__grid > .tps-col-sm-6,
.filex-modal-products__grid > .tps-col-md-4,
.filex-modal-products__grid > .tps-col-lg-3 {
  width: 100%;
}

.filex-modal-products__grid > * {
  min-width: 0;
}

.filex-modal-products__grid > .col,
.filex-modal-products__grid > [class*="col-"] {
  display: flex;
}

.filex-modal-products__grid .ms2_product,
.filex-modal-products__grid .product-card,
.filex-modal-products__grid .tps-product-card,
.filex-modal-products__grid .ms-product,
.filex-modal-products__grid .card {
  width: 100%;
  min-height: 100%;
  border: 1px solid var(--filex-modal-border);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 8px 24px var(--fx-b95);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.filex-modal-products__grid .ms2_product:hover,.filex-modal-products__grid .product-card:hover,.filex-modal-products__grid .tps-product-card:hover,.filex-modal-products__grid .ms-product:hover,.filex-modal-products__grid .card:hover {
  border-color: var(--fx-a70);
  box-shadow: 0 14px 34px var(--fx-a88);
  transform: translateY(-2px);
}

.filex-modal .modal-footer {
  justify-content: flex-end;
  gap: 12px;
  padding: 18px 28px 24px;
  border-top: 1px solid var(--filex-modal-border);
  background: color-mix(in srgb, var(--fx-d), transparent 97%);
}

.filex-modal__return-btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 16px;
  border: 1px solid var(--fx-a);
  border-radius: 15px;
  background: var(--fx-a);
  color: #ffffff;
  font-family: var(--nav-font);
  font-size: 13px;
  font-weight: 560;
  line-height: 1;
  box-shadow: 0 12px 28px var(--fx-a80);
  transition: background-color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.filex-modal__return-btn:hover {
  border-color: color-mix(in srgb, var(--fx-a), black 12%);
  background: color-mix(in srgb, var(--fx-a), black 12%);
  color: #ffffff;
  box-shadow: 0 16px 34px var(--fx-a76);
  transform: translateY(-1px);
}

.filex-modal__return-btn i {
  color: currentColor;
  font-size: 14px;
}

@media (min-width:576px) {
  .filex-modal-products__grid > * {
    flex: 0 0 auto;
    width: 50%;
  }

}

@media (min-width:992px) {
  .filex-modal-products__grid > * {
    flex: 0 0 auto;
    width: 33.333333%;
  }

}

@media (min-width:1200px) {
  .filex-modal-products__grid > * {
    flex: 0 0 auto;
    width: 25%;
  }

}

@media (max-width:767.98px) {
  .filex-modal .modal-dialog {
    padding: 8px;
  }

  .filex-modal .modal-content {
    border-radius: 22px;
  }

  .filex-modal .modal-header {
    padding: 20px 68px 16px 20px;
  }

  .filex-modal .btn-close {
    right: 20px;
    top: 20px;
  }

  .filex-modal .modal-body {
    padding: 20px;
  }

  .filex-modal .modal-footer {
    padding: 16px 20px 20px;
  }

  .filex-modal-status {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 13px;
    padding: 15px;
    border-radius: 18px;
  }

  .filex-modal-status__icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .filex-modal-status__icon i {
    font-size: 21px;
  }

  .filex-modal__return-btn {
    width: 100%;
  }

}

/* File modal design end */
/* File tools cards start */
.filex-tool-card {
  --filex-tool-accent: var(--accent-color, #0d6efd);
  --filex-tool-heading: var(--heading-color, #1f2937);
  --filex-tool-text: var(--default-color, #4b5563);
  --filex-tool-surface: var(--surface-color, #ffffff);
  --filex-tool-border: color-mix(in srgb, var(--default-color, #111827), transparent 88%);
  --filex-tool-border-accent: color-mix(in srgb, var(--filex-tool-accent), transparent 78%);
  --filex-tool-soft: color-mix(in srgb, var(--filex-tool-accent), transparent 94%);
  --filex-tool-shadow: 0 8px 24px color-mix(in srgb, var(--default-color, #111827), transparent 95%);
  min-width: 0;
  height: 100%;
}

.filex-tool-card__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--filex-tool-border);
  border-radius: 20px;
  background: var(--filex-tool-surface);
  box-shadow: var(--filex-tool-shadow);
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.filex-tool-card:hover .filex-tool-card__inner {
  border-color: var(--filex-tool-border-accent);
  background: color-mix(in srgb, var(--filex-tool-accent), var(--filex-tool-surface) 98%);
  box-shadow: 0 12px 30px color-mix(in srgb, var(--default-color, #111827), transparent 93%);
}

.filex-tool-card__top {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  align-items: flex-start;
  min-width: 0;
}

.filex-tool-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 10px;
  border: 1px solid var(--filex-tool-border-accent);
  border-radius: 16px;
  background: var(--filex-tool-soft);
  color: var(--filex-tool-accent);
  font-size: 22px;
  line-height: 1;
  overflow: hidden;
}

.filex-tool-card__icon i,
.filex-tool-card__btn-icon i {
  line-height: 1;
}

.filex-tool-card__icon--image {
  background: #ffffff;
}

.filex-tool-card__icon--image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.filex-tool-card__head {
  min-width: 0;
  padding-top: 1px;
}

.filex-tool-card__title {
  margin: 0;
  color: var(--filex-tool-heading);
  font-family: var(--heading-font);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.25;
}

.filex-tool-card__subtitle {
  display: -webkit-box;
  margin: 6px 0 0;
  overflow: hidden;
  color: color-mix(in srgb, var(--filex-tool-text), transparent 34%);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.filex-tool-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  margin-top: 14px;
}

.filex-tool-card__text {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: color-mix(in srgb, var(--filex-tool-text), transparent 26%);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.filex-tool-card__meta,
.filex-tool-card__meta--head {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  min-width: 0;
}

.filex-tool-card__meta--head {
  margin-top: 10px;
}

.filex-tool-card__meta .tps-pill,
.filex-tool-card__meta .tps-chip-mini,
.filex-tool-card__meta span,
.filex-tool-card__meta--head .tps-pill,
.filex-tool-card__meta--head .tps-chip-mini,
.filex-tool-card__meta--head span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 26px;
  padding: 5px 9px;
  border: 1px solid color-mix(in srgb, var(--default-color, #111827), transparent 90%);
  border-radius: 999px;
  background: color-mix(in srgb, var(--default-color, #111827), transparent 96%);
  color: color-mix(in srgb, var(--filex-tool-text), transparent 28%);
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.filex-tool-card__footer {
  margin-top: auto;
  padding-top: 16px;
}

.filex-tool-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid color-mix(in srgb, var(--filex-tool-accent), transparent 72%);
  border-radius: 14px;
  background: var(--filex-tool-accent);
  color: #ffffff;
  font-family: var(--nav-font);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 10px 24px color-mix(in srgb, var(--filex-tool-accent), transparent 84%);
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.filex-tool-card__btn:hover {
  border-color: color-mix(in srgb, var(--filex-tool-accent), #000000 12%);
  background: color-mix(in srgb, var(--filex-tool-accent), #000000 8%);
  color: #ffffff;
  box-shadow: 0 12px 28px color-mix(in srgb, var(--filex-tool-accent), transparent 78%);
}

.filex-tool-card__btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 13px;
  line-height: 1;
}

.filex-tool-card__btn-text {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.filex-tool-card__size {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex: 0 0 auto;
  min-height: 24px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-family: var(--nav-font);
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
}

.filex-tool-card__size:empty {
  display: none;
}

.filex-tool-card--accent .filex-tool-card__icon {
  background: color-mix(in srgb, #f59e0b, transparent 90%);
  border-color: color-mix(in srgb, #f59e0b, transparent 78%);
  color: #d97706;
}

@media (max-width:575.98px) {
  .filex-tool-card__inner {
    padding: 15px;
    border-radius: 18px;
  }

  .filex-tool-card__top {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 12px;
  }

  .filex-tool-card__icon {
    width: 46px;
    height: 46px;
    border-radius: 15px;
    font-size: 19px;
  }

  .filex-tool-card__title {
    font-size: 15px;
  }

  .filex-tool-card__subtitle {
    font-size: 12px;
  }

  .filex-tool-card__body {
    gap: 10px;
    margin-top: 12px;
  }

  .filex-tool-card__text {
    font-size: 13px;
    line-height: 1.5;
    -webkit-line-clamp: 5;
  }

  .filex-tool-card__footer {
    padding-top: 14px;
  }

  .filex-tool-card__btn {
    min-height: 40px;
    padding: 8px 12px;
    border-radius: 13px;
    font-size: 12px;
  }

  .filex-tool-card__btn-icon {
    width: 22px;
    height: 22px;
    border-radius: 8px;
    font-size: 12px;
  }

  .filex-tool-card__size {
    font-size: 10px;
  }

}

/* File tools cards end */
/* File page components start */
.filex-page > .container-fluid > .section,
.filex-page > .container-xl > .section,
.filex-page > .container-fluid.container-xl > .section {
  padding-top: 24px;
  padding-bottom: 24px;
}

.filex-page > .container-fluid > .section:first-child,.filex-page > .container-xl > .section:first-child,.filex-page > .container-fluid.container-xl > .section:first-child {
  padding-top: 8px;
}

.filex-page > .container-fluid > .section:last-child,.filex-page > .container-xl > .section:last-child,.filex-page > .container-fluid.container-xl > .section:last-child {
  padding-bottom: 32px;
}

.filex-page .filex-editions-compact {
  margin-top: 0;
  margin-bottom: 0;
}

.filex-page .filex-layout {
  padding-top: 28px;
}

.filex-layout > .row {
  --bs-gutter-y: 34px;
}

.filex-sidebar {
  margin-top: 0;
  position: sticky;
  top: 96px;
}

.filex-page {
  background: var(--background-color);
}

.filex-page .section,
.filex-comments {
  overflow: visible;
}

.filex-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 12px;
  padding: 6px 12px;
  border: 1px solid color-mix(in srgb, var(--fx-a), transparent 72%);
  border-radius: 999px;
  background: var(--fx-a92);
  color: var(--fx-a);
  font-family: var(--nav-font);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
}

.filex-badge--light {
  border-color: color-mix(in srgb, #fff, transparent 76%);
  background: color-mix(in srgb, #fff, transparent 88%);
  color: var(--fx-c);
}

.filex-hero__content {
  max-width: 860px;
}

.filex-hero__content h1 {
  max-width: 820px;
  margin: 0 0 14px;
  color: var(--fx-h);
  font-family: var(--heading-font);
  font-size: clamp(34px, 4.4vw, 58px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.filex-hero__content p {
  max-width: 680px;
  margin: 0;
  color: color-mix(in srgb, var(--fx-d), transparent 32%);
  font-size: 16px;
  line-height: 1.65;
}

.filex-hero-stats,
.filex-link-list {
  display: grid;
  gap: 10px;
}

.filex-hero-stat {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 64px;
  padding: 11px;
  border: 1px solid var(--fx-b88);
  border-radius: 16px;
  background: var(--fx-s);
  box-shadow: 0 6px 18px var(--fx-b95);
}

.filex-hero-stat__icon,
.filex-stat-card__icon,
.filex-accordion__icon,
.filex-spec-card > i,
.filex-link-list i,
.filex-modal-status__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--fx-a);
}

.filex-hero-stat__icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--fx-a88);
  font-size: 19px;
}

.filex-hero-stat__body span {
  display: block;
  margin-bottom: 3px;
  color: var(--fx-t44);
  font-size: 12px;
  line-height: 1.3;
}

.filex-hero-stat__body strong {
  display: block;
  color: var(--fx-h);
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
}

.filex-hero-stat__body small,
.filex-stat-card small {
  color: var(--fx-t44);
  font-weight: 500;
}

.filex-editions-compact {
  padding: 14px;
  border: 1px solid var(--fx-b90);
  border-radius: 18px;
  background: var(--fx-s);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--fx-d), transparent 96%);
}

.filex-editions-compact__head,
.filex-programs__head {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.filex-editions-compact__label,
.filex-programs__label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  padding: 6px 11px;
  border: 1px solid var(--fx-a76);
  border-radius: 999px;
  background: color-mix(in srgb, var(--fx-a), transparent 93%);
  color: var(--fx-a);
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.filex-editions-compact__grid,
.filex-programs__grid {
  align-items: stretch;
}

.filex-edition {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
  height: 100%;
  min-height: 36px;
  padding: 7px 10px;
  border: 1px solid var(--fx-b88);
  border-radius: 12px;
  background: color-mix(in srgb, var(--background-color), var(--fx-s) 60%);
  color: color-mix(in srgb, var(--fx-d), transparent 24%);
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.filex-edition span,
.filex-link-list span,
.filex-programs__item-text {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.filex-edition i {
  flex: 0 0 auto;
  color: var(--fx-a);
}

.filex-edition:hover,.filex-edition.is-active,.filex-programs__item:hover,.filex-programs__item.is-active {
  border-color: color-mix(in srgb, var(--fx-a), transparent 66%);
  background: var(--fx-a94);
  color: var(--fx-a);
  box-shadow: 0 8px 20px var(--fx-b95);
}

.filex-main-stack {
  display: grid;
  gap: 34px;
}

.filex-panel {
  position: relative;
  padding: 32px;
  overflow: visible;
  border: 1px solid var(--fx-b88);
  border-radius: 22px;
  background: var(--fx-s);
  box-shadow: 0 8px 24px var(--fx-b95);
}

.filex-panel--accent {
  border-top: 3px solid var(--fx-a);
}

.filex-panel--soft {
  background: color-mix(in srgb, var(--fx-a), transparent 97%);
}

.filex-panel-head {
  max-width: 780px;
  margin-bottom: 28px;
}

.filex-panel-head h2,
.filex-rating-head h2 {
  margin: 0 0 10px;
  color: var(--fx-h);
  font-family: var(--heading-font);
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 600;
  line-height: 1.2;
}

.filex-panel-head p,
.filex-rating-head p {
  margin: 0;
  color: var(--fx-t34);
  font-size: 15px;
  line-height: 1.65;
}

.filex-output {
  min-width: 0;
}

.filex-output--cards {
  display: grid;
  gap: 12px;
}

.filex-stats-grid {
  width: 100%;
}

.filex-stat-card {
  display: grid;
  min-height: 128px;
  padding: 18px;
  border: 1px solid var(--fx-b88);
  border-radius: 18px;
  background: var(--fx-s);
  box-shadow: 0 8px 24px var(--fx-b95);
}

.filex-stat-card__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 14px;
  background: var(--fx-a88);
  font-size: 20px;
}

.filex-stat-card__label {
  display: block;
  margin-bottom: 4px;
  color: var(--fx-t44);
  font-size: 13px;
  line-height: 1.35;
}

.filex-stat-card strong {
  display: block;
  color: var(--fx-h);
  font-family: var(--heading-font);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.25;
}

.filex-article-card {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 14px;
  height: 100%;
  min-height: 128px;
  padding: 14px;
  border: 1px solid var(--fx-b90);
  border-radius: 18px;
  background: color-mix(in srgb, var(--background-color), var(--fx-s) 56%);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.filex-article-card:hover {
  border-color: color-mix(in srgb, var(--fx-a), transparent 68%);
  box-shadow: 0 10px 24px color-mix(in srgb, var(--fx-d), transparent 94%);
}

.filex-article-card__media {
  overflow: hidden;
  border-radius: 14px;
  background: var(--fx-a94);
}

.filex-article-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.filex-article-card:hover .filex-article-card__media img {
  transform: scale(1.04);
}

.filex-article-card__body,
.filex-product-card__body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.filex-article-card__tag {
  margin-bottom: 7px;
  color: var(--fx-a);
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 500;
}

.filex-article-card__title {
  display: -webkit-box;
  overflow: hidden;
  color: var(--fx-h);
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.filex-article-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
}

.filex-article-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--fx-t38);
  font-size: 13px;
}

.filex-article-card__meta i,
.filex-link-list a:hover::after,.filex-product-card__title a:hover {
  color: var(--fx-a);
}

.filex-accordion .accordion-item {
  overflow: hidden;
  border: 1px solid var(--fx-b88);
  border-radius: 16px;
  background: var(--fx-s);
}

.filex-accordion .accordion-item + .accordion-item {
  margin-top: 12px;
}

.filex-accordion .accordion-button {
  gap: 14px;
  padding: 18px 20px;
  background: var(--fx-s);
  color: var(--fx-h);
  font-family: var(--heading-font);
  font-size: 17px;
  font-weight: 600;
  box-shadow: none;
}

.filex-accordion .accordion-button:not(.collapsed) {
  background: var(--fx-a94);
}

.filex-accordion__icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--fx-a88);
  font-size: 20px;
}

.filex-accordion__texts {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.filex-accordion__texts small {
  color: color-mix(in srgb, var(--fx-d), transparent 42%);
  font-family: var(--default-font);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.35;
}

.filex-spec-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  height: 100%;
  padding: 16px;
  border: 1px solid var(--fx-b90);
  border-radius: 16px;
  background: color-mix(in srgb, var(--background-color), var(--fx-s) 56%);
}

.filex-spec-card > i {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--fx-a88);
  font-size: 20px;
}

.filex-spec-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--fx-h);
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 600;
}

.filex-spec-card p,
.filex-text-content {
  margin: 0;
  color: var(--fx-t34);
  font-size: 14px;
  line-height: 1.6;
}

.filex-guide-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 44px;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
  padding: 18px;
  border-radius: 18px;
  background: var(--fx-a);
  color: var(--fx-c);
  text-decoration: none;
  box-shadow: 0 16px 36px var(--fx-a70);
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.filex-guide-card:hover {
  color: var(--fx-c);
  background: color-mix(in srgb, var(--fx-a), #000 10%);
  box-shadow: 0 18px 42px color-mix(in srgb, var(--fx-a), transparent 66%);
}

.filex-guide-card__icon,
.filex-guide-card__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, #fff, transparent 76%);
  background: color-mix(in srgb, #fff, transparent 88%);
  color: var(--fx-c);
}

.filex-guide-card__icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  font-size: 23px;
}

.filex-guide-card__arrow {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-size: 17px;
}

.filex-guide-card__body {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.filex-guide-card__label {
  color: color-mix(in srgb, var(--fx-c), transparent 22%);
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 500;
}

.filex-guide-card__title {
  color: var(--fx-c);
  font-family: var(--heading-font);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
}

.filex-guide-card__text {
  display: -webkit-box;
  overflow: hidden;
  color: color-mix(in srgb, var(--fx-c), transparent 18%);
  font-size: 14px;
  line-height: 1.55;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.filex-link-group {
  height: 100%;
  padding: 20px;
  border: 1px solid var(--fx-b90);
  border-radius: 18px;
  background: color-mix(in srgb, var(--background-color), var(--fx-s) 56%);
}

.filex-link-group h3 {
  margin: 0 0 14px;
  color: var(--fx-h);
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 600;
}

.filex-link-list a {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 24px;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 11px 12px;
  border: 1px solid var(--fx-b90);
  border-radius: 14px;
  background: var(--fx-s);
  color: color-mix(in srgb, var(--fx-d), transparent 16%);
  text-decoration: none;
  transition: border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.filex-link-list a::after {
  content: "›";
  color: color-mix(in srgb, var(--fx-d), transparent 58%);
  font-size: 22px;
  line-height: 1;
  transition: color 0.25s ease;
}

.filex-link-list a:hover {
  border-color: color-mix(in srgb, var(--fx-a), transparent 68%);
  background: var(--fx-a95);
  color: var(--fx-a);
}

.filex-link-list i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: var(--fx-a88);
  color: var(--fx-a);
}

.filex-rating-head {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}

.filex-rating-score {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid color-mix(in srgb, #d79a00, transparent 78%);
  border-radius: 999px;
  background: color-mix(in srgb, #d79a00, transparent 92%);
  color: var(--fx-h);
  font-family: var(--heading-font);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.filex-rating-score i {
  color: #d79a00;
}

.filex-rating-score small {
  color: color-mix(in srgb, var(--fx-d), transparent 42%);
  font-weight: 500;
}

.filex-rating-box {
  padding: 16px;
  border: 1px solid var(--fx-b90);
  border-radius: 16px;
  background: color-mix(in srgb, var(--background-color), var(--fx-s) 56%);
}

.filex-activation-card {
  padding: 24px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--fx-a), #000 10%);
  border-radius: 22px;
  background: var(--fx-a);
  color: var(--fx-c);
  box-shadow: 0 16px 36px var(--fx-a70);
}

.filex-activation-card h2 {
  margin: 0 0 10px;
  color: var(--fx-c);
  font-family: var(--heading-font);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
}

.filex-activation-card p {
  margin: 0;
  color: color-mix(in srgb, var(--fx-c), transparent 18%);
  font-size: 15px;
  line-height: 1.6;
}

.filex-activation-card__promo {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin: 18px 0;
  padding: 14px;
  border: 1px solid color-mix(in srgb, #fff, transparent 78%);
  border-radius: 16px;
  background: color-mix(in srgb, #fff, transparent 90%);
}

.filex-activation-card__promo i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: color-mix(in srgb, #fff, transparent 86%);
  color: var(--fx-c);
}

.filex-activation-card__promo span {
  color: color-mix(in srgb, var(--fx-c), transparent 16%);
  font-size: 14px;
  line-height: 1.45;
}

.filex-activation-card__content,
.filex-version-single,
.filex-version__pane {
  display: grid;
  gap: 14px;
}

.filex-modal .modal-content {
  overflow: hidden;
  border-radius: 22px;
}

.filex-modal-status {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-radius: 18px;
  background: var(--fx-a94);
}

.filex-modal-status__icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: var(--fx-a88);
  font-size: 24px;
}

.filex-modal-status strong {
  display: block;
  margin-bottom: 5px;
  color: var(--fx-h);
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 600;
}

.filex-modal-status p {
  margin: 0;
  color: var(--fx-t34);
  font-size: 14px;
  line-height: 1.55;
}

.filex-modal-products,
.filex-modal-promo {
  margin-top: 18px;
}

@media (max-width:991.98px) {
  .filex-sidebar {
    position: static;
  }

}

@media (max-width:575.98px) {
  .filex-main-stack {
    gap: 24px;
  }

  .filex-editions-compact {
    padding: 12px;
  }

  .filex-panel,
  .filex-activation-card {
    padding: 22px;
    border-radius: 18px;
  }

  .filex-hero__content h1 {
    font-size: clamp(30px, 8vw, 42px);
  }

  .filex-article-card,
  .filex-guide-card,
  .filex-modal-status {
    grid-template-columns: 1fr;
  }

  .filex-article-card__media img {
    min-height: 180px;
  }

  .filex-rating-head {
    flex-direction: column;
  }

  .filex-accordion .accordion-button {
    padding: 16px 18px;
  }

  .filex-accordion__icon,
  .filex-link-list a::after {
    display: none;
  }

  .filex-link-list a {
    grid-template-columns: 40px minmax(0, 1fr);
  }

}

.filex-programs {
  margin-bottom: 17px;
}

.filex-programs__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
  height: 100%;
  min-height: 36px;
  padding: 7px 10px;
  border: 1px solid var(--fx-b88);
  border-radius: 12px;
  background: color-mix(in srgb, var(--background-color), var(--fx-s) 60%);
  color: color-mix(in srgb, var(--fx-d), transparent 24%);
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.25;
  text-decoration: none;
  transition: border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.filex-programs__item-icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  color: var(--fx-a);
  font-size: 15px;
  line-height: 1;
}

.filex-programs__item.is-active {
  cursor: default;
}

@media (max-width:575.98px) {
  .filex-programs {
    padding: 12px;
    border-radius: 16px;
  }

  .filex-programs__item {
    min-height: 34px;
    padding: 7px 9px;
    font-size: 11px;
  }

}

.filex-download-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: 100%;
  min-height: 132px;
  padding: 18px;
  border: 1px solid var(--fx-b88);
  border-radius: 20px;
  background: var(--fx-s);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 8px 24px var(--fx-b95);
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.filex-download-card:hover {
  border-color: color-mix(in srgb, var(--fx-a), transparent 62%);
  background: color-mix(in srgb, var(--fx-a), transparent 97%);
  color: inherit;
  box-shadow: 0 14px 34px color-mix(in srgb, var(--fx-d), transparent 91%);
}

.filex-download-card__main {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-width: 0;
}

.filex-download-card__media {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  padding: 12px;
  overflow: hidden;
  border: 1px solid var(--fx-a78);
  border-radius: 18px;
  background: var(--fx-a92);
}

.filex-download-card__media img,
.filex-rec-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.filex-download-card__body {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.filex-download-card__top {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  min-width: 0;
}

.filex-download-card__title {
  display: block;
  min-width: 0;
  color: var(--fx-h);
  font-family: var(--heading-font);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
}

.filex-download-card__arch {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: 28px;
  padding: 5px 10px;
  border: 1px solid color-mix(in srgb, var(--fx-a), transparent 74%);
  border-radius: 999px;
  background: var(--fx-a92);
  color: var(--fx-a);
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.filex-download-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  min-width: 0;
}

.filex-download-card__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 28px;
  padding: 5px 9px;
  border: 1px solid var(--fx-b88);
  border-radius: 999px;
  background: color-mix(in srgb, var(--background-color), var(--fx-s) 56%);
  color: var(--fx-t34);
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.filex-download-card__chip i {
  color: var(--fx-a);
  font-size: 13px;
  line-height: 1;
}

.filex-download-card__chip--ok {
  border-color: color-mix(in srgb, #198754, transparent 76%);
  background: color-mix(in srgb, #198754, transparent 92%);
  color: color-mix(in srgb, #198754, #000 14%);
}

.filex-download-card__chip--ok i {
  color: #198754;
}

.filex-download-card__cta {
  display: inline-flex;
  justify-content: flex-end;
  min-width: 0;
}

.filex-download-card__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 10px 15px;
  border-radius: 999px;
  background: var(--fx-a);
  color: var(--fx-c);
  font-family: var(--nav-font);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 10px 24px var(--fx-a76);
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.filex-download-card:hover .filex-download-card__cta-btn,.filex-product-card__cart:hover {
  background: color-mix(in srgb, var(--fx-a), #000 10%);
  box-shadow: 0 12px 28px var(--fx-a70);
}

.filex-download-card__cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: color-mix(in srgb, #fff, transparent 84%);
  color: var(--fx-c);
  font-size: 13px;
}

@media (max-width:767.98px) {
  .filex-download-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
    border-radius: 18px;
  }

  .filex-download-card__main {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 12px;
  }

  .filex-download-card__media {
    width: 62px;
    height: 62px;
    padding: 10px;
    border-radius: 16px;
  }

  .filex-download-card__title {
    font-size: 17px;
  }

  .filex-download-card__cta,
  .filex-download-card__cta-btn {
    width: 100%;
  }

  .filex-download-card__cta-btn {
    justify-content: center;
  }

}

@media (max-width:420px) {
  .filex-download-card__main {
    grid-template-columns: 1fr;
  }

  .filex-download-card__media {
    width: 64px;
    height: 64px;
  }

}

.filex-version-empty {
  padding: 16px;
  border: 1px solid var(--fx-b88);
  border-radius: 16px;
  background: color-mix(in srgb, var(--fx-d), transparent 97%);
  color: var(--fx-t34);
  font-size: 14px;
  line-height: 1.5;
}

.filex-version {
  display: grid;
  gap: 16px;
}

.filex-version__head {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.filex-version__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--fx-a88);
  color: var(--fx-a);
  font-size: 21px;
}

.filex-version__body,
.filex-product-card__pricebox {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.filex-version__label {
  color: var(--fx-a);
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.filex-version__title {
  color: var(--fx-h);
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
}

.filex-version__tabs {
  overflow-x: auto;
  padding-bottom: 2px;
}

.filex-version__nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  min-width: max-content;
}

.filex-version__nav .nav-item {
  flex: 0 0 auto;
}

.filex-version__nav .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid var(--fx-b88);
  border-radius: 999px;
  background: var(--fx-s);
  color: color-mix(in srgb, var(--fx-d), transparent 24%);
  font-family: var(--nav-font);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  box-shadow: none;
  transition: border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.filex-version__nav .nav-link:hover,.filex-version__nav .nav-link.active {
  border-color: color-mix(in srgb, var(--fx-a), transparent 66%);
  background: var(--fx-a94);
  color: var(--fx-a);
}

.filex-version__actual {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 4px 8px;
  border-radius: 999px;
  background: color-mix(in srgb, #198754, transparent 90%);
  color: #198754;
  font-size: 11px;
  font-weight: 500;
}

.filex-version__content {
  margin-top: 16px;
}

@media (max-width:575.98px) {
  .filex-version__head {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .filex-version__icon {
    width: 40px;
    height: 40px;
    border-radius: 13px;
    font-size: 18px;
  }

  .filex-version__title {
    font-size: 16px;
  }

  .filex-version__nav .nav-link {
    min-height: 36px;
    padding: 7px 10px;
    font-size: 12px;
  }

  .filex-version__actual {
    display: none;
  }

}

.filex-alt-card,
.filex-os-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  width: 100%;
  min-height: 96px;
  padding: 16px;
  border: 1px solid var(--fx-b88);
  border-radius: 18px;
  background: var(--fx-s);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 8px 24px var(--fx-b95);
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.filex-alt-card:hover,.filex-os-card:hover,.filex-rec-card:hover {
  border-color: color-mix(in srgb, var(--fx-a), transparent 66%);
  background: color-mix(in srgb, var(--fx-a), transparent 97%);
  color: inherit;
  box-shadow: 0 12px 30px color-mix(in srgb, var(--fx-d), transparent 92%);
}

.filex-alt-card__main {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-width: 0;
}

.filex-alt-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--fx-a78);
  border-radius: 15px;
  background: color-mix(in srgb, var(--fx-a), transparent 90%);
  color: var(--fx-a);
  font-size: 22px;
}

.filex-alt-card__body,
.filex-os-card__body {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.filex-alt-card__title,
.filex-os-card__title {
  display: block;
  min-width: 0;
  color: var(--fx-h);
  font-family: var(--heading-font);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
}

.filex-alt-card__meta,
.filex-os-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.filex-alt-card__badge,
.filex-os-card__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 26px;
  padding: 5px 9px;
  border: 1px solid var(--fx-b88);
  border-radius: 999px;
  background: color-mix(in srgb, var(--background-color), var(--fx-s) 56%);
  color: var(--fx-t34);
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.filex-alt-card__badge i,
.filex-os-card__chip i {
  color: var(--fx-a);
  font-size: 13px;
}

.filex-alt-card__actions,
.filex-os-card__actions {
  display: inline-flex;
  justify-content: flex-end;
}

.filex-alt-card__btn,
.filex-os-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 9px 13px;
  border-radius: 999px;
  background: var(--fx-a92);
  color: var(--fx-a);
  font-family: var(--nav-font);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.filex-alt-card:hover .filex-alt-card__btn,.filex-os-card:hover .filex-os-card__btn {
  background: var(--fx-a);
  color: var(--fx-c);
}

.filex-alt-card__btn-icon,
.filex-os-card__btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

@media (max-width:767.98px) {
  .filex-alt-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 15px;
    border-radius: 16px;
  }

  .filex-alt-card__main {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
  }

  .filex-alt-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    font-size: 20px;
  }

  .filex-alt-card__title {
    font-size: 15px;
  }

  .filex-alt-card__actions,
  .filex-alt-card__btn {
    width: 100%;
  }

  .filex-alt-card__btn {
    justify-content: center;
  }

}

.filex-os-card__main {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-width: 0;
}

.filex-os-card__media {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid var(--fx-a78);
  border-radius: 16px;
  background: color-mix(in srgb, var(--fx-a), transparent 90%);
  color: var(--fx-a);
  font-size: 24px;
}

@media (max-width:767.98px) {
  .filex-os-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 15px;
    border-radius: 16px;
  }

  .filex-os-card__main {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 12px;
  }

  .filex-os-card__media {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    font-size: 22px;
  }

  .filex-os-card__title {
    font-size: 15px;
  }

  .filex-os-card__actions,
  .filex-os-card__btn {
    width: 100%;
  }

  .filex-os-card__btn {
    justify-content: center;
  }

}

.filex-rec-card {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  height: 100%;
  min-height: 108px;
  padding: 16px;
  border: 1px solid var(--fx-b88);
  border-radius: 18px;
  background: var(--fx-s);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 8px 24px var(--fx-b95);
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.filex-rec-card__media {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  padding: 10px;
  overflow: hidden;
  border: 1px solid var(--fx-a78);
  border-radius: 16px;
  background: var(--fx-a92);
}

.filex-rec-card__body {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.filex-rec-card__title {
  display: block;
  overflow: hidden;
  color: var(--fx-h);
  font-family: var(--heading-font);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.filex-rec-card__text {
  display: -webkit-box;
  overflow: hidden;
  color: color-mix(in srgb, var(--fx-d), transparent 36%);
  font-size: 14px;
  line-height: 1.45;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.filex-rec-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  margin-top: 2px;
  color: var(--fx-a);
  font-family: var(--nav-font);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
}

.filex-rec-card__link i {
  font-size: 13px;
  transition: transform 0.25s ease;
}

.filex-rec-card:hover .filex-rec-card__link i {
  transform: translateX(3px);
}

.filex-rec-card--horizontal {
  grid-template-columns: 64px minmax(0, 1fr) 34px;
}

.filex-rec-card__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  color: var(--fx-a);
  font-size: 18px;
}

@media (max-width:575.98px) {
  .filex-rec-card,
  .filex-rec-card--horizontal {
    grid-template-columns: 56px minmax(0, 1fr);
    padding: 14px;
    border-radius: 16px;
  }

  .filex-rec-card__media {
    width: 56px;
    height: 56px;
    border-radius: 14px;
  }

  .filex-rec-card__arrow {
    display: none;
  }

  .filex-rec-card__title {
    font-size: 15px;
  }

}

.filex-product-card {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 14px;
  width: 100%;
  min-height: 190px;
  padding: 14px;
  border: 1px solid var(--fx-b88);
  border-radius: 18px;
  background: var(--fx-s);
  box-shadow: 0 8px 24px var(--fx-b95);
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.filex-product-card__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 162px;
  padding: 10px;
  overflow: hidden;
  border: 1px solid var(--fx-b90);
  border-radius: 16px;
  background: #fff;
  text-decoration: none;
}

.filex-product-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 156px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.filex-product-card:hover .filex-product-card__media img {
  transform: scale(1.03);
}

.filex-product-card__labels {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-start;
}

.filex-product-card__label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 24px;
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--fx-c);
  font-family: var(--nav-font);
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  box-shadow: 0 6px 14px color-mix(in srgb, #000, transparent 86%);
}

.filex-product-card__label i {
  font-size: 11px;
}

.filex-product-card__label--popular {
  background: #d79a00;
}

.filex-product-card__label--new {
  background: var(--fx-a);
}

.filex-product-card__label--favorite {
  background: #198754;
}

.filex-product-card__rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  margin-bottom: 8px;
  color: var(--fx-t38);
  font-size: 13px;
  line-height: 1;
}

.filex-product-card__rating i {
  color: #d79a00;
  font-size: 13px;
}

.filex-product-card__title {
  margin-bottom: 8px;
}

.filex-product-card__title a {
  display: -webkit-box;
  overflow: hidden;
  color: var(--fx-h);
  font-family: var(--heading-font);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.32;
  text-decoration: none;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.filex-product-card__desc {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 12px;
  color: var(--fx-t38);
  font-size: 13px;
  line-height: 1.5;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.filex-product-card__footer {
  display: flex;
  gap: 12px;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: auto;
}

.filex-product-card__oldline {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.filex-product-card__oldprice {
  color: color-mix(in srgb, var(--fx-d), transparent 48%);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.filex-product-card__discount {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 4px 7px;
  border-radius: 999px;
  background: color-mix(in srgb, #dc3545, transparent 90%);
  color: #dc3545;
  font-family: var(--nav-font);
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
}

.filex-product-card__price {
  color: var(--fx-h);
  font-family: var(--heading-font);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
}

.filex-product-card__actions {
  display: inline-flex;
  flex: 0 0 auto;
}

.filex-product-card__cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 9px 13px;
  border: 0;
  border-radius: 999px;
  background: var(--fx-a);
  color: var(--fx-c);
  font-family: var(--nav-font);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 10px 24px var(--fx-a76);
  transition: background-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.filex-product-card__cart:active {
  transform: scale(0.98);
}

.filex-product-card__cart i {
  font-size: 14px;
  line-height: 1;
}

.filex-product-card .ms-cta--hidden {
  display: none;
}

@media (max-width:1199.98px) {
  .filex-product-card {
    grid-template-columns: 104px minmax(0, 1fr);
  }

  .filex-product-card__media {
    min-height: 148px;
  }

  .filex-product-card__media img {
    max-height: 142px;
  }

  .filex-product-card__footer {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .filex-product-card__actions,
  .filex-product-card__cart {
    width: 100%;
  }

}

@media (max-width:575.98px) {
  .filex-product-card {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
    border-radius: 16px;
  }

  .filex-product-card__media {
    min-height: 132px;
    border-radius: 14px;
  }

  .filex-product-card__media img {
    max-height: 126px;
  }

  .filex-product-card__label span {
    display: none;
  }

  .filex-product-card__title a {
    font-size: 15px;
  }

  .filex-product-card__desc {
    font-size: 12px;
  }

  .filex-product-card__price {
    font-size: 19px;
  }

  .filex-product-card__cart {
    min-height: 38px;
    padding: 8px 11px;
    font-size: 12px;
  }

}

@media (max-width:390px) {
  .filex-product-card {
    grid-template-columns: 1fr;
  }

  .filex-product-card__media {
    min-height: 170px;
  }

  .filex-product-card__media img {
    max-height: 164px;
  }

}

/* File page components end */
/* File page final design start */
.filex-page {
  background: var(--background-color);
}

.filex-page::before,.filex-page::after,.filex-panel--download .filex-download-card::after,.filex-output .filex-download-card::after,.filex-stat-card::after,.filex-panel--tools::before,.filex-panel--tools::after,.filex-panel--materials::before,.filex-panel--materials::after {
  display: none;
  content: none;
}

.filex-page > .container-fluid.container-xl,
.filex-editions-compact > *,
.filex-programs__item > *,
.filex-edition > *,
.filex-panel > *,
.filex-panel--download .filex-download-card > *,
.filex-output .filex-download-card > *,
.filex-full-cta__content,
.filex-full-cta__link,
.filex-stats-grid > .row,
.filex-activation-card > * {
  position: relative;
  z-index: 2;
}

.filex-page > .container-fluid.container-xl > .section {
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
  overflow: visible;
}

.filex-page > .container-fluid.container-xl > .section + .section {
  margin-top: var(--filex-section-gap, 28px);
}

.filex-btn {
  min-height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 16px;
  border-radius: 13px;
  font-family: var(--nav-font);
  font-size: 13px;
  font-weight: 560;
  line-height: 1;
  text-decoration: none;
  transition: border-color 0.22s ease, background-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.filex-btn:hover {
  transform: translateY(-1px);
}

.filex-btn--primary {
  border: 1px solid var(--fx-a);
  background: var(--fx-a);
  color: #ffffff;
  box-shadow: 0 10px 24px color-mix(in srgb, var(--fx-a), transparent 82%);
}

.filex-btn--primary:hover {
  border-color: color-mix(in srgb, var(--fx-a), black 12%);
  background: color-mix(in srgb, var(--fx-a), black 12%);
  color: #ffffff;
}

.filex-btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.filex-btn--ghost:hover {
  border-color: color-mix(in srgb, var(--fx-a), white 18%);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.filex-hero-shell {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid color-mix(in srgb, #0f172a, transparent 35%);
  border-radius: 34px;
  background: radial-gradient(circle at 78% 20%, color-mix(in srgb, var(--fx-a), transparent 74%), transparent 30%), #0f172a;
  box-shadow: 0 20px 54px color-mix(in srgb, #0f172a, transparent 78%);
}

.filex-hero-decor {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--filex-hero-decor-color);
  pointer-events: none;
}

.filex-hero-decor i {
  display: inline-flex;
  color: currentColor;
  font-size: var(--filex-hero-decor-icon);
  line-height: 1;
  transform: rotate(var(--filex-hero-decor-icon-rotate));
}

.filex-hero-decor--one {
  --filex-hero-decor-color: rgba(255, 255, 255, 0.09);
  --filex-hero-decor-icon: 82px;
  --filex-hero-decor-icon-rotate: -18deg;
  left: -80px;
  bottom: -100px;
  width: 300px;
  height: 300px;
  border: 1px solid var(--filex-hero-decor-color);
  border-radius: 70px;
  transform: rotate(18deg);
}

.filex-hero-decor--two {
  --filex-hero-decor-color: rgba(255, 255, 255, 0.14);
  --filex-hero-decor-icon: 34px;
  --filex-hero-decor-icon-rotate: -12deg;
  right: 36px;
  top: 34px;
  width: 110px;
  height: 110px;
  border: 1px solid var(--filex-hero-decor-color);
  border-radius: 34px;
  transform: rotate(12deg);
}

.filex-hero__content {
  position: relative;
  z-index: 3;
  max-width: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding-right: 26px;
  --filex-hero-h1-margin-top: 0px;
  --filex-hero-h1-margin-bottom: 0px;
  --filex-hero-copy-gap: 18px;
  --filex-hero-trust-gap: 18px;
  --filex-hero-actions-gap: 28px;
}

.filex-hero__content h1 {
  max-width: 1120px;
  margin: var(--filex-hero-h1-margin-top) 0 var(--filex-hero-h1-margin-bottom);
  color: #ffffff;
  font-family: var(--heading-font);
  font-size: clamp(38px, 4.8vw, 68px);
  font-weight: 740;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.filex-hero__content p {
  max-width: 880px;
  margin: var(--filex-hero-copy-gap) 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.72;
}

.filex-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: var(--filex-hero-trust-gap);
}

.filex-hero__trust-badge {
  --filex-hero-trust-color: color-mix(in srgb, var(--fx-a), #ffffff 22%);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 31px;
  padding: 7px 11px;
  border: 1px solid color-mix(in srgb, var(--filex-hero-trust-color), transparent 46%);
  border-radius: 999px;
  background: color-mix(in srgb, var(--filex-hero-trust-color), transparent 84%);
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  box-shadow: 0 10px 26px color-mix(in srgb, var(--filex-hero-trust-color), transparent 84%), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
}

.filex-hero__trust-badge:nth-child(1) {
  --filex-hero-trust-color: #22c55e;
}

.filex-hero__trust-badge:nth-child(2) {
  --filex-hero-trust-color: #38bdf8;
}

.filex-hero__trust-badge:nth-child(3) {
  --filex-hero-trust-color: #a78bfa;
}

.filex-hero__trust-badge i {
  color: color-mix(in srgb, var(--filex-hero-trust-color), #ffffff 18%);
  font-size: 14px;
  line-height: 1;
  text-shadow: 0 0 18px color-mix(in srgb, var(--filex-hero-trust-color), transparent 34%);
}

.filex-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: var(--filex-hero-actions-gap);
}

.filex-badge--light {
  border-color: color-mix(in srgb, #fff, transparent 76%);
  background: color-mix(in srgb, #fff, transparent 88%);
  color: var(--fx-c);
}

.filex-hero-stats {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px color-mix(in srgb, #0f172a, transparent 62%);
}

.filex-hero-stat {
  grid-template-columns: 46px minmax(0, 1fr);
  min-height: 70px;
  padding: 12px;
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.filex-hero-stat__icon {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.08);
  color: color-mix(in srgb, var(--fx-a), white 24%);
}

.filex-hero-stat__body span {
  color: rgba(255, 255, 255, 0.58);
}

.filex-hero-stat__body strong,
.filex-panel--articles .filex-panel-head h2,
.filex-panel--articles .filex-article-card__title {
  color: #ffffff;
}

.filex-hero-stat__body small {
  color: rgba(255, 255, 255, 0.52);
}

.filex-editions-compact {
  position: relative;
  overflow: hidden;
  padding: 16px;
  border: 1px solid var(--fx-b88);
  border-radius: 24px;
  background: linear-gradient(135deg, #ffffff 0%, color-mix(in srgb, var(--fx-a), transparent 98%) 100%);
  box-shadow: 0 8px 22px color-mix(in srgb, var(--fx-d), transparent 96%);
}

.filex-editions-compact::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  width: 120px;
  height: 120px;
  border-radius: 0 24px 0 999px;
  background: var(--fx-a95);
  pointer-events: none;
}

.filex-programs {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid color-mix(in srgb, var(--fx-d), transparent 91%);
}

.filex-programs__head,
.filex-editions-compact__head {
  margin-bottom: 8px;
}

.filex-programs__label,
.filex-editions-compact__label {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  padding: 5px 8px;
  border: 1px solid color-mix(in srgb, var(--fx-a), transparent 82%);
  border-radius: 999px;
  background: var(--fx-a95);
  color: var(--fx-a);
  font-family: var(--nav-font);
  font-size: 11px;
  font-weight: 560;
  line-height: 1;
}

.filex-programs__label i,
.filex-editions-compact__label i {
  color: currentColor;
  font-size: 12px;
}

.filex-programs__grid,
.filex-editions-compact__grid {
  --bs-gutter-x: 0.45rem;
  --bs-gutter-y: 0.45rem;
  align-items: stretch;
}

.filex-programs__item,
.filex-edition {
  position: relative;
  overflow: hidden;
  min-height: 38px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
  padding: 8px 9px 8px 10px;
  border: 1px solid var(--fx-b88);
  border-radius: 13px;
  background: #ffffff;
  color: color-mix(in srgb, var(--fx-d), transparent 26%);
  text-decoration: none;
  box-shadow: 0 6px 16px color-mix(in srgb, var(--fx-d), transparent 97%);
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.filex-programs__item::before,.filex-edition::before {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -20px;
  z-index: 0;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--fx-a), transparent 97%);
  pointer-events: none;
}

.filex-programs__item:hover,.filex-edition:hover {
  border-color: color-mix(in srgb, var(--fx-a), transparent 68%);
  background: color-mix(in srgb, var(--fx-a), transparent 97%);
  color: var(--fx-a);
  box-shadow: 0 8px 18px color-mix(in srgb, var(--fx-a), transparent 90%);
  transform: translateY(-1px);
}

.filex-programs__item.is-active,
.filex-edition.is-active {
  border-color: color-mix(in srgb, var(--fx-a), transparent 56%);
  background: color-mix(in srgb, var(--fx-a), transparent 91%);
  color: var(--fx-a);
  box-shadow: 0 8px 18px var(--fx-a88);
}

.filex-programs__item-text,
.filex-edition span {
  min-width: 0;
  color: inherit;
  font-family: var(--heading-font);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.18;
}

.filex-programs__item-icon,
.filex-edition i {
  width: 24px;
  height: 24px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--fx-a), transparent 84%);
  border-radius: 9px;
  background: var(--fx-a95);
  color: var(--fx-a);
  font-size: 12px;
  line-height: 1;
}

.filex-main-stack {
  gap: 34px;
}

.filex-panel {
  position: relative;
  overflow: visible;
  padding: 30px;
  border-radius: 28px;
  background: #ffffff;
}

.filex-panel::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 0;
  width: 58px;
  height: 58px;
  border: 1px solid color-mix(in srgb, var(--fx-a), transparent 86%);
  border-radius: 18px;
  transform: rotate(10deg);
  opacity: 0.55;
  pointer-events: none;
}

.filex-panel-head {
  margin-bottom: 24px;
  padding-right: 74px;
}

.filex-panel-head h2,
.filex-rating-head h2 {
  font-weight: 690;
  letter-spacing: -0.025em;
}

.filex-panel--download {
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--fx-a80);
  border-radius: 28px;
  background: linear-gradient(135deg, #ffffff 0%, color-mix(in srgb, var(--fx-a), transparent 97%) 100%);
  color: inherit;
}

.filex-panel--download::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: 132px;
  height: 132px;
  border-radius: 999px 0 28px 0;
  background: color-mix(in srgb, var(--fx-a), transparent 93%);
  pointer-events: none;
}

.filex-panel--download::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 24px;
  z-index: 0;
  width: 62px;
  height: 62px;
  border: 1px solid color-mix(in srgb, var(--fx-a), transparent 84%);
  border-radius: 20px;
  transform: rotate(10deg);
  opacity: 0.72;
  pointer-events: none;
}

.filex-panel--download .filex-panel-head {
  max-width: 820px;
  margin-bottom: 22px;
  padding: 0 72px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.filex-panel--download .filex-panel-head h2 {
  color: var(--fx-h);
}

.filex-panel--download .filex-panel-head p {
  color: var(--fx-t34);
}

.filex-panel--download .filex-download-card,
.filex-output .filex-download-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--fx-b88);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 10px 26px color-mix(in srgb, var(--fx-d), transparent 94%);
  transform: translateZ(0);
  transition: border-color 0.24s ease, background-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.filex-panel--download .filex-download-card::before,.filex-output .filex-download-card::before {
  content: "";
  position: absolute;
  right: -46px;
  bottom: -52px;
  z-index: 0;
  width: 145px;
  height: 145px;
  border-radius: 999px;
  background: radial-gradient(circle, color-mix(in srgb, var(--fx-a), transparent 91%) 0%, transparent 68%);
  pointer-events: none;
  transition: transform 0.24s ease;
}

.filex-panel--download .filex-download-card:hover,.filex-output .filex-download-card:hover {
  border-color: color-mix(in srgb, var(--fx-a), transparent 58%);
  background: linear-gradient(135deg, #ffffff 0%, color-mix(in srgb, var(--fx-a), transparent 96%) 100%);
  box-shadow: 0 16px 38px color-mix(in srgb, var(--fx-a), transparent 84%);
  transform: translateY(-2px);
}

.filex-panel--download .filex-download-card:hover::before,.filex-output .filex-download-card:hover::before {
  transform: scale(1.08);
}

.filex-download-card__cta-btn {
  min-height: 48px;
  border-radius: 16px;
  box-shadow: 0 10px 24px var(--fx-a80);
  transition: background-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.filex-download-card:hover .filex-download-card__cta-btn {
  box-shadow: 0 14px 30px var(--fx-a76);
  transform: translateY(-1px);
}

.filex-panel--sources {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(270px, 0.34fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding: 30px;
  border: 1px solid var(--fx-b88);
  border-radius: 28px;
  background: linear-gradient(135deg, #ffffff 0%, color-mix(in srgb, var(--fx-a), transparent 97%) 100%);
}

.filex-panel--sources::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
  width: 132px;
  height: 132px;
  border-radius: 0 999px 0 28px;
  background: var(--fx-a95);
  pointer-events: none;
}

.filex-panel--sources::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 22px;
  z-index: 0;
  width: 58px;
  height: 58px;
  border: 1px solid color-mix(in srgb, var(--fx-a), transparent 86%);
  border-radius: 18px;
  transform: rotate(10deg);
  opacity: 0.55;
  pointer-events: none;
}

.filex-panel--sources .filex-panel-head {
  position: relative;
  top: auto;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.filex-panel--sources .filex-output,
.filex-panel--sources .filex-output--cards {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.filex-panel--sources .filex-alt-card {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
}

.filex-panel--sources .filex-alt-card__main {
  min-width: 0;
  flex: 1 1 auto;
}

.filex-panel--sources .filex-alt-card__actions {
  flex: 0 0 auto;
  min-width: 160px;
}

.filex-panel--sources .filex-alt-card__btn {
  justify-content: center;
  width: 100%;
  min-width: 160px;
}

.filex-version__tabs {
  overflow-x: auto;
  padding: 6px;
  border: 1px solid var(--fx-b90);
  border-radius: 18px;
  background: color-mix(in srgb, var(--fx-d), transparent 97%);
  scrollbar-width: thin;
}

.filex-version__nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  min-width: max-content;
  margin: 0;
}

.filex-version__nav .nav-item {
  flex: 0 0 auto;
}

.filex-version__nav .nav-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: transparent;
  color: color-mix(in srgb, var(--fx-d), transparent 28%);
  font-family: var(--nav-font);
  font-size: 13px;
  font-weight: 560;
  line-height: 1;
  white-space: nowrap;
  box-shadow: none;
  transition: border-color 0.22s ease, background-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.filex-version__nav .nav-link:hover {
  border-color: var(--fx-a78);
  background: #ffffff;
  color: var(--fx-a);
}

.filex-version__nav .nav-link.active {
  border-color: color-mix(in srgb, var(--fx-a), transparent 66%);
  background: #ffffff;
  color: var(--fx-a);
  box-shadow: 0 10px 22px var(--fx-a88);
}

.filex-version__actual {
  min-height: 22px;
  padding: 4px 8px;
  border: 1px solid color-mix(in srgb, #198754, transparent 76%);
  border-radius: 999px;
  background: color-mix(in srgb, #198754, transparent 90%);
  color: #198754;
  font-size: 11px;
  font-weight: 560;
  line-height: 1;
}

.filex-full-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.46fr);
  gap: 18px;
  align-items: stretch;
  padding: 26px;
  border: 1px solid color-mix(in srgb, #0f172a, transparent 38%);
  border-radius: 30px;
  background: radial-gradient(circle at top right, var(--fx-a70), transparent 34%), #0f172a;
  color: #ffffff;
  box-shadow: 0 20px 54px color-mix(in srgb, #0f172a, transparent 82%);
  transform: translate3d(0, 0, 0);
  transition: border-color 0.55s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1), filter 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.filex-full-cta:hover {
  border-color: color-mix(in srgb, var(--fx-a), white 14%);
  box-shadow: 0 28px 74px color-mix(in srgb, #0f172a, transparent 70%), 0 0 0 1px rgba(255, 255, 255, 0.045) inset;
  filter: saturate(1.06);
  transform: translate3d(0, -3px, 0);
}

.filex-full-cta::before {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  z-index: 0;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 46px;
  background: rgba(255, 255, 255, 0.02);
  transform: rotate(14deg) scale(1);
  pointer-events: none;
  transition: border-color 0.65s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.65s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.filex-full-cta:hover::before {
  border-color: color-mix(in srgb, var(--fx-a), white 20%);
  background: rgba(255, 255, 255, 0.065);
  opacity: 0.95;
  transform: rotate(3deg) scale(1.08);
}

.filex-full-cta::after {
  content: "";
  position: absolute;
  left: 26px;
  bottom: 24px;
  z-index: 0;
  width: 86px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--fx-a), rgba(255, 255, 255, 0.1));
  opacity: 0.42;
  pointer-events: none;
  transition: width 0.7s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.filex-full-cta:hover::after {
  width: 178px;
  opacity: 0.86;
}

.filex-full-cta__content {
  padding-right: 82px;
}

.filex-full-cta__spark {
  position: absolute;
  right: 22px;
  top: 22px;
  z-index: 3;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.08);
  color: color-mix(in srgb, var(--fx-a), white 28%);
  transform: rotate(10deg) translate3d(0, 0, 0);
  pointer-events: none;
  transition: background-color 0.55s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1), color 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.filex-full-cta:hover .filex-full-cta__spark {
  background: color-mix(in srgb, var(--fx-a), transparent 66%);
  color: #ffffff;
  box-shadow: 0 18px 40px color-mix(in srgb, var(--fx-a), transparent 72%);
  transform: rotate(0deg) translate3d(0, -7px, 0);
}

.filex-full-cta__spark i {
  transform: rotate(-10deg) scale(1);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.filex-full-cta:hover .filex-full-cta__spark i {
  transform: rotate(0deg) scale(1.1);
}

.filex-full-cta h2 {
  max-width: 720px;
  margin: 0;
  color: #ffffff;
  font-family: var(--heading-font);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 720;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.filex-full-cta p {
  max-width: 700px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  line-height: 1.7;
}

.filex-full-cta__link {
  position: relative;
  min-height: 170px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 46px;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  text-decoration: none;
  backdrop-filter: blur(14px);
  transform: translate3d(0, 0, 0);
  will-change: transform;
  transition: border-color 0.46s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.46s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.46s cubic-bezier(0.22, 1, 0.36, 1), transform 0.46s cubic-bezier(0.22, 1, 0.36, 1);
}

.filex-full-cta__link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.075) 0%, rgba(255, 255, 255, 0.025) 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.46s cubic-bezier(0.22, 1, 0.36, 1);
}

.filex-full-cta__link:hover {
  border-color: color-mix(in srgb, var(--fx-a), white 14%);
  background: rgba(255, 255, 255, 0.105);
  color: #ffffff;
  box-shadow: 0 14px 32px color-mix(in srgb, #000000, transparent 84%);
  transform: translate3d(0, -2px, 0);
}

.filex-full-cta__link:hover::before {
  opacity: 1;
}

.filex-full-cta__link-icon {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 0;
  width: 78px;
  height: 78px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.055);
  color: color-mix(in srgb, var(--fx-a), white 28%);
  opacity: 0.26;
  transform: rotate(12deg) translate3d(0, 0, 0);
  pointer-events: none;
  will-change: transform, opacity;
  transition: opacity 0.46s cubic-bezier(0.22, 1, 0.36, 1), transform 0.46s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.46s cubic-bezier(0.22, 1, 0.36, 1);
}

.filex-full-cta__link:hover .filex-full-cta__link-icon {
  opacity: 0.38;
  background: rgba(255, 255, 255, 0.075);
  transform: rotate(8deg) scale(1.02) translate3d(0, 0, 0);
}

.filex-full-cta__link-icon i {
  font-size: 34px;
}

.filex-full-cta__link-body {
  position: relative;
  z-index: 2;
  min-width: 0;
  display: grid;
  gap: 7px;
  padding: 0;
}

.filex-full-cta__link-body strong {
  display: block;
  color: #ffffff;
  font-family: var(--heading-font);
  font-size: 19px;
  font-weight: 650;
  line-height: 1.22;
}

.filex-full-cta__link-body span {
  display: block;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  line-height: 1.45;
}

.filex-full-cta__link-arrow {
  position: relative;
  z-index: 3;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: color-mix(in srgb, var(--fx-a), white 28%);
  transform: translate3d(0, 0, 0);
  transition: background-color 0.46s cubic-bezier(0.22, 1, 0.36, 1), color 0.46s cubic-bezier(0.22, 1, 0.36, 1), transform 0.46s cubic-bezier(0.22, 1, 0.36, 1);
}

.filex-full-cta__link:hover .filex-full-cta__link-arrow {
  background: var(--fx-a);
  color: #ffffff;
  transform: translate3d(2px, 0, 0);
}

@media (prefers-reduced-motion:no-preference) {
  .filex-full-cta {
    animation: filexCtaSectionBreath 5.2s ease-in-out infinite;
  }

  .filex-full-cta__spark {
    animation: filexCtaSparkFloat 3.4s ease-in-out infinite;
  }

  .filex-full-cta::after {
    animation: filexCtaLineGlow 4.2s ease-in-out infinite;
  }

  @keyframes filexCtaSectionBreath {
    0%,
    100% {
      box-shadow: 0 20px 54px color-mix(in srgb, #0f172a, transparent 82%);
    }

    50% {
      box-shadow: 0 26px 68px color-mix(in srgb, #0f172a, transparent 74%), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
    }

  }

  @keyframes filexCtaSparkFloat {
    0%,
    100% {
      transform: rotate(10deg) translate3d(0, 0, 0);
    }

    50% {
      transform: rotate(10deg) translate3d(0, -8px, 0);
    }

  }

  @keyframes filexCtaLineGlow {
    0%,
    100% {
      opacity: 0.38;
      width: 86px;
    }

    50% {
      opacity: 0.82;
      width: 156px;
    }

  }

}

.filex-stats-grid {
  position: relative;
  overflow: hidden;
}

.filex-stats-grid::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 0;
  border: 1px dashed color-mix(in srgb, var(--fx-d), transparent 92%);
  border-radius: 20px;
  pointer-events: none;
}

.filex-stats-grid > .row > .col-12:nth-child(1) .filex-stat-card,.filex-stats-grid > .row > [class*="col-"]:nth-child(1) .filex-stat-card {
  --filex-stat-tone: var(--fx-a);
}

.filex-stats-grid > .row > .col-12:nth-child(2) .filex-stat-card,.filex-stats-grid > .row > [class*="col-"]:nth-child(2) .filex-stat-card {
  --filex-stat-tone: #198754;
}

.filex-stats-grid > .row > .col-12:nth-child(3) .filex-stat-card,.filex-stats-grid > .row > [class*="col-"]:nth-child(3) .filex-stat-card {
  --filex-stat-tone: #d79a00;
}

.filex-stats-grid > .row > .col-12:nth-child(4) .filex-stat-card,.filex-stats-grid > .row > [class*="col-"]:nth-child(4) .filex-stat-card {
  --filex-stat-tone: #6f42c1;
  min-height: 78px;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  grid-template-areas: "icon label value";
  column-gap: 14px;
}

.filex-stat-card {
  --filex-stat-tone: var(--fx-a);
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 106px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  grid-template-areas: "label icon" "value icon";
  column-gap: 12px;
  align-items: center;
  padding: 16px;
  border: 1px solid color-mix(in srgb, var(--filex-stat-tone), transparent 76%);
  border-radius: 20px;
  background: color-mix(in srgb, var(--filex-stat-tone), #ffffff 96%);
  box-shadow: none;
}

.filex-stat-card::before {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -22px;
  z-index: 0;
  width: 76px;
  height: 76px;
  border: 1px solid color-mix(in srgb, var(--filex-stat-tone), transparent 78%);
  border-radius: 26px;
  background: color-mix(in srgb, var(--filex-stat-tone), transparent 93%);
  transform: rotate(14deg);
  pointer-events: none;
}

.filex-stat-card__icon {
  grid-area: icon;
  position: relative;
  z-index: 2;
  justify-self: end;
  width: 44px;
  height: 44px;
  margin: 0;
  border: 1px solid color-mix(in srgb, var(--filex-stat-tone), transparent 68%);
  border-radius: 15px;
  background: #ffffff;
  box-shadow: 0 8px 18px color-mix(in srgb, var(--filex-stat-tone), transparent 90%);
  color: var(--filex-stat-tone);
}

.filex-stats-grid > .row > .col-12:nth-child(4) .filex-stat-card__icon,.filex-stats-grid > .row > [class*="col-"]:nth-child(4) .filex-stat-card__icon {
  justify-self: start;
}

.filex-stat-card__icon i {
  color: currentColor;
  font-size: 19px;
}

.filex-stat-card__label {
  grid-area: label;
  position: relative;
  z-index: 2;
  align-self: end;
  width: fit-content;
  margin: 0;
  padding: 5px 9px;
  border: 1px solid color-mix(in srgb, var(--filex-stat-tone), transparent 78%);
  border-radius: 999px;
  background: #ffffff;
  color: color-mix(in srgb, var(--filex-stat-tone), #111827 24%);
  font-family: var(--nav-font);
  font-size: 11px;
  font-weight: 560;
  line-height: 1;
}

.filex-stats-grid > .row > .col-12:nth-child(4) .filex-stat-card__label,.filex-stats-grid > .row > [class*="col-"]:nth-child(4) .filex-stat-card__label {
  align-self: center;
}

.filex-stat-card strong {
  grid-area: value;
  position: relative;
  z-index: 2;
  align-self: start;
  min-width: 0;
  margin: 9px 0 0;
  overflow: hidden;
  color: var(--fx-h);
  font-family: var(--heading-font);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 690;
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.filex-stats-grid > .row > .col-12:nth-child(4) .filex-stat-card > strong,.filex-stats-grid > .row > [class*="col-"]:nth-child(4) .filex-stat-card > strong {
  align-self: center;
  justify-self: end;
  max-width: 100%;
  margin: 0;
  font-size: clamp(17px, 1.6vw, 22px);
}

.filex-stat-card__value-link {
  grid-area: value;
  position: relative;
  z-index: 2;
  justify-self: end;
  min-width: 0;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid color-mix(in srgb, var(--filex-stat-tone), transparent 78%);
  border-radius: 999px;
  background: #ffffff;
  color: var(--fx-h);
  text-decoration: none;
  box-shadow: 0 8px 18px color-mix(in srgb, var(--filex-stat-tone), transparent 92%);
  transition: border-color 0.22s ease, background-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.filex-stat-card__value-link:hover {
  border-color: color-mix(in srgb, var(--filex-stat-tone), transparent 52%);
  background: color-mix(in srgb, var(--filex-stat-tone), #ffffff 94%);
  color: var(--filex-stat-tone);
  box-shadow: 0 10px 22px color-mix(in srgb, var(--filex-stat-tone), transparent 88%);
  transform: translateY(-1px);
}

.filex-stat-card__value-link strong {
  margin: 0;
  color: inherit;
  font-size: clamp(17px, 1.6vw, 22px);
}

.filex-stat-card__value-link i {
  flex: 0 0 auto;
  color: currentColor;
  font-size: 14px;
}

.filex-panel--tools,
.filex-panel--materials {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.filex-panel--tools .filex-panel-head,
.filex-panel--materials .filex-panel-head {
  max-width: 920px;
  margin: 0 0 18px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.filex-panel--mosaic,
.filex-panel--info,
.filex-panel--rating,
.filex-panel--os,
.filex-panel--stripe {
  padding: 30px;
  border: 1px solid var(--fx-b88);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 8px 24px var(--fx-b95);
}

.filex-panel--mosaic {
  background: radial-gradient(circle at 20% 12%, color-mix(in srgb, var(--fx-a), transparent 91%), transparent 30%), #ffffff;
}

.filex-panel--stripe,
.filex-panel--os {
  border-left: 4px solid var(--fx-a);
  background: linear-gradient(90deg, color-mix(in srgb, var(--fx-a), transparent 96%) 0%, #ffffff 38%);
}

.filex-panel--info {
  border-style: dashed;
}

.filex-panel--articles {
  border: 1px solid color-mix(in srgb, #0f172a, transparent 40%);
  background: #0f172a;
  color: #ffffff;
  box-shadow: 0 20px 54px color-mix(in srgb, #0f172a, transparent 82%);
}

.filex-panel--articles .filex-panel-head p {
  color: rgba(255, 255, 255, 0.64);
}

.filex-panel--articles .filex-badge {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: color-mix(in srgb, var(--fx-a), white 28%);
}

.filex-panel--articles .filex-article-card {
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
}

.filex-panel--rating {
  border-color: color-mix(in srgb, #d79a00, transparent 78%);
  background: linear-gradient(135deg, #ffffff 0%, color-mix(in srgb, #d79a00, transparent 95%) 100%);
}

.filex-activation-card {
  position: relative;
  overflow: hidden;
  border-color: color-mix(in srgb, #0f172a, transparent 38%);
  border-radius: 28px;
  background: radial-gradient(circle at top right, color-mix(in srgb, var(--fx-a), transparent 68%), transparent 34%), #0f172a;
  box-shadow: 0 20px 54px color-mix(in srgb, #0f172a, transparent 78%);
}

.filex-activation-card::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0 28px 0 46px;
  pointer-events: none;
}

.filex-activation-card__spark {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 1;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: color-mix(in srgb, var(--fx-a), white 28%);
  transform: rotate(10deg);
  pointer-events: none;
}

.filex-activation-card__spark i {
  color: currentColor;
  font-size: 22px;
  line-height: 1;
  transform: rotate(-10deg);
}

.filex-activation-card__promo {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.filex-output .item,
.filex-output .service,
.filex-output .service-item,
.filex-output .download-item,
.filex-output .download-card,
.filex-output .card,
.filex-output .tps-card,
.filex-output .resource-card,
.filex-output .file-card,
.filex-output .dp-card,
.filex-output .ms2_form,
.filex-panel .ms2_form,
.filex-panel .service-content,
.filex-panel .service-list,
.filex-panel .tps-item,
.filex-panel .tpl-card,
.filex-panel .utility-card,
.filex-panel .instruction-card,
.filex-panel .article-card,
.filex-panel .product-card {
  border-color: var(--fx-b88);
  border-radius: 20px;
}

.filex-output .item,
.filex-output .service-item,
.filex-output .download-item,
.filex-output .download-card,
.filex-output .card,
.filex-output .tps-card,
.filex-output .resource-card,
.filex-output .file-card,
.filex-output .dp-card,
.filex-panel .tpl-card,
.filex-panel .utility-card,
.filex-panel .instruction-card,
.filex-panel .article-card,
.filex-panel .product-card {
  background: #ffffff;
  box-shadow: 0 8px 24px var(--fx-b95);
}

.filex-output a:not([class]),.filex-output .btn,.filex-output button,.filex-panel a.btn,.filex-panel .button,.filex-panel .btn-icon,.filex-panel .service-link,.filex-panel .download-link,.filex-panel .download-btn,.filex-panel .card-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid color-mix(in srgb, var(--fx-a), transparent 74%);
  border-radius: 14px;
  background: var(--fx-a92);
  color: var(--fx-a);
  font-family: var(--nav-font);
  font-size: 13px;
  font-weight: 560;
  line-height: 1;
  text-decoration: none;
  transition: border-color 0.22s ease, background-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.filex-output a:not([class]):hover,.filex-output .btn:hover,.filex-output button:hover,.filex-panel a.btn:hover,.filex-panel .button:hover,.filex-panel .btn-icon:hover,.filex-panel .service-link:hover,.filex-panel .download-link:hover,.filex-panel .download-btn:hover,.filex-panel .card-link:hover {
  border-color: var(--fx-a);
  background: var(--fx-a);
  color: #ffffff;
  transform: translateY(-1px);
}

.filex-output h3,
.filex-output h4,
.filex-output .title,
.filex-output .service-title,
.filex-output .download-title,
.filex-output .card-title,
.filex-output .pagetitle {
  color: var(--fx-h);
  font-family: var(--heading-font);
  font-weight: 650;
  line-height: 1.25;
}

.filex-output p,
.filex-output .text,
.filex-output .desc,
.filex-output .description,
.filex-output .introtext,
.filex-output .service-description,
.filex-output .download-description {
  color: var(--fx-t34);
  line-height: 1.58;
}

.filex-output .badge,
.filex-output .label,
.filex-output .tag,
.filex-output .chip,
.filex-output .tps-pill,
.filex-output .tps-chip-mini {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 8px;
  border: 1px solid var(--fx-a80);
  border-radius: 999px;
  background: var(--fx-a94);
  color: var(--fx-a);
  font-family: var(--nav-font);
  font-size: 11px;
  font-weight: 560;
  line-height: 1;
}

.filex-output ul,
.filex-panel .filex-output ul {
  padding-left: 0;
  list-style: none;
}

.filex-output li::marker {
  content: "";
}

.filex-modal .modal-content {
  border: 1px solid color-mix(in srgb, #0f172a, transparent 40%);
  border-radius: 28px;
  box-shadow: 0 24px 70px color-mix(in srgb, #0f172a, transparent 72%);
}

.filex-modal .modal-header {
  border-bottom: 1px solid var(--fx-b90);
  background: linear-gradient(135deg, #ffffff 0%, color-mix(in srgb, var(--fx-a), transparent 97%) 100%);
}

.filex-modal .modal-title {
  color: var(--fx-h);
  font-family: var(--heading-font);
  font-weight: 690;
}

.filex-modal .modal-footer .btn,
.filex-modal .modal-footer .btn-primary {
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 14px;
  font-family: var(--nav-font);
  font-size: 13px;
  font-weight: 560;
}

@media (max-width:1199.98px) {
  .filex-panel--sources,
  .filex-full-cta {
    grid-template-columns: 1fr;
  }

  .filex-full-cta__content {
    padding-right: 82px;
  }

}

@media (max-width:991.98px) {
  .filex-hero__content {
    padding-right: 0;
  }

  .filex-hero-stats {
    margin-top: 6px;
  }

  .filex-sidebar {
    position: static;
  }

  .filex-panel--sources .filex-alt-card {
    align-items: stretch;
  }

}

@media (max-width:767.98px) {
  .filex-page > .container-fluid.container-xl > .section + .section {
    margin-top: var(--filex-section-gap-mobile, 22px);
  }

  .filex-hero-shell {
    padding: 22px;
    border-radius: 24px;
  }

  .filex-hero__actions,
  .filex-panel--sources .filex-alt-card {
    flex-direction: column;
  }

  .filex-btn {
    width: 100%;
  }

  .filex-panel-head,
  .filex-full-cta__content {
    padding-right: 0;
  }

  .filex-panel--sources .filex-alt-card__actions,
  .filex-panel--sources .filex-alt-card__btn {
    width: 100%;
    min-width: 0;
  }

  .filex-editions-compact {
    padding: 14px;
    border-radius: 20px;
  }

  .filex-full-cta__spark {
    position: relative;
    right: auto;
    top: auto;
    margin-bottom: 16px;
  }

  .filex-full-cta__link {
    grid-template-columns: minmax(0, 1fr) 44px;
  }

  .filex-panel,
  .filex-activation-card {
    padding: 20px;
    border-radius: 20px;
  }

}

@media (max-width:575.98px) {
  .filex-hero__content h1 {
    font-size: clamp(31px, 8vw, 43px);
  }

  .filex-hero__content p {
    font-size: 15px;
  }

  .filex-programs__item,
  .filex-edition {
    min-height: 36px;
    padding: 7px 8px;
    border-radius: 12px;
  }

  .filex-programs__item-icon,
  .filex-edition i {
    width: 22px;
    height: 22px;
    border-radius: 8px;
  }

  .filex-stat-card,
  .filex-stats-grid > .row > .col-12:nth-child(4) .filex-stat-card {
    min-height: 76px;
    grid-template-columns: 40px minmax(0, 1fr);
    grid-template-areas: "icon label" "icon value";
    column-gap: 12px;
    padding: 13px;
    border-radius: 18px;
  }

  .filex-stats-grid > .row > .col-12:nth-child(4) .filex-stat-card > strong {
    justify-self: start;
    margin-top: 5px;
  }

  .filex-stat-card__icon,
  .filex-stats-grid > .row > .col-12:nth-child(4) .filex-stat-card__icon {
    justify-self: start;
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }

  .filex-stat-card__label,
  .filex-stats-grid > .row > .col-12:nth-child(4) .filex-stat-card__label {
    align-self: end;
  }

  .filex-full-cta {
    padding: 22px;
    border-radius: 24px;
  }

  .filex-full-cta__link {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr) 38px;
    gap: 10px;
    align-items: center;
    padding: 14px;
    border-radius: 18px;
  }

  .filex-full-cta__link-body {
    gap: 5px;
  }

  .filex-full-cta__link-body strong {
    font-size: 16px;
    line-height: 1.2;
  }

  .filex-full-cta__link-body span {
    font-size: 13px;
    line-height: 1.42;
  }

  .filex-full-cta__link-arrow {
    justify-self: end;
    width: 38px;
    height: 38px;
  }

  .filex-full-cta__link-icon {
    position: absolute;
    left: 16px;
    top: 16px;
    width: 58px;
    height: 58px;
    opacity: 0.22;
  }

  .filex-version__actual {
    display: none;
  }

}

@media (max-width:767.98px) {
  .filex-stats-grid {
    padding: 10px;
    border-radius: 22px;
  }

  .filex-stats-grid::before {
    inset: 10px;
    border-radius: 18px;
  }

  .filex-stat-card,
  .filex-stats-grid > .row > .col-12:nth-child(4) .filex-stat-card {
    min-height: 76px;
    grid-template-columns: 40px minmax(0, 1fr);
    grid-template-areas: "icon label" "icon value";
    column-gap: 12px;
    padding: 13px;
    border-radius: 18px;
  }

  .filex-stat-card::after {
    display: none;
  }

  .filex-stat-card strong,
  .filex-stats-grid > .row > .col-12:nth-child(4) .filex-stat-card > strong {
    justify-self: start;
    margin-top: 5px;
    font-size: 18px;
  }

  .filex-stat-card__icon,
  .filex-stats-grid > .row > .col-12:nth-child(4) .filex-stat-card__icon {
    justify-self: start;
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }

  .filex-stat-card__label,
  .filex-stats-grid > .row > .col-12:nth-child(4) .filex-stat-card__label {
    align-self: end;
  }

  .filex-stat-card__value-link {
    justify-self: start;
    max-width: 100%;
    margin-top: 5px;
  }

}

/* File page final design end */

/* ========================================================================== */
/* Contact page UI */
/* ========================================================================== */

/* Contact page start */
.contact-page-content .content-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-family: var(--nav-font);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
}

.contact-page-content .contact-support-metrics .metric-value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 24px;
}

.contact-page-content .contact-resources-block,
.contact-page-content .contact-company-block {
  margin-top: 56px;
  padding: 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 22px;
  background: var(--surface-color);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--default-color), transparent 95%);
}

.contact-page-content .contact-resource-visual {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}

.contact-page-content .contact-resource-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, color-mix(in srgb, #000, transparent 78%));
  pointer-events: none;
}

.contact-page-content .contact-resource-visual img {
  display: block;
  width: 100%;
  min-height: 330px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.contact-page-content .contact-resources-block:hover .contact-resource-visual img {
  transform: scale(1.03);
}

.contact-page-content .contact-resources-content h3,
.contact-page-content .contact-company-intro h3 {
  margin: 0 0 12px;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 700;
  line-height: 1.2;
}

.contact-page-content .contact-resources-content p,
.contact-page-content .contact-company-intro p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 32%);
  font-size: 15px;
  line-height: 1.65;
}

.contact-page-content .contact-company-intro p + p {
  margin-top: 10px;
}

.contact-page-content .contact-resource-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.contact-page-content .contact-resource-item {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 34px;
  gap: 14px;
  align-items: center;
  min-height: 78px;
  padding: 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 14px;
  background: color-mix(in srgb, var(--background-color), var(--surface-color) 55%);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-page-content .contact-resource-item:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 68%);
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
  box-shadow: 0 8px 22px color-mix(in srgb, var(--default-color), transparent 94%);
}

.contact-page-content .contact-resource-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  font-size: 21px;
}

.contact-page-content .contact-resource-item__content {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.contact-page-content .contact-resource-item__content strong {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
}

.contact-page-content .contact-resource-item__content small {
  color: color-mix(in srgb, var(--default-color), transparent 34%);
  font-size: 14px;
  line-height: 1.45;
}

.contact-page-content .contact-resource-item__arrow {
  display: inline-flex;
  justify-content: flex-end;
  color: var(--accent-color);
  font-size: 18px;
}

.contact-page-content .contact-details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-page-content .contact-details-card {
  height: 100%;
  padding: 22px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 18px;
  background: color-mix(in srgb, var(--background-color), var(--surface-color) 55%);
}

.contact-page-content .contact-details-card__head {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.contact-page-content .contact-details-card__head i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  font-size: 21px;
}

.contact-page-content .contact-details-card__head h4 {
  margin: 0;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 600;
}

.contact-page-content .contact-requisites {
  display: grid;
  gap: 0;
  margin: 0;
}

.contact-page-content .contact-requisites div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 14px;
  padding: 11px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.contact-page-content .contact-requisites dt {
  color: color-mix(in srgb, var(--default-color), transparent 44%);
  font-size: 14px;
  font-weight: 500;
}

.contact-page-content .contact-requisites dd {
  margin: 0;
  color: color-mix(in srgb, var(--heading-color), transparent 8%);
  font-family: var(--default-font);
  font-size: 14px;
  font-weight: 500;
  word-break: break-word;
}

@media (max-width:991.98px) {
  .contact-page-content .contact-details-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width:575.98px) {
  .contact-page-content .contact-resources-block,
  .contact-page-content .contact-company-block {
    margin-top: 40px;
    padding: 22px;
    border-radius: 18px;
  }

  .contact-page-content .contact-resource-visual img {
    min-height: 220px;
  }

  .contact-page-content .contact-resource-item {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .contact-page-content .contact-resource-item__arrow {
    display: none;
  }

  .contact-page-content .contact-requisites div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

}

/* Contact page end */

/* ========================================================================== */
/* Payment and delivery page UI */
/* ========================================================================== */

/* Payment delivery page start */
.payment-delivery-steps .trust-strip .trust-item span {
  white-space: nowrap;
}

.payment-methods-page .payment-inline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.payment-methods-page .payment-inline-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 700;
}

.payment-methods-page .method-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.payment-methods-page .method-features span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--default-color), transparent 94%);
  color: color-mix(in srgb, var(--default-color), transparent 28%);
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 700;
}

.payment-methods-page .payment-help .help-box {
  margin-top: 0;
}

.delivery-info-page .delivery-email-panel {
  margin-top: 0;
}

@media (max-width:575.98px) {
  .payment-delivery-steps .trust-strip .trust-item span {
    white-space: normal;
  }

}

/* Payment delivery page end */

/* ========================================================================== */
/* Warranty page UI */
/* ========================================================================== */

/* Warranty page start */
.warranty-content .warranty-info-content .category-label,
.warranty-content .warranty-faq-header .category-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-family: var(--nav-font);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
}

.warranty-content .hero-image {
  position: relative;
}

.warranty-content .hero-image img {
  border-radius: 22px;
}

.warranty-content .features-block,
.warranty-content .process-block,
.warranty-content .warranty-info-block,
.warranty-content .warranty-faq-block {
  margin-top: 56px;
}

.warranty-content .warranty-info-block {
  padding: 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 22px;
  background: radial-gradient(circle at top right, color-mix(in srgb, var(--accent-color), transparent 90%), transparent 34%), var(--surface-color);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--default-color), transparent 95%);
}

.warranty-content .warranty-info-content h3,
.warranty-content .warranty-faq-header h3 {
  margin: 0 0 14px;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 700;
  line-height: 1.2;
}

.warranty-content .warranty-info-content p,
.warranty-content .warranty-info-action p,
.warranty-content .warranty-faq-item p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 32%);
  font-size: 15px;
  line-height: 1.65;
}

.warranty-content .warranty-info-content p + p {
  margin-top: 8px;
}

.warranty-content .warranty-info-action {
  height: 100%;
  padding: 22px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 78%);
  border-radius: 18px;
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
}

.warranty-content .warranty-info-action > i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 14px;
  background: var(--surface-color);
  color: var(--accent-color);
  font-size: 23px;
}

.warranty-content .warranty-link {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  width: fit-content;
  margin-top: 16px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--nav-font);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.warranty-content .warranty-link:hover {
  background: color-mix(in srgb, var(--accent-color), #000 12%);
  color: var(--contrast-color);
  box-shadow: 0 10px 24px color-mix(in srgb, var(--accent-color), transparent 72%);
}

.warranty-content .warranty-faq-header {
  margin-bottom: 24px;
  text-align: center;
}

.warranty-content .warranty-faq-list {
  display: grid;
  gap: 12px;
}

.warranty-content .warranty-faq-item {
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 16px;
  background: var(--surface-color);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--default-color), transparent 95%);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.warranty-content .warranty-faq-item:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 64%);
  box-shadow: 0 12px 32px color-mix(in srgb, var(--default-color), transparent 92%);
}

.warranty-content .warranty-faq-item summary {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.warranty-content .warranty-faq-item summary::-webkit-details-marker {
  display: none;
}

.warranty-content .warranty-faq-item summary::after {
  content: "\F282";
  font-family: bootstrap-icons;
  color: var(--accent-color);
  font-size: 15px;
  transition: transform 0.25s ease;
}

.warranty-content .warranty-faq-item[open] summary::after {
  transform: rotate(180deg);
}

.warranty-content .warranty-faq-item p {
  padding: 0 20px 20px;
}

@media (max-width:575.98px) {
  .warranty-content .features-block,
  .warranty-content .process-block,
  .warranty-content .warranty-info-block,
  .warranty-content .warranty-faq-block {
    margin-top: 40px;
  }

  .warranty-content .warranty-info-block {
    padding: 22px;
    border-radius: 18px;
  }

  .warranty-content .warranty-faq-item summary {
    padding: 16px 18px;
    font-size: 16px;
  }

  .warranty-content .warranty-faq-item p {
    padding: 0 18px 18px;
  }

}

/* Warranty page end */

/* ========================================================================== */
/* Windows download form UI */
/* ========================================================================== */

/* Windows download form start */
.wdl-download-form {
  position: relative;
}

.wdl-download-card {
  position: relative;
  min-height: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  padding: 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 84%);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 10px 28px color-mix(in srgb, var(--default-color), transparent 94%), inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.wdl-download-card:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 58%);
  box-shadow: 0 16px 40px color-mix(in srgb, var(--accent-color), transparent 86%), inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
}

.wdl-download-card__mark {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 1;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  border-radius: 16px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
  transform: rotate(8deg);
  pointer-events: none;
}

.wdl-download-card__mark i {
  font-size: 19px;
  transform: rotate(-8deg);
}

.wdl-download-card__top {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding-right: 48px;
}

.wdl-download-card__brand {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 18px;
  background: color-mix(in srgb, var(--accent-color), transparent 97%);
  box-shadow: 0 8px 18px color-mix(in srgb, var(--default-color), transparent 95%);
}

.wdl-download-card__brand img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.wdl-download-card__label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 4px;
  color: var(--accent-color);
  font-family: var(--nav-font);
  font-size: 11px;
  font-weight: 560;
  line-height: 1;
}

.wdl-download-card__main h3 {
  margin: 0 0 4px;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 20px;
  font-weight: 710;
  line-height: 1.16;
}

.wdl-download-card__main p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 38%);
  font-size: 13px;
  line-height: 1.45;
}

.wdl-download-card__panel {
  margin-top: 14px;
  padding: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 16px;
  background: color-mix(in srgb, var(--accent-color), transparent 97%);
}

.wdl-download-card__panel-head {
  display: flex;
  gap: 12px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 10px;
}

.wdl-download-card__panel-head span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.25;
}

.wdl-download-card__panel-head small {
  color: color-mix(in srgb, var(--default-color), transparent 46%);
  font-size: 11px;
  line-height: 1.35;
  text-align: right;
}

.wdl-switch-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.wdl-switch {
  position: relative;
  min-width: 0;
}

.wdl-switch__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.wdl-switch__item {
  min-width: 94px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 0 9px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 86%);
  border-radius: 12px;
  background: #ffffff;
  color: var(--heading-color);
  cursor: pointer;
  box-shadow: 0 6px 14px color-mix(in srgb, var(--default-color), transparent 97%);
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.wdl-switch__item:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
}

.wdl-switch__text {
  font-family: var(--nav-font);
  font-size: 13px;
  font-weight: 560;
  line-height: 1;
}

.wdl-switch__ind {
  width: 19px;
  height: 19px;
  display: inline-flex;
  flex: 0 0 19px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: transparent;
  color: transparent;
  font-size: 10px;
  line-height: 1;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.18s ease, transform 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.wdl-switch__input:checked + .wdl-switch__item {
  border-color: color-mix(in srgb, var(--accent-color), transparent 66%);
  background: color-mix(in srgb, var(--accent-color), transparent 91%);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 88%);
}

.wdl-switch__input:checked + .wdl-switch__item .wdl-switch__ind {
  background: #ffffff;
  color: var(--accent-color);
  opacity: 1;
  transform: scale(1);
}

.wdl-download-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.wdl-download-card__meta span {
  min-height: 25px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 8px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 84%);
  border-radius: 999px;
  background: #ffffff;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-family: var(--nav-font);
  font-size: 11px;
  font-weight: 560;
  line-height: 1;
}

.wdl-download-card__meta i {
  color: var(--accent-color);
  font-size: 12px;
}

.wdl-download-card__button {
  position: relative;
  min-height: 54px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 36px;
  gap: 12px;
  align-items: center;
  margin-top: 14px;
  padding: 10px 12px 10px 16px;
  border-radius: 16px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--nav-font);
  text-decoration: none;
  box-shadow: 0 12px 28px color-mix(in srgb, var(--accent-color), transparent 78%);
  transform: translate3d(0, 0, 0);
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.wdl-download-card__button:hover {
  background: color-mix(in srgb, var(--accent-color), #000 10%);
  color: var(--contrast-color);
  box-shadow: 0 16px 34px color-mix(in srgb, var(--accent-color), transparent 72%);
  transform: translate3d(0, -1px, 0);
}

.wdl-download-card__button strong {
  display: block;
  margin-bottom: 3px;
  color: inherit;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.25;
}

.wdl-download-card__button small {
  display: block;
  color: color-mix(in srgb, var(--contrast-color), transparent 22%);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.25;
}

.wdl-download-card__button > i {
  width: 36px;
  height: 36px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: color-mix(in srgb, #fff, transparent 86%);
  color: inherit;
  font-size: 15px;
  transition: transform 0.3s ease;
}

.wdl-download-card__button:hover > i {
  transform: translateX(2px);
}

.wdl-download-card__error {
  margin-top: 12px;
  padding: 11px 12px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  border-radius: 13px;
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 13px;
  line-height: 1.5;
}

.wdl-download-card__error a {
  color: var(--accent-color);
  font-weight: 560;
  text-decoration: none;
}

.wdl-download-card__error a:hover {
  color: color-mix(in srgb, var(--accent-color), #000 12%);
}

@media (max-width:575.98px) {
  .wdl-download-card {
    padding: 15px;
    border-radius: 20px;
  }

  .wdl-download-card__mark {
    right: 12px;
    top: 12px;
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .wdl-download-card__top {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 11px;
    padding-right: 34px;
  }

  .wdl-download-card__brand {
    width: 54px;
    height: 54px;
    padding: 8px;
    border-radius: 16px;
  }

  .wdl-download-card__main h3 {
    font-size: 19px;
  }

  .wdl-download-card__panel-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .wdl-download-card__panel-head small {
    text-align: left;
  }

  .wdl-switch {
    width: 100%;
  }

  .wdl-switch__item {
    width: 100%;
  }

  .wdl-download-card__button {
    border-radius: 15px;
  }

}

/* Windows download form end */
/* Windows direct download page start */
.wdl-page {
  --wdl-radius-lg: 26px;
  --wdl-radius-md: 20px;
  --wdl-border: color-mix(in srgb, var(--default-color), transparent 88%);
  --wdl-shadow: 0 8px 24px color-mix(in srgb, var(--default-color), transparent 95%);
  --wdl-shadow-hover: 0 16px 38px color-mix(in srgb, var(--accent-color), transparent 86%);
  position: relative;
}

.wdl-kicker {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  margin-bottom: 10px;
  padding: 6px 10px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent-color), transparent 93%);
  color: var(--accent-color);
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 560;
  line-height: 1;
}

.wdl-kicker i {
  color: currentColor;
  font-size: 13px;
}

.wdl-download-window {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 86%);
  border-radius: 24px;
  background: color-mix(in srgb, #ffffff, var(--accent-color) 2%);
}

.wdl-download-window__bar {
  min-height: 50px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 0 16px 0 18px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 24px 24px 0 0;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
}

.wdl-download-window__brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.2;
}

.wdl-download-window__brand i {
  color: var(--accent-color);
  font-size: 17px;
}

.wdl-download-window__actions {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--default-color), transparent 96%);
}

.wdl-win-btn {
  position: relative;
  width: 34px;
  height: 28px;
  display: inline-flex;
  border: 1px solid transparent;
  border-radius: 7px;
  background: transparent;
}

.wdl-win-btn:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 88%);
  background: #ffffff;
}

.wdl-win-btn--close:hover {
  border-color: color-mix(in srgb, #dc3545, transparent 40%);
  background: color-mix(in srgb, #dc3545, transparent 88%);
}

.wdl-win-btn::before,.wdl-win-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: color-mix(in srgb, var(--default-color), transparent 34%);
  transform: translate(-50%, -50%);
}

.wdl-win-btn--min::before {
  width: 10px;
  height: 1.5px;
  border-radius: 999px;
}

.wdl-win-btn--max::before {
  width: 10px;
  height: 8px;
  border: 1.5px solid color-mix(in srgb, var(--default-color), transparent 34%);
  background: transparent;
  border-radius: 2px;
}

.wdl-win-btn--close::before,.wdl-win-btn--close::after {
  width: 12px;
  height: 1.5px;
  border-radius: 999px;
}

.wdl-win-btn--close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.wdl-win-btn--close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.wdl-download-window__body {
  padding: 18px;
}

.wdl-window-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(170px, 220px);
  gap: 22px;
  align-items: center;
  margin-bottom: 18px;
}

.wdl-window-hero__content {
  min-width: 0;
}

.wdl-window-hero h1 {
  max-width: 920px;
  margin: 0;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: clamp(28px, 3.8vw, 52px);
  font-weight: 720;
  line-height: 1.06;
  letter-spacing: -0.042em;
}

.wdl-window-hero p {
  max-width: 760px;
  margin: 14px 0 0;
  color: color-mix(in srgb, var(--default-color), transparent 32%);
  font-size: 15px;
  line-height: 1.66;
}

.wdl-window-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}

.wdl-window-hero__badges span {
  min-height: 25px;
  display: inline-flex;
  align-items: center;
  padding: 5px 8px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 82%);
  border-radius: 999px;
  background: #ffffff;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-family: var(--nav-font);
  font-size: 11px;
  font-weight: 560;
  line-height: 1;
}

.wdl-top__orbit {
  justify-self: end;
  position: relative;
  width: 200px;
  height: 200px;
  border: 1px dashed color-mix(in srgb, var(--accent-color), transparent 66%);
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
}

.wdl-orbit__core,
.wdl-orbit__item {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 72%);
  background: #ffffff;
  color: var(--accent-color);
  box-shadow: 0 12px 28px color-mix(in srgb, var(--default-color), transparent 92%);
}

.wdl-orbit__core {
  inset: 50%;
  width: 70px;
  height: 70px;
  border-radius: 22px;
  font-size: 30px;
  transform: translate(-50%, -50%) rotate(-8deg);
}

.wdl-orbit__item {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  font-size: 19px;
}

.wdl-orbit__item--one {
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
}

.wdl-orbit__item--two {
  right: 8px;
  top: 54%;
  transform: translateY(-50%);
}

.wdl-orbit__item--three {
  left: 14px;
  bottom: 28px;
}

.wdl-use__layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.32fr) minmax(0, 0.68fr);
  gap: 24px;
  align-items: start;
}

.wdl-use__head {
  position: sticky;
  top: 96px;
  min-width: 0;
}

.wdl-use__head h2,
.wdl-comments-card__head h2,
.wdl-faq__head h2,
.wdl-info-card h2,
.wdl-rating-clean h2,
.wdl-route__head h2 {
  margin: 0;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: clamp(25px, 3vw, 40px);
  font-weight: 690;
  line-height: 1.14;
  letter-spacing: -0.026em;
}

.wdl-use__head p,
.wdl-comments-card__head p,
.wdl-faq__head p,
.wdl-info-card p,
.wdl-rating-clean p,
.wdl-use-step p,
.wdl-route-node p,
.wdl-route__head p,
.wdl-faq-item p {
  color: color-mix(in srgb, var(--default-color), transparent 34%);
  font-size: 14px;
  line-height: 1.6;
}

.wdl-use__head p,
.wdl-comments-card__head p,
.wdl-faq__head p,
.wdl-rating-clean p {
  max-width: 660px;
  margin: 12px 0 0;
}

.wdl-use__timeline {
  position: relative;
  display: grid;
  gap: 12px;
}

.wdl-use-step {
  position: relative;
  min-height: 108px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 46px;
  grid-template-areas: "num body icon";
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--wdl-border);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--wdl-shadow);
}

.wdl-use-step:nth-child(2),.wdl-use-step:nth-child(4) {
  margin-left: 28px;
}

.wdl-use-step__num {
  grid-area: num;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 78%);
  border-radius: 18px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-size: 14px;
  font-weight: 740;
  line-height: 1;
}

.wdl-use-step__body {
  grid-area: body;
  min-width: 0;
}

.wdl-use-step__icon {
  grid-area: icon;
  justify-self: end;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
  color: var(--accent-color);
  font-size: 20px;
  transform: rotate(8deg);
}

.wdl-use-step__icon i {
  transform: rotate(-8deg);
}

.wdl-use-step h3 {
  margin: 0;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 19px;
  font-weight: 670;
  line-height: 1.16;
}

.wdl-use-step p {
  max-width: 560px;
  margin: 7px 0 0;
}

.wdl-use-step--dark {
  border-color: color-mix(in srgb, #0f172a, transparent 42%);
  background: #0f172a;
  color: #ffffff;
}

.wdl-use-step--dark h3 {
  color: #ffffff;
}

.wdl-use-step--dark p {
  color: rgba(255, 255, 255, 0.68);
}

.wdl-use-step--dark .wdl-use-step__num,
.wdl-use-step--dark .wdl-use-step__icon {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: color-mix(in srgb, var(--accent-color), white 26%);
}

.wdl-route {
  display: grid;
  grid-template-columns: minmax(250px, 0.32fr) minmax(0, 0.68fr);
  gap: 28px;
  align-items: start;
}

.wdl-route__head {
  position: sticky;
  top: 96px;
  min-width: 0;
}

.wdl-route__head p {
  max-width: 430px;
  margin: 12px 0 0;
}

.wdl-route__scheme {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 36px minmax(0, 1fr);
  grid-template-rows: repeat(3, minmax(78px, auto)) minmax(90px, auto);
  gap: 10px 16px;
  align-items: stretch;
}

.wdl-route__connector {
  grid-column: 2;
  grid-row: 1 / span 3;
  position: relative;
  z-index: 1;
}

.wdl-route__connector::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 20px;
  bottom: 20px;
  width: 2px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent-color), transparent 82%);
  transform: translateX(-50%);
}

.wdl-route__connector::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  border: 2px solid #ffffff;
  border-radius: 999px;
  background: var(--accent-color);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--accent-color), transparent 88%);
  transform: translate(-50%, -50%);
}

.wdl-route-node {
  position: relative;
  z-index: 2;
  min-width: 0;
  display: grid;
  gap: 12px;
  align-items: center;
  padding: 8px 0;
}

.wdl-route-node::after {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent-color), transparent 74%);
  pointer-events: none;
}

.wdl-route-node--source {
  grid-column: 1;
  grid-row: 1 / span 3;
  grid-template-columns: 1fr;
  align-content: center;
  padding-right: 22px;
}

.wdl-route-node--source::after {
  right: -18px;
  top: 50%;
  width: 18px;
}

.wdl-route-node--win11,
.wdl-route-node--win10,
.wdl-route-node--region {
  grid-column: 3;
  padding-left: 6px;
}

.wdl-route-node--win11 {
  grid-row: 1;
}

.wdl-route-node--win10 {
  grid-row: 2;
  transform: translateX(18px);
}

.wdl-route-node--region {
  grid-row: 3;
  transform: translateX(36px);
}

.wdl-route-node--win11::after,.wdl-route-node--win10::after,.wdl-route-node--region::after {
  left: -32px;
  top: 50%;
  width: 26px;
}

.wdl-route-node--result {
  grid-column: 1 / -1;
  grid-row: 4;
  min-height: 90px;
  margin-top: 4px;
  padding: 14px 18px;
  border-radius: 22px;
  background: #0f172a;
  box-shadow: 0 14px 34px color-mix(in srgb, #0f172a, transparent 86%);
}

.wdl-route-node--result::after {
  left: 24px;
  right: 24px;
  top: -13px;
}

.wdl-route-node__icon {
  position: relative;
  z-index: 3;
  width: 44px;
  height: 44px;
  display: inline-flex;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  border-radius: 15px;
  background: #ffffff;
  color: var(--accent-color);
  box-shadow: 0 10px 22px color-mix(in srgb, var(--accent-color), transparent 88%);
}

.wdl-route-node__icon i {
  display: inline-flex;
  color: currentColor;
  font-size: 19px;
  line-height: 1;
}

.wdl-route-node--source .wdl-route-node__icon {
  width: 74px;
  height: 74px;
  margin-bottom: 18px;
  border-radius: 25px;
  transform: rotate(-7deg);
}

.wdl-route-node--source .wdl-route-node__icon i {
  font-size: 32px;
  transform: rotate(7deg);
}

.wdl-route-node--result .wdl-route-node__icon {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: color-mix(in srgb, var(--accent-color), white 28%);
  box-shadow: none;
}

.wdl-route-node__body {
  min-width: 0;
}

.wdl-route-node__body small {
  display: block;
  margin-bottom: 7px;
  color: var(--accent-color);
  font-family: var(--nav-font);
  font-size: 11px;
  font-weight: 560;
  line-height: 1;
}

.wdl-route-node strong {
  display: block;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 660;
  line-height: 1.2;
}

.wdl-route-node--source strong {
  max-width: 360px;
  font-size: clamp(24px, 2.6vw, 34px);
  letter-spacing: -0.028em;
}

.wdl-route-node p {
  max-width: 520px;
  margin: 6px 0 0;
}

.wdl-route-node--result strong {
  color: #ffffff;
}

.wdl-route-node--result p {
  color: rgba(255, 255, 255, 0.66);
}

.wdl-rating-clean {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.wdl-rating-clean .wdl-kicker {
  margin-left: auto;
  margin-right: auto;
}

.wdl-rating-clean p {
  margin-left: auto;
  margin-right: auto;
}

.wdl-rating-slot {
  margin-top: 18px;
}

.wdl-comments-card,
.wdl-faq__layout,
.wdl-info-card {
  border: 1px solid var(--wdl-border);
  border-radius: var(--wdl-radius-lg);
  background: #ffffff;
  box-shadow: var(--wdl-shadow);
}

.wdl-comments-card,
.wdl-info-card {
  padding: 28px;
}

.wdl-comments-card__head {
  max-width: 820px;
  margin-bottom: 22px;
}

.wdl-faq__layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 28px;
}

.wdl-faq__head {
  position: sticky;
  top: 96px;
}

.wdl-faq-list {
  display: grid;
  gap: 12px;
}

.wdl-faq-item {
  overflow: hidden;
  border: 1px solid var(--wdl-border);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 8px 22px color-mix(in srgb, var(--default-color), transparent 96%);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.wdl-faq-item:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  box-shadow: var(--wdl-shadow-hover);
  transform: translateY(-1px);
}

.wdl-faq-item summary {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 650;
  cursor: pointer;
  list-style: none;
}

.wdl-faq-item summary::-webkit-details-marker {
  display: none;
}

.wdl-faq-item summary i {
  flex: 0 0 auto;
  color: var(--accent-color);
  font-size: 15px;
  transition: transform 0.25s ease;
}

.wdl-faq-item[open] summary i {
  transform: rotate(180deg);
}

.wdl-faq-item p {
  margin: 0;
  padding: 0 20px 20px;
}

.wdl-info-card {
  border-style: dashed;
}

.wdl-info-card p {
  max-width: 960px;
  margin: 12px 0 0;
}

@media (max-width:1199.98px) {
  .wdl-window-hero {
    grid-template-columns: minmax(0, 1fr) 180px;
  }

  .wdl-top__orbit {
    width: 180px;
    height: 180px;
  }

  .wdl-use__layout,
  .wdl-route,
  .wdl-faq__layout {
    grid-template-columns: 1fr;
  }

  .wdl-use__head,
  .wdl-route__head,
  .wdl-faq__head {
    position: relative;
    top: auto;
  }

  .wdl-route__head p {
    max-width: 720px;
  }

  .wdl-route__scheme {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 8px;
  }

  .wdl-route__connector {
    position: absolute;
    left: 22px;
    top: 18px;
    bottom: 18px;
    width: 2px;
    grid-column: auto;
    grid-row: auto;
  }

  .wdl-route__connector::before {
    top: 0;
    bottom: 0;
  }

  .wdl-route__connector::after {
    top: 50%;
  }

  .wdl-route-node,
  .wdl-route-node--source,
  .wdl-route-node--win11,
  .wdl-route-node--win10,
  .wdl-route-node--region,
  .wdl-route-node--result {
    grid-column: auto;
    grid-row: auto;
    min-height: 74px;
    align-content: center;
    padding: 8px 0 8px 58px;
    margin: 0;
    transform: none;
  }

  .wdl-route-node::after {
    display: none;
  }

  .wdl-route-node__icon,
  .wdl-route-node--source .wdl-route-node__icon {
    position: absolute;
    left: 0;
    top: 50%;
    width: 44px;
    height: 44px;
    margin: 0;
    border-radius: 15px;
    transform: translateY(-50%);
  }

  .wdl-route-node--source .wdl-route-node__icon i {
    font-size: 19px;
    transform: none;
  }

  .wdl-route-node--source strong {
    font-size: 18px;
  }

}

@media (max-width:991.98px) {
  .wdl-window-hero {
    grid-template-columns: 1fr;
  }

  .wdl-top__orbit {
    justify-self: start;
    order: -1;
  }

  .wdl-use-step:nth-child(2),.wdl-use-step:nth-child(4) {
    margin-left: 0;
  }

}

@media (max-width:767.98px) {
  .wdl-download-window__bar {
    min-height: auto;
    padding: 13px 14px;
  }

  .wdl-download-window__actions {
    display: none;
  }

  .wdl-download-window__body {
    padding: 14px;
  }

  .wdl-use-step {
    grid-template-columns: 48px minmax(0, 1fr);
    grid-template-areas: "num icon" "body body";
  }

  .wdl-use-step__icon {
    justify-self: end;
  }

  .wdl-comments-card,
  .wdl-faq__layout,
  .wdl-info-card {
    padding: 22px;
    border-radius: 22px;
  }

  .wdl-route__connector {
    left: 18px;
  }

  .wdl-route-node,
  .wdl-route-node--source,
  .wdl-route-node--win11,
  .wdl-route-node--win10,
  .wdl-route-node--region,
  .wdl-route-node--result {
    padding-left: 52px;
  }

}

@media (max-width:575.98px) {
  .wdl-top__orbit {
    width: 150px;
    height: 150px;
  }

  .wdl-orbit__core {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    font-size: 24px;
  }

  .wdl-orbit__item {
    width: 38px;
    height: 38px;
    border-radius: 13px;
    font-size: 16px;
  }

  .wdl-faq-item summary {
    padding: 16px 18px;
    font-size: 15px;
  }

  .wdl-faq-item p {
    padding: 0 18px 18px;
  }

}

.wdl-key-offer {
  position: relative;
}

.wdl-key-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 250px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.34fr) auto;
  gap: 22px;
  align-items: center;
  padding: 28px;
  border-radius: 28px;
  text-decoration: none;
  transform: translate3d(0, 0, 0);
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.wdl-key-card:hover {
  transform: translate3d(0, -3px, 0);
}

.wdl-key-card--win11 {
  border: 1px solid color-mix(in srgb, #0f172a, transparent 32%);
  background: #0f172a;
  color: #ffffff;
}

.wdl-key-card--win11:hover {
  border-color: color-mix(in srgb, var(--accent-color), white 18%);
}

.wdl-key-card--win10 {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 86%);
  background: #ffffff;
  color: var(--heading-color);
}

.wdl-key-card--win10:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 58%);
}

.wdl-key-card__orb {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border-radius: 999px;
}

.wdl-key-card--win11 .wdl-key-card__orb--one {
  right: -100px;
  top: -110px;
  width: 250px;
  height: 250px;
  background: color-mix(in srgb, var(--accent-color), transparent 68%);
  opacity: 0.46;
}

.wdl-key-card--win11 .wdl-key-card__orb--two {
  left: 34%;
  bottom: -120px;
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.06);
}

.wdl-key-card--win10 .wdl-key-card__orb--one {
  right: -86px;
  top: -104px;
  width: 240px;
  height: 240px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
}

.wdl-key-card--win10 .wdl-key-card__orb--two {
  left: 28%;
  bottom: -140px;
  width: 230px;
  height: 230px;
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
}

.wdl-key-card__content,
.wdl-key-card__visual,
.wdl-key-card__action {
  position: relative;
  z-index: 2;
}

.wdl-key-card__badge {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 560;
  line-height: 1;
}

.wdl-key-card--win11 .wdl-key-card__badge {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: color-mix(in srgb, var(--accent-color), white 28%);
}

.wdl-key-card--win10 .wdl-key-card__badge {
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  background: color-mix(in srgb, var(--accent-color), transparent 93%);
  color: var(--accent-color);
}

.wdl-key-card__badge i {
  color: currentColor;
  font-size: 13px;
}

.wdl-key-card h2 {
  max-width: 720px;
  margin: 0;
  font-family: var(--heading-font);
  font-size: clamp(27px, 3.3vw, 44px);
  font-weight: 720;
  line-height: 1.08;
  letter-spacing: -0.038em;
}

.wdl-key-card--win11 h2 {
  color: #ffffff;
}

.wdl-key-card--win10 h2 {
  color: var(--heading-color);
}

.wdl-key-card p {
  max-width: 680px;
  margin: 13px 0 0;
  font-size: 15px;
  line-height: 1.65;
}

.wdl-key-card--win11 p {
  color: rgba(255, 255, 255, 0.68);
}

.wdl-key-card--win10 p {
  color: color-mix(in srgb, var(--default-color), transparent 34%);
}

.wdl-key-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 16px;
}

.wdl-key-card__meta span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 9px;
  border-radius: 999px;
  font-family: var(--nav-font);
  font-size: 11px;
  font-weight: 560;
  line-height: 1;
}

.wdl-key-card--win11 .wdl-key-card__meta span {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.76);
}

.wdl-key-card--win10 .wdl-key-card__meta span {
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 84%);
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.wdl-key-card__meta i {
  color: var(--accent-color);
  font-size: 12px;
}

.wdl-key-card__visual {
  min-height: 160px;
  display: block;
}

.wdl-key-card__spark {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  transform: translate3d(0, 0, 0) rotate(0deg);
  transition: background-color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.wdl-key-card__spark i {
  color: currentColor;
  line-height: 1;
}

.wdl-key-card__spark--main {
  right: 54px;
  top: 50%;
  width: 118px;
  height: 118px;
  font-size: 48px;
  transform: translateY(-50%) rotate(-8deg);
}

.wdl-key-card__spark--key {
  right: 12px;
  top: 8px;
  width: 58px;
  height: 58px;
  font-size: 23px;
  transform: rotate(11deg);
}

.wdl-key-card__spark--check {
  right: 12px;
  bottom: 8px;
  width: 54px;
  height: 54px;
  font-size: 22px;
  transform: rotate(-10deg);
}

.wdl-key-card--win11 .wdl-key-card__spark {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: color-mix(in srgb, var(--accent-color), white 30%);
  box-shadow: 0 18px 42px color-mix(in srgb, #000000, transparent 82%);
}

.wdl-key-card--win10 .wdl-key-card__spark {
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 78%);
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
  color: var(--accent-color);
  box-shadow: 0 14px 34px color-mix(in srgb, var(--accent-color), transparent 88%);
}

.wdl-key-card:hover .wdl-key-card__spark--main {
  transform: translateY(-50%) rotate(0deg) scale(1.04);
}

.wdl-key-card:hover .wdl-key-card__spark--key {
  transform: translateY(-4px) rotate(2deg);
}

.wdl-key-card:hover .wdl-key-card__spark--check {
  transform: translateY(4px) rotate(-2deg);
}

.wdl-key-card__action {
  width: 54px;
  min-height: 156px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  justify-self: end;
  border-radius: 999px;
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 560;
  line-height: 1;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.wdl-key-card__action i {
  font-size: 16px;
  transform: rotate(90deg);
}

.wdl-key-card--win11 .wdl-key-card__action {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.wdl-key-card--win10 .wdl-key-card__action {
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
  color: var(--accent-color);
}

.wdl-key-card:hover .wdl-key-card__action {
  transform: translateX(2px);
}

@media (prefers-reduced-motion:no-preference) {
  .wdl-key-card__spark--main {
    animation: wdlKeyFloatMain 4.8s ease-in-out infinite;
  }

  .wdl-key-card__spark--key {
    animation: wdlKeyFloatMini 3.8s ease-in-out infinite;
  }

  .wdl-key-card__spark--check {
    animation: wdlKeyFloatMini 4.2s ease-in-out infinite reverse;
  }

  .wdl-key-card__orb--one {
    animation: wdlKeyOrbPulse 5.4s ease-in-out infinite;
  }

  @keyframes wdlKeyFloatMain {
    0%,
    100% {
      transform: translateY(-50%) rotate(-8deg);
    }

    50% {
      transform: translateY(calc(-50% - 8px)) rotate(-2deg);
    }

  }

  @keyframes wdlKeyFloatMini {
    0%,
    100% {
      translate: 0 0;
    }

    50% {
      translate: 0 -7px;
    }

  }

  @keyframes wdlKeyOrbPulse {
    0%,
    100% {
      opacity: 0.38;
      scale: 1;
    }

    50% {
      opacity: 0.58;
      scale: 1.05;
    }

  }

}

/* Windows route mobile fix start */
@media (max-width:767.98px) {
  .wdl-route {
    gap: 18px;
  }

  .wdl-route__head p {
    max-width: none;
  }

  .wdl-route__scheme {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 10px;
    width: 100%;
    padding: 0;
  }

  .wdl-route__connector {
    display: none;
  }

  .wdl-route-node,
  .wdl-route-node--source,
  .wdl-route-node--win11,
  .wdl-route-node--win10,
  .wdl-route-node--region,
  .wdl-route-node--result {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    min-height: auto;
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 0;
    margin: 0;
    transform: none;
  }

  .wdl-route-node::after,.wdl-route-node--source::after,.wdl-route-node--win11::after,.wdl-route-node--win10::after,.wdl-route-node--region::after,.wdl-route-node--result::after {
    display: none;
  }

  .wdl-route-node__icon,
  .wdl-route-node--source .wdl-route-node__icon,
  .wdl-route-node--result .wdl-route-node__icon {
    position: relative;
    left: auto;
    top: auto;
    width: 46px;
    height: 46px;
    margin: 0;
    border-radius: 15px;
    transform: none;
  }

  .wdl-route-node__icon i,
  .wdl-route-node--source .wdl-route-node__icon i {
    font-size: 19px;
    transform: none;
  }

  .wdl-route-node__body {
    min-width: 0;
    width: 100%;
  }

  .wdl-route-node strong,
  .wdl-route-node--source strong {
    max-width: none;
    font-size: 16px;
  }

  .wdl-route-node p {
    max-width: none;
    margin-top: 5px;
  }

  .wdl-route-node--result {
    padding: 14px;
    border-radius: 20px;
  }

  .wdl-route-node--result .wdl-route-node__body {
    min-width: 0;
  }

}

@media (max-width:575.98px) {
  .wdl-route__scheme {
    gap: 9px;
  }

  .wdl-route-node,
  .wdl-route-node--source,
  .wdl-route-node--win11,
  .wdl-route-node--win10,
  .wdl-route-node--region,
  .wdl-route-node--result {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 10px;
  }

  .wdl-route-node--result {
    padding: 12px;
  }

  .wdl-route-node__icon,
  .wdl-route-node--source .wdl-route-node__icon,
  .wdl-route-node--result .wdl-route-node__icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .wdl-route-node strong,
  .wdl-route-node--source strong {
    font-size: 15px;
  }

  .wdl-route-node p {
    font-size: 13px;
    line-height: 1.5;
  }

}

/* Windows route mobile fix end */
@media (max-width:1199.98px) {
  .wdl-key-card {
    grid-template-columns: minmax(0, 1fr) minmax(180px, 0.32fr);
  }

  .wdl-key-card__action {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 52px;
    flex-direction: row;
    writing-mode: horizontal-tb;
    text-orientation: initial;
  }

  .wdl-key-card__action i {
    transform: none;
  }

}

@media (max-width:767.98px) {
  .wdl-key-card {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px;
    border-radius: 22px;
  }

  .wdl-key-card__visual {
    min-height: 124px;
    order: -1;
  }

  .wdl-key-card__spark--main {
    left: 0;
    right: auto;
    top: 50%;
    width: 96px;
    height: 96px;
    font-size: 39px;
  }

  .wdl-key-card__spark--key {
    left: 112px;
    right: auto;
    top: 10px;
  }

  .wdl-key-card__spark--check {
    left: 174px;
    right: auto;
    bottom: 8px;
  }

  .wdl-key-card h2 {
    font-size: clamp(25px, 7vw, 34px);
  }

  .wdl-key-card__action {
    justify-content: space-between;
    padding: 0 16px;
  }

}

@media (max-width:575.98px) {
  .wdl-key-card__visual {
    min-height: 110px;
  }

  .wdl-key-card__spark--main {
    width: 84px;
    height: 84px;
    font-size: 34px;
  }

  .wdl-key-card__spark--key {
    left: 94px;
    width: 48px;
    height: 48px;
    border-radius: 17px;
    font-size: 20px;
  }

  .wdl-key-card__spark--check {
    left: 148px;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    font-size: 19px;
  }

}

/* Windows key catalog cards layout fix start */
.wdl-key-offer .row {
  align-items: stretch;
}

.wdl-key-offer [class*="col-"] {
  display: flex;
}

.wdl-key-offer .wdl-key-card {
  width: 100%;
  min-height: 100%;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-areas: "content content" "visual action";
  gap: 18px;
  align-content: stretch;
}

.wdl-key-offer .wdl-key-card__content {
  grid-area: content;
  min-width: 0;
}

.wdl-key-offer .wdl-key-card__visual {
  grid-area: visual;
  min-height: 128px;
  order: initial;
}

.wdl-key-offer .wdl-key-card__action {
  grid-area: action;
  width: 100%;
  min-height: 68px;
  max-height: 78px;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  justify-self: stretch;
  align-self: center;
  padding: 0 18px;
  border-radius: 20px;
  writing-mode: horizontal-tb;
  text-orientation: initial;
}

.wdl-key-offer .wdl-key-card__action i {
  transform: none;
}

.wdl-key-offer .wdl-key-card:hover .wdl-key-card__action {
  transform: translateY(-1px);
}

.wdl-key-offer .wdl-key-card__spark--main {
  left: 0;
  right: auto;
  top: 50%;
  width: 96px;
  height: 96px;
  font-size: 39px;
}

.wdl-key-offer .wdl-key-card__spark--key {
  left: 112px;
  right: auto;
  top: 10px;
}

.wdl-key-offer .wdl-key-card__spark--check {
  left: 174px;
  right: auto;
  bottom: 8px;
}

@media (min-width:992px) {
  .wdl-key-offer .wdl-key-card {
    padding: 24px;
  }

  .wdl-key-offer .wdl-key-card h2 {
    font-size: clamp(25px, 2.45vw, 34px);
  }

  .wdl-key-offer .wdl-key-card p {
    font-size: 14px;
  }

}

@media (max-width:767.98px) {
  .wdl-key-offer .wdl-key-card {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: "visual" "content" "action";
  }

  .wdl-key-offer .wdl-key-card__visual {
    min-height: 124px;
  }

  .wdl-key-offer .wdl-key-card__action {
    min-height: 54px;
    max-height: none;
    border-radius: 999px;
    padding: 0 16px;
  }

}

@media (max-width:575.98px) {
  .wdl-key-offer .wdl-key-card__spark--main {
    width: 84px;
    height: 84px;
    font-size: 34px;
  }

  .wdl-key-offer .wdl-key-card__spark--key {
    left: 94px;
    width: 48px;
    height: 48px;
    border-radius: 17px;
    font-size: 20px;
  }

  .wdl-key-offer .wdl-key-card__spark--check {
    left: 148px;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    font-size: 19px;
  }

}

/* Windows key catalog cards layout fix end */
/* Windows direct download page end */

/* ========================================================================== */
/* About page UI */
/* ========================================================================== */

.aboutx-page {
  position: relative;
  overflow: hidden;
}

.aboutx-page::before {
  content: "";
  position: absolute;
  top: 3%;
  right: -180px;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 88%), transparent 68%);
  pointer-events: none;
}

.aboutx-page::after {
  content: "";
  position: absolute;
  left: -220px;
  bottom: 12%;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 93%), transparent 70%);
  pointer-events: none;
}

.aboutx-page > .container-fluid {
  position: relative;
  z-index: 2;
}

.aboutx-section {
  position: relative;
}

.aboutx-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  margin-bottom: 12px;
  padding: 6px 11px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 78%);
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.aboutx-hero,
.aboutx-proof,
.aboutx-signal,
.aboutx-number,
.aboutx-route,
.aboutx-image-panel,
.aboutx-manifest,
.aboutx-split-image,
.aboutx-cta,
.aboutx-resources,
.aboutx-catalog-link,
.aboutx-values-pro,
.aboutx-legal-pro {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  background: var(--surface-color);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--default-color), transparent 95%);
}

.aboutx-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 28px;
  align-items: stretch;
  overflow: hidden;
  padding: 34px;
  border-color: color-mix(in srgb, var(--default-color), transparent 86%);
  border-radius: 28px;
  background: linear-gradient(135deg, #ffffff 0%, color-mix(in srgb, var(--accent-color), transparent 97%) 100%);
  box-shadow: 0 18px 44px color-mix(in srgb, var(--default-color), transparent 92%), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.aboutx-hero::before {
  content: "";
  position: absolute;
  right: 34px;
  top: 34px;
  width: 110px;
  height: 110px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 78%);
  border-radius: 32px;
  transform: rotate(12deg);
  opacity: 0.45;
}

.aboutx-hero::after {
  content: "";
  position: absolute;
  left: 38px;
  bottom: 28px;
  width: 220px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-color), transparent);
  opacity: 0.5;
}

.aboutx-hero__content {
  position: relative;
  z-index: 2;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.aboutx-hero__title {
  max-width: 900px;
  margin: 0;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 720;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.aboutx-hero__text {
  max-width: 740px;
  margin: 17px 0 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 16px;
  line-height: 1.72;
}

.aboutx-hero__actions,
.aboutx-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.aboutx-hero__actions {
  margin-top: 26px;
}

.aboutx-btn {
  min-height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 16px;
  border-radius: 13px;
  font-family: var(--nav-font);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: border-color 0.22s ease, background-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.aboutx-btn:hover {
  transform: translateY(-1px);
}

.aboutx-btn--primary {
  border: 1px solid var(--accent-color);
  background: var(--accent-color);
  color: #ffffff;
  box-shadow: 0 10px 24px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.aboutx-btn--primary:hover {
  border-color: color-mix(in srgb, var(--accent-color), black 12%);
  background: color-mix(in srgb, var(--accent-color), black 12%);
  color: #ffffff;
}

.aboutx-btn--ghost {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 84%);
  background: rgba(255, 255, 255, 0.78);
  color: color-mix(in srgb, var(--default-color), transparent 22%);
}

.aboutx-btn--ghost:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 68%);
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
  color: var(--accent-color);
}

.aboutx-hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 620px;
  margin-top: 30px;
}

.aboutx-hero__metrics div {
  min-width: 0;
  padding: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(10px);
}

.aboutx-hero__metrics strong {
  display: block;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 720;
  line-height: 1;
}

.aboutx-hero__metrics span {
  display: block;
  margin-top: 6px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.25;
}

.aboutx-hero__showcase {
  position: relative;
  z-index: 2;
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aboutx-terminal {
  position: absolute;
  left: 0;
  bottom: 18px;
  z-index: 3;
  width: min(360px, 82%);
  overflow: hidden;
  border: 1px solid color-mix(in srgb, #0f172a, transparent 72%);
  border-radius: 20px;
  background: #0f172a;
  box-shadow: 0 24px 60px color-mix(in srgb, #0f172a, transparent 78%);
}

.aboutx-terminal__bar {
  display: flex;
  gap: 6px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.aboutx-terminal__bar span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
}

.aboutx-terminal__body {
  display: grid;
  gap: 9px;
  padding: 16px;
}

.aboutx-terminal__line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  line-height: 1.2;
}

.aboutx-terminal__line strong {
  color: #86efac;
  font-weight: 600;
}

.aboutx-orbit {
  position: relative;
  width: min(340px, 86vw);
  height: min(340px, 86vw);
  border: 1px dashed color-mix(in srgb, var(--accent-color), transparent 64%);
  border-radius: 999px;
  background: radial-gradient(circle at center, #ffffff 0 28%, color-mix(in srgb, var(--accent-color), transparent 94%) 29% 54%, transparent 55%);
}

.aboutx-orbit__core,
.aboutx-orbit__item {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 72%);
  background: #ffffff;
  color: var(--accent-color);
  box-shadow: 0 14px 34px color-mix(in srgb, var(--default-color), transparent 90%);
}

.aboutx-orbit__core {
  inset: 50%;
  width: 96px;
  height: 96px;
  border-radius: 28px;
  font-size: 40px;
  transform: translate(-50%, -50%) rotate(-8deg);
}

.aboutx-orbit__item {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  font-size: 25px;
}

.aboutx-orbit__item--one {
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
}

.aboutx-orbit__item--two {
  right: 12px;
  top: 54%;
  transform: translateY(-50%);
}

.aboutx-orbit__item--three {
  left: 22px;
  bottom: 46px;
}

.aboutx-proof {
  height: 100%;
  padding: 28px;
  border-radius: 24px;
}

.aboutx-proof--dark {
  position: relative;
  overflow: hidden;
  border-color: color-mix(in srgb, #0f172a, transparent 40%);
  background: #0f172a;
  color: #ffffff;
}

.aboutx-proof--dark::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 74px;
  height: 74px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  transform: rotate(12deg);
}

.aboutx-proof__label {
  display: inline-flex;
  margin-bottom: 16px;
  color: color-mix(in srgb, var(--accent-color), white 30%);
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.aboutx-proof h2 {
  max-width: 520px;
  margin: 0;
  color: #ffffff;
  font-family: var(--heading-font);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 680;
  line-height: 1.12;
  letter-spacing: -0.032em;
}

.aboutx-proof p {
  max-width: 560px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.68;
}

.aboutx-signal {
  height: 100%;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  border-radius: 20px;
  transition: border-color 0.24s ease, transform 0.24s ease, box-shadow 0.24s ease;
}

.aboutx-signal:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 66%);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px color-mix(in srgb, var(--default-color), transparent 92%);
}

.aboutx-signal__icon,
.aboutx-number__icon,
.aboutx-route-card__icon,
.aboutx-values-main__icon,
.aboutx-flow-clean__icon,
.aboutx-resource-link__icon,
.aboutx-bank-pro__icon,
.aboutx-legal-owner__icon {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 78%);
  border-radius: 16px;
  background: color-mix(in srgb, var(--accent-color), transparent 91%);
  color: var(--accent-color);
  font-size: 21px;
}

.aboutx-signal strong {
  display: block;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 620;
  line-height: 1.22;
}

.aboutx-signal span:last-child {
  display: block;
  margin-top: 7px;
  color: color-mix(in srgb, var(--default-color), transparent 38%);
  font-size: 14px;
  line-height: 1.55;
}

.aboutx-numbers {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr 1fr 1.25fr;
  gap: 14px;
}

.aboutx-number {
  position: relative;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 22px;
  border-radius: 24px;
}

.aboutx-number::before {
  content: "";
  position: absolute;
  top: -44px;
  right: -44px;
  width: 118px;
  height: 118px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 82%);
  background: #ffffff;
}

.aboutx-number--accent {
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
}

.aboutx-number--outline {
  border-style: dashed;
}

.aboutx-number__icon {
  position: absolute;
  top: 18px;
  left: 18px;
}

.aboutx-number strong {
  position: relative;
  z-index: 2;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 740;
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.aboutx-number > span:last-child {
  position: relative;
  z-index: 2;
  max-width: 230px;
  margin-top: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 34%);
  font-size: 14px;
  line-height: 1.5;
}

.aboutx-route {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 22px;
  align-items: stretch;
  padding: 26px;
  border-radius: 26px;
}

.aboutx-route__main {
  min-width: 0;
  padding: 4px 0;
}

.aboutx-route__main h2,
.aboutx-manifest h2,
.aboutx-split-image h2,
.aboutx-cta h2,
.aboutx-resources h2,
.aboutx-values-pro h2,
.aboutx-legal-pro h2 {
  margin: 0;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 690;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.aboutx-route__main h2 {
  font-size: clamp(28px, 3.2vw, 44px);
}

.aboutx-route__main p {
  max-width: 620px;
  margin: 15px 0 0;
  color: color-mix(in srgb, var(--default-color), transparent 34%);
  font-size: 15px;
  line-height: 1.7;
}

.aboutx-route__cards {
  display: grid;
  gap: 14px;
}

.aboutx-route-card {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 15px;
  align-items: flex-start;
  min-height: 150px;
  overflow: hidden;
  padding: 18px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 20px;
  background: color-mix(in srgb, var(--background-color), var(--surface-color) 58%);
}

.aboutx-route-card::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 46px;
  height: 46px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  border-radius: 16px;
  opacity: 0.55;
  transform: rotate(10deg);
}

.aboutx-route-card--files::after {
  border-radius: 999px;
}

.aboutx-route-card__icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  font-size: 24px;
}

.aboutx-route-card strong {
  display: block;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 20px;
  font-weight: 650;
  line-height: 1.2;
}

.aboutx-route-card span:last-child {
  display: block;
  max-width: 560px;
  margin-top: 8px;
  color: color-mix(in srgb, var(--default-color), transparent 36%);
  font-size: 14px;
  line-height: 1.58;
}

.aboutx-image-panel {
  height: 100%;
  overflow: hidden;
  border-radius: 26px;
}

.aboutx-image-panel__placeholder {
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: color-mix(in srgb, var(--default-color), transparent 46%);
  background: color-mix(in srgb, var(--accent-color), transparent 97%);
}

.aboutx-image-panel__placeholder i {
  color: var(--accent-color);
  font-size: 48px;
}

.aboutx-image-panel__placeholder span {
  margin-top: 10px;
  font-family: var(--nav-font);
  font-size: 13px;
  font-weight: 500;
}

.aboutx-image-panel__media,
.aboutx-image-panel__media img {
  width: 100%;
  height: 100%;
  display: block;
}

.aboutx-image-panel__media img {
  min-height: 420px;
  object-fit: cover;
}

.aboutx-image-panel__note {
  padding: 18px 22px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  color: color-mix(in srgb, var(--default-color), transparent 34%);
  font-size: 14px;
  line-height: 1.6;
}

.aboutx-image-panel__note strong {
  color: var(--heading-color);
  font-weight: 600;
}

.aboutx-manifest {
  height: 100%;
  padding: 28px;
  border-radius: 26px;
}

.aboutx-manifest h2 {
  font-size: clamp(28px, 3.2vw, 44px);
}

.aboutx-manifest p,
.aboutx-cta p,
.aboutx-split-image p,
.aboutx-resources p,
.aboutx-values-pro p,
.aboutx-legal-pro p {
  color: color-mix(in srgb, var(--default-color), transparent 32%);
  font-size: 15px;
  line-height: 1.72;
}

.aboutx-manifest p {
  margin: 15px 0 0;
}

.aboutx-manifest__list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.aboutx-manifest__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 15px;
  background: color-mix(in srgb, var(--background-color), var(--surface-color) 58%);
}

.aboutx-manifest__list i {
  flex: 0 0 auto;
  color: var(--accent-color);
  font-size: 18px;
  line-height: 1.25;
}

.aboutx-manifest__list span {
  color: color-mix(in srgb, var(--default-color), transparent 32%);
  font-size: 14px;
  line-height: 1.5;
}

.aboutx-section-title {
  padding-bottom: 32px;
}

.aboutx-section-title h2 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 680;
  letter-spacing: -0.032em;
}

.aboutx-flow-clean {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}

.aboutx-flow-clean::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 75px;
  height: 1px;
  background: color-mix(in srgb, var(--accent-color), transparent 72%);
}

.aboutx-flow-clean__item {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.aboutx-flow-clean__num {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-size: 13px;
  font-weight: 740;
  line-height: 1;
  letter-spacing: 0.08em;
}

.aboutx-flow-clean__icon {
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: var(--surface-color);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--default-color), transparent 94%);
}

.aboutx-flow-clean__item h3 {
  margin: 0;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 20px;
  font-weight: 650;
  line-height: 1.2;
}

.aboutx-flow-clean__item p {
  margin: 10px 0 0;
  color: color-mix(in srgb, var(--default-color), transparent 36%);
  font-size: 14px;
  line-height: 1.58;
}

.aboutx-values-pro {
  padding: 28px;
  border-radius: 30px;
  overflow: hidden;
}

.aboutx-values-pro__head {
  max-width: 820px;
  margin-bottom: 22px;
}

.aboutx-values-pro__head h2 {
  font-size: clamp(30px, 3.4vw, 48px);
}

.aboutx-values-pro__head p {
  max-width: 720px;
  margin: 12px 0 0;
}

.aboutx-values-pro__layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.42fr) minmax(0, 0.58fr);
  gap: 16px;
  align-items: stretch;
}

.aboutx-values-main {
  position: relative;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 24px;
  border-radius: 24px;
  background: #0f172a;
  color: #ffffff;
}

.aboutx-values-main::before {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 48px;
  transform: rotate(12deg);
}

.aboutx-values-main__icon {
  position: relative;
  z-index: 2;
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  border-radius: 22px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: color-mix(in srgb, var(--accent-color), white 30%);
  font-size: 28px;
}

.aboutx-values-main span:not(.aboutx-values-main__icon) {
  position: relative;
  z-index: 2;
  color: color-mix(in srgb, var(--accent-color), white 30%);
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 650;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.aboutx-values-main h3 {
  position: relative;
  z-index: 2;
  max-width: 460px;
  margin: 10px 0 0;
  color: #ffffff;
  font-family: var(--heading-font);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 720;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.aboutx-values-main p {
  position: relative;
  z-index: 2;
  max-width: 500px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.aboutx-values-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.aboutx-values-chip {
  position: relative;
  min-height: 213px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 20px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 22px;
  background: color-mix(in srgb, var(--background-color), var(--surface-color) 58%);
}

.aboutx-values-chip::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 16px;
  width: 50px;
  height: 50px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  border-radius: 18px;
  transform: rotate(10deg);
  opacity: 0.55;
}

.aboutx-values-chip--accent {
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
}

.aboutx-values-chip--dark {
  border-color: color-mix(in srgb, #0f172a, transparent 40%);
  background: #0f172a;
}

.aboutx-values-chip span {
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-size: 13px;
  font-weight: 740;
  line-height: 1;
  letter-spacing: 0.08em;
}

.aboutx-values-chip strong {
  display: block;
  max-width: 260px;
  margin-top: 16px;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 22px;
  font-weight: 680;
  line-height: 1.12;
}

.aboutx-values-chip p {
  max-width: 300px;
  margin: 9px 0 0;
  color: color-mix(in srgb, var(--default-color), transparent 36%);
  font-size: 14px;
  line-height: 1.55;
}

.aboutx-values-chip--dark strong {
  color: #ffffff;
}

.aboutx-values-chip--dark p {
  color: rgba(255, 255, 255, 0.68);
}

.aboutx-resources {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 24px;
  align-items: center;
  overflow: hidden;
  padding: 28px;
  border-radius: 26px;
  background: #0f172a;
  color: #ffffff;
}

.aboutx-resources h2 {
  max-width: 720px;
  color: #ffffff;
  font-size: clamp(28px, 3.2vw, 44px);
}

.aboutx-resources p {
  max-width: 680px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.aboutx-resources__links {
  display: grid;
  gap: 12px;
}

.aboutx-resource-link {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 34px;
  gap: 14px;
  align-items: center;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  text-decoration: none;
  transition: border-color 0.22s ease, background-color 0.22s ease, transform 0.22s ease;
}

.aboutx-resource-link:hover {
  border-color: color-mix(in srgb, var(--accent-color), white 18%);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  transform: translateX(2px);
}

.aboutx-resource-link__icon {
  width: 54px;
  height: 54px;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: color-mix(in srgb, var(--accent-color), white 28%);
}

.aboutx-resource-link strong {
  display: block;
  color: #ffffff;
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.2;
}

.aboutx-resource-link small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.35;
}

.aboutx-resource-link > i {
  color: color-mix(in srgb, var(--accent-color), white 28%);
}

.aboutx-split-image {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  background: linear-gradient(135deg, #0f172a 0%, #111827 52%, #020617 100%);
  color: #ffffff;
}

.aboutx-split-image::before {
  content: "";
  position: absolute;
  left: -90px;
  bottom: -110px;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 62%), transparent 70%);
  opacity: 0.42;
  pointer-events: none;
}

.aboutx-split-image::after {
  content: "";
  position: absolute;
  left: 30px;
  top: 30px;
  width: 88px;
  height: 88px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  transform: rotate(12deg);
  pointer-events: none;
}

.aboutx-split-image__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 360px;
  padding: 34px;
}

.aboutx-split-image .aboutx-kicker {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: color-mix(in srgb, var(--accent-color), white 30%);
}

.aboutx-split-image h2 {
  max-width: 720px;
  color: #ffffff;
  font-size: clamp(28px, 3.2vw, 44px);
}

.aboutx-split-image p {
  max-width: 720px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.aboutx-split-image__visual {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  background: #111827;
}

.aboutx-split-image__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.45) 0%, rgba(15, 23, 42, 0.08) 52%, rgba(15, 23, 42, 0.38) 100%);
  pointer-events: none;
}

.aboutx-split-image__visual img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: block;
  object-fit: cover;
}

.aboutx-legal-pro {
  padding: 28px;
  border-radius: 30px;
  overflow: hidden;
}

.aboutx-legal-pro__head {
  max-width: 820px;
  margin-bottom: 22px;
}

.aboutx-legal-pro__head h2 {
  font-size: clamp(30px, 3.4vw, 48px);
}

.aboutx-legal-pro__head p {
  max-width: 720px;
  margin: 12px 0 0;
}

.aboutx-legal-pro__grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.38fr) minmax(0, 0.62fr);
  gap: 18px;
  align-items: stretch;
}

.aboutx-legal-owner,
.aboutx-bank-pro {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 24px;
}

.aboutx-legal-owner {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  padding: 24px;
  background: #0f172a;
  color: #ffffff;
}

.aboutx-legal-owner__decor {
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 138px;
  height: 138px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 42px;
  transform: rotate(12deg);
}

.aboutx-legal-owner__decor span {
  color: rgba(255, 255, 255, 0.08);
  font-family: var(--heading-font);
  font-size: 46px;
  font-weight: 800;
  line-height: 1;
}

.aboutx-legal-owner__top,
.aboutx-bank-pro__top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.aboutx-legal-owner__icon,
.aboutx-bank-pro__icon {
  flex: 0 0 auto;
}

.aboutx-legal-owner__top span,
.aboutx-bank-pro__top span {
  color: var(--accent-color);
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}

.aboutx-legal-owner__top h3,
.aboutx-bank-pro__top h3 {
  margin: 6px 0 0;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 23px;
  font-weight: 680;
  line-height: 1.18;
}

.aboutx-legal-owner__top h3 {
  color: #ffffff;
}

.aboutx-legal-owner__meta {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 7px;
  margin-bottom: 18px;
  padding: 16px;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  border-radius: 18px;
}

.aboutx-legal-owner__meta span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  line-height: 1;
}

.aboutx-legal-owner__meta strong {
  color: #ffffff;
  font-family: var(--heading-font);
  font-size: 28px;
  font-weight: 760;
  line-height: 1;
}

.aboutx-legal-banks {
  display: grid;
  gap: 18px;
}

.aboutx-bank-pro {
  padding: 20px;
  background: color-mix(in srgb, var(--background-color), var(--surface-color) 58%);
}

.aboutx-bank-pro--main {
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
}

.aboutx-legal-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
}

.aboutx-legal-list--bank {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.aboutx-legal-list div {
  min-width: 0;
  display: grid;
  gap: 5px;
  padding: 13px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 14px;
  background: #ffffff;
}

.aboutx-legal-list--owner div,
.aboutx-legal-owner .aboutx-legal-list div {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
}

.aboutx-legal-list span {
  color: color-mix(in srgb, var(--default-color), transparent 48%);
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.aboutx-legal-owner .aboutx-legal-list span {
  color: rgba(255, 255, 255, 0.5);
}

.aboutx-legal-list strong {
  overflow-wrap: anywhere;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 620;
  line-height: 1.28;
}

.aboutx-legal-owner .aboutx-legal-list strong {
  color: #ffffff;
}

.aboutx-cta {
  position: relative;
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  overflow: hidden;
  padding: 30px;
  border-radius: 26px;
  background: #ffffff;
}

.aboutx-cta::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px dashed color-mix(in srgb, var(--accent-color), transparent 74%);
  border-radius: 20px;
  pointer-events: none;
}

.aboutx-cta::after {
  content: "";
  position: absolute;
  right: 28px;
  top: 28px;
  width: 84px;
  height: 84px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 78%);
  border-radius: 24px;
  transform: rotate(12deg);
  opacity: 0.38;
}

.aboutx-cta__badge {
  position: relative;
  z-index: 2;
  width: 84px;
  height: 84px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 72%);
  border-radius: 26px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  font-size: 34px;
}

.aboutx-cta__content,
.aboutx-cta__actions {
  position: relative;
  z-index: 2;
}

.aboutx-cta h2 {
  max-width: 820px;
  font-size: clamp(28px, 3.1vw, 44px);
}

.aboutx-cta p {
  max-width: 760px;
  margin: 12px 0 0;
}

.aboutx-cta__actions {
  justify-content: flex-end;
  margin-top: 0;
}

.aboutx-catalog-link {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  overflow: hidden;
  padding: 36px;
  border-radius: 34px;
  color: #ffffff;
  text-decoration: none;
  background: linear-gradient(135deg, #0f172a 0%, #111827 54%, #020617 100%);
  transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.aboutx-catalog-link:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 45%);
  color: #ffffff;
  box-shadow: 0 18px 46px color-mix(in srgb, var(--default-color), transparent 88%);
  transform: translateY(-2px);
}

.aboutx-catalog-link__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a 0%, #111827 54%, #020617 100%);
  transition: transform 0.35s ease;
}

.aboutx-catalog-link__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.96) 0%, rgba(15, 23, 42, 0.76) 50%, rgba(15, 23, 42, 0.34) 100%);
}

.aboutx-catalog-link__bg img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  opacity: 0.72;
}

.aboutx-catalog-link:hover .aboutx-catalog-link__bg {
  transform: scale(1.035);
}

.aboutx-catalog-link__frame {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;
  pointer-events: none;
}

.aboutx-catalog-link__content {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: 920px;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
}

.aboutx-catalog-link__icon,
.aboutx-catalog-link__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.aboutx-catalog-link__icon {
  width: 88px;
  height: 88px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 38px;
  backdrop-filter: blur(12px);
}

.aboutx-catalog-link__body {
  min-width: 0;
  display: grid;
  gap: 9px;
}

.aboutx-catalog-link__body span {
  color: color-mix(in srgb, var(--accent-color), white 34%);
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 650;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.aboutx-catalog-link__body strong {
  color: #ffffff;
  font-family: var(--heading-font);
  font-size: clamp(30px, 3.8vw, 54px);
  font-weight: 720;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.aboutx-catalog-link__body small {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.55;
}

.aboutx-catalog-link__action {
  position: relative;
  z-index: 2;
  align-self: end;
  justify-self: end;
  gap: 10px;
  min-height: 54px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: linear-gradient(135deg, #0f172a 0%, #111827 48%, #020617 100%);
  color: #ffffff;
  font-family: var(--nav-font);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  box-shadow: 0 14px 30px rgba(2, 6, 23, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: border-color 0.22s ease, background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.aboutx-catalog-link:hover .aboutx-catalog-link__action {
  border-color: color-mix(in srgb, var(--accent-color), white 18%);
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), #0f172a 38%) 0%, #111827 58%, #020617 100%);
  color: #ffffff;
  transform: translateX(3px);
}

@media (max-width:1199.98px) {
  .aboutx-hero {
    grid-template-columns: 1fr;
  }

  .aboutx-hero__showcase {
    min-height: 390px;
  }

  .aboutx-numbers,
  .aboutx-route,
  .aboutx-split-image {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .aboutx-flow-clean {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .aboutx-flow-clean::before {
    display: none;
  }

  .aboutx-values-pro__layout,
  .aboutx-legal-pro__grid {
    grid-template-columns: 1fr;
  }

  .aboutx-values-main {
    min-height: 320px;
  }

  .aboutx-resources {
    grid-template-columns: 1fr;
  }

  .aboutx-cta {
    grid-template-columns: 84px minmax(0, 1fr);
  }

  .aboutx-cta__actions {
    grid-column: 2;
    justify-content: flex-start;
  }

  .aboutx-catalog-link {
    grid-template-columns: 1fr;
  }

  .aboutx-catalog-link__action {
    justify-self: start;
  }

}

@media (max-width:991.98px) {
  .aboutx-route,
  .aboutx-split-image {
    grid-template-columns: 1fr;
  }

  .aboutx-split-image__visual {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .aboutx-flow-clean,
  .aboutx-values-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .aboutx-catalog-link {
    min-height: 380px;
  }

}

@media (max-width:767.98px) {
  .aboutx-hero,
  .aboutx-proof,
  .aboutx-route,
  .aboutx-manifest,
  .aboutx-split-image__content,
  .aboutx-resources,
  .aboutx-cta,
  .aboutx-values-pro,
  .aboutx-legal-pro,
  .aboutx-catalog-link {
    padding: 22px;
    border-radius: 20px;
  }

  .aboutx-hero__metrics,
  .aboutx-numbers,
  .aboutx-legal-list--bank,
  .aboutx-cta,
  .aboutx-flow-clean,
  .aboutx-values-stack {
    grid-template-columns: 1fr;
  }

  .aboutx-cta__actions {
    grid-column: auto;
  }

  .aboutx-cta::before {
    inset: 10px;
  }

  .aboutx-hero__showcase {
    min-height: 340px;
  }

  .aboutx-terminal {
    width: 92%;
  }

  .aboutx-orbit {
    width: 280px;
    height: 280px;
  }

  .aboutx-image-panel__placeholder {
    min-height: 300px;
  }

  .aboutx-section-title {
    padding-bottom: 24px;
  }

  .aboutx-route-card {
    grid-template-columns: 1fr;
  }

  .aboutx-catalog-link__content {
    grid-template-columns: 1fr;
  }

  .aboutx-catalog-link__action {
    width: fit-content;
  }

}

@media (max-width:575.98px) {
  .aboutx-hero__actions,
  .aboutx-cta__actions {
    flex-direction: column;
  }

  .aboutx-btn {
    width: 100%;
  }

  .aboutx-hero__title {
    font-size: clamp(31px, 8vw, 43px);
  }

  .aboutx-signal {
    grid-template-columns: 1fr;
  }

  .aboutx-hero__showcase {
    min-height: 300px;
  }

  .aboutx-terminal {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: 18px;
  }

  .aboutx-orbit {
    display: none;
  }

  .aboutx-page::before,.aboutx-page::after {
    display: none;
  }

  .aboutx-catalog-link {
    min-height: 420px;
  }

}

/* ========================================================================== */
/* FAQ page UI */
/* ========================================================================== */

/* FAQ page start */
.faqx-page {
  --faqx-dark: #0f172a;
  --faqx-border: color-mix(in srgb, var(--default-color), transparent 88%);
  --faqx-border-strong: color-mix(in srgb, var(--default-color), transparent 80%);
  --faqx-muted: color-mix(in srgb, var(--default-color), transparent 38%);
  --faqx-soft: color-mix(in srgb, var(--accent-color), transparent 93%);
  --faqx-soft-2: color-mix(in srgb, var(--accent-color), transparent 96%);
  --faqx-shadow: 0 8px 24px color-mix(in srgb, var(--default-color), transparent 95%);
  --faqx-shadow-hover: 0 14px 34px color-mix(in srgb, var(--default-color), transparent 91%);
  position: relative;
  max-width: 100%;
  overflow-x: clip;
  overflow-y: visible;
  background: var(--background-color);
  color: var(--default-color);
}

.faqx-page *,
.faqx-page *::before,.faqx-page *::after {
  box-sizing: border-box;
}

.faqx-hero__grid,
.faqx-hero__content,
.faqx-hero__side,
.faqx-mini-status,
.faqx-action-card,
.faqx-action-card__content,
.faqx-aside,
.faqx-aside__chips,
.faqx-bottom,
.faqx-bottom__content,
.faqx-bottom__actions,
.faqx-group,
.faqx-group__head {
  min-width: 0;
  max-width: 100%;
}

.faqx-page h1,
.faqx-page h2,
.faqx-page h3,
.faqx-page p,
.faqx-page a,
.faqx-page button,
.faqx-page span,
.faqx-page strong,
.faqx-page li {
  overflow-wrap: anywhere;
}

@supports not (overflow:clip) {
  .faqx-page {
    overflow-x: hidden;
  }

}

.faqx-page .container-fluid,
.faqx-page .container-xl,
.faqx-page .row,
.faqx-page [class*="col-"] {
  overflow: visible;
}

.faqx-eyebrow {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0 0 12px;
  padding: 7px 12px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 78%);
  border-radius: 999px;
  background: var(--faqx-soft);
  color: var(--accent-color);
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 560;
  line-height: 1;
}

.faqx-eyebrow i {
  color: currentColor;
  font-size: 14px;
}

.faqx-eyebrow--light {
  margin-bottom: 12px;
}

.faqx-hero {
  position: relative;
}

.faqx-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 18px;
  align-items: stretch;
}

.faqx-hero__content,
.faqx-hero__side,
.faqx-aside,
.faqx-bottom,
.faqx-action-card,
.faqx-group {
  border: 1px solid var(--faqx-border);
  background: #ffffff;
  box-shadow: var(--faqx-shadow);
}

.faqx-hero__content {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 3vw, 34px);
  border-radius: 28px;
}

.faqx-hero__content::after {
  content: "";
  position: absolute;
  right: -46px;
  top: -50px;
  width: 170px;
  height: 170px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 82%);
  border-radius: 52px;
  background: var(--faqx-soft-2);
  transform: rotate(14deg);
  pointer-events: none;
}

.faqx-hero__content > * {
  position: relative;
  z-index: 2;
}

.faqx-hero h1 {
  max-width: 980px;
  margin: 0;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: clamp(31px, 4vw, 52px);
  font-weight: 720;
  line-height: 1.06;
  letter-spacing: -0.046em;
}

.faqx-hero p {
  max-width: 880px;
  margin: 14px 0 0;
  color: var(--faqx-muted);
  font-size: 15px;
  line-height: 1.68;
}

.faqx-hero__side {
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 28px;
}

.faqx-mini-status {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 112px;
  padding: 14px;
  border: 1px solid var(--faqx-border);
  border-radius: 20px;
  background: color-mix(in srgb, var(--background-color), var(--surface-color) 54%);
}

.faqx-mini-status__icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 78%);
  border-radius: 16px;
  background: var(--faqx-soft);
  color: var(--accent-color);
  font-size: 21px;
}

.faqx-mini-status strong {
  display: block;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.25;
}

.faqx-mini-status span:not(.faqx-mini-status__icon) {
  display: block;
  margin-top: 5px;
  color: var(--faqx-muted);
  font-size: 13px;
  line-height: 1.45;
}

.faqx-action-card {
  position: relative;
  width: 100%;
  min-height: 176px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  gap: 14px;
  align-items: end;
  padding: 20px;
  border-radius: 24px;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease, transform 0.24s ease;
}

.faqx-action-card:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 64%);
  color: inherit;
  background: var(--faqx-soft-2);
  box-shadow: var(--faqx-shadow-hover);
  transform: translateY(-2px);
}

.faqx-action-card__spark {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 74px;
  height: 74px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 78%);
  border-radius: 24px;
  background: var(--faqx-soft);
  color: var(--accent-color);
  font-size: 28px;
  transform: rotate(10deg);
  transition: transform 0.28s ease, background-color 0.28s ease;
}

.faqx-action-card__spark i {
  transform: rotate(-10deg);
}

.faqx-action-card:hover .faqx-action-card__spark {
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  transform: rotate(4deg) scale(1.04);
}

.faqx-action-card__content {
  position: relative;
  z-index: 2;
  min-width: 0;
  display: grid;
  gap: 7px;
  padding-right: 58px;
}

.faqx-action-card__label {
  width: fit-content;
  color: var(--accent-color);
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 560;
  line-height: 1;
}

.faqx-action-card strong {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 22px;
  font-weight: 680;
  line-height: 1.15;
  letter-spacing: -0.024em;
}

.faqx-action-card__content > span:last-child {
  color: var(--faqx-muted);
  font-size: 14px;
  line-height: 1.5;
}

.faqx-action-card__arrow {
  position: relative;
  z-index: 2;
  align-self: end;
  justify-self: end;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 78%);
  border-radius: 14px;
  background: #ffffff;
  color: var(--accent-color);
  font-size: 18px;
  transition: border-color 0.24s ease, background-color 0.24s ease, color 0.24s ease, transform 0.24s ease;
}

.faqx-action-card:hover .faqx-action-card__arrow {
  border-color: var(--accent-color);
  background: var(--accent-color);
  color: #ffffff;
  transform: translate(2px, -2px);
}

.faqx-aside {
  position: sticky;
  top: 112px;
  padding: 22px;
  border-radius: 24px;
}

.faqx-aside h2,
.faqx-bottom h2 {
  margin: 0;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 690;
  line-height: 1.14;
  letter-spacing: -0.028em;
}

.faqx-aside p,
.faqx-bottom p {
  margin: 12px 0 0;
  color: var(--faqx-muted);
  font-size: 14px;
  line-height: 1.62;
}

.faqx-aside__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.faqx-aside__chips a,
.faqx-aside__chips button {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border: 1px solid var(--faqx-border);
  border-radius: 999px;
  background: color-mix(in srgb, var(--background-color), var(--surface-color) 56%);
  color: color-mix(in srgb, var(--default-color), transparent 24%);
  border-style: solid;
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 520;
  line-height: 1;
  text-decoration: none;
  transition: border-color 0.22s ease, background-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.faqx-aside__chips a:hover,.faqx-aside__chips button:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 68%);
  background: var(--faqx-soft);
  color: var(--accent-color);
  transform: translateY(-1px);
}

.faqx-accordion {
  display: grid;
  gap: 18px;
}

.faqx-group {
  overflow: hidden;
  border-radius: 24px;
}

.faqx-group__head {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid var(--faqx-border);
  background: linear-gradient(135deg, #ffffff 0%, var(--faqx-soft-2) 100%);
}

.faqx-group__head span {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 78%);
  border-radius: 15px;
  background: var(--faqx-soft);
  color: var(--accent-color);
  font-size: 18px;
}

.faqx-group__head h2 {
  margin: 0;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 680;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.faqx-item {
  border: 0;
  border-bottom: 1px solid var(--faqx-border);
  background: transparent;
}

.faqx-item:last-child {
  border-bottom: 0;
}

.faqx-item .accordion-button {
  min-height: 64px;
  gap: 14px;
  padding: 18px 20px;
  background: #ffffff;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 620;
  line-height: 1.32;
  letter-spacing: -0.01em;
  box-shadow: none;
  transition: background-color 0.22s ease, color 0.22s ease;
}

.faqx-item .accordion-button:hover {
  background: var(--faqx-soft-2);
  color: var(--accent-color);
}

.faqx-item .accordion-button:not(.collapsed) {
  background: var(--faqx-soft-2);
  color: var(--accent-color);
  box-shadow: none;
}

.faqx-item .accordion-button::after {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  margin-left: auto;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 78%);
  border-radius: 12px;
  background-color: #ffffff;
  background-position: center;
  background-size: 13px;
  color: var(--accent-color);
}

.faqx-item .accordion-button:focus {
  border-color: transparent;
  box-shadow: inset 0 0 0 2px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.faqx-item .accordion-body {
  padding: 0 20px 20px;
  background: var(--faqx-soft-2);
  color: color-mix(in srgb, var(--default-color), transparent 24%);
  font-size: 14px;
  line-height: 1.66;
}

.faqx-item .accordion-body p:last-child,.faqx-item .accordion-body ul:last-child {
  margin-bottom: 0;
}

.faqx-item .accordion-body ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 18px;
}

.faqx-item .accordion-body li::marker {
  color: var(--accent-color);
}

.faqx-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 26px;
  border-radius: 28px;
}

.faqx-bottom__content {
  min-width: 0;
}

.faqx-bottom__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.faqx-btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 16px;
  border-radius: 15px;
  font-family: var(--nav-font);
  font-size: 13px;
  font-weight: 560;
  line-height: 1;
  text-decoration: none;
  transition: border-color 0.22s ease, background-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.faqx-btn--primary {
  border: 1px solid var(--accent-color);
  background: var(--accent-color);
  color: #ffffff;
  box-shadow: 0 12px 28px color-mix(in srgb, var(--accent-color), transparent 82%);
}

.faqx-btn--primary:hover {
  border-color: color-mix(in srgb, var(--accent-color), #111827 12%);
  background: color-mix(in srgb, var(--accent-color), #111827 12%);
  color: #ffffff;
  box-shadow: 0 16px 34px color-mix(in srgb, var(--accent-color), transparent 78%);
  transform: translateY(-1px);
}

.faqx-btn--ghost {
  border: 1px solid var(--faqx-border-strong);
  background: #ffffff;
  color: var(--heading-color);
}

.faqx-btn--ghost:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 68%);
  background: var(--faqx-soft);
  color: var(--accent-color);
  transform: translateY(-1px);
}

@media (max-width:1199.98px) {
  .faqx-hero__grid {
    grid-template-columns: 1fr;
  }

  .faqx-hero__side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faqx-aside {
    position: static;
    top: auto;
  }

}

@media (max-width:991.98px) {
  .faqx-bottom {
    grid-template-columns: 1fr;
  }

  .faqx-bottom__actions {
    justify-content: flex-start;
  }

}

@media (max-width:767.98px) {
  .faqx-hero__content,
  .faqx-aside,
  .faqx-bottom {
    border-radius: 22px;
    padding: 20px;
  }

  .faqx-hero__side {
    grid-template-columns: 1fr;
    padding: 14px;
    border-radius: 22px;
  }

  .faqx-action-card {
    min-height: 156px;
    border-radius: 22px;
  }

  .faqx-group {
    border-radius: 20px;
  }

  .faqx-group__head {
    align-items: flex-start;
    padding: 16px;
  }

  .faqx-item .accordion-button {
    min-height: 58px;
    padding: 16px;
    font-size: 15px;
  }

  .faqx-item .accordion-body {
    padding: 0 16px 16px;
  }

}

@media (max-width:575.98px) {
  .faqx-hero h1 {
    font-size: clamp(27px, 8vw, 38px);
  }

  .faqx-mini-status {
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: auto;
  }

  .faqx-mini-status__icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    font-size: 18px;
  }

  .faqx-action-card {
    grid-template-columns: 1fr;
  }

  .faqx-action-card__content {
    padding-right: 50px;
  }

  .faqx-action-card__arrow {
    justify-self: start;
  }

  .faqx-bottom__actions,
  .faqx-btn {
    width: 100%;
  }

}

/* FAQ aside dark sticky fix start */
.faqx-aside {
  position: sticky;
  top: 112px;
  overflow: hidden;
  border-color: color-mix(in srgb, #0f172a, transparent 34%);
  background: radial-gradient(circle at 88% 12%, color-mix(in srgb, var(--accent-color), transparent 72%), transparent 34%), #0f172a;
}

.faqx-aside::before {
  content: "";
  position: absolute;
  right: -42px;
  top: -44px;
  width: 142px;
  height: 142px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 42px;
  transform: rotate(14deg);
  pointer-events: none;
}

.faqx-aside > * {
  position: relative;
  z-index: 2;
}

.faqx-aside .faqx-eyebrow {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: color-mix(in srgb, var(--accent-color), #ffffff 28%);
}

.faqx-aside h2 {
  color: #ffffff;
}

.faqx-aside p {
  color: rgba(255, 255, 255, 0.68);
}

.faqx-aside__chips a,
.faqx-aside__chips button {
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(10px);
}

.faqx-aside__chips a:hover,.faqx-aside__chips button:hover {
  border-color: color-mix(in srgb, var(--accent-color), #ffffff 12%);
  background: color-mix(in srgb, var(--accent-color), transparent 78%);
  color: #ffffff;
}

@media (max-width:1199.98px) {
  .faqx-aside {
    position: sticky;
    top: 90px;
  }

}

@media (max-width:991.98px) {
  .faqx-aside {
    position: static;
    top: auto;
  }

}

/* FAQ aside dark sticky fix end */
/* FAQ aside sticky working fix start */
.faqx-main-section > .row {
  align-items: stretch;
}

.faqx-main-section > .row > .col-lg-4 {
  display: flex;
  align-self: stretch;
}

.faqx-aside {
  position: sticky;
  top: 96px;
  align-self: flex-start;
  width: 100%;
  height: fit-content;
  max-height: calc(100vh - 112px);
  overflow-y: auto;
  overscroll-behavior: auto;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
}

@media (max-width:991.98px) {
  .faqx-main-section > .row > .col-lg-4 {
    display: block;
  }

  .faqx-aside {
    position: static;
    top: auto;
    max-height: none;
    overflow: hidden;
  }

}

/* FAQ aside sticky working fix end */
/* FAQ page end */

/* ========================================================================== */
/* Reviews page UI */
/* ========================================================================== */

/* Reviews page start */
.rvx-page {
  position: relative;
  overflow: hidden;
}

.rvx-page::before {
  content: "";
  position: absolute;
  top: 4%;
  right: -180px;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 88%), transparent 68%);
  pointer-events: none;
}

.rvx-page::after {
  content: "";
  position: absolute;
  left: -220px;
  bottom: 12%;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 93%), transparent 70%);
  pointer-events: none;
}

.rvx-page > .container-fluid {
  position: relative;
  z-index: 2;
}

.rvx-section {
  position: relative;
}

.rvx-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  margin-bottom: 12px;
  padding: 6px 11px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 78%);
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.rvx-kicker--light {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: color-mix(in srgb, var(--accent-color), white 26%);
}

.rvx-hero {
  position: relative;
  min-height: 460px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 30px;
  align-items: stretch;
  overflow: hidden;
  padding: 34px;
  border: 1px solid color-mix(in srgb, #0f172a, transparent 35%);
  border-radius: 34px;
  background: radial-gradient(circle at 78% 20%, color-mix(in srgb, var(--accent-color), transparent 72%), transparent 28%), #0f172a;
}

.rvx-hero__decor {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--rvx-decor-color);
  pointer-events: none;
}

.rvx-hero__decor i {
  display: inline-flex;
  color: currentColor;
  font-size: var(--rvx-decor-icon-size);
  line-height: 1;
  transform: rotate(var(--rvx-decor-icon-rotate));
}

.rvx-hero__decor--one {
  --rvx-decor-color: rgba(255, 255, 255, 0.09);
  --rvx-decor-icon-size: 82px;
  --rvx-decor-icon-rotate: -18deg;
  left: -80px;
  bottom: -100px;
  width: 300px;
  height: 300px;
  border: 1px solid var(--rvx-decor-color);
  border-radius: 70px;
  transform: rotate(18deg);
}

.rvx-hero__decor--two {
  --rvx-decor-color: rgba(255, 255, 255, 0.14);
  --rvx-decor-icon-size: 34px;
  --rvx-decor-icon-rotate: -12deg;
  right: 36px;
  top: 34px;
  width: 110px;
  height: 110px;
  border: 1px solid var(--rvx-decor-color);
  border-radius: 34px;
  transform: rotate(12deg);
}

.rvx-hero__content {
  position: relative;
  z-index: 2;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rvx-hero__title {
  max-width: 900px;
  margin: 0;
  color: #ffffff;
  font-family: var(--heading-font);
  font-size: clamp(38px, 4.8vw, 68px);
  font-weight: 740;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.rvx-hero__text {
  max-width: 740px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.72;
}

.rvx-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.rvx-btn {
  min-height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 16px;
  border-radius: 13px;
  font-family: var(--nav-font);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: border-color 0.22s ease, background-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.rvx-btn:hover {
  transform: translateY(-1px);
}

.rvx-btn--primary {
  border: 1px solid var(--accent-color);
  background: var(--accent-color);
  color: #ffffff;
  box-shadow: 0 10px 24px color-mix(in srgb, var(--accent-color), transparent 82%);
}

.rvx-btn--primary:hover {
  border-color: color-mix(in srgb, var(--accent-color), black 12%);
  background: color-mix(in srgb, var(--accent-color), black 12%);
  color: #ffffff;
}

.rvx-btn--light {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.rvx-btn--light:hover {
  border-color: color-mix(in srgb, var(--accent-color), white 18%);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.rvx-hero__board {
  position: relative;
  z-index: 2;
  min-height: 390px;
}

.rvx-rating-card {
  position: absolute;
  right: 6%;
  top: 8%;
  z-index: 2;
  width: min(320px, 88%);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.09);
  color: #ffffff;
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px color-mix(in srgb, #0f172a, transparent 62%);
}

.rvx-rating-card__decor {
  position: absolute;
  right: -36px;
  top: -36px;
  z-index: 1;
  width: 138px;
  height: 138px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 42px;
  color: rgba(255, 255, 255, 0.16);
  transform: rotate(14deg);
  pointer-events: none;
}

.rvx-rating-card__decor i {
  display: inline-flex;
  color: currentColor;
  font-size: 42px;
  line-height: 1;
  transform: rotate(-14deg);
}

.rvx-rating-card__label {
  position: relative;
  z-index: 2;
  color: color-mix(in srgb, var(--accent-color), white 28%);
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 650;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.rvx-rating-card__value {
  position: relative;
  z-index: 2;
  margin-top: 16px;
  color: #ffffff;
  font-family: var(--heading-font);
  font-size: clamp(66px, 7vw, 98px);
  font-weight: 800;
  line-height: 0.84;
  letter-spacing: -0.09em;
}

.rvx-rating-card__stars {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 4px;
  margin-top: 22px;
  color: #f59e0b;
  font-size: 18px;
}

.rvx-rating-card__note {
  position: relative;
  z-index: 2;
  max-width: 240px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  line-height: 1.5;
}

.rvx-mini-feed {
  position: absolute;
  left: 2%;
  bottom: 8%;
  z-index: 3;
  width: min(310px, 86%);
  display: grid;
  gap: 10px;
}

.rvx-mini-feed__item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
  font-size: 13px;
}

.rvx-mini-feed__item i {
  color: color-mix(in srgb, var(--accent-color), white 26%);
  font-size: 18px;
}

.rvx-hero__spark {
  --rvx-spark-color: rgba(255, 255, 255, 0.12);
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rvx-spark-color);
  color: var(--rvx-spark-color);
  pointer-events: none;
}

.rvx-hero__spark i {
  display: inline-flex;
  color: currentColor;
  font-size: var(--rvx-spark-icon-size);
  line-height: 1;
  transform: rotate(var(--rvx-spark-icon-rotate));
}

.rvx-hero__spark--one {
  --rvx-spark-icon-size: 28px;
  --rvx-spark-icon-rotate: -14deg;
  left: 8%;
  top: 18%;
  width: 92px;
  height: 92px;
  border-radius: 28px;
  transform: rotate(14deg);
}

.rvx-hero__spark--two {
  --rvx-spark-icon-size: 24px;
  --rvx-spark-icon-rotate: 0deg;
  right: 0;
  bottom: 4%;
  width: 74px;
  height: 74px;
  border-radius: 999px;
}

.rvx-overview,
.rvx-platforms,
.rvx-gallery,
.rvx-reviews-shell {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  background: var(--surface-color);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--default-color), transparent 95%);
}

.rvx-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(390px, 1.14fr);
  gap: 24px;
  align-items: stretch;
  padding: 28px;
  border-radius: 30px;
}

.rvx-overview__text h2,
.rvx-platforms__head h2,
.rvx-gallery__intro h2,
.rvx-reviews-head h2,
.rvx-rating-panel__head h3 {
  margin: 0;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 690;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.rvx-overview__text h2 {
  max-width: 760px;
  font-size: clamp(28px, 3.3vw, 46px);
}

.rvx-overview__text p,
.rvx-platforms__head p,
.rvx-gallery__intro p,
.rvx-reviews-head p,
.rvx-rating-panel__head p {
  color: color-mix(in srgb, var(--default-color), transparent 32%);
  font-size: 15px;
  line-height: 1.72;
}

.rvx-overview__text p {
  max-width: 680px;
  margin: 15px 0 0;
}

.rvx-overview__metrics {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1fr;
  gap: 12px;
}

.rvx-counter {
  position: relative;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 20px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 24px;
  background: color-mix(in srgb, var(--background-color), var(--surface-color) 58%);
}

.rvx-counter--dark {
  border-color: color-mix(in srgb, #0f172a, transparent 40%);
  background: #0f172a;
}

.rvx-counter::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 58px;
  height: 58px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  border-radius: 20px;
  transform: rotate(10deg);
  opacity: 0.55;
}

.rvx-counter__icon {
  position: absolute;
  left: 18px;
  top: 18px;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 78%);
  border-radius: 17px;
  background: color-mix(in srgb, var(--accent-color), transparent 91%);
  color: var(--accent-color);
  font-size: 22px;
}

.rvx-counter strong {
  position: relative;
  z-index: 2;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 760;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.rvx-counter span:last-child {
  position: relative;
  z-index: 2;
  max-width: 220px;
  margin-top: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 36%);
  font-size: 14px;
  line-height: 1.5;
}

.rvx-counter--dark strong {
  color: #ffffff;
}

.rvx-counter--dark span:last-child {
  color: rgba(255, 255, 255, 0.68);
}

.rvx-platforms,
.rvx-gallery,
.rvx-reviews-shell {
  padding: 28px;
  border-radius: 30px;
}

.rvx-platforms__head,
.rvx-gallery__intro,
.rvx-reviews-head {
  max-width: 860px;
  margin-bottom: 24px;
}

.rvx-platforms__head h2,
.rvx-gallery__intro h2,
.rvx-reviews-head h2 {
  font-size: clamp(30px, 3.4vw, 48px);
}

.rvx-platforms__head p,
.rvx-gallery__intro p,
.rvx-reviews-head p {
  max-width: 740px;
  margin: 12px 0 0;
}

.rvx-platform {
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 20px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 26px;
  background: color-mix(in srgb, var(--background-color), var(--surface-color) 58%);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.rvx-platform:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 66%);
  color: inherit;
  box-shadow: 0 16px 38px color-mix(in srgb, var(--default-color), transparent 91%);
  transform: translateY(-2px);
}

.rvx-platform--accent {
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
}

.rvx-platform--dark {
  border-color: color-mix(in srgb, #0f172a, transparent 40%);
  background: #0f172a;
  color: #ffffff;
}

.rvx-platform--dark:hover {
  color: #ffffff;
}

.rvx-platform::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: -28px;
  width: 96px;
  height: 96px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  border-radius: 30px;
  transform: rotate(12deg);
  opacity: 0.55;
}

.rvx-platform__logo {
  position: relative;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 19px;
  background: #ffffff;
  isolation: isolate;
}

.rvx-platform__logo-icon {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 91%);
  color: var(--accent-color);
  font-size: 24px;
  line-height: 1;
}

.rvx-platform__logo-icon i {
  color: currentColor;
  line-height: 1;
}

.rvx-platform__logo img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  padding: 10px;
  object-fit: contain;
  background: #ffffff;
}

.rvx-platform__logo img:not([src]),.rvx-platform__logo img[src=""] {
  display: none;
}

.rvx-platform__logo:has(img[src]:not([src=""])) .rvx-platform__logo-icon {
  opacity: 0;
  visibility: hidden;
}

.rvx-platform__name {
  margin-top: 18px;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
}

.rvx-platform__desc {
  margin-top: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 13px;
  line-height: 1.4;
}

.rvx-platform__score {
  display: grid;
  gap: 7px;
  margin-top: auto;
  padding-top: 24px;
}

.rvx-platform__score strong {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 44px;
  font-weight: 760;
  line-height: 1;
  letter-spacing: -0.06em;
}

.rvx-platform__score span {
  display: flex;
  gap: 2px;
  color: #f59e0b;
  font-size: 13px;
}

.rvx-platform__bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  color: color-mix(in srgb, var(--default-color), transparent 38%);
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 500;
}

.rvx-platform--dark .rvx-platform__name,
.rvx-platform--dark .rvx-platform__score strong {
  color: #ffffff;
}

.rvx-platform--dark .rvx-platform__desc,
.rvx-platform--dark .rvx-platform__bottom {
  color: rgba(255, 255, 255, 0.62);
}

.rvx-gallery {
  display: grid;
  grid-template-columns: minmax(0, 0.38fr) minmax(0, 0.62fr);
  gap: 24px;
  align-items: center;
}

.rvx-gallery__strip {
  position: relative;
  overflow: hidden;
  padding: 14px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 24px;
  background: color-mix(in srgb, var(--background-color), var(--surface-color) 58%);
}

.rvx-gallery__grid > * {
  min-width: 0;
}

.rvx-gallery__grid img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 16px;
}

.rvx-list-panel {
  min-height: 360px;
}

.rvx-list-panel .rv-list {
  display: grid;
  gap: 14px;
}

.rvx-list-panel .rv-list > * {
  max-width: 100%;
}

.rvx-list-panel .ec-message,
.rvx-list-panel .ec-message-row,
.rvx-list-panel .rv-item,
.rvx-list-panel .review-item {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--default-color), transparent 96%);
}

.rvx-pagination {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.rvx-pagination .pagination {
  margin-bottom: 0;
}

.rvx-rating-panel {
  position: sticky;
  top: 110px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid color-mix(in srgb, #0f172a, transparent 40%);
  border-radius: 28px;
  background: #0f172a;
  color: #ffffff;
  box-shadow: 0 16px 42px color-mix(in srgb, #0f172a, transparent 82%);
}

.rvx-rating-panel::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 138px;
  height: 138px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 42px;
  transform: rotate(12deg);
}

.rvx-rating-panel__head {
  position: relative;
  z-index: 2;
  margin-bottom: 18px;
}

.rvx-rating-panel__head h3 {
  color: #ffffff;
  font-size: clamp(24px, 2.4vw, 34px);
}

.rvx-rating-panel__head p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.66);
}

.rvx-rating-panel__body {
  position: relative;
  z-index: 2;
}

.rvx-rating-panel__body > * {
  max-width: 100%;
}

@media (max-width:1199.98px) {
  .rvx-hero,
  .rvx-overview,
  .rvx-gallery {
    grid-template-columns: 1fr;
  }

  .rvx-overview__metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

}

@media (max-width:991.98px) {
  .rvx-rating-panel {
    position: static;
  }

  .rvx-overview__metrics {
    grid-template-columns: 1fr;
  }

}

@media (max-width:767.98px) {
  .rvx-hero,
  .rvx-overview,
  .rvx-platforms,
  .rvx-gallery,
  .rvx-reviews-shell,
  .rvx-rating-panel {
    padding: 22px;
    border-radius: 20px;
  }

  .rvx-hero {
    grid-template-columns: 1fr;
  }

  .rvx-hero__board {
    min-height: 340px;
  }

  .rvx-rating-card {
    right: 0;
    top: 0;
    width: 100%;
  }

  .rvx-mini-feed {
    left: 0;
    bottom: 0;
  }

}

@media (max-width:575.98px) {
  .rvx-hero__actions {
    flex-direction: column;
  }

  .rvx-btn {
    width: 100%;
  }

  .rvx-hero__title {
    font-size: clamp(31px, 8vw, 43px);
  }

  .rvx-hero__board {
    min-height: auto;
  }

  .rvx-rating-card,
  .rvx-mini-feed {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .rvx-mini-feed {
    margin-top: 14px;
  }

  .rvx-page::before,.rvx-page::after {
    display: none;
  }

}

/* Reviews page end */
/* Reviews modal start */
.rvx-review-modal__content {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 28px;
  background: var(--surface-color);
  box-shadow: 0 24px 70px color-mix(in srgb, #0f172a, transparent 78%);
}

.rvx-review-modal__content::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 138px;
  height: 138px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  border-radius: 42px;
  transform: rotate(12deg);
  opacity: 0.55;
  pointer-events: none;
}

.rvx-review-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 13px;
  background: #ffffff;
  color: color-mix(in srgb, var(--default-color), transparent 32%);
  cursor: pointer;
  transition: border-color 0.22s ease, background-color 0.22s ease, color 0.22s ease;
}

.rvx-review-modal__close:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 68%);
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
  color: var(--accent-color);
}

.rvx-review-modal__icon {
  width: 70px;
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 74%);
  border-radius: 22px;
  background: color-mix(in srgb, var(--accent-color), transparent 91%);
  color: var(--accent-color);
  font-size: 30px;
}

.rvx-review-modal__body {
  position: relative;
  z-index: 2;
  padding-right: 24px;
}

.rvx-review-modal__eyebrow {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--accent-color);
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.rvx-review-modal__body h3 {
  max-width: 460px;
  margin: 0;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.rvx-review-modal__body p {
  max-width: 520px;
  margin: 14px 0 0;
  color: color-mix(in srgb, var(--default-color), transparent 32%);
  font-size: 15px;
  line-height: 1.68;
}

.rvx-review-modal__note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
  padding: 14px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  border-radius: 16px;
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  line-height: 1.5;
}

.rvx-review-modal__note i {
  flex: 0 0 auto;
  color: var(--accent-color);
  font-size: 18px;
  line-height: 1.35;
}

.rvx-review-modal__actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.rvx-review-modal__btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 15px;
  border-radius: 14px;
  font-family: var(--nav-font);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.22s ease, background-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.rvx-review-modal__btn:hover {
  transform: translateY(-1px);
}

.rvx-review-modal__btn--primary {
  border: 1px solid var(--accent-color);
  background: var(--accent-color);
  color: #ffffff;
}

.rvx-review-modal__btn--primary:hover {
  border-color: color-mix(in srgb, var(--accent-color), black 12%);
  background: color-mix(in srgb, var(--accent-color), black 12%);
  color: #ffffff;
  box-shadow: 0 10px 24px color-mix(in srgb, var(--accent-color), transparent 84%);
}

.rvx-review-modal__btn--ghost {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 84%);
  background: #ffffff;
  color: color-mix(in srgb, var(--default-color), transparent 26%);
}

.rvx-review-modal__btn--ghost:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 68%);
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
  color: var(--accent-color);
}

@media (max-width:575.98px) {
  .rvx-review-modal__content {
    padding: 22px;
    border-radius: 22px;
  }

  .rvx-review-modal__body {
    padding-right: 0;
  }

  .rvx-review-modal__actions {
    flex-direction: column;
  }

  .rvx-review-modal__btn {
    width: 100%;
  }

}

/* Reviews modal end */
/* Reviews thread rating start */
.rvx-thread-rating {
  display: grid;
  gap: 16px;
}

.rvx-thread-rating__score {
  position: relative;
  display: grid;
  gap: 18px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
}

.rvx-thread-rating__score::after {
  content: "";
  position: absolute;
  right: -26px;
  bottom: -26px;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;
  transform: rotate(12deg);
  pointer-events: none;
}

.rvx-thread-rating__score-top {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.rvx-thread-rating__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  margin-bottom: 16px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: color-mix(in srgb, var(--accent-color), white 28%);
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.rvx-thread-rating__number {
  color: #ffffff;
  font-family: var(--heading-font);
  font-size: clamp(58px, 7vw, 92px);
  font-weight: 780;
  line-height: 0.88;
  letter-spacing: -0.08em;
}

.rvx-thread-rating__stars {
  display: flex;
  margin-top: 18px;
}

.rvx-thread-rating__stars .ec-stars {
  display: inline-block;
}

.rvx-thread-rating__count {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.45;
}

.rvx-thread-rating__cta {
  position: relative;
  z-index: 2;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--accent-color);
  border-radius: 14px;
  background: var(--accent-color);
  color: #ffffff;
  font-family: var(--nav-font);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.rvx-thread-rating__cta:hover {
  border-color: color-mix(in srgb, var(--accent-color), black 12%);
  background: color-mix(in srgb, var(--accent-color), black 12%);
  color: #ffffff;
  box-shadow: 0 10px 24px color-mix(in srgb, var(--accent-color), transparent 82%);
  transform: translateY(-1px);
}

.rvx-thread-rating__chart {
  position: relative;
  overflow: hidden;
  padding: 20px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 24px;
  background: #ffffff;
}

.rvx-thread-rating__chart::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 16px;
  width: 54px;
  height: 54px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  border-radius: 18px;
  transform: rotate(10deg);
  opacity: 0.55;
  pointer-events: none;
}

.rvx-thread-rating__chart-head {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 5px;
  margin-bottom: 18px;
  padding-right: 64px;
}

.rvx-thread-rating__chart-head span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.2;
}

.rvx-thread-rating__chart-head small {
  color: color-mix(in srgb, var(--default-color), transparent 42%);
  font-size: 13px;
  line-height: 1.35;
}

.rvx-thread-rating__rows {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 11px;
}

.rvx-thread-rating__row {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 48px;
  gap: 10px;
  align-items: center;
  min-width: 0;
}

.rvx-thread-rating__label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--heading-color);
  font-family: var(--nav-font);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
}

.rvx-thread-rating__label i {
  color: #f59e0b;
  font-size: 12px;
}

.rvx-thread-rating__track {
  position: relative;
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: color-mix(in srgb, var(--default-color), transparent 91%);
}

.rvx-thread-rating__fill {
  height: 100%;
  min-width: 4px;
  border-radius: inherit;
  background: var(--accent-color);
}

.rvx-thread-rating__percent {
  color: color-mix(in srgb, var(--default-color), transparent 42%);
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  text-align: right;
}

@media (max-width:575.98px) {
  .rvx-thread-rating__score,
  .rvx-thread-rating__chart {
    padding: 18px;
    border-radius: 20px;
  }

  .rvx-thread-rating__row {
    grid-template-columns: 38px minmax(0, 1fr) 42px;
  }

  .rvx-thread-rating__number {
    font-size: clamp(52px, 16vw, 74px);
  }

}

/* Reviews thread rating end */
/* Reviews messages start */
.rvx-message-list {
  display: grid;
  gap: 16px;
}

.rvx-message-card {
  position: relative;
  overflow: hidden;
  padding: 20px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--default-color), transparent 96%);
}

.rvx-message-card::after {
  content: "";
  position: absolute;
  right: -26px;
  top: -26px;
  width: 96px;
  height: 96px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 82%);
  border-radius: 30px;
  transform: rotate(12deg);
  opacity: 0.55;
  pointer-events: none;
}

.rvx-message-card__top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
}

.rvx-message-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.rvx-message-card__avatar,
.rvx-message-reply__avatar {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 18px;
}

.rvx-message-card__avatar {
  width: 52px;
  height: 52px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 76%);
  background: color-mix(in srgb, var(--accent-color), transparent 91%);
  color: var(--accent-color);
}

.rvx-message-card__avatar span {
  display: block;
  width: 1ch;
  max-width: 1ch;
  overflow: hidden;
  font-family: var(--heading-font);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  text-align: left;
  text-transform: uppercase;
  white-space: nowrap;
}

.rvx-message-card__user {
  min-width: 0;
}

.rvx-message-card__name {
  overflow: hidden;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rvx-message-card__date {
  margin-top: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 46%);
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.rvx-message-card__rating {
  flex: 0 0 auto;
  display: flex;
  justify-content: flex-end;
  padding-top: 3px;
}

.rvx-message-product {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 34px;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
  padding: 12px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 82%);
  border-radius: 18px;
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.22s ease, background-color 0.22s ease, transform 0.22s ease;
}

.rvx-message-product:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 62%);
  background: color-mix(in srgb, var(--accent-color), transparent 93%);
  color: inherit;
  transform: translateY(-1px);
}

.rvx-message-product__media,
.rvx-message-product__placeholder,
.rvx-message-product__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.rvx-message-product__media {
  width: 54px;
  height: 54px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 16px;
  background: #ffffff;
}

.rvx-message-product__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.rvx-message-product__placeholder {
  width: 100%;
  height: 100%;
  color: var(--accent-color);
  font-size: 22px;
}

.rvx-message-product__body {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.rvx-message-product__label {
  color: var(--accent-color);
  font-family: var(--nav-font);
  font-size: 11px;
  font-weight: 650;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.rvx-message-product__title {
  overflow: hidden;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rvx-message-product__arrow {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--accent-color);
  font-size: 15px;
}

.rvx-message-card__body {
  position: relative;
  z-index: 2;
  margin-top: 18px;
}

.rvx-message-card__body p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 24%);
  font-size: 15px;
  line-height: 1.72;
}

.rvx-message-photos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 16px;
}

.rvx-message-photo {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 16px;
  background: color-mix(in srgb, var(--default-color), transparent 94%);
}

.rvx-message-photo::after {
  content: "\F52A";
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.72);
  color: #ffffff;
  font-family: "bootstrap-icons";
  font-size: 13px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.rvx-message-photo:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.rvx-message-photo__ratio {
  display: block;
  aspect-ratio: 4 / 3;
}

.rvx-message-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.rvx-message-photo:hover img {
  transform: scale(1.04);
}

.rvx-message-card__bottom {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.rvx-message-vote {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.rvx-message-vote__caption {
  color: color-mix(in srgb, var(--default-color), transparent 46%);
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.rvx-message-vote__box,
.rvx-message-vote .ec-message__votes {
  position: relative;
  z-index: 6;
  display: flex !important;
  align-items: center;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  filter: none !important;
  overflow: visible !important;
}

.rvx-message-vote__item,
.rvx-message-vote .ec-message__votes-item {
  position: relative;
  z-index: 7;
  display: flex !important;
  align-items: center;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  filter: none !important;
  overflow: visible !important;
}

.rvx-message-vote__btn,
.rvx-message-vote .ec-message__votes-button,
.rvx-message-vote .ec-message__votes-button-like {
  position: relative;
  z-index: 8;
  min-width: 46px;
  min-height: 32px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0 !important;
  padding: 7px 11px !important;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 86%) !important;
  border-radius: 999px !important;
  background-color: #ffffff !important;
  background-image: none !important;
  background-position: initial !important;
  background-repeat: initial !important;
  background-size: initial !important;
  color: color-mix(in srgb, var(--default-color), transparent 36%) !important;
  box-shadow: none !important;
  filter: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none !important;
  cursor: pointer;
  overflow: hidden !important;
  pointer-events: auto !important;
  transition: border-color 0.22s ease, background-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.rvx-message-vote .ec-message__votes-button-like {
  background: #ffffff !important;
  background-image: none !important;
  filter: none !important;
}

.rvx-message-vote__btn *,
.rvx-message-vote .ec-message__votes-button *,
.rvx-message-vote .ec-message__votes-button-like * {
  position: relative;
  z-index: 2;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  filter: none !important;
  color: currentColor !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.rvx-message-vote__btn::before,.rvx-message-vote .ec-message__votes-button-like::before {
  content: "\F407";
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
  font-family: "bootstrap-icons";
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  background: transparent !important;
  background-image: none !important;
  filter: none !important;
}

.rvx-message-vote__btn::after,.rvx-message-vote .ec-message__votes-button::after,.rvx-message-vote .ec-message__votes-button-like::after {
  display: none !important;
  content: none !important;
  background: transparent !important;
  background-image: none !important;
  filter: none !important;
}

.rvx-message-vote__btn:hover,.rvx-message-vote .ec-message__votes-button:hover,.rvx-message-vote .ec-message__votes-button-like:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%) !important;
  background-color: color-mix(in srgb, var(--accent-color), transparent 94%) !important;
  background-image: none !important;
  color: var(--accent-color) !important;
  box-shadow: 0 6px 16px color-mix(in srgb, var(--accent-color), transparent 88%) !important;
  filter: none !important;
  transform: translateY(-1px);
}

.rvx-message-vote__btn.active,
.rvx-message-vote .ec-message__votes-button.active,
.rvx-message-vote .ec-message__votes-button-like.active {
  border-color: color-mix(in srgb, var(--accent-color), transparent 64%) !important;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%) !important;
  background-image: none !important;
  color: var(--accent-color) !important;
  filter: none !important;
}

.rvx-message-vote__btn.loading,
.rvx-message-vote .ec-message__votes-button.loading,
.rvx-message-vote .ec-message__votes-button-like.loading {
  pointer-events: none !important;
  opacity: 0.72 !important;
}

.rvx-message-vote__count {
  display: inline-flex !important;
  min-width: 8px;
  color: currentColor !important;
  font: inherit;
  line-height: 1;
  background: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  filter: none !important;
}

.rvx-message-card__verified {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  color: color-mix(in srgb, var(--default-color), transparent 44%);
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.rvx-message-card__verified i {
  color: var(--accent-color);
  font-size: 14px;
}

.rvx-message-reply {
  position: relative;
  z-index: 2;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 82%);
  border-radius: 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
}

.rvx-message-reply__head {
  display: flex;
  align-items: center;
  gap: 11px;
}

.rvx-message-reply__avatar {
  width: 42px;
  height: 42px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  background: #ffffff;
}

.rvx-message-reply__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rvx-message-reply__name {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.2;
}

.rvx-message-reply__date {
  margin-top: 4px;
  color: color-mix(in srgb, var(--default-color), transparent 46%);
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.rvx-message-reply__body {
  margin-top: 12px;
}

.rvx-message-reply__body p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 28%);
  font-size: 14px;
  line-height: 1.65;
}

@media (max-width:767.98px) {
  .rvx-message-card {
    padding: 18px;
    border-radius: 20px;
  }

  .rvx-message-card__top,
  .rvx-message-card__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .rvx-message-product {
    grid-template-columns: 50px minmax(0, 34px);
    gap: 10px;
  }

  .rvx-message-product__media {
    width: 50px;
    height: 50px;
  }

  .rvx-message-product__arrow {
    grid-column: auto;
    grid-row: auto;
    justify-self: end;
    align-self: center;
    width: 34px;
    height: 34px;
  }

  .rvx-message-photos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rvx-message-card__verified {
    white-space: normal;
  }

}

@media (max-width:575.98px) {
  .rvx-message-vote {
    align-items: flex-start;
    flex-direction: column;
  }

  .rvx-message-product {
    grid-template-columns: 48px minmax(0, 1fr) 32px;
    padding: 10px;
  }

  .rvx-message-product__media {
    width: 48px;
    height: 48px;
    border-radius: 15px;
  }

  .rvx-message-product__arrow {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

}

/* Reviews messages end */
/* Review gallery modal start */
.site-review-gallery-modal {
  --review-modal-accent: var(--accent-color, #0d6efd);
  --review-modal-heading: var(--heading-color, #111827);
  --review-modal-text: var(--default-color, #334155);
  --review-modal-surface: var(--surface-color, #ffffff);
  --review-modal-border: color-mix(in srgb, var(--review-modal-text), transparent 88%);
  --review-modal-muted: color-mix(in srgb, var(--review-modal-text), transparent 42%);
}

.site-review-gallery-modal__dialog {
  max-width: 1180px;
  padding-right: 12px;
  padding-left: 12px;
}

.site-review-gallery-modal__content {
  position: relative;
  max-height: calc(100vh - 32px);
  overflow: hidden;
  border: 1px solid var(--review-modal-border);
  border-radius: 30px;
  background: var(--review-modal-surface);
  box-shadow: 0 24px 70px color-mix(in srgb, #0f172a, transparent 78%);
}

.site-review-gallery-modal__content::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 138px;
  height: 138px;
  border: 1px solid color-mix(in srgb, var(--review-modal-accent), transparent 82%);
  border-radius: 42px;
  opacity: 0.5;
  transform: rotate(12deg);
  pointer-events: none;
}

.site-review-gallery-modal__header,
.site-review-gallery-modal__body,
.site-review-gallery-modal__footer {
  position: relative;
  z-index: 2;
}

.site-review-gallery-modal__header {
  position: relative;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 80px 22px 28px;
  border-bottom: 1px solid color-mix(in srgb, var(--review-modal-text), transparent 90%);
  background: #ffffff;
}

.site-review-gallery-modal__title {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  margin: 0;
  color: var(--review-modal-heading);
  font-family: var(--heading-font);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 650;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.site-review-gallery-modal__title-icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--review-modal-accent), transparent 76%);
  border-radius: 15px;
  background: color-mix(in srgb, var(--review-modal-accent), transparent 91%);
  color: var(--review-modal-accent);
  font-size: 19px;
}

.site-review-gallery-modal__title span:last-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-review-gallery-modal__close {
  position: absolute;
  top: 18px;
  right: 22px;
  z-index: 5;
  width: 42px;
  height: 42px;
  margin: 0;
  padding: 0;
  border: 1px solid color-mix(in srgb, var(--review-modal-text), transparent 88%);
  border-radius: 15px;
  background-color: #ffffff;
  background-size: 13px;
  box-shadow: none;
  opacity: 1;
  transition: border-color 0.22s ease, background-color 0.22s ease, transform 0.22s ease;
}

.site-review-gallery-modal__close:hover {
  border-color: color-mix(in srgb, var(--review-modal-accent), transparent 68%);
  background-color: color-mix(in srgb, var(--review-modal-accent), transparent 94%);
  transform: translateY(-1px);
}

.site-review-gallery-modal__close:focus {
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--review-modal-accent), transparent 82%);
}

.site-review-gallery-modal__body {
  padding: 24px 28px;
  overflow: auto;
  background: #ffffff;
  scrollbar-width: thin;
  scrollbar-color: color-mix(in srgb, var(--review-modal-accent), transparent 55%) transparent;
}

.site-review-gallery-modal__body::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.site-review-gallery-modal__body::-webkit-scrollbar-track {
  background: transparent;
}

.site-review-gallery-modal__body::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: color-mix(in srgb, var(--review-modal-accent), transparent 62%);
}

.site-review-gallery-modal__grid {
  width: 100%;
  max-width: none;
  display: grid;
  gap: 18px;
  align-items: start;
  margin: 0;
  padding: 0;
}

.site-review-gallery-modal__grid:empty {
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  border: 1px dashed color-mix(in srgb, var(--review-modal-text), transparent 82%);
  border-radius: 24px;
  background: color-mix(in srgb, var(--review-modal-text), transparent 96%);
}

.site-review-gallery-modal__grid:empty::before {
  content: "Загрузка фотографии...";
  color: var(--review-modal-muted);
  font-family: var(--nav-font);
  font-size: 14px;
  font-weight: 500;
}

.site-review-gallery-modal__grid > * {
  min-width: 0;
}

.site-review-gallery-modal__grid > img,
.site-review-gallery-modal__grid > picture,
.site-review-gallery-modal__grid > a:first-child,.site-review-gallery-modal__grid > div:first-child:has(img) {
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--review-modal-text), transparent 88%);
  border-radius: 24px;
  background: color-mix(in srgb, var(--review-modal-text), transparent 96%);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--review-modal-text), transparent 95%);
}

.site-review-gallery-modal__grid img {
  display: block;
  max-width: 100%;
  height: auto;
}

.site-review-gallery-modal__grid > img,
.site-review-gallery-modal__grid > picture img,
.site-review-gallery-modal__grid > a:first-child img,.site-review-gallery-modal__grid > div:first-child:has(img) img {
  width: 100%;
  max-height: 68vh;
  object-fit: contain;
  background: #ffffff;
}

.site-review-gallery-modal__grid .ec-message,
.site-review-gallery-modal__grid .ec-message-row,
.site-review-gallery-modal__grid .rvx-message-card,
.site-review-gallery-modal__grid .rv-item,
.site-review-gallery-modal__grid .review-item,
.site-review-gallery-modal__grid > div:not(:first-child) {
  position: relative;
  overflow: hidden;
  padding: 20px;
  border: 1px solid color-mix(in srgb, var(--review-modal-text), transparent 88%);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--review-modal-text), transparent 96%);
}

.site-review-gallery-modal__grid .ec-message::after,.site-review-gallery-modal__grid .ec-message-row::after,.site-review-gallery-modal__grid .rvx-message-card::after,.site-review-gallery-modal__grid .rv-item::after,.site-review-gallery-modal__grid .review-item::after,.site-review-gallery-modal__grid > div:not(:first-child)::after {
  content: "";
  position: absolute;
  right: -26px;
  top: -26px;
  width: 96px;
  height: 96px;
  border: 1px solid color-mix(in srgb, var(--review-modal-accent), transparent 84%);
  border-radius: 30px;
  opacity: 0.5;
  transform: rotate(12deg);
  pointer-events: none;
}

.site-review-gallery-modal__grid p {
  color: color-mix(in srgb, var(--review-modal-text), transparent 24%);
  font-size: 15px;
  line-height: 1.72;
}

.site-review-gallery-modal__grid a {
  color: var(--review-modal-accent);
  text-decoration: none;
}

.site-review-gallery-modal__grid a:hover {
  color: color-mix(in srgb, var(--review-modal-accent), black 12%);
}

.site-review-gallery-modal__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 28px 24px;
  border-top: 1px solid color-mix(in srgb, var(--review-modal-text), transparent 90%);
  background: #ffffff;
}

.site-review-gallery-modal__nav {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-width: 0;
}

.site-review-gallery-modal__counter {
  flex: 0 0 auto;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 13px;
  border: 1px solid color-mix(in srgb, var(--review-modal-accent), transparent 78%);
  border-radius: 999px;
  background: color-mix(in srgb, var(--review-modal-accent), transparent 92%);
  color: var(--review-modal-accent);
  font-family: var(--nav-font);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.site-review-gallery-modal__nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-review-gallery-modal__nav-btn,
.site-review-gallery-modal__close-btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 0;
  padding: 10px 15px;
  border-radius: 14px;
  font-family: var(--nav-font);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  box-shadow: none;
  cursor: pointer;
  transition: border-color 0.22s ease, background-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.site-review-gallery-modal__nav-btn {
  border: 1px solid color-mix(in srgb, var(--review-modal-text), transparent 84%);
  background: #ffffff;
  color: color-mix(in srgb, var(--review-modal-text), transparent 26%);
}

.site-review-gallery-modal__nav-btn:hover {
  border-color: color-mix(in srgb, var(--review-modal-accent), transparent 68%);
  background: color-mix(in srgb, var(--review-modal-accent), transparent 96%);
  color: var(--review-modal-accent);
  transform: translateY(-1px);
}

.site-review-gallery-modal__close-btn {
  flex: 0 0 auto;
  border: 1px solid var(--review-modal-accent);
  background: var(--review-modal-accent);
  color: #ffffff;
}

.site-review-gallery-modal__close-btn:hover {
  border-color: color-mix(in srgb, var(--review-modal-accent), black 12%);
  background: color-mix(in srgb, var(--review-modal-accent), black 12%);
  color: #ffffff;
  box-shadow: 0 10px 24px color-mix(in srgb, var(--review-modal-accent), transparent 84%);
  transform: translateY(-1px);
}

.site-review-gallery-modal__nav-btn:focus,.site-review-gallery-modal__close-btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--review-modal-accent), transparent 82%);
}

@media (max-width:991.98px) {
  .site-review-gallery-modal__grid {
    grid-template-columns: 1fr;
  }

  .site-review-gallery-modal__grid > img,
  .site-review-gallery-modal__grid > picture img,
  .site-review-gallery-modal__grid > a:first-child img,.site-review-gallery-modal__grid > div:first-child:has(img) img {
    max-height: 58vh;
  }

  .site-review-gallery-modal__footer,
  .site-review-gallery-modal__nav {
    align-items: stretch;
    flex-direction: column;
  }

  .site-review-gallery-modal__nav-actions {
    width: 100%;
  }

  .site-review-gallery-modal__nav-btn,
  .site-review-gallery-modal__close-btn {
    width: 100%;
  }

}

@media (max-width:575.98px) {
  .site-review-gallery-modal__dialog {
    max-width: none;
    width: auto;
    min-height: 100%;
    margin: 0;
    padding: 10px;
  }

  .site-review-gallery-modal__content {
    max-height: calc(100vh - 20px);
    border-radius: 22px;
  }

  .site-review-gallery-modal__header {
    min-height: auto;
    padding: 18px 68px 18px 18px;
  }

  .site-review-gallery-modal__title {
    font-size: 19px;
  }

  .site-review-gallery-modal__title-icon {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    font-size: 17px;
  }

  .site-review-gallery-modal__close {
    top: 17px;
    right: 18px;
    width: 38px;
    height: 38px;
    border-radius: 14px;
  }

  .site-review-gallery-modal__body {
    padding: 18px;
  }

  .site-review-gallery-modal__footer {
    padding: 16px 18px 18px;
  }

  .site-review-gallery-modal__grid {
    gap: 14px;
  }

  .site-review-gallery-modal__grid:empty {
    min-height: 240px;
    padding: 22px;
    border-radius: 20px;
  }

  .site-review-gallery-modal__grid > img,
  .site-review-gallery-modal__grid > picture,
  .site-review-gallery-modal__grid > a:first-child,.site-review-gallery-modal__grid > div:first-child:has(img),.site-review-gallery-modal__grid .ec-message,.site-review-gallery-modal__grid .ec-message-row,.site-review-gallery-modal__grid .rvx-message-card,.site-review-gallery-modal__grid .rv-item,.site-review-gallery-modal__grid .review-item,.site-review-gallery-modal__grid > div:not(:first-child) {
    border-radius: 20px;
  }

  .site-review-gallery-modal__grid .ec-message,
  .site-review-gallery-modal__grid .ec-message-row,
  .site-review-gallery-modal__grid .rvx-message-card,
  .site-review-gallery-modal__grid .rv-item,
  .site-review-gallery-modal__grid .review-item,
  .site-review-gallery-modal__grid > div:not(:first-child) {
    padding: 18px;
  }

  .site-review-gallery-modal__grid > img,
  .site-review-gallery-modal__grid > picture img,
  .site-review-gallery-modal__grid > a:first-child img,.site-review-gallery-modal__grid > div:first-child:has(img) img {
    max-height: 48vh;
  }

  .site-review-gallery-modal__nav-actions {
    flex-direction: column;
  }

  .site-review-gallery-modal__counter {
    width: 100%;
  }

}

/* Review gallery modal end */
/* Review photo modal inner content start */
.tps-reviews {
  width: 100%;
  min-width: 0;
}

.tps-review-photo-modal__stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
  width: 100%;
}

.tps-review-photo-modal__media {
  width: 100%;
  min-width: 0;
}

.tps-review-photo-modal__media-link {
  position: relative;
  width: 100%;
  min-height: 420px;
  max-height: 68vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--review-modal-text), transparent 88%);
  border-radius: 24px;
  background: color-mix(in srgb, var(--review-modal-text), transparent 96%);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--review-modal-text), transparent 95%);
}

.tps-review-photo-modal__media-link::after {
  content: "\F52A";
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.72);
  color: #ffffff;
  font-family: "bootstrap-icons";
  font-size: 16px;
  line-height: 1;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.tps-review-photo-modal__media-link:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.tps-review-photo-modal__media img {
  display: block;
  width: 100%;
  max-width: 100%;
  max-height: 68vh;
  object-fit: contain;
  background: #ffffff;
}

.rv-list {
  width: 100%;
  min-width: 0;
  display: grid;
  gap: 14px;
}

.rv-card {
  position: relative;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  padding: 22px;
  border: 1px solid color-mix(in srgb, var(--review-modal-text), transparent 88%);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--review-modal-text), transparent 96%);
}

.rv-card::after {
  content: "";
  position: absolute;
  right: -26px;
  top: -26px;
  width: 96px;
  height: 96px;
  border: 1px solid color-mix(in srgb, var(--review-modal-accent), transparent 84%);
  border-radius: 30px;
  opacity: 0.5;
  transform: rotate(12deg);
  pointer-events: none;
}

.rv-verified {
  position: relative;
  z-index: 2;
  width: fit-content;
  align-items: center;
  gap: 7px;
  margin-bottom: 14px;
  padding: 7px 11px;
  border: 1px solid color-mix(in srgb, var(--review-modal-accent), transparent 78%);
  border-radius: 999px;
  background: color-mix(in srgb, var(--review-modal-accent), transparent 92%);
  color: var(--review-modal-accent);
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.rv-verified:not(.d-none) {
  display: inline-flex;
}

.rv-verified i {
  color: currentColor;
  font-size: 14px;
}

.rv-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.rv-ava {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--review-modal-accent), transparent 76%);
  border-radius: 18px;
  background: color-mix(in srgb, var(--review-modal-accent), transparent 91%);
  color: var(--review-modal-accent);
  font-family: var(--heading-font);
  font-size: 22px;
  font-weight: 650;
  line-height: 1;
  text-transform: uppercase;
}

.rv-user {
  min-width: 0;
}

.rv-nick {
  overflow: hidden;
  color: var(--review-modal-heading);
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rv-meta {
  margin-top: 5px;
  color: color-mix(in srgb, var(--review-modal-text), transparent 46%);
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.rv-starsline {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid color-mix(in srgb, var(--review-modal-text), transparent 90%);
}

.rv-starsline .ec-stars {
  display: inline-flex;
  max-width: 100%;
}

.rv-body {
  position: relative;
  z-index: 2;
  margin-top: 16px;
}

.rv-body p {
  margin: 0;
  color: color-mix(in srgb, var(--review-modal-text), transparent 24%);
  font-size: 15px;
  line-height: 1.72;
}

.rv-body p:empty::before {
  content: "Покупатель оставил отзыв без текстового комментария.";
  color: color-mix(in srgb, var(--review-modal-text), transparent 48%);
}

.rv-body p + p {
  margin-top: 12px;
}

@media (max-width:991.98px) {
  .tps-review-photo-modal__media-link {
    min-height: 340px;
    max-height: 58vh;
  }

  .tps-review-photo-modal__media img {
    max-height: 58vh;
  }

}

@media (max-width:575.98px) {
  .tps-review-photo-modal__stack {
    gap: 14px;
  }

  .tps-review-photo-modal__media-link {
    min-height: 260px;
    max-height: 48vh;
    border-radius: 20px;
  }

  .tps-review-photo-modal__media img {
    max-height: 48vh;
  }

  .rv-card {
    padding: 18px;
    border-radius: 20px;
  }

  .rv-head {
    align-items: flex-start;
  }

  .rv-ava {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    font-size: 20px;
  }

  .rv-nick {
    font-size: 16px;
    white-space: normal;
  }

  .rv-body p {
    font-size: 14px;
    line-height: 1.65;
  }

}

/* Review photo modal inner content end */
/* Reviews hero adaptive and gallery cards start */
@media (max-width:1399.98px) and (min-width:1200px) {
  .rvx-hero {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
    gap: 24px;
  }

  .rvx-hero__title {
    font-size: clamp(38px, 4.2vw, 60px);
  }

  .rvx-hero__board {
    min-height: 360px;
  }

  .rvx-rating-card {
    right: 0;
    width: min(300px, 96%);
    min-height: 300px;
  }

}

@media (max-width:1199.98px) and (min-width:992px) {
  .rvx-hero {
    min-height: auto;
    grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.72fr);
    gap: 22px;
    padding: 30px;
  }

  .rvx-hero__title {
    font-size: clamp(36px, 4.3vw, 54px);
  }

  .rvx-hero__text {
    max-width: 640px;
  }

  .rvx-hero__board {
    min-height: 330px;
  }

  .rvx-rating-card {
    right: 0;
    top: 50%;
    width: 100%;
    min-height: 292px;
    padding: 24px;
    border-radius: 30px;
    transform: translateY(-50%);
  }

  .rvx-rating-card__value {
    font-size: clamp(62px, 7vw, 84px);
  }

  .rvx-hero__spark--one {
    left: 0;
    top: 10px;
    width: 74px;
    height: 74px;
  }

  .rvx-hero__spark--two {
    right: -6px;
    bottom: 8px;
    width: 62px;
    height: 62px;
  }

}

@media (max-width:991.98px) {
  .rvx-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px;
  }

  .rvx-hero__content {
    padding-right: 96px;
  }

  .rvx-hero__title {
    max-width: 760px;
    font-size: clamp(34px, 6vw, 54px);
  }

  .rvx-hero__text {
    max-width: 720px;
  }

  .rvx-hero__board {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .rvx-rating-card {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 250px;
    padding: 24px;
    border-radius: 28px;
    transform: none;
  }

  .rvx-rating-card__value {
    font-size: clamp(62px, 12vw, 88px);
  }

  .rvx-hero__spark--one {
    left: auto;
    right: 96px;
    top: -10px;
    width: 72px;
    height: 72px;
  }

  .rvx-hero__spark--two {
    right: 12px;
    bottom: 12px;
    width: 58px;
    height: 58px;
  }

}

@media (max-width:767.98px) {
  .rvx-hero {
    gap: 18px;
    padding: 22px;
    border-radius: 24px;
  }

  .rvx-hero__content {
    padding-right: 0;
  }

  .rvx-hero__decor--two {
    opacity: 0.42;
  }

  .rvx-hero__spark {
    display: none;
  }

  .rvx-hero__title {
    max-width: none;
    font-size: clamp(31px, 8vw, 44px);
    letter-spacing: -0.042em;
  }

  .rvx-hero__text {
    max-width: none;
    margin-top: 15px;
    font-size: 15px;
    line-height: 1.62;
  }

  .rvx-hero__actions {
    margin-top: 24px;
  }

  .rvx-rating-card {
    min-height: 220px;
    padding: 22px;
    border-radius: 24px;
  }

  .rvx-rating-card__value {
    font-size: clamp(58px, 16vw, 82px);
  }

  .rvx-rating-card__stars {
    margin-top: 18px;
  }

}

@media (max-width:575.98px) {
  .rvx-hero {
    padding: 20px;
    border-radius: 22px;
  }

  .rvx-hero__decor--one,
  .rvx-hero__decor--two {
    display: none;
  }

  .rvx-kicker--light {
    max-width: 100%;
  }

  .rvx-hero__actions {
    margin-top: 22px;
  }

  .rvx-rating-card {
    min-height: auto;
    padding: 20px;
    border-radius: 22px;
  }

  .rvx-rating-card__decor {
    right: -46px;
    top: -46px;
    opacity: 0.75;
  }

  .rvx-rating-card__value {
    margin-top: 14px;
    font-size: clamp(54px, 20vw, 72px);
  }

  .rvx-rating-card__note {
    max-width: none;
  }

}

.rvx-gallery__strip {
  overflow: visible;
}

.rvx-gallery__grid {
  align-items: stretch;
}

.rvx-gallery__grid > .rv-gallery-card {
  min-width: 0;
  height: auto;
  display: flex;
  overflow: visible;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: inherit;
  text-decoration: none;
  box-shadow: none !important;
  transform: none !important;
}

.rvx-gallery__grid > .rv-gallery-card:hover {
  color: inherit;
}

.rvx-gallery__grid .rv-gallery-card .ratio-43 {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 18px;
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  box-shadow: 0 8px 22px color-mix(in srgb, var(--default-color), transparent 95%);
  transform: translateZ(0);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.rvx-gallery__grid .rv-gallery-card:hover .ratio-43 {
  border-color: color-mix(in srgb, var(--accent-color), transparent 64%);
  box-shadow: 0 12px 28px color-mix(in srgb, var(--accent-color), transparent 88%);
  transform: translateY(-2px);
}

.rvx-gallery__grid .rv-gallery-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 0 !important;
  transition: transform 0.28s ease;
}

.rvx-gallery__grid .rv-gallery-card:hover img {
  transform: scale(1.045);
}

.rvx-gallery__grid .rv-gallery-card:not(.rv-gallery-card--more) .ratio-43::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, transparent 42%, rgba(15, 23, 42, 0.42) 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.rvx-gallery__grid .rv-gallery-card:not(.rv-gallery-card--more) .ratio-43::after {
  content: "\F52A";
  position: absolute;
  right: 8px;
  bottom: 8px;
  z-index: 3;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.74);
  color: #ffffff;
  font-family: "bootstrap-icons";
  font-size: 13px;
  line-height: 1;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.rvx-gallery__grid .rv-gallery-card:not(.rv-gallery-card--more):hover .ratio-43::before,.rvx-gallery__grid .rv-gallery-card:not(.rv-gallery-card--more):hover .ratio-43::after {
  opacity: 1;
}

.rvx-gallery__grid .rv-gallery-card:not(.rv-gallery-card--more):hover .ratio-43::after {
  transform: translateY(0);
}

.rvx-gallery__grid .rv-gallery-card--more .ratio-43 {
  border-color: color-mix(in srgb, #0f172a, transparent 46%);
  background: #0f172a;
  color: #ffffff;
}

.rvx-gallery__grid .rv-gallery-card--more:hover .ratio-43 {
  border-color: color-mix(in srgb, var(--accent-color), white 12%);
  box-shadow: 0 14px 32px color-mix(in srgb, #0f172a, transparent 78%);
}

.rvx-gallery__grid .rv-gallery-card__more-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  background: radial-gradient(circle at 78% 18%, color-mix(in srgb, var(--accent-color), transparent 54%), transparent 38%), linear-gradient(135deg, #0f172a 0%, #111827 58%, #020617 100%);
}

.rvx-gallery__grid .rv-gallery-card__more-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 62%);
  pointer-events: none;
}

.rvx-gallery__grid .rv-gallery-card__more-orb {
  position: absolute;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.rvx-gallery__grid .rv-gallery-card__more-orb--1 {
  right: -18px;
  top: -18px;
  width: 70px;
  height: 70px;
  border-radius: 22px;
  transform: rotate(12deg);
}

.rvx-gallery__grid .rv-gallery-card__more-orb--2 {
  left: 12px;
  bottom: 12px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
}

.rvx-gallery__grid .rv-gallery-card__more-orb--3 {
  right: 18px;
  bottom: 14px;
  width: 28px;
  height: 28px;
  border-radius: 10px;
  transform: rotate(-10deg);
}

.rvx-gallery__grid .rv-gallery-card__more-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 12px;
}

.rvx-gallery__grid .rv-gallery-card__more-count {
  min-width: 66px;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-family: var(--heading-font);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 720;
  line-height: 1;
  letter-spacing: -0.04em;
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 28px color-mix(in srgb, #020617, transparent 78%);
  transition: background-color 0.22s ease, transform 0.22s ease;
}

.rvx-gallery__grid .rv-gallery-card--more:hover .rv-gallery-card__more-count {
  background: color-mix(in srgb, var(--accent-color), transparent 36%);
  transform: scale(1.04);
}

@media (max-width:575.98px) {
  .rvx-gallery__strip {
    padding: 10px;
    border-radius: 20px;
  }

  .rvx-gallery__grid {
    --bs-gutter-x: 0.5rem;
    --bs-gutter-y: 0.5rem;
  }

  .rvx-gallery__grid .rv-gallery-card .ratio-43 {
    border-radius: 14px;
  }

  .rvx-gallery__grid .rv-gallery-card:not(.rv-gallery-card--more) .ratio-43::after {
    right: 6px;
    bottom: 6px;
    width: 26px;
    height: 26px;
    font-size: 12px;
  }

  .rvx-gallery__grid .rv-gallery-card__more-count {
    min-width: 52px;
    min-height: 42px;
    padding: 8px 11px;
    border-radius: 15px;
    font-size: 24px;
  }

}

/* Reviews hero adaptive and gallery cards end */

/* ========================================================================== */
/* Hero section UI */
/* ========================================================================== */

/*--------------------------------------------------------------
  # Hero Section
  --------------------------------------------------------------*/
.hero {
  overflow: hidden;
}

.hero-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
}

.hero .carousel,
.hero .carousel-inner,
.hero .carousel-item,
.hero .hero-slide {
  height: 520px;
}

.hero-slide {
  position: relative;
  display: flex;
  align-items: stretch;
}

.hero-slide__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 24, 40, 0.84) 0%, rgba(16, 24, 40, 0.62) 48%, rgba(16, 24, 40, 0.18) 100% );
  z-index: 1;
}

.hero-slide__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding: 56px 88px;
  display: flex;
  align-items: center;
}

.hero-slide__content {
  max-width: 860px;
  color: #fff;
}

.hero-slide__subtitle {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  padding: 8px 16px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  backdrop-filter: blur(8px);
}

.hero-slide__content h1,
.hero-slide__content h2 {
  max-width: 880px;
  margin-bottom: 20px;
  color: #fff;
  font-size: clamp(32px, 3.6vw, 48px);
  font-weight: 800;
  line-height: 1.12;
}

.hero-slide__content p {
  max-width: 720px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 1.65;
}

.hero-slide__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-slide__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
}

.hero .carousel-indicators {
  margin-bottom: 24px;
}

.hero .carousel-indicators [data-bs-target] {
  width: 34px;
  height: 4px;
  border: 0;
  border-radius: 50px;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 72px;
}

@media (max-width:1199.98px) {
  .hero-slide__inner {
    padding: 52px 76px;
  }

}

@media (max-width:991.98px) {
  .hero .carousel,
  .hero .carousel-inner,
  .hero .carousel-item,
  .hero .hero-slide {
    height: 500px;
  }

  .hero-slide__inner {
    padding: 48px 64px;
  }

  .hero-slide__content {
    max-width: 720px;
  }

  .hero-slide__content p {
    font-size: 16px;
  }

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 54px;
  }

}

@media (max-width:767.98px) {
  .hero-carousel {
    border-radius: 22px;
  }

  .hero .carousel,
  .hero .carousel-inner,
  .hero .carousel-item,
  .hero .hero-slide {
    height: 500px;
  }

  .hero-slide__inner {
    padding: 44px 32px 58px;
  }

  .hero-slide__overlay {
    background: rgba(16, 24, 40, 0.74);
  }

  .hero-slide__content h1,
  .hero-slide__content h2 {
    font-size: clamp(28px, 8vw, 38px);
  }

  .hero-slide__actions {
    flex-direction: column;
  }

  .hero-slide__btn {
    justify-content: center;
    width: 100%;
  }

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    display: none;
  }

}

@media (max-width:575.98px) {
  .hero .container-fluid.container-xl {
    padding-right: 12px;
    padding-left: 12px;
  }

  .hero .carousel,
  .hero .carousel-inner,
  .hero .carousel-item,
  .hero .hero-slide {
    height: 480px;
  }

  .hero-slide__inner {
    padding: 38px 24px 56px;
  }

  .hero-slide__subtitle {
    margin-bottom: 14px;
    font-size: 13px;
  }

  .hero-slide__content p {
    margin-bottom: 26px;
  }

}

/* Home creative sections start */
.homeplus-section {
  position: relative;
  overflow: hidden;
}

.homeplus-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 12px;
  padding: 7px 12px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 78%);
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent-color), transparent 93%);
  color: var(--accent-color);
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 560;
  line-height: 1;
}

.homeplus-eyebrow--light {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: color-mix(in srgb, var(--accent-color), white 28%);
}

.homeplus-btn {
  min-height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 16px;
  border-radius: 14px;
  font-family: var(--nav-font);
  font-size: 13px;
  font-weight: 560;
  line-height: 1;
  text-decoration: none;
  transition: border-color 0.22s ease, background-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.homeplus-btn:hover {
  transform: translateY(-1px);
}

.homeplus-btn--primary {
  border: 1px solid var(--accent-color);
  background: var(--accent-color);
  color: #ffffff;
  box-shadow: 0 10px 24px color-mix(in srgb, var(--accent-color), transparent 84%);
}

.homeplus-btn--primary:hover {
  border-color: color-mix(in srgb, var(--accent-color), black 12%);
  background: color-mix(in srgb, var(--accent-color), black 12%);
  color: #ffffff;
}

.homeplus-btn--ghost {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 84%);
  background: #ffffff;
  color: color-mix(in srgb, var(--default-color), transparent 24%);
}

.homeplus-btn--ghost:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 68%);
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
  color: var(--accent-color);
}

.homeplus-intro {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: 26px;
  align-items: stretch;
  padding: 32px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 32px;
  background: #ffffff;
  box-shadow: 0 10px 28px color-mix(in srgb, var(--default-color), transparent 95%);
}

.homeplus-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, color-mix(in srgb, var(--accent-color), transparent 94%) 0 1px, transparent 1px 100%), linear-gradient(0deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0 1px, transparent 1px 100%);
  background-size: 42px 42px;
  opacity: 0.55;
  pointer-events: none;
}

.homeplus-intro__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 12px 0;
}

.homeplus-intro__title {
  max-width: 940px;
  margin: 0;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: clamp(36px, 4.6vw, 64px);
  font-weight: 740;
  line-height: 1.04;
  letter-spacing: -0.052em;
}

.homeplus-intro__text {
  max-width: 820px;
  margin: 18px 0 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 16px;
  line-height: 1.72;
}

.homeplus-intro__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.homeplus-intro__visual {
  position: relative;
  z-index: 2;
  min-height: 390px;
}

.homeplus-terminal {
  position: absolute;
  right: 0;
  top: 0;
  width: min(390px, 92%);
  min-height: 306px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 22px;
  border: 1px solid color-mix(in srgb, #0f172a, transparent 36%);
  border-radius: 28px;
  background: #0f172a;
  color: #ffffff;
  box-shadow: 0 20px 52px color-mix(in srgb, #0f172a, transparent 74%);
}

.homeplus-terminal::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 18px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.42) 0 3px, transparent 4px) 0 0 / 18px 8px repeat-x;
  opacity: 0.8;
}

.homeplus-terminal__spark,
.homeplus-float__spark,
.homeplus-article-side__spark,
.homeplus-review-card__spark,
.homeplus-quick-link__spark {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--homeplus-spark-color);
  color: var(--homeplus-spark-color);
  pointer-events: none;
}

.homeplus-terminal__spark i,
.homeplus-float__spark i,
.homeplus-article-side__spark i,
.homeplus-review-card__spark i,
.homeplus-quick-link__spark i {
  color: currentColor;
  line-height: 1;
  transform: rotate(var(--homeplus-spark-icon-rotate, 0deg));
}

.homeplus-terminal__spark {
  --homeplus-spark-color: rgba(255, 255, 255, 0.13);
  right: -18px;
  top: 56px;
  width: 110px;
  height: 110px;
  border-radius: 34px;
  transform: rotate(14deg);
}

.homeplus-terminal__spark i {
  font-size: 34px;
  --homeplus-spark-icon-rotate: -14deg;
}

.homeplus-terminal__label {
  position: relative;
  z-index: 2;
  color: color-mix(in srgb, var(--accent-color), white 28%);
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 650;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.homeplus-terminal__value {
  position: relative;
  z-index: 2;
  margin-top: 14px;
  color: #ffffff;
  font-family: var(--heading-font);
  font-size: clamp(46px, 5.4vw, 76px);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.08em;
}

.homeplus-terminal__note {
  position: relative;
  z-index: 2;
  max-width: 280px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  line-height: 1.5;
}

.homeplus-float-stack {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 4;
  width: min(336px, 88%);
  display: grid;
  gap: 10px;
}

.homeplus-float {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  min-height: 58px;
  padding: 10px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 18px;
  background: #ffffff;
  color: inherit;
  box-shadow: 0 10px 24px color-mix(in srgb, var(--default-color), transparent 94%);
}

.homeplus-float__spark {
  --homeplus-spark-color: color-mix(in srgb, var(--accent-color), transparent 55%);
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  transform: rotate(8deg);
}

.homeplus-float__spark i {
  font-size: 18px;
  --homeplus-spark-icon-rotate: -8deg;
}

.homeplus-float strong {
  display: block;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.2;
}

.homeplus-float span:last-child {
  display: block;
  margin-top: 3px;
  color: color-mix(in srgb, var(--default-color), transparent 42%);
  font-size: 12px;
  line-height: 1.3;
}

.homeplus-stats {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr 1fr;
  gap: 14px;
}

.homeplus-stat-card {
  position: relative;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 20px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 24px;
  background: var(--surface-color);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--default-color), transparent 95%);
}

.homeplus-stat-card::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 16px;
  width: 56px;
  height: 56px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  border-radius: 18px;
  transform: rotate(10deg);
  opacity: 0.56;
}

.homeplus-stat-card--dark {
  border-color: color-mix(in srgb, #0f172a, transparent 40%);
  background: #0f172a;
  color: #ffffff;
}

.homeplus-stat-card__icon {
  position: absolute;
  left: 18px;
  top: 18px;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 78%);
  border-radius: 17px;
  background: color-mix(in srgb, var(--accent-color), transparent 91%);
  color: var(--accent-color);
  font-size: 22px;
}

.homeplus-stat-card strong {
  position: relative;
  z-index: 2;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: clamp(30px, 3.4vw, 50px);
  font-weight: 760;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.homeplus-stat-card span:last-child {
  position: relative;
  z-index: 2;
  max-width: 220px;
  margin-top: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 36%);
  font-size: 14px;
  line-height: 1.5;
}

.homeplus-stat-card--dark strong {
  color: #ffffff;
}

.homeplus-stat-card--dark span:last-child {
  color: rgba(255, 255, 255, 0.68);
}

.homeplus-route {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(430px, 1.2fr);
  gap: 28px;
  align-items: center;
}

.homeplus-route__intro {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--default-color), transparent 95%);
}

.homeplus-route__intro::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 120px;
  height: 120px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 82%);
  border-radius: 34px;
  transform: rotate(14deg);
}

.homeplus-route__intro h2,
.homeplus-articles__head h2,
.homeplus-review__content h2,
.homeplus-quick__head h2 {
  margin: 0;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 690;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.homeplus-route__intro h2,
.homeplus-review__content h2,
.homeplus-quick__head h2 {
  max-width: 760px;
  font-size: clamp(28px, 3.3vw, 46px);
}

.homeplus-route__intro p,
.homeplus-articles__head p,
.homeplus-review__content p,
.homeplus-quick__head p {
  color: color-mix(in srgb, var(--default-color), transparent 32%);
  font-size: 15px;
  line-height: 1.72;
}

.homeplus-route__intro p,
.homeplus-review__content p,
.homeplus-quick__head p {
  max-width: 700px;
  margin: 15px 0 0;
}

.homeplus-route__steps {
  position: relative;
  display: grid;
  gap: 12px;
}

.homeplus-route-step {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
  align-items: flex-start;
  overflow: hidden;
  padding: 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--default-color), transparent 96%);
}

.homeplus-route-step:nth-child(2),.homeplus-route-step:nth-child(4) {
  margin-left: 42px;
}

.homeplus-route-step__num {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 78%);
  border-radius: 18px;
  background: color-mix(in srgb, var(--accent-color), transparent 91%);
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-size: 17px;
  font-weight: 740;
  line-height: 1;
}

.homeplus-route-step strong {
  display: block;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.2;
}

.homeplus-route-step span:last-child {
  display: block;
  margin-top: 7px;
  color: color-mix(in srgb, var(--default-color), transparent 38%);
  font-size: 14px;
  line-height: 1.55;
}

.homeplus-articles {
  position: relative;
  display: grid;
  gap: 22px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--default-color), transparent 95%);
}

.homeplus-articles__head {
  max-width: 920px;
}

.homeplus-articles__head h2 {
  font-size: clamp(30px, 3.4vw, 48px);
}

.homeplus-articles__head p {
  max-width: 760px;
  margin: 12px 0 0;
}

.homeplus-articles__groups {
  display: grid;
  gap: 14px;
}

.homeplus-article-row {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
  padding: 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 24px;
  background: color-mix(in srgb, var(--background-color), var(--surface-color) 58%);
}

.homeplus-article-row--dark {
  border-color: color-mix(in srgb, #0f172a, transparent 40%);
  background: #0f172a;
  color: #ffffff;
}

.homeplus-article-side {
  position: relative;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 18px;
  border-radius: 20px;
  background: #ffffff;
}

.homeplus-article-row--dark .homeplus-article-side {
  background: rgba(255, 255, 255, 0.07);
}

.homeplus-article-side__spark {
  --homeplus-spark-color: color-mix(in srgb, var(--accent-color), transparent 42%);
  right: 16px;
  top: 16px;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  transform: rotate(10deg);
}

.homeplus-article-side__spark i {
  font-size: 22px;
  --homeplus-spark-icon-rotate: -10deg;
}

.homeplus-article-side h3 {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 720;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.homeplus-article-row--dark .homeplus-article-side h3 {
  color: #ffffff;
}

.homeplus-article-side p {
  position: relative;
  z-index: 2;
  margin: 10px 0 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 13px;
  line-height: 1.5;
}

.homeplus-article-row--dark .homeplus-article-side p {
  color: rgba(255, 255, 255, 0.62);
}

.homeplus-article-slot {
  min-width: 0;
  display: grid;
  align-content: center;
  padding: 14px;
  border: 1px dashed color-mix(in srgb, var(--default-color), transparent 78%);
  border-radius: 20px;
  background: #ffffff;
}

.homeplus-article-row--dark .homeplus-article-slot {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.homeplus-article-placeholder {
  display: grid;
  gap: 10px;
}

.homeplus-article-placeholder__item {
  min-height: 82px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 30px;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 18px;
  background: #ffffff;
}

.homeplus-article-row--dark .homeplus-article-placeholder__item {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.homeplus-article-placeholder__icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 78%);
  border-radius: 17px;
  background: color-mix(in srgb, var(--accent-color), transparent 91%);
  color: var(--accent-color);
  font-size: 22px;
}

.homeplus-article-placeholder__label {
  display: block;
  color: var(--accent-color);
  font-family: var(--nav-font);
  font-size: 11px;
  font-weight: 650;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.homeplus-article-placeholder__title {
  display: block;
  margin-top: 6px;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.28;
}

.homeplus-article-row--dark .homeplus-article-placeholder__title {
  color: #ffffff;
}

.homeplus-article-placeholder__arrow {
  color: color-mix(in srgb, var(--accent-color), transparent 14%);
  font-size: 18px;
}

.homeplus-modx-slot {
  display: none;
}

.homeplus-review {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 1.12fr);
  gap: 24px;
  align-items: stretch;
  overflow: hidden;
  padding: 28px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--default-color), transparent 95%);
}

.homeplus-review__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.homeplus-review__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.homeplus-review__board {
  position: relative;
  min-height: 310px;
}

.homeplus-review-card {
  position: absolute;
  right: 0;
  top: 0;
  width: min(360px, 92%);
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 24px;
  border: 1px solid color-mix(in srgb, #0f172a, transparent 40%);
  border-radius: 28px;
  color: #ffffff;
  box-shadow: 0 18px 44px color-mix(in srgb, #0f172a, transparent 78%);
}

.homeplus-review-card__spark {
  --homeplus-spark-color: rgba(255, 255, 255, 0.14);
  right: -28px;
  top: -28px;
  width: 112px;
  height: 112px;
  border-radius: 34px;
  transform: rotate(14deg);
}

.homeplus-review-card__spark i {
  font-size: 34px;
  --homeplus-spark-icon-rotate: -14deg;
}

.homeplus-review-card__stars {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 4px;
  color: #f59e0b;
  font-size: 18px;
}

.homeplus-review-card strong {
  position: relative;
  z-index: 2;
  margin-top: 18px;
  color: #ffffff;
  font-family: var(--heading-font);
  font-size: clamp(50px, 5vw, 72px);
  font-weight: 800;
  line-height: 0.86;
  letter-spacing: -0.08em;
}

.homeplus-review-card span:not(.homeplus-review-card__spark) {
  position: relative;
  z-index: 2;
  max-width: 250px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  line-height: 1.5;
}

.homeplus-review-note {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(310px, 86%);
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 24px color-mix(in srgb, var(--default-color), transparent 94%);
}

.homeplus-review-note i {
  color: var(--accent-color);
  font-size: 20px;
}

.homeplus-review-note span {
  color: color-mix(in srgb, var(--default-color), transparent 36%);
  font-size: 13px;
  line-height: 1.45;
}

.homeplus-quick {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.22fr);
  gap: 24px;
  align-items: stretch;
  padding: 28px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 30px;
  background: var(--surface-color);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--default-color), transparent 95%);
}

.homeplus-quick__head {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.homeplus-quick__links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.homeplus-quick-link {
  position: relative;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 18px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 22px;
  color: inherit;
  text-decoration: none;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.homeplus-quick-link:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 66%);
  color: inherit;
  box-shadow: 0 14px 34px color-mix(in srgb, var(--default-color), transparent 92%);
  transform: translateY(-2px);
}

.homeplus-quick-link__spark {
  --homeplus-spark-color: color-mix(in srgb, var(--accent-color), transparent 50%);
  left: 18px;
  top: 18px;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  transform: rotate(10deg);
}

.homeplus-quick-link__spark i {
  font-size: 23px;
  --homeplus-spark-icon-rotate: -10deg;
}

.homeplus-quick-link::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 16px;
  width: 50px;
  height: 50px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 84%);
  border-radius: 18px;
  transform: rotate(-8deg);
  opacity: 0.55;
}

.homeplus-quick-link strong {
  position: relative;
  z-index: 2;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 20px;
  font-weight: 680;
  line-height: 1.15;
}

.homeplus-quick-link span:not(.homeplus-quick-link__spark) {
  position: relative;
  z-index: 2;
  margin-top: 8px;
  color: color-mix(in srgb, var(--default-color), transparent 38%);
  font-size: 13px;
  line-height: 1.45;
}

@media (max-width:1199.98px) {
  .homeplus-intro,
  .homeplus-route,
  .homeplus-quick {
    grid-template-columns: 1fr;
  }

  .homeplus-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .homeplus-route-step:nth-child(2),.homeplus-route-step:nth-child(4) {
    margin-left: 0;
  }

}

@media (max-width:991.98px) {
  .homeplus-article-row {
    grid-template-columns: 1fr;
  }

  .homeplus-quick__links {
    grid-template-columns: 1fr;
  }

}

@media (max-width:767.98px) {
  .homeplus-intro,
  .homeplus-route__intro,
  .homeplus-articles,
  .homeplus-review,
  .homeplus-quick {
    padding: 22px;
    border-radius: 22px;
  }

  .homeplus-intro {
    grid-template-columns: 1fr;
  }

  .homeplus-intro__visual {
    min-height: 340px;
  }

  .homeplus-terminal {
    right: 0;
    top: 0;
    width: 100%;
  }

  .homeplus-float-stack {
    left: 0;
    bottom: 0;
  }

  .homeplus-stats {
    grid-template-columns: 1fr;
  }

  .homeplus-route-step {
    grid-template-columns: 1fr;
  }

  .homeplus-review__board {
    min-height: 320px;
  }

  .homeplus-review-card {
    right: 0;
    top: 0;
    width: 100%;
  }

  .homeplus-review-note {
    left: 0;
    bottom: 0;
  }

}

@media (max-width:575.98px) {
  .homeplus-intro__title {
    font-size: clamp(31px, 8vw, 43px);
  }

  .homeplus-intro__actions,
  .homeplus-review__actions {
    flex-direction: column;
  }

  .homeplus-btn {
    width: 100%;
  }

  .homeplus-intro__visual,
  .homeplus-review__board {
    min-height: auto;
  }

  .homeplus-terminal,
  .homeplus-float-stack,
  .homeplus-review-card,
  .homeplus-review-note {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .homeplus-float-stack,
  .homeplus-review-note {
    margin-top: 14px;
  }

  .homeplus-article-row {
    padding: 12px;
    border-radius: 20px;
  }

  .homeplus-article-side {
    min-height: 180px;
  }

  .homeplus-article-placeholder__item {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .homeplus-article-placeholder__arrow {
    display: none;
  }

}

/* Home requested edits start */
.homeplus-intro .homeplus-btn--ghost {
  display: none;
}

.homeplus-route__intro h2 {
  max-width: 680px;
}

.homeplus-route__intro p {
  max-width: 620px;
}

.homeplus-route-step {
  overflow: visible;
}

.homeplus-route-step__num {
  position: relative;
  z-index: 3;
}

.homeplus-route-step__spark {
  position: absolute;
  left: 48px;
  top: 52px;
  z-index: 4;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 72%);
  border-radius: 9px;
  background: #ffffff;
  color: color-mix(in srgb, var(--accent-color), transparent 16%);
  transform: rotate(12deg);
  pointer-events: none;
  box-shadow: 0 8px 18px color-mix(in srgb, var(--accent-color), transparent 88%);
}

.homeplus-route-step__spark i {
  display: inline-flex;
  color: currentColor;
  font-size: 14px;
  line-height: 1;
  transform: rotate(-12deg);
}

.homeplus-pop-card {
  height: 100%;
  min-height: 218px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
  text-decoration: none;
  transition: border-color 0.22s ease, background-color 0.22s ease, transform 0.22s ease;
}

.homeplus-pop-card:hover {
  border-color: color-mix(in srgb, var(--accent-color), white 18%);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  transform: translateY(-2px);
}

.homeplus-pop-card__media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.homeplus-pop-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.homeplus-pop-card:hover .homeplus-pop-card__media img {
  transform: scale(1.04);
}

.homeplus-pop-card__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  padding: 14px;
}

.homeplus-pop-card__title {
  display: -webkit-box;
  overflow: hidden;
  color: #ffffff;
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.homeplus-pop-card__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  margin-top: auto;
  padding-top: 14px;
  color: color-mix(in srgb, var(--accent-color), white 20%);
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}

.homeplus-new-list {
  display: grid;
  gap: 10px;
}

.homeplus-article-placeholder__item--link {
  color: inherit;
  text-decoration: none;
  transition: border-color 0.22s ease, background-color 0.22s ease, transform 0.22s ease;
}

.homeplus-article-placeholder__item--link:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 66%);
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
  color: inherit;
  transform: translateY(-1px);
}

.homeplus-article-placeholder__icon {
  overflow: hidden;
}

.homeplus-article-placeholder__icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.homeplus-catalog-alt {
  display: grid;
  gap: 22px;
}

.homeplus-catalog-alt__head {
  max-width: 860px;
}

.homeplus-catalog-alt__head h2 {
  margin: 0;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 690;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.homeplus-catalog-alt__head p {
  max-width: 720px;
  margin: 12px 0 0;
  color: color-mix(in srgb, var(--default-color), transparent 32%);
  font-size: 15px;
  line-height: 1.72;
}

.homeplus-catalog-alt__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 1.04fr);
  gap: 14px;
}

.homeplus-catalog-alt__main,
.homeplus-catalog-alt__cat {
  position: relative;
  overflow: hidden;
  display: flex;
  color: #ffffff;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.homeplus-catalog-alt__main {
  min-height: 390px;
  align-items: flex-end;
  padding: 26px;
  border-radius: 28px;
}

.homeplus-catalog-alt__cat {
  min-height: 188px;
  align-items: flex-end;
  padding: 18px;
  border-radius: 22px;
}

.homeplus-catalog-alt__main:hover,.homeplus-catalog-alt__cat:hover {
  color: #ffffff;
  box-shadow: 0 16px 38px color-mix(in srgb, #0f172a, transparent 84%);
  transform: translateY(-2px);
}

.homeplus-catalog-alt__main img,
.homeplus-catalog-alt__cat img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.32s ease;
}

.homeplus-catalog-alt__main:hover img,.homeplus-catalog-alt__cat:hover img {
  transform: scale(1.04);
}

.homeplus-catalog-alt__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.08) 0%, rgba(15, 23, 42, 0.78) 100%), linear-gradient(90deg, rgba(15, 23, 42, 0.34), rgba(15, 23, 42, 0.06));
}

.homeplus-catalog-alt__content,
.homeplus-catalog-alt__cat-body {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 8px;
}

.homeplus-catalog-alt__eyebrow {
  color: color-mix(in srgb, var(--accent-color), white 28%);
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 650;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.homeplus-catalog-alt__content strong {
  max-width: 420px;
  color: #ffffff;
  font-family: var(--heading-font);
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 730;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.homeplus-catalog-alt__content span:last-child,.homeplus-catalog-alt__cat-body span {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.45;
}

.homeplus-catalog-alt__arrow {
  position: absolute;
  right: 22px;
  top: 22px;
  z-index: 2;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  backdrop-filter: blur(10px);
}

.homeplus-catalog-alt__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.homeplus-catalog-alt__cat-body strong {
  color: #ffffff;
  font-family: var(--heading-font);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.12;
}

.homeplus-quick-link {
  align-items: center;
  justify-content: center;
  min-height: 230px;
  text-align: center;
  background: #0f172a;
  color: #ffffff;
}

.homeplus-quick-link > img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.homeplus-quick-link:hover > img {
  transform: scale(1.04);
}

.homeplus-quick-link__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(15, 23, 42, 0.66);
}

.homeplus-quick-link .homeplus-quick-link__spark,
.homeplus-quick-link strong,
.homeplus-quick-link span:not(.homeplus-quick-link__shade):not(.homeplus-quick-link__spark) {
  position: relative;
  z-index: 2;
}

.homeplus-quick-link .homeplus-quick-link__spark {
  position: absolute;
}

.homeplus-quick-link strong {
  margin-top: auto;
  color: #ffffff;
  text-align: center;
}

.homeplus-quick-link span:not(.homeplus-quick-link__shade):not(.homeplus-quick-link__spark) {
  max-width: 260px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.74);
  text-align: center;
}

@media (max-width:1199.98px) {
  .homeplus-catalog-alt__layout {
    grid-template-columns: 1fr;
  }

}

@media (max-width:767.98px) {
  .homeplus-catalog-alt {
    padding: 22px;
    border-radius: 22px;
  }

  .homeplus-catalog-alt__grid {
    grid-template-columns: 1fr;
  }

  .homeplus-catalog-alt__main {
    min-height: 330px;
    border-radius: 22px;
  }

  .homeplus-catalog-alt__cat {
    min-height: 180px;
  }

}

@media (max-width:575.98px) {
  .homeplus-route-step__spark {
    left: 44px;
    top: 44px;
  }

}

/* Home requested edits end */
/* Home creative sections end */
.collection-tile {
  position: relative;
}

.collection-tile__full-link {
  position: absolute;
  inset: 0;
  z-index: 5;
}

.collection-tile .tile-content {
  pointer-events: none;
}

.collection-tile .tile-link {
  pointer-events: none;
}

/* Home final requested fixes start */
/* Route cards */
.homeplus-route-step {
  position: relative;
  overflow: visible;
  min-height: 112px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 20px;
  background: linear-gradient(135deg, #ffffff 0%, color-mix(in srgb, var(--accent-color), transparent 97%) 100%);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--default-color), transparent 96%);
}

.homeplus-route-step:nth-child(2),.homeplus-route-step:nth-child(4) {
  margin-left: 42px;
}

.homeplus-route-step::before {
  content: "";
  position: absolute;
  left: 29px;
  top: 76px;
  bottom: -28px;
  width: 1px;
  background: color-mix(in srgb, var(--accent-color), transparent 78%);
}

.homeplus-route-step:last-child::before {
  display: none;
}

.homeplus-route-step::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 86%);
  border-radius: 15px;
  transform: rotate(-8deg);
  opacity: 0.65;
  pointer-events: none;
}

.homeplus-route-step__num {
  position: relative;
  z-index: 3;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 78%);
  border-radius: 18px;
  background: color-mix(in srgb, var(--accent-color), transparent 91%);
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-size: 17px;
  font-weight: 740;
  line-height: 1;
  box-shadow: 0 10px 24px color-mix(in srgb, var(--accent-color), transparent 88%);
}

.homeplus-route-step__spark {
  position: absolute;
  left: 48px;
  top: 52px;
  z-index: 4;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 72%);
  border-radius: 9px;
  background: #ffffff;
  color: color-mix(in srgb, var(--accent-color), transparent 16%);
  transform: rotate(12deg);
  pointer-events: none;
  box-shadow: 0 8px 18px color-mix(in srgb, var(--accent-color), transparent 88%);
}

.homeplus-route-step__spark i {
  display: inline-flex;
  color: currentColor;
  font-size: 14px;
  line-height: 1;
  transform: rotate(-12deg);
}

.homeplus-route-step > div {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.homeplus-route-step strong {
  display: block;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.2;
}

.homeplus-route-step span:last-child {
  display: block;
  margin-top: 7px;
  color: color-mix(in srgb, var(--default-color), transparent 38%);
  font-size: 14px;
  line-height: 1.55;
}

/* Article side blocks should not stretch to neighbor height */
.homeplus-article-row {
  align-items: start;
}

.homeplus-article-side {
  align-self: start;
  width: 100%;
}

/* Popular article cards stay dark inside dark block */
.homeplus-pop-card {
  height: 100%;
  min-height: 218px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
  text-decoration: none;
  transition: border-color 0.22s ease, background-color 0.22s ease, transform 0.22s ease;
}

.homeplus-pop-card:hover {
  border-color: color-mix(in srgb, var(--accent-color), white 18%);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  transform: translateY(-2px);
}

.homeplus-pop-card__media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.homeplus-pop-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.homeplus-pop-card:hover .homeplus-pop-card__media img {
  transform: scale(1.04);
}

.homeplus-pop-card__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  padding: 14px;
}

.homeplus-pop-card__title {
  display: -webkit-box;
  overflow: hidden;
  color: #ffffff;
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.homeplus-pop-card__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  margin-top: auto;
  padding-top: 14px;
  color: color-mix(in srgb, var(--accent-color), white 20%);
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}

/* New article list */
.homeplus-new-list {
  display: grid;
  gap: 10px;
}

.homeplus-article-placeholder__item--link {
  color: inherit;
  text-decoration: none;
  transition: border-color 0.22s ease, background-color 0.22s ease, transform 0.22s ease;
}

.homeplus-article-placeholder__item--link:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 66%);
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
  color: inherit;
  transform: translateY(-1px);
}

.homeplus-article-placeholder__icon {
  overflow: hidden;
}

.homeplus-article-placeholder__icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Review block: right aligned rating and note */
.homeplus-review__board {
  display: grid;
  gap: 12px;
  align-content: start;
  justify-items: end;
  min-height: auto;
}

.homeplus-review-card {
  position: relative;
  inset: auto;
  width: min(360px, 100%);
  min-height: 260px;
  justify-self: end;
}

.homeplus-review-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.48) 0%, rgba(15, 23, 42, 0.92) 100%), rgba(15, 23, 42, 0.05);
}

.homeplus-review-card__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.homeplus-review-card__spark,
.homeplus-review-card__stars,
.homeplus-review-card strong,
.homeplus-review-card span:not(.homeplus-review-card__spark) {
  position: relative;
  z-index: 2;
}

.homeplus-review-note {
  position: relative;
  inset: auto;
  width: min(360px, 100%);
  justify-self: end;
  margin-top: 0;
}

/* Quick links: centered content block.
   The center line is the start of the title; description is strictly under it. */
.homeplus-quick-link {
  position: relative;
  min-height: 230px;
  display: grid;
  grid-template-rows: 1fr auto auto 1fr;
  align-items: start;
  justify-items: center;
  padding: 28px 18px;
  text-align: center;
  background: #0f172a;
  color: #ffffff;
}

.homeplus-quick-link > img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.homeplus-quick-link:hover > img {
  transform: scale(1.04);
}

.homeplus-quick-link__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.42) 0%, rgba(15, 23, 42, 0.82) 100%), linear-gradient(90deg, rgba(15, 23, 42, 0.56) 0%, rgba(15, 23, 42, 0.68) 100%);
  pointer-events: none;
}

.homeplus-quick-link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.18) 0%, rgba(15, 23, 42, 0.82) 100%), linear-gradient(90deg, rgba(15, 23, 42, 0.56) 0%, rgba(15, 23, 42, 0.68) 100%);
  pointer-events: none;
}

.homeplus-quick-link .homeplus-quick-link__spark,
.homeplus-quick-link strong,
.homeplus-quick-link span:not(.homeplus-quick-link__shade):not(.homeplus-quick-link__spark) {
  position: relative;
  z-index: 2;
}

.homeplus-quick-link .homeplus-quick-link__spark {
  position: absolute;
  left: 50%;
  top: 22px;
  transform: translateX(-50%) rotate(10deg);
}

.homeplus-quick-link .homeplus-quick-link__spark i {
  transform: rotate(-10deg);
}

.homeplus-quick-link strong {
  grid-row: 2;
  align-self: start;
  display: block;
  min-height: 0;
  margin: 0 auto 8px;
  color: #ffffff;
  font-family: var(--heading-font);
  line-height: 1.16;
  text-align: center;
}

.homeplus-quick-link span:not(.homeplus-quick-link__shade):not(.homeplus-quick-link__spark) {
  grid-row: 3;
  display: block;
  max-width: 260px;
  min-height: 0;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.48;
  text-align: center;
}

/* Image brief block */
.homeplus-image-brief {
  padding: 24px;
  border: 1px dashed color-mix(in srgb, var(--accent-color), transparent 62%);
  border-radius: 24px;
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
}

.homeplus-image-brief h2 {
  margin: 0 0 16px;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 690;
  line-height: 1.15;
}

.homeplus-image-brief__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.homeplus-image-brief__item {
  padding: 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 18px;
  background: #ffffff;
}

.homeplus-image-brief__item strong {
  display: block;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.25;
}

.homeplus-image-brief__item span {
  display: block;
  margin-top: 8px;
  color: color-mix(in srgb, var(--default-color), transparent 34%);
  font-size: 13px;
  line-height: 1.55;
}

@media (max-width:1199.98px) {
  .homeplus-route-step:nth-child(2),.homeplus-route-step:nth-child(4) {
    margin-left: 0;
  }

  .homeplus-image-brief__grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width:767.98px) {
  .homeplus-review__board {
    justify-items: stretch;
  }

  .homeplus-review-card,
  .homeplus-review-note {
    width: 100%;
    justify-self: stretch;
  }

}

@media (max-width:575.98px) {
  .homeplus-route-step {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .homeplus-route-step::before {
    display: none;
  }

  .homeplus-route-step__spark {
    left: 48px;
    top: 52px;
  }

}

/* Home final requested fixes end */
/* Home mobile polish start */
@media (max-width:767.98px) {
  .homeplus-intro {
    gap: 20px;
    padding: 22px;
    border-radius: 24px;
  }

  .homeplus-intro::before {
    background-size: 34px 34px;
    opacity: 0.42;
  }

  .homeplus-intro__content {
    padding: 0;
  }

  .homeplus-intro__title {
    max-width: 100%;
    font-size: clamp(30px, 8vw, 42px);
    line-height: 1.08;
    letter-spacing: -0.04em;
  }

  .homeplus-intro__text {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.62;
  }

  .homeplus-intro__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 20px;
  }

  .homeplus-intro__actions .homeplus-btn {
    width: 100%;
  }

  .homeplus-intro__visual {
    min-height: auto;
    display: grid;
    gap: 12px;
  }

  .homeplus-terminal,
  .homeplus-float-stack {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .homeplus-terminal {
    min-height: 238px;
    padding: 20px;
    border-radius: 24px;
  }

  .homeplus-terminal__spark {
    right: -34px;
    top: 44px;
    width: 96px;
    height: 96px;
    opacity: 0.78;
  }

  .homeplus-terminal__value {
    margin-top: 12px;
    font-size: clamp(44px, 16vw, 66px);
  }

  .homeplus-terminal__note {
    max-width: 100%;
    margin-top: 12px;
  }

  .homeplus-float-stack {
    gap: 8px;
    margin-top: 0;
  }

  .homeplus-float {
    grid-template-columns: 40px minmax(0, 1fr);
    min-height: 56px;
    padding: 10px;
    border-radius: 16px;
  }

  .homeplus-float__spark {
    width: 40px;
    height: 40px;
    border-radius: 13px;
  }

  .homeplus-review {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 22px;
    border-radius: 24px;
  }

  .homeplus-review__content {
    justify-content: flex-start;
  }

  .homeplus-review__content h2 {
    font-size: clamp(28px, 7.4vw, 40px);
    line-height: 1.1;
    letter-spacing: -0.035em;
  }

  .homeplus-review__content p {
    margin-top: 13px;
    font-size: 15px;
    line-height: 1.62;
  }

  .homeplus-review__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 20px;
  }

  .homeplus-review__actions .homeplus-btn {
    width: 100%;
  }

  .homeplus-review__board {
    display: grid;
    gap: 12px;
    min-height: auto;
    justify-items: stretch;
  }

  .homeplus-review-card,
  .homeplus-review-note {
    width: 100%;
    justify-self: stretch;
  }

  .homeplus-review-card {
    min-height: 238px;
    padding: 20px;
    border-radius: 24px;
  }

  .homeplus-review-card__spark {
    right: -34px;
    top: -34px;
    width: 104px;
    height: 104px;
  }

  .homeplus-review-card strong {
    margin-top: 16px;
    font-size: clamp(48px, 16vw, 66px);
  }

  .homeplus-review-note {
    min-height: auto;
    align-items: flex-start;
    padding: 13px 14px;
    border-radius: 16px;
  }

}

@media (max-width:575.98px) {
  .homeplus-intro,
  .homeplus-review {
    padding: 18px;
    border-radius: 22px;
  }

  .homeplus-eyebrow {
    max-width: 100%;
    white-space: normal;
    line-height: 1.25;
  }

  .homeplus-intro__title {
    font-size: clamp(28px, 9vw, 38px);
  }

  .homeplus-intro__text,
  .homeplus-review__content p {
    font-size: 14px;
    line-height: 1.58;
  }

  .homeplus-terminal,
  .homeplus-review-card {
    min-height: 220px;
    padding: 18px;
    border-radius: 22px;
  }

  .homeplus-terminal::before {
    left: 16px;
    right: 16px;
    top: 16px;
  }

  .homeplus-terminal__label {
    font-size: 11px;
  }

  .homeplus-terminal__value {
    letter-spacing: -0.07em;
  }

  .homeplus-float {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;
  }

  .homeplus-float__spark {
    width: 38px;
    height: 38px;
  }

  .homeplus-review__content h2 {
    font-size: clamp(26px, 8.4vw, 36px);
  }

  .homeplus-review-card__stars {
    font-size: 16px;
  }

  .homeplus-review-card span:not(.homeplus-review-card__spark) {
    max-width: 100%;
    font-size: 13px;
  }

  .homeplus-review-note i {
    margin-top: 2px;
    font-size: 18px;
  }

  .homeplus-review-note span {
    font-size: 13px;
    line-height: 1.42;
  }

}

/* Home mobile polish end */

/* ========================================================================== */
/* Desktop responsive layout helpers */
/* ========================================================================== */

@media (min-width:1200px) {
  .navmenu .navmenu-pdo-dropdown > ul {
    width: 280px;
    min-width: 280px;
    max-width: 280px;
  }

  .navmenu .navmenu-pdo-dropdown ul li {
    width: 100%;
    min-width: 0;
  }

  .navmenu .navmenu-pdo-dropdown ul a,
  .navmenu .navmenu-pdo-dropdown ul a:focus {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    line-height: 1.35;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .navmenu .navmenu-pdo-dropdown ul a span,
  .navmenu .navmenu-pdo-dropdown ul a:focus span {
    display: block;
    min-width: 0;
    max-width: calc(100% - 22px);
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .navmenu .navmenu-pdo-dropdown ul a i,
  .navmenu .navmenu-pdo-dropdown ul a:focus i {
    flex: 0 0 auto;
    margin-top: 5px;
  }

  .navmenu .navmenu-pdo-dropdown .dropdown > ul {
    top: 0;
    left: 100%;
    right: auto;
    width: 280px;
    min-width: 280px;
    max-width: 280px;
  }

  .navmenu .navmenu-pdo-dropdown .dropdown:hover > ul {
    top: 0;
    left: 100%;
    right: auto;
    opacity: 1;
    visibility: visible;
  }

}

.mobile-search {
  position: relative;
}

.mobile-search-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-search-inner .form-control {
  min-width: 0;
  flex: 1 1 auto;
}

.mobile-search-submit {
  flex: 0 0 auto;
  height: 40px;
  padding: 0 14px;
  border: 0;
  border-radius: 10px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.mobile-search .tps-livebox {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 1000;
}

/* Fixed header mobile search/menu fix start */
@media (max-width:1199.98px) {
  body.has-fixed-main-bar #header {
    z-index: 1050;
  }

  body.has-fixed-main-bar #header .main-bar.is-fixed {
    z-index: 1060;
  }

  body.has-fixed-main-bar #header #mobileSearch {
    position: fixed;
    top: var(--main-bar-height, 64px);
    left: 0;
    right: 0;
    z-index: 1055;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  body.has-fixed-main-bar #header #mobileSearch .container-fluid {
    padding-top: 10px;
    padding-bottom: 10px;
  }

}

@media (max-width:575.98px) {
  body.has-fixed-main-bar #header #mobileSearch .container-fluid {
    padding-top: 8px;
    padding-bottom: 8px;
  }

}

body.mobile-nav-active.has-fixed-main-bar #header .main-bar.is-fixed {
  z-index: 900;
}

body.mobile-nav-active.has-fixed-main-bar > .mobile-nav-toggle {
  color: #fff;
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 10050;
  font-size: 32px;
  line-height: 0;
  margin: 0;
}

/* Fixed header mobile search/menu fix end */
.header {
  position: relative;
  z-index: 999;
}

.header .main-bar {
  z-index: 1000;
  width: 100%;
  transition: box-shadow 0.28s ease, border-color 0.28s ease, background-color 0.28s ease, backdrop-filter 0.28s ease;
}

.header .main-bar.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  background-color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  animation: mainBarStickyIn 0.24s ease-out both;
}

body.has-fixed-main-bar {
  padding-top: var(--main-bar-height, 0px);
}

@keyframes mainBarStickyIn {
  from {
    transform: translateY(-10px);
    opacity: 0.94;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }

}

/* ========================================================================== */
/* Footer search form UI */
/* ========================================================================== */

.footer-search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  margin-top: 14px;
}

.footer-search-form input {
  width: 100%;
  min-width: 0;
  height: 44px;
  padding: 0 14px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 84%);
  border-radius: 12px;
  background: #fff;
  outline: none;
  font-size: 13px;
  color: var(--default-color);
}

.footer-search-form input:focus {
  border-color: color-mix(in srgb, var(--accent-color), transparent 55%);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.footer-search-form button {
  height: 44px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 12px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, opacity .2s ease;
}

.footer-search-form button:hover {
  transform: translateY(-1px);
  opacity: .92;
}

.footer .logo img {
  margin-right: 10px;
  object-fit: contain;
}

.footer .footer-contact a {
  color: inherit;
  text-decoration: none;
}

.footer .footer-contact a:hover {
  color: var(--accent-color);
}

.footer .copyright p + p {
  margin-top: 4px;
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
}

@media (max-width:575.98px) {
  .footer-search-form {
    grid-template-columns: 1fr;
  }

  .footer-search-form button {
    justify-content: center;
    width: 100%;
  }

}
