@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700;800&family=Sora:wght@300;400;500;600;700;800&display=swap");
:root {
  --color-text: #000;
  --color-text-darker: #222;
  --color-text-secondary: #444;
  --color-text-dark: #fff;
  --color-bg: #fff;
  --color-brighter-bg: hsl(0 0% 100% / 77%);
  --color-input-bg: #dcdcdc;
  --color-popup-bg: hsl(0 0% 0% / 30%);
  --color-primary: #41C4C3;
  --color-primary-hover: #000;
  --color-primary-text: var(--color-text-dark);
  --color-primary-text-hover: var(--color-primary-text);
  --color-secondary: #dcdcdc;
  --color-secondary-hover: #cecece;
  --color-secondary-text: var(--color-text);
  --color-secondary-text-hover: var(--color-text-darker);
  --color-tertiary: transparent;
  --color-tertiary-hover: hsl(0 0% 0% / 15%);
  --color-tertiary-text: var(--color-text);
  --color-tertiary-text-hover: var(--color-tertiary-text);
  --color-removed: #a22a2a;
  --header-height: 350px;
  --tebex-footer-height: 37px;
  --layout-gap: 20px;
  --widget-padding: 20px;
  --content-padding: var(--widget-padding);
  --content-inner-width: 1280px;
  --content-width: calc((var(--content-padding) * 2) + var(--content-inner-width));
  --sidebar-width: 287px;
  --products-gap: 24px 36px;
  --btn-size: 46px;
  --btn-size-small: 38px;
  --btn-size-xsmall: 34px;
  --btn-icon-size: 18px;
  --icon-discord: url("data:image/svg+xml,%3Csvg%20fill%3D%22%235865F2%22%20role%3D%22img%22%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Ctitle%3EDiscord%3C%2Ftitle%3E%3Cpath%20d%3D%22M20.317%204.3698a19.7913%2019.7913%200%2000-4.8851-1.5152.0741.0741%200%2000-.0785.0371c-.211.3753-.4447.8648-.6083%201.2495-1.8447-.2762-3.68-.2762-5.4868%200-.1636-.3933-.4058-.8742-.6177-1.2495a.077.077%200%2000-.0785-.037%2019.7363%2019.7363%200%2000-4.8852%201.515.0699.0699%200%2000-.0321.0277C.5334%209.0458-.319%2013.5799.0992%2018.0578a.0824.0824%200%2000.0312.0561c2.0528%201.5076%204.0413%202.4228%205.9929%203.0294a.0777.0777%200%2000.0842-.0276c.4616-.6304.8731-1.2952%201.226-1.9942a.076.076%200%2000-.0416-.1057c-.6528-.2476-1.2743-.5495-1.8722-.8923a.077.077%200%2001-.0076-.1277c.1258-.0943.2517-.1923.3718-.2914a.0743.0743%200%2001.0776-.0105c3.9278%201.7933%208.18%201.7933%2012.0614%200a.0739.0739%200%2001.0785.0095c.1202.099.246.1981.3728.2924a.077.077%200%2001-.0066.1276%2012.2986%2012.2986%200%2001-1.873.8914.0766.0766%200%2000-.0407.1067c.3604.698.7719%201.3628%201.225%201.9932a.076.076%200%2000.0842.0286c1.961-.6067%203.9495-1.5219%206.0023-3.0294a.077.077%200%2000.0313-.0552c.5004-5.177-.8382-9.6739-3.5485-13.6604a.061.061%200%2000-.0312-.0286zM8.02%2015.3312c-1.1825%200-2.1569-1.0857-2.1569-2.419%200-1.3332.9555-2.4189%202.157-2.4189%201.2108%200%202.1757%201.0952%202.1568%202.419%200%201.3332-.9555%202.4189-2.1569%202.4189zm7.9748%200c-1.1825%200-2.1569-1.0857-2.1569-2.419%200-1.3332.9554-2.4189%202.1569-2.4189%201.2108%200%202.1757%201.0952%202.1568%202.419%200%201.3332-.946%202.4189-2.1568%202.4189Z%22%2F%3E%3C%2Fsvg%3E");
  --btn-color-text: var(--color-text);
  --btn-color-text-hover: var(--btn-color-text);
  --btn-color-bg: var(--color-bg);
  --btn-color-bg-hover: var(--btn-color-bg);
  --bg-blur: blur(10px);
  --page-transition-duration: .35s;
  --tebex-legal-footer-max-width: min(
    var(--content-inner-width),
    calc(100vw - (var(--content-padding) * 2))
  );
  --tebex-legal-footer-background-color: var(--color-brighter-bg);
  --tebex-legal-footer-border-color: var(--color-brighter-bg);
  --tebex-legal-footer-text-color: var(--color-text-secondary);
}
@media (width > 600px) {
  :root {
    --widget-padding: 24px;
    --layout-gap: 48px;
  }
}
@media (width > 960px) {
  :root {
    --layout-gap: 72px;
    --content-padding: calc(var(--widget-padding) * 2);
  }
}
@media (max-width: 900px) {
  :root {
    --tebex-footer-height: 70px;
  }
}
@media (max-width: 600px) {
  :root {
    --tebex-footer-height: 80px;
  }
}
@media (prefers-color-scheme: dark) {
  :root.color-scheme-auto {
    --color-text: #fff;
    --color-text-darker: #e5e5e5;
    --color-text-secondary: #ccc;
    --color-text-dark: #0D0D0D;
    --color-bg: #000;
    --color-brighter-bg: hsl(0 0% 4% / 70%);
    --color-input-bg: #242424;
    --color-popup-bg: hsl(0 0% 0% / 85%);
    --color-primary: #41C4C3;
    --color-primary-hover: #fff;
    --color-primary-text: var(--color-text-dark);
    --color-primary-text-hover: var(--color-primary-text);
    --color-secondary: #ccc;
    --color-secondary-hover: #e5e5e5;
    --color-secondary-text: var(--color-text-dark);
    --color-secondary-text-hover: var(--color-secondary-text);
    --color-tertiary: transparent;
    --color-tertiary-hover: rgb(255 255 255 / 15%);
    --color-tertiary-text: var(--color-text);
    --color-tertiary-text-hover: var(--color-text-darker);
    --color-removed: #C12E2E;
  }
}
:root.color-scheme-dark {
  --color-text: #fff;
  --color-text-darker: #e5e5e5;
  --color-text-secondary: #ccc;
  --color-text-dark: #0D0D0D;
  --color-bg: #000;
  --color-brighter-bg: hsl(0 0% 4% / 70%);
  --color-input-bg: #242424;
  --color-popup-bg: hsl(0 0% 0% / 85%);
  --color-primary: #41C4C3;
  --color-primary-hover: #fff;
  --color-primary-text: var(--color-text-dark);
  --color-primary-text-hover: var(--color-primary-text);
  --color-secondary: #ccc;
  --color-secondary-hover: #e5e5e5;
  --color-secondary-text: var(--color-text-dark);
  --color-secondary-text-hover: var(--color-secondary-text);
  --color-tertiary: transparent;
  --color-tertiary-hover: rgb(255 255 255 / 15%);
  --color-tertiary-text: var(--color-text);
  --color-tertiary-text-hover: var(--color-text-darker);
  --color-removed: #C12E2E;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  vertical-align: baseline;
  color: inherit;
  background: transparent;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}

strong,
b {
  font-weight: 700;
}

em,
i {
  font-style: italic;
}

input[type=submit],
button {
  appearance: none;
  cursor: pointer;
  text-align: left;
}

textarea {
  resize: none;
}

symbol,
use,
svg {
  overflow: visible;
}

svg,
img {
  display: block;
}

li {
  display: block;
}

button {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

:root *[hidden] {
  display: none;
}

:focus {
  outline: 0;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

/* Removed @view-transition to avoid editor/parser errors in standard CSS validation. */
::view-transition-group(root) {
  animation-duration: var(--page-transition-duration);
  animation-timing-function: ease;
}

@keyframes pageMoveOut {
  0% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0;
  }
}
@keyframes pageMoveIn {
  0%, 50% {
    scale: 0.98;
    opacity: 0;
  }
  100% {
    scale: 1;
    opacity: 1;
  }
}
::view-transition-old(siteContent) {
  animation: var(--page-transition-duration) ease both pageMoveOut;
  transform-origin: center top;
}

::view-transition-new(siteContent) {
  animation: var(--page-transition-duration) ease both pageMoveIn;
  transform-origin: center top;
}

::view-transition-group(siteContent) {
  z-index: 2;
}

::view-transition-group(siteHeaderTop),
::view-transition-group(siteHeader),
::view-transition-group(siteNavigation),
::view-transition-group(siteBgImage),
::view-transition-group(siteFooter) {
  animation-duration: var(--page-transition-duration);
  animation-timing-function: ease;
  z-index: 3;
}

::view-transition-group(siteBgImage) {
  z-index: 1;
}

html,
body {
  min-height: 100vh;
  min-height: 100svh;
}

html {
  overflow: hidden scroll;
  scrollbar-width: thin;
  scrollbar-color: var(--color-secondary) var(--color-bg);
  scrollbar-gutter: stable;
  scroll-behavior: smooth;
  color-scheme: light dark;
}
html.no-scroll {
  overflow: hidden;
}
@media (prefers-color-scheme: dark) {
  html.color-scheme-auto {
    color-scheme: only dark;
  }
}
html.color-scheme-dark {
  color-scheme: only dark;
}

body {
  position: relative;
  max-width: 100%;
  width: 100%;
  line-height: normal;
  color: var(--color-text);
  accent-color: var(--color-primary);
  background-color: var(--color-bg);
  font-family: Lexend, sans-serif;
  font-size: 16px;
  font-optical-sizing: auto;
}

::selection {
  color: var(--color-text);
  background-color: var(--color-primary);
  text-shadow: none;
}

select option {
  color: var(--color-text);
  background-color: var(--color-bg);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

.text-content {
  line-height: 1.4;
  word-wrap: break-word;
  word-break: break-word;
}
.text-content h1,
.text-content h2,
.text-content h3,
.text-content h4,
.text-content h5,
.text-content h6 {
  font-weight: 800;
}
.text-content h1:not(:last-child),
.text-content h2:not(:last-child),
.text-content h3:not(:last-child),
.text-content h4:not(:last-child),
.text-content h5:not(:last-child),
.text-content h6:not(:last-child) {
  margin-bottom: 24px;
}
.text-content p:not(:last-child) {
  margin-bottom: 12px;
}
.text-content h1 {
  font-size: 34px;
}
@media (width > 600px) {
  .text-content h1 {
    font-size: 38px;
  }
}
.text-content h2 {
  font-size: 28px;
}
@media (width > 600px) {
  .text-content h2 {
    font-size: 32px;
  }
}
.text-content h3 {
  font-size: 20px;
}
@media (width > 600px) {
  .text-content h3 {
    font-size: 24px;
  }
}
.text-content h4 {
  font-size: 18px;
}
@media (width > 600px) {
  .text-content h4 {
    font-size: 22px;
  }
}
.text-content img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
.text-content ol, .text-content ul {
  margin-left: 1em;
}
.text-content ol:not(:last-child), .text-content ul:not(:last-child) {
  margin-bottom: 12px;
}
.text-content li {
  display: list-item;
}

.btn-primary,
.btn-secondary,
.btn-tertiary {
  display: block;
  width: fit-content;
  height: var(--btn-size);
  padding: 0 10px;
  line-height: var(--btn-size);
  color: var(--btn-color-text);
  background-color: var(--btn-color-bg);
  border-radius: 5px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (width > 960px) {
  .btn-primary,
  .btn-secondary,
  .btn-tertiary {
    padding: 0 14px;
  }
}
.btn-primary:disabled,
.btn-secondary:disabled,
.btn-tertiary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-primary:hover, .btn-primary:focus,
.btn-secondary:hover,
.btn-secondary:focus,
.btn-tertiary:hover,
.btn-tertiary:focus {
  color: var(--btn-color-text-hover);
  background-color: var(--btn-color-bg-hover);
}
.btn-primary.btn-small,
.btn-secondary.btn-small,
.btn-tertiary.btn-small {
  --btn-size: var(--btn-size-small);
  padding: 0 8px;
  font-size: 12px;
}
@media (width > 960px) {
  .btn-primary.btn-small,
  .btn-secondary.btn-small,
  .btn-tertiary.btn-small {
    padding: 0 10px;
  }
}
.btn-primary.btn-xsmall,
.btn-secondary.btn-xsmall,
.btn-tertiary.btn-xsmall {
  --btn-size: var(--btn-size-xsmall);
  padding: 0 8px;
  font-size: 11px;
}
@media (width > 960px) {
  .btn-primary.btn-xsmall,
  .btn-secondary.btn-xsmall,
  .btn-tertiary.btn-xsmall {
    padding: 0 10px;
  }
}

.btn-primary {
  --btn-color-text: var(--color-primary-text);
  --btn-color-bg: var(--color-primary);
  --btn-color-text-hover: var(--color-primary-text-hover);
  --btn-color-bg-hover: var(--color-primary-hover);
}

.btn-secondary {
  --btn-color-text: var(--color-secondary-text);
  --btn-color-bg: var(--color-secondary);
  --btn-color-text-hover: var(--color-secondary-text-hover);
  --btn-color-bg-hover: var(--color-secondary-hover);
}

.btn-tertiary {
  --btn-color-text: var(--color-tertiary-text);
  --btn-color-bg: var(--color-tertiary);
  --btn-color-text-hover: var(--color-tertiary-text-hover);
  --btn-color-bg-hover: var(--color-tertiary-hover);
}

.btn-icon,
.btn-icon-text,
.btn-glyph,
.btn-glyph-text {
  --btn-icon: url("https://template-assets.tebex.io/images/check.svg") ;
}

.btn-icon {
  position: relative;
  flex: none;
  width: var(--btn-size);
  height: var(--btn-size);
  padding: 0;
  background-image: var(--btn-icon);
  background-position: center center;
  background-size: var(--btn-icon-size);
  background-repeat: no-repeat;
}
:root .btn-icon {
  line-height: 0;
  font-size: 0;
  color: transparent;
}

.btn-icon-text {
  display: flex;
  align-items: center;
  min-width: var(--btn-size);
}
.btn-icon-text::before {
  content: "";
  display: block;
  margin-right: 8px;
  width: var(--btn-icon-size);
  height: var(--btn-icon-size);
  flex: none;
  background: var(--btn-icon) center center/contain no-repeat;
}

.btn-glyph::before,
.btn-glyph-text::before {
  content: "";
  display: block;
  width: var(--btn-icon-size);
  height: var(--btn-icon-size);
  flex: none;
  background-color: var(--btn-color-text);
  mask: var(--btn-icon) center center/contain no-repeat;
  transition: background-color 0.15s ease-in-out;
}
.btn-glyph:hover::before, .btn-glyph:focus::before,
.btn-glyph-text:hover::before,
.btn-glyph-text:focus::before {
  background-color: var(--btn-color-text-hover);
}

.btn-glyph {
  position: relative;
  flex: none;
  width: var(--btn-size);
  height: var(--btn-size);
}
:root .btn-glyph {
  padding: 0;
  line-height: 0;
  font-size: 0;
  color: transparent;
}
.btn-glyph::before {
  position: absolute;
  inset: 0;
  margin: auto;
}

.btn-glyph-text {
  display: flex;
  align-items: center;
  min-width: var(--btn-size);
  height: var(--btn-size);
}
.btn-glyph-text::before {
  margin-right: 8px;
}

.link-text {
  color: var(--color-text-darker);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-position: under;
  transition: color 0.15s ease-in-out;
}
.link-text:hover {
  color: var(--color-text);
}

.quantity-field {
  display: flex;
  align-items: stretch;
  justify-content: center;
  height: 36px;
  overflow: hidden;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid var(--color-secondary);
  border-radius: 5px;
}
.quantity-field input[type=number] {
  position: relative;
  z-index: 1;
  flex: none;
  -moz-appearance: textfield;
  appearance: textfield;
  width: 40px;
  height: 100%;
  font-size: 16px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}
.quantity-field input[type=number]:focus, .quantity-field input[type=number]:hover {
  border-color: var(--color-secondary-hover);
}
.quantity-field input[type=number]::-webkit-inner-spin-button, .quantity-field input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.quantity-field.with-open-basket input[type=number] {
  margin-left: calc((40px - 2ch) * -1);
  margin-right: 0.25em;
  order: 1;
  text-align: right;
  transition: color 0.15s ease-in-out;
}
.quantity-field .open-basket {
  margin-right: 5px;
  width: fit-content;
  height: 100%;
  order: 2;
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.15s ease-in-out;
}
.quantity-field .open-basket:focus, .quantity-field .open-basket:hover {
  color: var(--color-primary);
}
.quantity-field .open-basket:focus ~ input[type=number], .quantity-field .open-basket:hover ~ input[type=number] {
  color: var(--color-primary);
}
.quantity-field .adjust {
  position: relative;
  z-index: 2;
  flex: none;
  width: 34px;
  height: 100%;
  padding: 0;
  line-height: 0;
  font-size: 0;
  color: transparent;
}
.quantity-field .adjust.decrease {
  margin-right: auto;
  order: -1;
  border-radius: 5px 0 0 5px;
}
.quantity-field .adjust.increase {
  margin-left: auto;
  order: 100;
  border-radius: 0 5px 5px 0;
}
.quantity-field .adjust::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--color-text);
  mask: url("https://template-assets.tebex.io/images/plus.svg") no-repeat center center;
  mask-size: 10px;
}
.quantity-field .adjust.decrease::before {
  mask-image: url("https://template-assets.tebex.io/images/minus.svg");
}

@media (width > 960px) {
  .mobile-only {
    display: none;
  }
}

@media (width <= 960px) {
  .desktop-only {
    display: none;
  }
}

.site {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: var(--layout-gap);
  flex-direction: column;
  min-height: calc(100vh - var(--tebex-footer-height));
  min-height: calc(100svh - var(--tebex-footer-height));
  font-size: 14px;
}

.site-bg-image {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  margin: 0 auto;
  height: auto;
  width: 100%;
  min-height: 50vh;
  max-height: 100vh;
  min-height: 50svh;
  max-height: 100svh;
  object-fit: cover;
  object-position: center 0;
  mask: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.5) var(--btn-size), rgba(0, 0, 0, 0.5) 33%, transparent);
  view-transition-name: siteBgImage;
  pointer-events: none;
}

.site-header-top,
.site-header,
.site-navigation,
.site-content,
.site-footer {
  width: 100%;
  flex: none;
}

.site-content {
  flex: 1 0 auto;
  view-transition-name: siteContent;
}

.site-header-top,
.site-header,
.site-content,
.site-footer-inner {
  margin: 0 auto;
  padding: 0 var(--content-padding);
  width: 100%;
}
@media (width > 960px) {
  .site-header-top,
  .site-header,
  .site-content,
  .site-footer-inner {
    max-width: var(--content-width);
  }
}

.site-header-top {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  margin-bottom: calc(var(--layout-gap) * -1);
  width: 100%;
  min-height: var(--btn-size);
  view-transition-name: siteHeaderTop;
}
body.is-logo-centered.is-header-visible .site-header-top {
  margin-bottom: 0;
}
@media (width <= 960px) {
  .site-header-top {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--color-brighter-bg);
    backdrop-filter: var(--bg-blur);
  }
}
@media (width > 960px) {
  .site-header-top {
    justify-content: flex-end;
  }
}
.site-header-top .site-title {
  position: absolute;
  inset: 0;
  margin: auto;
  max-width: calc(100% - 32px - var(--btn-size-xsmall) * 4 - var(--content-padding) * 2);
  width: fit-content;
  height: fit-content;
  line-height: 24px;
  font-size: 18px;
  font-weight: 900;
  text-align: center;
  text-box: trim-both cap alphabetic;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.site-header-top .site-title img {
  max-width: 100%;
  max-height: 28px;
}
@media (width <= 960px) {
  .site-header-top .btn-glyph-text {
    color: transparent;
    font-size: 0;
  }
  .site-header-top .btn-glyph-text::before {
    margin-right: 0;
  }
}
.site-header-top .toggle-navigation {
  --btn-icon: url("https://template-assets.tebex.io/images/burger.svg");
}
.site-header-top .discord {
  --btn-icon: var(--icon-discord);
  order: 999;
}
.site-header-top .site-link {
  --btn-icon: var(--icon-discord);
  order: 999;
}
.site-header-top .color-scheme {
  --btn-icon: url("https://template-assets.tebex.io/images/sun.svg");
  --btn-icon-size: 15px;
}
@media (prefers-color-scheme: dark) {
  :root.color-scheme-auto .site-header-top .color-scheme {
    --btn-icon: url("https://template-assets.tebex.io/images/moon.svg");
  }
}
:root.color-scheme-dark .site-header-top .color-scheme {
  --btn-icon: url("https://template-assets.tebex.io/images/moon.svg");
}
.site-header-top .log-in {
  --btn-icon: url("https://template-assets.tebex.io/images/user.svg");
  margin-left: auto;
  order: 998;
}
.site-header-top .open-basket {
  --btn-icon: url("https://template-assets.tebex.io/images/checkout.svg");
  order: 1000;
}
.site-header-top .user-name {
  --btn-icon: url("https://template-assets.tebex.io/images/log-out.svg");
  margin-left: auto;
  contain: paint;
  order: 998;
}
@media (width > 960px) {
  .site-header-top .user-name {
    --btn-icon: url("https://template-assets.tebex.io/images/user.svg");
  }
}
.site-header-top .user-name .text,
.site-header-top .user-name .text-hover {
  transition: opacity 0.15s ease, font-size 0.15s ease, visibility 0.15s ease;
}
.site-header-top .user-name:not(:hover):not(:focus-within) .text-hover {
  visibility: hidden;
  color: transparent;
  font-size: 0;
}
.site-header-top .user-name:hover .text, .site-header-top .user-name:focus-within .text {
  visibility: hidden;
  opacity: 0;
  font-size: 0;
}

.site-header {
  position: relative;
  align-content: center;
  view-transition-name: siteHeader;
}
@media (width <= 960px) {
  .site-header {
    padding: 0;
  }
}
body.no-hero.is-logo-centered .site-header {
  min-height: 80px;
}
@media (width > 960px) {
  body.has-hero .site-header {
    min-height: var(--header-height);
  }
}
.site-header .site-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  width: 100%;
}
@media (width > 960px) {
  .site-header .site-actions {
    gap: 6px;
  }
}
.site-header .site-title {
  line-height: 42px;
  font-size: 36px;
  font-weight: 900;
  text-box: trim-both cap alphabetic;
}
body.has-hero .site-header .site-title {
  color: var(--color-text-dark);
}
@media (width > 960px) {
  .site-header .site-title {
    line-height: 60px;
    font-size: 54px;
  }
}
.site-header .site-title img {
  max-width: 500px;
  max-height: 60px;
}
body.is-logo-centered .site-header .site-title {
  margin: auto;
  width: fit-content;
  height: fit-content;
  text-align: center;
}
body.is-logo-centered .site-header .site-title img {
  max-height: 128px;
}
body.is-logo-centered.has-hero .site-header .site-title {
  position: absolute;
  inset: 0;
  filter: drop-shadow(0 1px 3px hsla(0, 0%, 0%, 0.5)), drop-shadow(0 6px 12px hsla(0, 0%, 0%, 0.5));
}
@media (prefers-color-scheme: dark) {
  :root.color-scheme-auto body.is-logo-centered.has-hero .site-header .site-title {
    color: var(--color-text);
    filter: drop-shadow(0 1px 3px hsl(from var(--color-bg) h s l/50%)) drop-shadow(0 6px 12px hsl(from var(--color-bg) h s l/50%));
  }
}
:root.color-scheme-dark body.is-logo-centered.has-hero .site-header .site-title {
  color: var(--color-text);
  filter: drop-shadow(0 1px 3px hsl(from var(--color-bg) h s l/50%)) drop-shadow(0 6px 12px hsl(from var(--color-bg) h s l/50%));
}
.site-header .hero-image {
  margin: auto;
  width: 100%;
  height: auto;
  max-height: var(--header-height);
  object-fit: cover;
}
@media (width > 960px) {
  .site-header .hero-image {
    border-radius: 10px;
  }
}

.site-navigation {
  --fade-duration: 200ms;
  view-transition-name: siteNavigation;
}
@media (width <= 960px) {
  .site-navigation {
    position: fixed;
    inset: 0;
    z-index: 100000;
    padding: 0;
    backdrop-filter: var(--bg-blur);
    transition: display var(--fade-duration) allow-discrete, backdrop-filter var(--fade-duration), opacity var(--fade-duration) ease;
  }
  @starting-style {
    .site-navigation {
      opacity: 0;
    }
  }
  body:not(.show-navigation) .site-navigation {
    display: none;
    opacity: 0;
  }
  .site-navigation.drawer {
    user-select: none;
  }
  .site-navigation.may-close {
    backdrop-filter: none;
  }
  .site-navigation .menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    inset: 0 calc(var(--btn-size) * 2) 0 0;
    padding: 72px var(--widget-padding) var(--widget-padding);
    line-height: 28px;
    font-size: 21px;
    font-weight: 500;
    background: rgb(from var(--color-bg) r g b/0.95);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
    overflow: hidden auto;
    scrollbar-width: thin;
    scrollbar-color: var(--color-secondary) var(--color-bg);
    transition: opacity var(--fade-duration) ease, scale var(--fade-duration) ease, translate var(--fade-duration) ease;
  }
  @starting-style {
    .site-navigation .menu {
      translate: -100% 0;
    }
  }
  .site-navigation.drawer .menu::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 7px;
    margin: auto;
    width: 4px;
    height: 100px;
    background: rgb(from var(--color-text-secondary) r g b/0.33);
    border-radius: 2px;
    pointer-events: none;
  }
  body:not(.show-navigation) .site-navigation .menu {
    translate: -100% 0;
  }
  .site-navigation.touching .menu {
    transition: opacity var(--fade-duration) ease, scale var(--fade-duration) ease;
  }
  body:not(.show-navigation) .site-navigation .menu, .site-navigation.may-close .menu {
    opacity: 0.8;
    scale: 0.95;
  }
  .site-navigation.may-close .menu {
    border-radius: 10px;
  }
  .site-navigation .popup-close {
    --btn-icon: url("https://template-assets.tebex.io/images/close.svg");
    top: 12px;
    right: calc(var(--btn-size) * 2 + 12px);
  }
  .site-navigation.touching .popup-close {
    opacity: 0;
    visibility: hidden;
    transition-duration: 100ms;
  }
  .site-navigation .menu-sub {
    width: 100%;
    padding-left: var(--widget-padding);
    line-height: 22px;
    font-size: 16px;
  }
  .site-navigation .menu-item {
    position: relative;
    width: 100%;
  }
  .site-navigation .has-children {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .site-navigation .has-children .toggle {
    --btn-icon: url("https://template-assets.tebex.io/images/chevron.svg");
    flex: none;
  }
  .site-navigation .has-children .toggle::before {
    transition: rotate 0.15s ease-in-out;
  }
  .site-navigation .has-children.expanded > .toggle::before {
    rotate: 180deg;
  }
  .site-navigation .has-children:not(.expanded) .menu-sub {
    display: none;
  }
  .site-navigation .menu-link {
    display: block;
    flex: 1 1 auto;
    padding: 11px 0;
    transition: color 0.15s ease-in-out;
  }
  .site-navigation .menu-link:hover {
    color: var(--color-primary);
  }
  .site-navigation .menu-link.active {
    color: var(--color-primary);
    font-weight: 700;
  }
  .site-navigation .menu-sub .menu-link {
    padding: 8px 0;
  }
  .site-navigation .site-link,
  .site-navigation .log-out {
    margin-top: auto;
    margin-left: -8px;
  }
  .site-navigation .site-link a,
  .site-navigation .log-out a {
    --btn-icon: url("https://template-assets.tebex.io/images/globe.svg");
    width: 100%;
  }
  .site-navigation .log-out a {
    --btn-icon: url("https://template-assets.tebex.io/images/log-out.svg");
  }
  .site-navigation .site-link + .log-out {
    margin-top: 0;
  }
}
@media (width > 960px) {
  .site-navigation {
    position: sticky;
    top: -1px;
    z-index: 100;
    transition: background-color 0.15s ease;
  }
  .site-navigation.stuck {
    background-color: var(--color-brighter-bg);
    backdrop-filter: var(--bg-blur);
  }
  .site-navigation .menu {
    display: flex;
    align-items: center;
    gap: var(--widget-padding);
    margin-inline: auto;
    padding-block: var(--content-padding);
    width: 100%;
    max-width: var(--content-inner-width);
    min-height: var(--btn-size);
    padding: calc(var(--widget-padding) * 0.75) var(--widget-padding);
    line-height: var(--btn-size);
    font-size: 16px;
    font-weight: 500;
    text-align: center;
  }
  .site-navigation:not(.stuck) .menu {
    background-color: var(--color-brighter-bg);
    backdrop-filter: var(--bg-blur);
    border-radius: 10px;
  }
  .site-navigation .menu > .menu-item {
    flex: 1 0 auto;
    max-width: 200px;
  }
  .site-navigation .menu > .menu-item > .menu-link {
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 18ch;
  }
  .site-navigation .menu-link {
    display: block;
    transition: color 0.15s ease-in-out;
  }
  .site-navigation .menu-link:hover, .site-navigation .menu-link.link-active {
    color: var(--color-primary);
  }
  .site-navigation li.site-title-link {
    flex: none;
    align-content: center;
    margin-right: var(--widget-padding);
    max-width: none;
    text-align: left;
  }
  .site-navigation .site-title {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-box: trim-both cap alphabetic;
  }
}
@media (width > 960px) and (width > 960px) {
  .site-navigation .site-title {
    font-size: 40px;
  }
}
@media (width > 960px) {
  .site-navigation .site-title .menu-link {
    color: var(--color-primary);
  }
  .site-navigation .site-title .menu-link:hover {
    color: var(--color-primary-hover);
  }
  .site-navigation .site-title img {
    max-width: 100%;
    max-height: var(--btn-size);
    border-radius: 5px;
  }
  .site-navigation .has-children {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .site-navigation .has-children .toggle {
    --btn-size: 30px;
    --btn-icon: url("https://template-assets.tebex.io/images/chevron.svg");
    --btn-color-bg-hover: var(--color-tertiary);
    flex: none;
    transition: rotate 0.15s ease-in-out;
  }
  .site-navigation .has-children:hover > .toggle {
    rotate: 180deg;
  }
  .site-navigation .menu-sub {
    position: absolute;
    top: 100%;
    left: -100px;
    right: -100px;
    margin-inline: auto;
    width: max-content;
    padding: calc(var(--widget-padding) / 2) 0;
    background: rgb(from var(--color-brighter-bg) r g b/0.9);
    border-radius: 5px;
    backdrop-filter: var(--bg-blur);
    transition: all 0.15s ease-in-out;
  }
  .site-navigation .has-children:not(:hover) > .menu-sub {
    visibility: hidden;
    opacity: 0;
    translate: 0 -10px;
  }
  .site-navigation .menu .menu-sub {
    line-height: 24px;
    font-size: 16px;
    font-weight: 400;
  }
  .site-navigation .menu-sub .menu-link {
    width: 100%;
    max-width: 24ch;
    padding: 4px calc(var(--widget-padding) / 2);
    transition: all 0.15s ease-in-out;
  }
  .site-navigation .menu-sub .menu-link:hover, .site-navigation .menu-sub .menu-link.link-active {
    color: var(--color-bg);
    background-color: var(--color-primary);
  }
}

.site-home-categories {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--widget-padding);
  margin-bottom: var(--layout-gap);
}
.site-home-categories .category {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: subgrid;
  align-items: center;
  gap: calc(var(--widget-padding) / 2);
  overflow: hidden;
  padding: var(--widget-padding);
  line-height: 26px;
  background: var(--color-brighter-bg) linear-gradient(to bottom, transparent 67%, rgb(from var(--color-primary) r g b/0.15)) no-repeat 0 0/100% 200%;
  border-radius: 10px;
  backdrop-filter: var(--bg-blur);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.015em;
  text-shadow: 0 1px 0 rgb(from var(--color-bg) r g b/0.5);
  transition: color 0.15s ease-in-out, background-position-y 0.3s ease;
}
@media (width > 600px) {
  .site-home-categories .category {
    gap: var(--widget-padding);
  }
}
@media (width > 600px) {
  .site-home-categories .category {
    padding-block: 20px;
    line-height: 32px;
    font-size: 24px;
    text-align: center;
  }
}
.site-home-categories .category:hover {
  color: var(--color-primary);
  background-position-y: 100%;
}
.site-home-categories .category .image {
  max-width: 100%;
  width: auto;
  max-height: 100%;
  object-fit: contain;
  border-radius: 10px;
}
@media (width > 600px) {
  .site-home-categories .category .image {
    margin: auto;
  }
}
.site-home-categories .category .image-default {
  position: relative;
  width: min(100px, 100%);
  aspect-ratio: 1;
}
.site-home-categories .category .image-default::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background-color: rgb(from var(--color-text) r g b/0.8);
  mask: url("https://template-assets.tebex.io/images/package-default.svg") center center/contain no-repeat;
}

.store-text {
  margin-inline: auto;
  width: min(100%, 62ch);
  line-height: 1.375;
  font-size: 16px;
  font-weight: 400;
}

.store-home .store-text {
  margin-bottom: var(--content-padding);
}

.store-form {
  font-size: 18px;
}
.store-form p {
  margin-bottom: 24px;
}
.store-form .input-group,
.store-form .field,
.store-form .field-inline {
  margin-bottom: 24px;
}
.store-form .input-group > p,
.store-form .field > p,
.store-form .field-inline > p {
  margin-bottom: 12px;
}
.store-form .field-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 12px;
}
@media (width > 600px) {
  .store-form .field-inline {
    gap: 0 24px;
  }
}
.store-form input,
.store-form select,
.store-form textarea {
  display: block;
}
.store-form input[type=text],
.store-form input[type=password],
.store-form input[type=email],
.store-form input[type=number],
.store-form input[type=search],
.store-form input[type=url],
.store-form input[type=tel],
.store-form input[type=date],
.store-form input[type=time],
.store-form input[type=datetime-local],
.store-form input[type=file],
.store-form input[type=month],
.store-form input[type=week],
.store-form select,
.store-form textarea {
  margin-bottom: 12px;
  width: 100%;
  padding: 14px 12px;
  color: var(--color-text-darker);
  background: var(--color-input-bg);
  font-size: 14px;
  border-radius: 10px;
}
@media (width > 960px) {
  .store-form input[type=text],
  .store-form input[type=password],
  .store-form input[type=email],
  .store-form input[type=number],
  .store-form input[type=search],
  .store-form input[type=url],
  .store-form input[type=tel],
  .store-form input[type=date],
  .store-form input[type=time],
  .store-form input[type=datetime-local],
  .store-form input[type=file],
  .store-form input[type=month],
  .store-form input[type=week],
  .store-form select,
  .store-form textarea {
    padding: 12px;
    font-size: 16px;
  }
}
.store-form .field-inline input,
.store-form .field-inline select,
.store-form .field-inline textarea {
  width: auto;
}
.store-form .actions {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.store-form .actions .link-text {
  align-self: center;
  font-size: 18px;
  font-weight: 700;
  margin: 0 16px;
}

@media (width <= 960px) {
  .site-content-widgets {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
}
@media (width > 960px) {
  body:not(.is-sidebar-bottom) .site-content-widgets {
    display: grid;
    align-items: start;
    gap: 32px;
  }
  body.is-sidebar-left .site-content-widgets {
    grid-template-columns: var(--sidebar-width) 1fr;
  }
  body.is-sidebar-left .site-content-widgets .store-sidebar {
    order: -1;
  }
  body.is-sidebar-right .site-content-widgets {
    grid-template-columns: 1fr var(--sidebar-width);
  }
}

.category-header {
  margin-bottom: var(--widget-padding);
  line-height: 1.4;
  font-size: 18px;
}

.no-products {
  font-size: 18px;
  text-align: center;
}

.store-products-list {
  display: flex;
  flex-direction: column;
  gap: var(--widget-padding);
}

.store-products-images {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--products-gap);
}

.store-product {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.store-product .product-title {
  font-size: 20px;
  font-weight: 600;
}
.store-product .product-title a {
  color: inherit;
  transition: color 0.15s ease-in-out;
}
.store-product .product-title a:hover {
  color: var(--color-primary);
}
.store-product .product-title .countdown {
  display: block;
  margin-top: 8px;
  color: var(--color-removed);
  font-size: 0.75em;
  font-variant-numeric: tabular-nums;
}
.store-product .product-title .countdown::before {
  content: "";
  display: inline-block;
  vertical-align: -0.15em;
  margin-right: 0.25em;
  width: 1em;
  height: 1em;
  background-color: currentColor;
  mask: url("https://template-assets.tebex.io/images/countdown.svg") center center/contain no-repeat;
}
.store-product .image-link {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  width: fit-content;
}
.store-product .image-link:hover ~ .product-title a {
  color: var(--color-primary);
}
.store-product .image {
  margin: 0 auto;
  max-width: 100%;
  border-radius: 10px;
}
.store-product .image-default {
  position: relative;
  width: min(140px, 100%);
  aspect-ratio: 1;
}
.store-product .image-default::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  margin: auto;
  background-color: rgb(from var(--color-text) r g b/0.8);
  mask: url("https://template-assets.tebex.io/images/package-default.svg") center center/contain no-repeat;
}
.store-product .descr {
  font-size: 14px;
}
.store-product .actions {
  display: flex;
  gap: 12px;
  position: relative;
  overflow: hidden;
}
.store-product .actions.updating {
  pointer-events: none;
}
.store-product .actions.updating > * {
  opacity: 0.3;
  filter: grayscale(100%);
}
.store-product .actions.updating::before {
  content: none;
}
.store-product:not(.store-product-full) .actions {
  flex-wrap: wrap;
  align-content: flex-end;
  flex: 1 1 auto;
}
.store-product .price {
  font-size: 14px;
  font-weight: 500;
}
.store-product .price .discount {
  margin-right: 1ch;
  color: var(--color-removed);
  font-weight: 400;
  text-decoration-line: line-through;
}
.store-product .price strong {
  font-size: 20px;
  font-weight: inherit;
}
.store-product:not(.store-product-full) .price {
  width: 100%;
}
.store-product .quantity-field {
  height: var(--btn-size);
  background: var(--color-brighter-bg);
}
.store-product .quantity-field input[type=number] {
  border: none;
}
.store-product .half {
  flex: 1 1 33%;
  overflow: visible;
}
.store-product .wide {
  flex: 1 1 auto;
}
.store-product .gift {
  --btn-icon: url("https://template-assets.tebex.io/images/gift.svg");
  flex: none;
}
.store-product .remove {
  --btn-icon: url("https://template-assets.tebex.io/images/delete.svg");
  flex: none;
}

.store-products-images .store-product {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: subgrid;
}
.store-products-images .store-product .image-link {
  align-content: center;
  width: 100%;
  overflow: hidden;
}
.store-products-images .store-product .descr {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

.store-products-list .store-product .image-link {
  margin: 0;
}
.store-products-list .store-product .image {
  width: 80px;
}
@media (width > 600px) {
  .store-products-list .store-product {
    flex-direction: row;
    align-items: center;
    gap: 12px calc(var(--widget-padding) * 0.75);
  }
  .store-products-list .store-product .product-title {
    margin-right: auto;
  }
  .store-products-list .store-product .actions {
    flex-wrap: nowrap;
    align-items: center;
    flex: 0 1 auto;
    gap: calc(var(--widget-padding) * 0.75);
  }
  .store-products-list .store-product .price {
    width: auto;
  }
  .store-products-list .store-product .half {
    flex: 0 1 140px;
  }
  .store-products-list .store-product .wide {
    flex: 0 1 170px;
  }
}

.media-slider {
  --slider-spacing: 6px;
  --thumbs-size: 40px;
  --thumb-padding: 6px;
  position: relative;
  width: 100%;
  overflow: hidden;
}
@media (width > 360px) {
  .media-slider {
    --slider-spacing: 12px;
    --thumbs-size: 55px;
  }
}
@media (width > 600px) {
  .media-slider {
    --thumbs-size: 70px;
  }
}
@media (width > 960px) {
  .media-slider {
    --thumbs-size: 90px;
  }
}
@media (width > 1400px) {
  .media-slider {
    --thumbs-size: 110px;
  }
}
.media-slider .slider {
  width: 100%;
  min-height: 200px;
  overflow: hidden;
  margin-bottom: var(--thumb-padding);
}
.media-slider .slider::part(container) {
  --swiper-navigation-size: 24px;
  --swiper-theme-color: var(--color-text);
}
.media-slider .slider::part(wrapper) {
  align-items: center;
}
.media-slider .slide {
  align-content: center;
}
.media-slider .slide-image {
  margin: auto;
  max-width: 100%;
  min-height: 200px;
  max-height: 100%;
  object-fit: contain;
  border-radius: 5px;
}
.media-slider .slide-video {
  border-radius: 5px;
  background: #000 var(--preview-image) center center/cover no-repeat;
  position: relative;
}
.media-slider .slide-frame {
  display: block;
  margin: auto;
  width: 100%;
  max-height: 100%;
  aspect-ratio: 16/9;
  transition: visibility 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.media-slider .slide-frame:not(.iframe-loaded) {
  visibility: hidden;
  opacity: 0;
}
.media-slider .thumbs {
  display: flex;
  gap: var(--slider-spacing);
  align-items: stretch;
  flex-wrap: wrap;
}
.store-product-full .media-slider .thumbs {
  justify-content: center;
}
.media-slider .thumb {
  display: block;
  width: var(--thumbs-size);
  height: var(--thumbs-size);
  padding: var(--thumb-padding);
  background-color: var(--color-bg);
  border-radius: 5px;
  cursor: pointer;
}
.media-slider .thumb-image,
.media-slider .thumb-youtube {
  width: calc(var(--thumbs-size) - var(--thumb-padding) * 2);
  height: calc(var(--thumbs-size) - var(--thumb-padding) * 2);
  transition: opacity 0.3s ease-in-out;
}
.media-slider .thumb:not(.active) .thumb-image,
.media-slider .thumb:not(.active) .thumb-youtube {
  opacity: 0.5;
}
.media-slider .thumb-image {
  object-fit: contain;
}
.media-slider .thumb-youtube {
  position: relative;
  align-content: center;
}
.media-slider .thumb-youtube img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.media-slider .thumb-youtube::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  margin: auto;
  width: 30px;
  height: 30px;
  background-color: #fff;
  mask: url("https://template-assets.tebex.io/images/play.svg") center center/contain no-repeat;
}
.media-slider .open-lightbox {
  position: absolute;
  top: var(--slider-spacing);
  right: var(--slider-spacing);
  z-index: 2;
  align-content: center;
  width: 40px;
  height: 40px;
  background-color: rgb(from var(--color-bg) r g b/75%);
  backdrop-filter: blur(10px);
  visibility: hidden;
  line-height: 0;
  font-size: 0;
  color: transparent;
  opacity: 0;
  border-radius: 5px;
  transition: all 0.15s ease-in-out;
}
.media-slider .open-lightbox:hover, .media-slider .open-lightbox:focus {
  background-color: rgb(from var(--color-bg) r g b/90%);
}
.media-slider .open-lightbox::before {
  content: "";
  display: block;
  margin: auto;
  width: 18px;
  height: 18px;
  flex: none;
  background-color: var(--color-tertiary-text);
  mask: url("https://template-assets.tebex.io/images/fullscreen.svg") center center/contain no-repeat;
  transition: background-color 0.15s ease-in-out;
}
.media-slider .open-lightbox:hover::before, .media-slider .open-lightbox:focus::before {
  background-color: var(--color-tertiary-text-hover);
}
.media-slider .slider:has(.swiper-slide-active .slide-image):hover ~ .open-lightbox,
.media-slider .open-lightbox:hover {
  opacity: 1;
  visibility: visible;
}

.popup.popup-media-slider {
  --slider-spacing: 6px;
  --thumbs-size: 40px;
  --thumb-padding: 6px;
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: minmax(0, auto) calc(var(--thumbs-size) + var(--slider-spacing));
  overflow: hidden;
  backdrop-filter: blur(10px);
}
@media (width > 360px) {
  .popup.popup-media-slider {
    --slider-spacing: 12px;
    --thumbs-size: 70px;
  }
}
@media (width > 600px) {
  .popup.popup-media-slider {
    --thumbs-size: 70px;
  }
}
@media (width > 960px) {
  .popup.popup-media-slider {
    --thumbs-size: 90px;
  }
}
@media (width > 1400px) {
  .popup.popup-media-slider {
    --thumbs-size: 120px;
  }
}
.popup.popup-media-slider .popup-close {
  top: var(--slider-spacing);
  right: var(--slider-spacing);
  z-index: 2;
  backdrop-filter: blur(5px);
  border-radius: 5px;
}
.popup.popup-media-slider .slider {
  width: 100%;
}
.popup.popup-media-slider .slider::part(container) {
  --swiper-navigation-size: 30px;
  --swiper-theme-color: var(--color-text);
}
@media (width > 600px) {
  .popup.popup-media-slider .slider::part(container) {
    --swiper-navigation-size: 36px;
  }
}
.popup.popup-media-slider .slider::part(wrapper) {
  align-items: center;
}
.popup.popup-media-slider .slide {
  align-content: center;
  padding: var(--slider-spacing);
}
.popup.popup-media-slider .slide-image {
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.popup.popup-media-slider .slide-video {
  border-radius: 5px;
  background: #000 var(--preview-image) center center/cover no-repeat;
  position: relative;
}
.popup.popup-media-slider .slide-frame {
  display: block;
  margin: auto;
  width: 100%;
  max-height: 100%;
  aspect-ratio: 16/9;
  transition: visibility 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.popup.popup-media-slider .slide-frame:not(.iframe-loaded) {
  visibility: hidden;
  opacity: 0;
}
.popup.popup-media-slider .thumbs {
  display: flex;
  gap: var(--slider-spacing);
  align-items: stretch;
  flex-wrap: wrap;
  padding: 0 var(--slider-spacing) var(--slider-spacing);
}
.popup.popup-media-slider .thumb {
  display: block;
  width: var(--thumbs-size);
  height: var(--thumbs-size);
  padding: var(--thumb-padding);
  background-color: rgb(from var(--color-bg) r g b/0.7);
  border-radius: 5px;
  cursor: pointer;
}
.popup.popup-media-slider .thumb-image,
.popup.popup-media-slider .thumb-youtube {
  width: calc(var(--thumbs-size) - var(--thumb-padding) * 2);
  height: calc(var(--thumbs-size) - var(--thumb-padding) * 2);
  transition: opacity 0.3s ease-in-out;
}
.popup.popup-media-slider .thumb:not(.active) .thumb-image,
.popup.popup-media-slider .thumb:not(.active) .thumb-youtube {
  opacity: 0.5;
}
.popup.popup-media-slider .thumb-image {
  object-fit: contain;
}
.popup.popup-media-slider .thumb-youtube {
  position: relative;
  align-content: center;
}
.popup.popup-media-slider .thumb-youtube img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.popup.popup-media-slider .thumb-youtube::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  margin: auto;
  width: 36px;
  height: 36px;
  background-color: var(--color-text);
  mask: url("https://template-assets.tebex.io/images/play.svg") center center/contain no-repeat;
}

.store-product-full .image {
  margin-inline: auto;
  max-width: 100%;
  order: -1;
}
.store-product-full .product-title {
  font-size: 28px;
  font-weight: 800;
}
.store-product-full .price {
  width: 100%;
  font-size: 24px;
}
.store-product-full .price strong {
  font-size: 28px;
}
.store-product-full .actions {
  flex-wrap: wrap;
}
.store-product-full .wide {
  max-width: 240px;
}
@media (width > 600px) {
  .store-product-full {
    display: grid;
    grid-template: "image title" auto "image actions" auto "image descr" 1fr/1fr 1fr;
    gap: 24px var(--layout-gap);
  }
  .store-product-full .image,
  .store-product-full .media-slider {
    grid-area: image;
    margin-right: 0;
  }
  .store-product-full .product-title {
    grid-area: title;
    font-size: 32px;
    align-self: flex-end;
  }
  .store-product-full .descr {
    grid-area: descr;
    font-size: 16px;
  }
  .store-product-full .actions {
    grid-area: actions;
    align-self: start;
  }
}

.back-to-top {
  --btn-icon: url("https://template-assets.tebex.io/images/chevron.svg");
  margin: calc(var(--widget-padding) * 2) auto;
}
.back-to-top::before {
  rotate: 90deg;
}

.store-product-options .product-title {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 600;
}
.store-product-options .actions {
  position: sticky !important;
  bottom: var(--widget-padding);
  justify-content: start;
  width: fit-content;
  max-width: 100%;
}
.store-product-options .actions.updating {
  pointer-events: none;
}
.store-product-options .actions.updating > * {
  opacity: 0.3;
  filter: grayscale(100%);
}
.store-product-options .actions.updating::before {
  content: none;
}
.store-product-options .actions .btn-primary,
.store-product-options .actions .btn-secondary,
.store-product-options .actions .btn-tertiary {
  width: 230px;
}
.store-product .actions.updating .btn-primary,
.store-product .actions.updating .btn-secondary,
.store-product .actions.updating .btn-tertiary,
.store-product-options .actions.updating .btn-primary,
.store-product-options .actions.updating .btn-secondary,
.store-product-options .actions.updating .btn-tertiary {
  position: relative;
  color: transparent !important;
}
.store-product .actions.updating .btn-primary::after,
.store-product .actions.updating .btn-secondary::after,
.store-product .actions.updating .btn-tertiary::after,
.store-product-options .actions.updating .btn-primary::after,
.store-product-options .actions.updating .btn-secondary::after,
.store-product-options .actions.updating .btn-tertiary::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 11;
  width: 30px;
  height: 30px;
  background: url("https://template-assets.tebex.io/images/loading.svg") center center no-repeat;
  background-size: contain;
  transform: translate(-50%, -50%);
}
.store-product .actions.updating .btn-icon-text::before,
.store-product .actions.updating .btn-glyph-text::before,
.store-product-options .actions.updating .btn-icon-text::before,
.store-product-options .actions.updating .btn-glyph-text::before {
  opacity: 0;
}
.store-product-options .actions-multiple {
  width: auto;
}
.store-product-options .actions-multiple .btn-primary,
.store-product-options .actions-multiple .btn-secondary,
.store-product-options .actions-multiple .btn-tertiary {
  width: auto;
  flex: 1 1 auto;
}

.store-sidebar {
  display: grid;
  gap: 36px;
}
body:not(.is-sidebar-bottom) .store-sidebar {
  padding-top: 14px;
}
body.is-sidebar-bottom .store-sidebar {
  margin-top: calc(var(--layout-gap) * 1.5);
}
@media (width > 600px) {
  body.is-sidebar-bottom .store-sidebar {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

.widget-title {
  margin-bottom: var(--widget-padding);
  font-size: 20px;
  font-weight: 700;
}

.widget-featured .store-product {
  padding: 0;
  text-align: center;
}

.widget-gift-card {
  text-align: center;
}
.widget-gift-card .gift-card-input {
  margin-bottom: 12px;
  width: 100%;
  padding: 14px 12px;
  color: var(--color-text-darker);
  background: var(--color-input-bg);
  font-size: 14px;
  border-radius: 10px;
  font-size: 14px;
}
@media (width > 960px) {
  .widget-gift-card .gift-card-input {
    padding: 12px;
    font-size: 16px;
  }
}
.popup .widget-gift-card .gift-card-input {
  background: #242424;
}
.widget-gift-card .check {
  width: 100%;
}

.widget-recent .purchase {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  margin-bottom: 6px;
  line-height: 1.4;
}
.widget-recent .avatar {
  flex: none;
  max-width: 40px;
  max-height: 40px;
  object-fit: contain;
  border-radius: 5px;
}
.widget-recent .username {
  font-weight: 700;
}
.widget-recent .empty {
  text-align: center;
}
.widget-recent time {
  opacity: 0.5;
  font-size: 0.9em;
}
.widget-recent .sep {
  margin: 0 0.3em;
}

.widget-top-donator .avatar {
  margin-bottom: 12px;
  max-width: 96px;
  border-radius: 10px;
}
.widget-top-donator .username {
  margin-bottom: 6px;
  font-weight: 700;
  font-size: 18px;
}
.widget-top-donator .empty {
  text-align: center;
}

.widget-community-goal .widget-content,
.widget-goal .widget-content {
  text-align: center;
}
.widget-community-goal p:not(:last-child),
.widget-goal p:not(:last-child) {
  margin-bottom: 12px;
}
.widget-community-goal .progress,
.widget-goal .progress {
  height: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--color-tertiary-hover);
  border-radius: 6px;
}
@keyframes progressBarAnimation {
  to {
    background-position: 100% 0;
  }
}
.widget-community-goal .progress-bar,
.widget-goal .progress-bar {
  height: 12px;
  border-radius: 6px;
  background: var(--color-primary);
}
.widget-community-goal .progress-bar.striped,
.widget-goal .progress-bar.striped {
  background: var(--color-primary) linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary) 33%, rgb(from var(--color-primary-hover) r g b/0.35) 33%, rgb(from var(--color-primary-hover) r g b/0.35) 66%, var(--color-primary) 66%, var(--color-primary) 100%) repeat;
  background-size: 24px 100%;
}
.widget-community-goal .progress-bar.striped.animated,
.widget-goal .progress-bar.striped.animated {
  animation: progressBarAnimation 10s infinite linear;
}

.widget-community-goal .goal-image {
  margin: 0 auto 12px;
  max-width: 96px;
}
.widget-community-goal .descr {
  margin-bottom: 12px;
}

.widget-server-status .widget-content {
  text-align: center;
}
.widget-server-status h6 {
  margin-bottom: 12px;
}

.site-footer {
  background: var(--color-brighter-bg);
  view-transition-name: siteFooter;
}

.site-footer-inner {
  position: relative;
  padding: 20px var(--content-padding);
}
@media (width <= 960px) {
  .site-footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--widget-padding);
  }
}
.site-footer-inner .site-footer-nav {
  line-height: 150%;
  font-size: 14px;
}
@media (width > 960px) {
  .site-footer-inner .site-footer-nav {
    margin-bottom: 12px;
  }
}
.site-footer-inner .site-footer-nav ul {
  display: flex;
}
@media (width <= 960px) {
  .site-footer-inner .site-footer-nav ul {
    flex-direction: column;
    gap: var(--widget-padding);
    text-align: center;
  }
}
@media (width > 960px) {
  .site-footer-inner .site-footer-nav ul {
    gap: calc(var(--widget-padding) * 2);
  }
}
.site-footer-inner .site-footer-nav a {
  color: var(--color-text-darker);
  text-decoration-line: underline;
  text-underline-offset: 2px;
  transition: color 0.15s ease-in-out;
}
.site-footer-inner .site-footer-nav a:hover {
  color: var(--color-primary);
}
.site-footer-inner .copyright {
  line-height: 16px;
  color: var(--color-text-secondary);
  font-size: 12px;
}
.site-footer-inner .we-accept {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (width > 960px) {
  .site-footer-inner .we-accept {
    position: absolute;
    top: 0;
    right: var(--content-padding);
    bottom: 0;
    pointer-events: none;
  }
}
.site-footer-inner .we-accept li {
  display: block;
}
.site-footer-inner .we-accept img {
  display: block;
  max-width: 57px;
  max-height: 26px;
}
:root.color-scheme-light .site-footer-inner .we-accept img[alt=Visa] {
  filter: brightness(0.1);
}
@media (prefers-color-scheme: light) {
  :root.color-scheme-auto .site-footer-inner .we-accept img[alt=Visa] {
    filter: brightness(0.1);
  }
}

.site-footer-credit {
  color: var(--color-text-secondary);
  background: #101010;
  font-size: 11px;
}
.site-footer-credit .site-footer-credit-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  gap: 22px;
  margin: auto;
  padding-top: 16px;
  padding-bottom: 16px;
  min-height: 45px;
}
@media (width > 960px) {
  .site-footer-credit .site-footer-credit-inner {
    align-items: center;
    flex-direction: row;
  }
}
.site-footer-credit .copyright {
  display: flex;
  align-items: flex-start;
  gap: 22px;
}
@media (width > 960px) {
  .site-footer-credit .copyright {
    align-items: center;
  }
}
.site-footer-credit .copyright .tebex-logo-link {
  flex: none;
}
.site-footer-credit .legal {
  display: flex;
  gap: 16px;
  white-space: nowrap;
}
@media (width > 960px) {
  .site-footer-credit .legal {
    gap: 20px;
  }
}
.site-footer-credit .legal a {
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.15s ease-in-out;
}
.site-footer-credit .legal a:hover {
  color: var(--color-primary);
}

.popup {
  --fade-duration: 300ms;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 1000;
  overflow: hidden scroll;
  scrollbar-width: thin;
  scrollbar-color: var(--color-secondary) transparent;
  background: var(--color-popup-bg);
  transition: opacity var(--fade-duration) ease, display var(--fade-duration) allow-discrete;
}
@starting-style {
  .popup {
    opacity: 0;
  }
}
.popup.drawer {
  user-select: none;
}
.popup[hidden] {
  opacity: 0;
  display: none;
}

.popup-scroll-cont {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  padding: calc(var(--content-padding) / 2);
  overflow: hidden;
  overscroll-behavior: none;
}
@media (width > 600px) {
  .popup-scroll-cont {
    padding: var(--content-padding);
  }
}
@media (pointer: coarse) {
  .popup .popup-scroll-cont {
    align-items: flex-end;
    padding-bottom: 0;
  }
}

.popup-content {
  position: relative;
  width: 100%;
  max-width: 550px;
  padding: var(--widget-padding);
  background: var(--color-brighter-bg);
  border-radius: 10px;
  backdrop-filter: var(--bg-blur);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
  transition: translate var(--fade-duration) ease, opacity var(--fade-duration) ease;
}
@media (pointer: coarse) {
  .popup-content {
    padding-bottom: calc(var(--widget-padding) * 2);
  }
}
@starting-style {
  .popup-content {
    translate: 0 20px;
  }
}
.popup.drawer-down .popup-content {
  border-radius: 10px 10px 0 0;
}
.popup.drawer-up .popup-content {
  border-radius: 0 0 10px 10px;
}
.popup.drawer-right .popup-content {
  border-radius: 10px 0 0 10px;
}
.popup.drawer-left .popup-content {
  border-radius: 0 10px 10px 0;
}
.popup.touching .popup-content {
  transition: opacity var(--fade-duration) ease, scale var(--fade-duration) ease;
}
.popup.drawer[hidden] .popup-content, .popup.may-close .popup-content {
  opacity: 0.8;
  scale: 0.95;
}
.popup.may-close .popup-content {
  border-radius: 10px;
}
.popup.drawer-up[hidden] .popup-content {
  translate: 0 -100%;
}
.popup.drawer-down[hidden] .popup-content {
  translate: 0 100%;
}
.popup.drawer-right[hidden] .popup-content {
  translate: 100% 0;
}
.popup.drawer-left[hidden] .popup-content {
  translate: -100% 0;
}
.popup:not(.drawer)[hidden] .popup-content {
  translate: 0 20px;
}
.popup:not(.drawer)[hidden] .popup-content {
  translate: 0 20px;
}
.popup.popup-loading .popup-content {
  min-height: 180px;
}
.popup.popup-loading .popup-content::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  margin: auto;
  width: 38px;
  height: 38px;
  background: url("https://template-assets.tebex.io/images/loading.svg") center center no-repeat;
  background-size: contain;
}
.drawer-up .popup-content::after, .drawer-down .popup-content::after, .drawer-left .popup-content::after, .drawer-right .popup-content::after {
  content: "";
  display: block;
  position: absolute;
  background: rgb(from var(--color-text-secondary) r g b/0.33);
  border-radius: 2px;
  pointer-events: none;
}
.drawer-up .popup-content::after, .drawer-down .popup-content::after {
  left: 0;
  right: 0;
  margin-inline: auto;
  height: 4px;
  width: 100px;
}
.drawer-up .popup-content::after {
  bottom: 7px;
}
.drawer-down .popup-content::after {
  top: 7px;
}
.drawer-left .popup-content::after, .drawer-right .popup-content::after {
  top: 0;
  bottom: 0;
  margin-block: auto;
  width: 4px;
  height: 100px;
}
.drawer-left .popup-content::after {
  right: 7px;
}
.drawer-right .popup-content::after {
  left: 7px;
}

.popup-close {
  position: absolute;
  top: 0;
  right: 0;
  width: var(--btn-size);
  height: var(--btn-size);
  background-color: var(--color-tertiary-text);
  mask: url("https://template-assets.tebex.io/images/close.svg") center center no-repeat;
  mask-size: 24px;
  border-radius: 0 10px 0 10px;
  line-height: 0;
  font-size: 0;
  color: transparent;
  transition: all 0.15s ease-in-out;
}
@media (width <= 600px) {
  .popup-close {
    mask-size: 24px;
  }
}
.popup-close:hover, .popup-close:focus {
  background-color: var(--color-tertiary-text-hover);
}

.store-product-popup-content {
  max-width: 800px;
}

.product-options-popup .popup-content {
  max-width: 480px;
}

.gift-form-popup .popup-content h1, .gift-form-popup .popup-content h2, .gift-form-popup .popup-content h3, .gift-form-popup .popup-content h4, .gift-form-popup .popup-content h5, .gift-form-popup .popup-content h6 {
  margin-bottom: 12px;
}
.gift-form-popup .popup-content .btn-primary {
  width: 240px;
}
.gift-form-popup .popup-content .actions {
  position: relative;
  width: fit-content;
  max-width: 100%;
}
.gift-form-popup .popup-content .actions.updating {
  pointer-events: none;
}
.gift-form-popup .popup-content .actions.updating > * {
  opacity: 0.3;
  filter: grayscale(100%);
}
.gift-form-popup .popup-content .actions.updating::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: 10;
  margin: auto;
  width: 30px;
  height: 30px;
  background: url("https://template-assets.tebex.io/images/loading.svg") center center no-repeat;
  background-size: contain;
}

.login-popup {
  z-index: 1002;
}

.login-popup-content {
  max-width: 400px;
}

.basket {
  position: relative;
  z-index: 1001;
}
.site-content .basket {
  display: none;
}
.basket .basket-empty {
  margin: auto;
  text-align: center;
  font-size: 18px;
}
.basket .basket-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 50px var(--content-padding) 30px;
  font-size: 22px;
  font-weight: 600;
}
@media (width > 960px) {
  .basket .basket-header {
    padding-top: 70px;
  }
}
.basket .basket-title {
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
}
.basket .basket-title::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background-color: var(--color-text);
  mask: url("https://template-assets.tebex.io/images/user.svg") center center no-repeat;
  mask-size: contain;
}
.basket .basket-second-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px var(--content-padding);
  background: var(--color-brighter-bg);
  font-size: 18px;
  font-weight: 300;
  text-align: center;
}
.basket .basket-second-header .total {
  font-size: 14px;
}
.basket .basket-second-header .total strong {
  font-size: 18px;
  font-weight: inherit;
}
.basket .basket-second-header .currency {
  display: flex;
  align-items: center;
  gap: 6px;
}
.basket .basket-second-header .currency::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url("https://template-assets.tebex.io/images/dropdown-arrow.svg") center center no-repeat;
}
.basket .basket-content {
  flex: 1;
  overflow-x: hidden;
  overflow-y: auto;
}
.basket .basket-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: var(--widget-padding);
}
.basket .basket-item {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 12px;
  padding: var(--widget-padding);
  background: var(--color-brighter-bg);
  border-radius: 10px;
}
.basket .basket-item .info {
  margin-right: auto;
}
.basket .basket-item .options {
  list-style-position: inside;
}
.basket .basket-item .options:has(li) {
  padding: 5px 0;
}
.basket .basket-item .options li {
  display: block;
  padding: 1px 0;
}
.basket .basket-item .options li::before {
  content: "";
  display: inline-block;
  margin-right: 0.4em;
  width: 3px;
  height: 3px;
  vertical-align: middle;
  background-color: currentColor;
  border-radius: 50%;
}
.basket .basket-item .title {
  font-size: 20px;
  font-weight: 600;
}
.basket .basket-item .price {
  color: var(--color-primary);
  font-size: 14px;
}
.basket .basket-item .price strong {
  font-size: 18px;
  font-weight: inherit;
}
.basket .basket-item .quantity-field {
  flex: none;
  height: 40px;
}
.basket .basket-item .remove {
  --btn-icon: url("https://template-assets.tebex.io/images/delete.svg");
  --btn-size: 40px;
}
.basket .basket-checkout {
  margin-top: auto;
  padding: 0 var(--content-padding) 50px;
}
@media (width > 960px) {
  .basket .basket-checkout {
    padding-bottom: 100px;
  }
}
.basket .basket-checkout h3 {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: var(--widget-padding);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}
.basket .basket-checkout .total {
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 400;
}
.basket .basket-checkout .total strong {
  font-size: 24px;
  font-weight: inherit;
}
.basket .basket-checkout .checkout {
  width: 100%;
}

.basket-popup {
  background-color: transparent;
}
.basket-popup .popup-scroll-cont {
  justify-content: flex-end;
  padding: 0;
}

.basket-popup-content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 520px;
  height: 100vh;
  height: 100dvh;
  padding: 0;
  background-color: rgb(from var(--color-bg) r g b/0.9);
}
.basket-popup-content, .popup.drawer .basket-popup-content {
  border-radius: 0;
}
.popup.drawer .basket-popup-content::after {
  inset: 0 auto 0 7px;
  margin-block: auto;
  width: 4px;
  height: 100px;
}
.popup.may-close .basket-popup-content {
  border-radius: 10px;
}
@starting-style {
  .basket-popup-content {
    translate: 100% 0;
  }
}
:root .popup[hidden] .basket-popup-content {
  translate: 100% 0;
}
.basket-popup-content .popup-close {
  border-radius: 0 0 0 10px;
}
.basket-popup-content.updating {
  pointer-events: none;
}
.basket-popup-content.updating::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: 10;
  margin: auto;
  width: 38px;
  height: 38px;
  background: url("https://template-assets.tebex.io/images/loading.svg") center center no-repeat;
  background-size: contain;
}
.basket-popup-content.updating > * {
  filter: grayscale(100%);
}

.toaster {
  display: flex;
  flex-direction: column-reverse;
  gap: 12px;
  position: fixed;
  bottom: var(--widget-padding);
  left: 0;
  right: 0;
  z-index: 10000;
  margin: 0 auto;
  padding: 0 var(--widget-padding);
  width: 100%;
  height: 100%;
  max-width: 520px;
  pointer-events: none;
}
.toaster:empty {
  display: none;
}

.toast {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  height: 50px;
  padding: 0 8px 0 24px;
  overflow: hidden;
  background: var(--color-brighter-bg);
  border-radius: 10px;
  backdrop-filter: var(--bg-blur);
  font-size: 16px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  pointer-events: auto;
  transition: height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
@starting-style {
  .toast {
    opacity: 0;
    height: 0;
  }
}
.toast[hidden] {
  display: block;
  opacity: 0;
  height: 0;
}
.toast.toast-warning {
  background: #cab600;
}
.toast.toast-error {
  background: #C12E2E;
}
.toast.toast-success {
  background: #4caf50;
}

.toast-close {
  margin-left: auto;
  flex: none;
  width: 30px;
  height: 30px;
  background: url("https://template-assets.tebex.io/images/close.svg") center center no-repeat;
  background-size: 20px;
  opacity: 0.5;
  line-height: 0;
  font-size: 0;
  color: transparent;
  transition: all 0.15s ease-in-out;
}
.toast-close:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.1);
}

.store-category-tiered-header {
  margin-bottom: var(--widget-padding);
  font-size: 18px;
}
.store-category-tiered-header h1,
.store-category-tiered-header h2,
.store-category-tiered-header h3,
.store-category-tiered-header h4,
.store-category-tiered-header h5,
.store-category-tiered-header h6,
.store-category-tiered-header p {
  margin-bottom: 24px;
}

.store-products-tiered {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--products-gap);
}

.store-product-tiered {
  --gap: var(--widget-padding);
  --border-color: rgb(from var(--color-text) r g b / .1);
  display: grid;
  grid-row: span 4;
  grid-template-rows: subgrid;
  gap: var(--gap);
}
.store-product-tiered .image {
  margin: auto;
  max-width: 100%;
  object-fit: contain;
}
.store-product-tiered .product-title {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}
.store-product-tiered .countdown {
  display: block;
  margin-top: 4px;
  color: var(--color-removed);
  font-size: 0.75em;
  font-variant-numeric: tabular-nums;
}
.store-product-tiered .countdown::before {
  content: "";
  display: inline-block;
  vertical-align: -0.15em;
  margin-right: 0.25em;
  width: 1em;
  height: 1em;
  background-color: currentColor;
  mask: url("https://template-assets.tebex.io/images/countdown.svg") center center/contain no-repeat;
}
.store-product-tiered .descr {
  padding-block: var(--gap);
  border-block: 1px solid var(--border-color);
  color: var(--color-text-secondary);
}
.store-product-tiered .price {
  font-size: 14px;
  text-align: center;
}
.store-product-tiered .price .discount {
  margin-right: 1ch;
  color: var(--color-removed);
  font-weight: 400;
  text-decoration-line: line-through;
}
.store-product-tiered .price strong {
  font-size: 20px;
  font-weight: inherit;
}
.store-product-tiered .actions {
  gap: var(--gap);
}
.store-product-tiered .actions .wide {
  width: 100%;
}

.store-quote {
  padding: var(--widget-padding);
}
.store-quote .wide {
  flex: 1 1 50%;
}

/* Premium Sci-Fi redesign overrides */

@keyframes premiumAmbientPulse {
  0% {
    opacity: 0.7;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes premiumFloatIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroParallaxBg {
  from {
    transform: translateY(-5%) scale(1.16);
  }
  to {
    transform: translateY(10%) scale(1.06);
  }
}

@keyframes heroParallaxImage {
  from {
    transform: translateY(-4%) scale(1.12);
  }
  to {
    transform: translateY(8%) scale(1.04);
  }
}

@keyframes heroParallaxTitle {
  from {
    transform: translateY(-10px);
  }
  to {
    transform: translateY(22px);
  }
}

@keyframes heroParallaxActions {
  from {
    transform: translateY(-6px);
  }
  to {
    transform: translateY(16px);
  }
}

:root {
  --color-text: #e8f3ff;
  --color-text-darker: #f7fbff;
  --color-text-secondary: #97abc4;
  --color-text-dark: #07101b;
  --color-bg: #05080f;
  --color-brighter-bg: rgb(10 16 28 / 72%);
  --color-input-bg: rgb(11 19 32 / 92%);
  --color-popup-bg: rgb(2 5 12 / 74%);
  --color-primary: #70d8ff;
  --color-primary-hover: #c9f5ff;
  --color-primary-text: #03111c;
  --color-primary-text-hover: #03111c;
  --color-secondary: rgb(16 27 45 / 94%);
  --color-secondary-hover: rgb(23 38 60 / 98%);
  --color-secondary-text: #d6e6f7;
  --color-secondary-text-hover: #fff;
  --color-tertiary: rgb(255 255 255 / 0.025);
  --color-tertiary-hover: rgb(112 216 255 / 0.12);
  --color-tertiary-text: #e8f4ff;
  --color-tertiary-text-hover: #fff;
  --color-removed: #ff8196;
  --header-height: clamp(430px, 58vw, 760px);
  --layout-gap: clamp(28px, 4vw, 68px);
  --widget-padding: clamp(20px, 2vw, 28px);
  --content-inner-width: 1380px;
  --content-width: calc((var(--content-padding) * 2) + var(--content-inner-width));
  --sidebar-width: 340px;
  --products-gap: 28px;
  --btn-size: 50px;
  --btn-size-small: 40px;
  --btn-size-xsmall: 38px;
  --btn-icon-size: 18px;
  --bg-blur: blur(18px);
  --panel-bg: linear-gradient(180deg, rgb(11 18 31 / 88%), rgb(6 10 19 / 94%));
  --panel-bg-soft: linear-gradient(180deg, rgb(12 19 32 / 78%), rgb(7 11 20 / 82%));
  --panel-border: rgb(128 185 255 / 0.16);
  --panel-highlight: rgb(188 232 255 / 0.08);
  --panel-shadow: 0 28px 80px rgb(0 0 0 / 0.55);
}

html {
  color-scheme: only dark;
  background: #03060d;
  scrollbar-color: rgb(88 133 197 / 0.8) #05080f;
}

body {
  color: var(--color-text);
  background:
    radial-gradient(circle at top, rgb(10 18 32 / 0.32), transparent 32%),
    linear-gradient(180deg, #04070d 0%, #06101b 38%, #04070e 100%);
  font-family: "Sora", sans-serif;
  font-size: 15px;
  letter-spacing: 0.01em;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  z-index: -2;
  background:
    radial-gradient(circle at 18% 18%, rgb(92 203 255 / 0.14), transparent 22%),
    radial-gradient(circle at 78% 10%, rgb(77 126 255 / 0.16), transparent 22%),
    radial-gradient(circle at 50% 0%, rgb(255 255 255 / 0.08), transparent 18%),
    radial-gradient(circle at 20% 30%, rgb(255 255 255 / 0.22) 0 1px, transparent 2px),
    radial-gradient(circle at 70% 38%, rgb(255 255 255 / 0.14) 0 1px, transparent 2px),
    radial-gradient(circle at 42% 78%, rgb(255 255 255 / 0.18) 0 1px, transparent 2px),
    radial-gradient(circle at 86% 64%, rgb(255 255 255 / 0.16) 0 1px, transparent 2px);
  background-size: auto, auto, auto, 220px 220px, 280px 280px, 340px 340px, 420px 420px;
  opacity: 0.85;
}

body::after {
  z-index: -1;
  background:
    radial-gradient(circle at 50% 8%, rgb(113 227 255 / 0.18), transparent 15%),
    radial-gradient(circle at 50% 2%, rgb(255 255 255 / 0.28), transparent 7%),
    linear-gradient(180deg, transparent 0%, rgb(4 8 15 / 0.16) 30%, rgb(4 8 15 / 0.74) 100%);
  animation: premiumAmbientPulse 14s ease-in-out infinite alternate;
  transform-origin: center top;
}

h1, h2, h3, h4, h5, h6,
.site-navigation .site-title,
.site-header .site-title,
.widget-title,
.category-header h1,
.category-header h2,
.category-header h3,
.category-header h4,
.category-header h5,
.category-header h6 {
  font-family: "Orbitron", sans-serif;
  letter-spacing: 0.08em;
}

a,
button {
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.25s ease, transform 0.25s ease, opacity 0.2s ease;
}

::selection {
  color: #04111d;
  background-color: rgb(112 216 255 / 0.95);
}

.site {
  gap: calc(var(--layout-gap) * 0.92);
  padding-bottom: 56px;
  font-size: 15px;
}

.site-header-top,
.site-header,
.site-navigation,
.site-content,
.site-footer-inner {
  position: relative;
}

.site-bg-image {
  top: 0;
  width: min(1600px, 100%);
  min-height: clamp(420px, 72vh, 860px);
  max-height: none;
  opacity: 0.76;
  object-position: center 12%;
  filter: saturate(1.08) brightness(0.56) contrast(1.08);
  mask: linear-gradient(180deg, rgb(0 0 0 / 0.96), rgb(0 0 0 / 0.92) 32%, rgb(0 0 0 / 0.45) 72%, transparent);
  transform: translateY(0) scale(1.12);
  will-change: transform;
}

.site-header-top {
  margin-top: 18px;
  min-height: 66px;
  gap: 10px;
  padding-inline: calc(var(--content-padding) + 8px);
}

.site-header-top::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--panel-border);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgb(14 23 38 / 0.86), rgb(7 11 20 / 0.9)),
    linear-gradient(90deg, rgb(255 255 255 / 0.06), transparent 32%);
  box-shadow: 0 18px 40px rgb(0 0 0 / 0.28), inset 0 1px 0 rgb(255 255 255 / 0.06);
  backdrop-filter: blur(18px);
}

.site-header-top > * {
  position: relative;
  z-index: 1;
}

.site-header-top .site-title {
  max-width: calc(100% - 48px - var(--btn-size-xsmall) * 4 - var(--content-padding) * 2);
  color: #f4fbff;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  text-shadow: 0 0 28px rgb(112 216 255 / 0.16);
}

.site-header-top .site-title img {
  max-height: 44px;
  filter: drop-shadow(0 12px 24px rgb(0 0 0 / 0.5));
}

.site-header-top .toggle-navigation,
.site-header-top .discord,
.site-header-top .site-link,
.site-header-top .color-scheme,
.site-header-top .log-in,
.site-header-top .open-basket,
.site-header-top .user-name {
  border: 1px solid rgb(255 255 255 / 0.06);
  border-radius: 14px;
  background: linear-gradient(180deg, rgb(255 255 255 / 0.05), rgb(255 255 255 / 0.02));
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.08);
}

.site-header-top .log-in,
.site-header-top .user-name {
  color: #f2fbff;
  font-weight: 600;
}

.site-header-top .open-basket {
  color: #f2fbff;
  font-weight: 600;
}

.site-header-top .log-in.btn-glyph::before,
.site-header-top .log-in.btn-glyph-text::before,
.site-header-top .open-basket.btn-glyph::before,
.site-header-top .open-basket.btn-glyph-text::before,
.site-header-top .user-name.btn-glyph::before,
.site-header-top .user-name.btn-glyph-text::before {
  background-color: #f2fbff;
}

.site-header-top .log-in.btn-icon,
.site-header-top .log-in.btn-icon-text::before,
.site-header-top .open-basket.btn-icon,
.site-header-top .open-basket.btn-icon-text::before,
.site-header-top .user-name.btn-icon,
.site-header-top .user-name.btn-icon-text::before {
  filter: brightness(0) invert(1);
}

.site-header-top .log-in:hover,
.site-header-top .user-name:hover,
.site-header-top .open-basket:hover,
.site-header-top .discord:hover,
.site-header-top .site-link:hover,
.site-header-top .toggle-navigation:hover,
.site-header-top .color-scheme:hover {
  border-color: rgb(112 216 255 / 0.22);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.08), 0 0 22px rgb(112 216 255 / 0.12);
}

.site-header {
  overflow: clip;
  min-height: var(--header-height);
  padding-top: clamp(44px, 8vw, 92px);
  padding-bottom: clamp(34px, 6vw, 74px);
  background-image:
    radial-gradient(circle at center, rgb(5 9 16 / 0.12), rgb(5 9 16 / 0.42) 55%, rgb(5 9 16 / 0.72) 100%),
    var(--hero-wallpaper, url("eclipse_4k_wallpaper.png"));
  background-position: center center, center center;
  background-size: auto, cover;
  background-repeat: no-repeat, no-repeat;
  isolation: isolate;
}

.site-header::before,
.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.site-header::before {
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgb(7 11 19 / 0.18), rgb(4 8 15 / 0.68) 48%, rgb(4 8 15 / 0.94) 100%),
    radial-gradient(circle at 50% 7%, rgb(255 255 255 / 0.42), transparent 7%),
    radial-gradient(circle at 50% 8%, rgb(120 227 255 / 0.18), transparent 16%),
    radial-gradient(circle at 50% 8%, transparent 0 7%, rgb(108 210 255 / 0.14) 9%, transparent 17%);
  border: 1px solid rgb(146 219 255 / 0.1);
  box-shadow: var(--panel-shadow), inset 0 1px 0 rgb(255 255 255 / 0.04);
}

.site-header::after {
  border-radius: 34px;
  background:
    linear-gradient(90deg, transparent, rgb(255 255 255 / 0.04), transparent),
    radial-gradient(circle at top left, rgb(112 216 255 / 0.08), transparent 26%);
  opacity: 0.48;
}

.site-header > * {
  position: relative;
  z-index: 1;
}

body.no-hero.is-logo-centered .site-header,
body.has-hero .site-header {
  min-height: var(--header-height);
}

body.no-hero.is-logo-centered .site-header {
  display: grid;
  align-items: center;
}

.site-header .site-title {
  width: min(100%, 900px);
  margin-inline: auto;
  line-height: 1;
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 0 30px rgb(112 216 255 / 0.14), 0 20px 55px rgb(0 0 0 / 0.45);
  will-change: transform;
}

body.has-hero .site-header .site-title {
  position: absolute;
  inset: clamp(44px, 8vw, 96px) 0 auto;
  color: #f7fbff;
}

.site-header .site-title img {
  max-width: min(100%, 620px);
  max-height: 112px;
  margin-inline: auto;
}

body.is-logo-centered .site-header .site-title img {
  max-height: clamp(138px, 18vw, 232px);
  filter: drop-shadow(0 16px 34px rgb(0 0 0 / 0.42)) drop-shadow(0 0 30px rgb(112 216 255 / 0.1));
}

body.is-logo-centered.has-hero .site-header .site-title {
  filter: none;
}

.site-header .hero-image {
  width: 100%;
  max-height: none;
  min-height: clamp(420px, 64vw, 760px);
  border-radius: 34px;
  object-fit: cover;
  object-position: center 18%;
  opacity: 0.72;
  filter: saturate(1.08) brightness(0.62) contrast(1.08);
  transform: translateY(0) scale(1.08);
  will-change: transform;
}

.site-header .site-actions {
  position: relative;
  z-index: 2;
  justify-content: center;
  gap: 14px;
  margin-top: clamp(190px, 29vw, 320px);
  flex-wrap: wrap;
  will-change: transform;
}

.site-header .site-actions .btn-primary,
.site-header .site-actions .btn-secondary,
.site-header .site-actions .btn-tertiary {
  min-width: 210px;
}

.btn-primary,
.btn-secondary,
.btn-tertiary {
  height: var(--btn-size);
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.06), 0 14px 28px rgb(0 0 0 / 0.28);
}

.btn-primary {
  background: linear-gradient(180deg, #9cecff 0%, #69d5ff 100%);
  color: #04121e;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.45), 0 16px 30px rgb(53 166 255 / 0.22);
}

.btn-primary:hover,
.btn-primary:focus {
  transform: translateY(-2px);
  color: #04121e;
  background: linear-gradient(180deg, #b4f2ff 0%, #7fddff 100%);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.45), 0 18px 34px rgb(53 166 255 / 0.32);
}

.btn-secondary {
  border-color: rgb(130 190 255 / 0.18);
  background: linear-gradient(180deg, rgb(14 23 39 / 0.94), rgb(7 11 20 / 0.92));
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-tertiary:hover,
.btn-tertiary:focus {
  transform: translateY(-2px);
  border-color: rgb(122 205 255 / 0.24);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.08), 0 0 26px rgb(112 216 255 / 0.1);
}

.btn-tertiary {
  border-color: rgb(255 255 255 / 0.08);
  background: linear-gradient(180deg, rgb(255 255 255 / 0.035), rgb(255 255 255 / 0.015));
}

.btn-glyph,
.btn-icon {
  border-radius: 16px;
}

.site-navigation {
  background: transparent;
}

@media (width > 960px) {
  .site-navigation {
    top: 18px;
  }

  .site-navigation .menu {
    justify-content: center;
    gap: 10px;
    padding: 12px;
    min-height: 76px;
    border: 1px solid var(--panel-border);
    border-radius: 26px;
    background:
      linear-gradient(180deg, rgb(13 21 35 / 0.86), rgb(7 11 19 / 0.9)),
      linear-gradient(90deg, rgb(255 255 255 / 0.05), transparent 32%);
    box-shadow: var(--panel-shadow), inset 0 1px 0 rgb(255 255 255 / 0.06);
    backdrop-filter: blur(20px);
  }

  .site-navigation.stuck {
    background-color: transparent;
    backdrop-filter: none;
  }

  .site-navigation .menu > .menu-item {
    flex: 0 1 auto;
    max-width: none;
  }

  .site-navigation li.site-title-link {
    margin-right: 0;
    padding-left: 4px;
  }

  .site-navigation .site-title {
    font-size: clamp(1.25rem, 1.8vw, 1.65rem);
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
  }

  .site-navigation .site-title .menu-link {
    color: #f4fbff;
    text-shadow: 0 0 18px rgb(112 216 255 / 0.16);
  }

  .site-navigation .menu-link {
    padding: 0 18px;
    border-radius: 14px;
    line-height: 48px;
    color: var(--color-text-secondary);
  }

  .site-navigation .menu-link:hover,
  .site-navigation .menu-link.active,
  .site-navigation .menu-link.link-active {
    color: #fff;
    background: linear-gradient(180deg, rgb(112 216 255 / 0.14), rgb(255 255 255 / 0.03));
    box-shadow: inset 0 0 0 1px rgb(122 196 255 / 0.22), 0 0 24px rgb(112 216 255 / 0.1);
  }

  .site-navigation .site-title img {
    max-height: 52px;
    border-radius: 12px;
  }

  .site-navigation .has-children .toggle {
    border-radius: 12px;
  }

  .site-navigation .menu-sub {
    top: calc(100% + 10px);
    padding: 10px;
    border: 1px solid rgb(128 185 255 / 0.16);
    border-radius: 18px;
    background: linear-gradient(180deg, rgb(11 18 31 / 0.92), rgb(6 10 18 / 0.96));
    box-shadow: 0 18px 44px rgb(0 0 0 / 0.4);
  }

  .site-navigation .menu-sub .menu-link {
    padding: 8px 12px;
    border-radius: 12px;
  }
}

@media (width <= 960px) {
  .site-header-top {
    margin-top: 0;
    padding-inline: var(--content-padding);
  }

  .site-header-top::before {
    border-radius: 0 0 22px 22px;
  }

  .site-header {
    padding-inline: 0;
  }

  .site-header::before,
  .site-header::after,
  .site-header .hero-image {
    border-radius: 0 0 28px 28px;
  }

  .site-header .site-actions {
    margin-top: clamp(150px, 38vw, 250px);
    padding-inline: var(--content-padding);
  }

  .site-navigation {
    backdrop-filter: blur(14px);
  }

  .site-navigation .menu {
    inset: 0 calc(var(--btn-size) * 1.7) 0 0;
    padding-top: 82px;
    background: linear-gradient(180deg, rgb(10 17 30 / 0.96), rgb(6 9 17 / 0.98));
    box-shadow: 0 0 40px rgb(0 0 0 / 0.4);
  }

  .site-navigation .menu-link {
    padding-inline: 16px;
    border-radius: 14px;
  }

  .site-navigation .menu-link:hover,
  .site-navigation .menu-link.active {
    background: linear-gradient(180deg, rgb(112 216 255 / 0.12), rgb(255 255 255 / 0.02));
  }
}

.site-content {
  z-index: 2;
}

.store-home .store-text,
.category-header,
.store-products-images .store-product,
.store-products-list .store-product,
.store-product-full,
.store-sidebar > *,
.popup-content,
.basket .basket-second-header,
.basket .basket-item,
.basket .basket-checkout,
.basket-popup-content,
.site-footer-inner {
  border: 1px solid var(--panel-border);
  background: var(--panel-bg-soft);
  box-shadow: var(--panel-shadow), inset 0 1px 0 rgb(255 255 255 / 0.04);
  backdrop-filter: blur(18px);
}

.store-home .store-text,
.category-header,
.store-products-images .store-product,
.store-products-list .store-product,
.store-product-full,
.store-sidebar > * {
  animation: premiumFloatIn 0.65s ease both;
}

.store-home .store-text,
.category-header,
.store-product,
.store-product-full,
.store-sidebar > * {
  position: relative;
  overflow: hidden;
}

.store-home .store-text::before,
.category-header::before,
.store-product::before,
.store-product-full::before,
.store-sidebar > *::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgb(112 216 255 / 0.12), transparent 34%),
    linear-gradient(180deg, rgb(255 255 255 / 0.045), transparent 24%);
  pointer-events: none;
}

.store-home .store-text > *,
.category-header > *,
.store-product > *,
.store-product-full > *,
.store-sidebar > * > * {
  position: relative;
  z-index: 1;
}

.store-text {
  width: min(100%, 1180px);
  padding: clamp(24px, 3vw, 38px);
  border-radius: 28px;
  line-height: 1.72;
  font-size: 16px;
}

.store-home .store-text {
  display: grid;
  gap: 18px;
  margin-top: calc(var(--layout-gap) * -0.22);
  margin-bottom: calc(var(--layout-gap) * 1.1);
}

.store-home .store-text p {
  margin: 0;
}

.store-home .store-text p:empty,
.store-home .store-text p:has(> br:only-child) {
  display: none;
}

.store-home .store-text p:first-child {
  font-size: clamp(1.1rem, 2vw, 1.38rem);
  color: #f4fbff;
  line-height: 1.8;
}

.store-home .store-text p:not(:first-child) {
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgb(255 255 255 / 0.03), rgb(112 216 255 / 0.045));
  border: 1px solid rgb(255 255 255 / 0.05);
  color: var(--color-text-secondary);
}

.store-home .store-text ul,
.store-home .store-text ol {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
  margin: 4px 0 0;
}

.store-home .store-text li {
  position: relative;
  padding: 16px 16px 16px 52px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgb(8 14 24 / 0.92), rgb(10 18 31 / 0.8));
  border: 1px solid rgb(112 216 255 / 0.12);
  color: var(--color-text-secondary);
}

.store-home .store-text li::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 18px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle, #d6f8ff 0 32%, #58cfff 33% 60%, transparent 61%);
  box-shadow: 0 0 18px rgb(112 216 255 / 0.3);
}

.store-home .store-text blockquote,
.text-content blockquote {
  margin: 0;
  padding: 18px 20px;
  border-left: 3px solid rgb(112 216 255 / 0.48);
  border-radius: 16px;
  background: linear-gradient(180deg, rgb(7 14 25 / 0.94), rgb(10 18 31 / 0.82));
  color: #f4fbff;
}

.category-header {
  margin-bottom: calc(var(--widget-padding) + 6px);
  padding: 24px 28px;
  border-radius: 26px;
  font-size: 17px;
}

.category-header,
.store-products-list,
.store-products-images,
.no-products {
  width: min(100%, 1020px);
  margin-inline: auto;
}

.category-header h1,
.category-header h2,
.category-header h3,
.category-header h4,
.category-header h5,
.category-header h6 {
  margin-bottom: 12px;
  font-size: clamp(1.55rem, 3vw, 2.65rem);
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
  color: #f7fbff;
}

.category-header p {
  max-width: 72ch;
  color: var(--color-text-secondary);
}

.category-header::after,
.widget-title::after {
  content: "";
  display: block;
  width: 88px;
  height: 1px;
  margin-top: 14px;
  background: linear-gradient(90deg, rgb(112 216 255 / 0.72), transparent);
}

.site-home-categories {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: calc(var(--layout-gap) * 1.25);
}

.site-home-categories .category {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 220px;
  gap: 18px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgb(126 192 255 / 0.16);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgb(12 18 31 / 0.62), rgb(6 10 18 / 0.94)),
    radial-gradient(circle at top right, rgb(112 216 255 / 0.14), transparent 34%);
  box-shadow: 0 24px 60px rgb(0 0 0 / 0.34);
  backdrop-filter: blur(18px);
  line-height: 1.25;
  font-size: clamp(1.15rem, 1.6vw, 1.6rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: left;
  text-shadow: none;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.site-home-categories .category::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgb(255 255 255 / 0.05), transparent 36%);
  opacity: 0.9;
  pointer-events: none;
}

.site-home-categories .category > * {
  position: relative;
  z-index: 1;
}

.site-home-categories .category:hover {
  transform: translateY(-6px);
  color: #fff;
  border-color: rgb(166 227 255 / 0.3);
  box-shadow: 0 28px 70px rgb(0 0 0 / 0.45), 0 0 34px rgb(112 216 255 / 0.1);
}

.site-home-categories .category .image,
.site-home-categories .category .image-default {
  width: min(94px, 34%);
  margin: 0 0 auto;
}

.site-home-categories .category .image {
  filter: drop-shadow(0 18px 26px rgb(0 0 0 / 0.36));
}

.store-products-images {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.store-product {
  gap: 18px;
  min-height: 100%;
  padding: 24px;
  border-radius: 26px;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.store-product:hover {
  transform: translateY(-6px);
  border-color: rgb(163 228 255 / 0.28);
  box-shadow: 0 30px 74px rgb(0 0 0 / 0.5), 0 0 34px rgb(112 216 255 / 0.08);
}

.store-product .image-link {
  width: 100%;
  min-height: 190px;
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgb(255 255 255 / 0.03), rgb(112 216 255 / 0.05));
  border: 1px solid rgb(255 255 255 / 0.05);
}

.store-product .image {
  max-height: 170px;
  object-fit: contain;
  filter: drop-shadow(0 20px 26px rgb(0 0 0 / 0.4));
}

.store-product .product-title {
  font-size: clamp(1.2rem, 1.6vw, 1.45rem);
  line-height: 1.3;
  font-weight: 700;
}

.store-product .descr {
  color: var(--color-text-secondary);
  line-height: 1.65;
}

.store-product .price {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgb(112 216 255 / 0.16);
  background: linear-gradient(180deg, rgb(112 216 255 / 0.08), rgb(255 255 255 / 0.03));
  color: #d9f8ff;
}

.store-product .price strong {
  font-size: 28px;
  color: #fff;
}

.store-product .actions {
  gap: 14px;
}

.store-products-images .store-product .actions {
  margin-top: auto;
}

.store-products-images .store-product .btn-primary,
.store-products-images .store-product .btn-secondary {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.store-products-list .store-product {
  align-items: center;
  padding: 22px;
}

.store-products-list .store-product .image {
  width: 96px;
  border-radius: 18px;
}

.media-slider .slider,
.store-product-full .image,
.store-product-full .media-slider {
  border-radius: 22px;
}

.media-slider .thumb,
.popup.popup-media-slider .thumb {
  border: 1px solid rgb(255 255 255 / 0.08);
  background-color: rgb(9 15 26 / 0.82);
}

.media-slider .thumb.active,
.popup.popup-media-slider .thumb.active {
  border-color: rgb(112 216 255 / 0.28);
  box-shadow: 0 0 22px rgb(112 216 255 / 0.1);
}

.store-product-full {
  width: min(100%, 780px) !important;
  gap: 16px;
  padding: clamp(24px, 3vw, 36px);
  border-radius: 28px;
  margin-inline: auto;
}

.store-product-full .product-title {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1.12;
}

.store-product-full .descr {
  color: var(--color-text-secondary);
  line-height: 1.75;
}

.store-product-full .actions {
  gap: 14px;
}

.store-product-full .quantity-field {
  width: 112px !important;
  min-width: 112px !important;
  max-width: 112px !important;
  height: 42px;
}

.store-product-full .quantity-field input[type=number] {
  width: 40px !important;
  min-width: 40px !important;
  margin: 0 !important;
  text-align: center;
}

.store-product-full .quantity-field .adjust {
  width: 36px !important;
  min-width: 36px !important;
}

.store-product-full .quantity-field .adjust.decrease {
  margin-right: 0 !important;
}

.store-product-full .quantity-field .adjust.increase {
  margin-left: 0 !important;
}

@media (width > 600px) {
  .store-product-full {
    grid-template: "image title" auto "image descr" 1fr "image actions" auto / 150px minmax(0, 1fr);
    align-items: start;
  }
}

.store-product-full .image,
.store-product-full .media-slider {
  max-width: 150px;
  justify-self: start;
}

.store-form input[type=text],
.store-form input[type=password],
.store-form input[type=email],
.store-form input[type=number],
.store-form input[type=search],
.store-form input[type=url],
.store-form input[type=tel],
.store-form input[type=date],
.store-form input[type=time],
.store-form input[type=datetime-local],
.store-form input[type=file],
.store-form input[type=month],
.store-form input[type=week],
.store-form select,
.store-form textarea,
.widget-gift-card .gift-card-input {
  border: 1px solid rgb(127 186 255 / 0.14);
  background: linear-gradient(180deg, rgb(8 14 24 / 0.95), rgb(12 20 33 / 0.95));
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.04);
  color: #f5fbff;
}

.store-form input[type=text]:focus,
.store-form input[type=password]:focus,
.store-form input[type=email]:focus,
.store-form input[type=number]:focus,
.store-form input[type=search]:focus,
.store-form input[type=url]:focus,
.store-form input[type=tel]:focus,
.store-form input[type=date]:focus,
.store-form input[type=time]:focus,
.store-form input[type=datetime-local]:focus,
.store-form input[type=file]:focus,
.store-form input[type=month]:focus,
.store-form input[type=week]:focus,
.store-form select:focus,
.store-form textarea:focus,
.widget-gift-card .gift-card-input:focus {
  border-color: rgb(112 216 255 / 0.34);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.06), 0 0 0 4px rgb(112 216 255 / 0.1);
}

.store-sidebar {
  gap: 26px;
}

.store-sidebar > * {
  padding: 24px;
  border-radius: 24px;
}

.widget-title {
  margin-bottom: 18px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #f7fbff;
}

.widget-recent .purchase {
  padding: 12px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgb(255 255 255 / 0.03), transparent);
}

.widget-recent .avatar,
.widget-top-donator .avatar {
  border: 1px solid rgb(255 255 255 / 0.08);
  box-shadow: 0 10px 26px rgb(0 0 0 / 0.3);
}

.widget-community-goal .progress,
.widget-goal .progress {
  height: 14px;
  background: rgb(255 255 255 / 0.05);
  border: 1px solid rgb(255 255 255 / 0.05);
}

.widget-community-goal .progress-bar,
.widget-goal .progress-bar {
  background: linear-gradient(90deg, #68d3ff 0%, #9cf0ff 100%);
  box-shadow: 0 0 22px rgb(112 216 255 / 0.22);
}

.site-footer {
  background: transparent;
}

.site-footer-inner {
  padding-block: 28px;
  border-radius: 28px;
}

.site-footer-inner .site-footer-nav a,
.site-footer-credit .legal a {
  color: var(--color-text-secondary);
  text-decoration: none;
}

.site-footer-inner .site-footer-nav a:hover,
.site-footer-credit .legal a:hover {
  color: #fff;
  text-shadow: 0 0 16px rgb(112 216 255 / 0.16);
}

.site-footer-credit {
  background: transparent;
  color: var(--color-text-secondary);
}

.site-footer-credit .site-footer-credit-inner {
  max-width: var(--content-width);
  padding-inline: var(--content-padding);
}

.popup-content,
.basket-popup-content {
  background: linear-gradient(180deg, rgb(12 18 31 / 0.92), rgb(6 10 18 / 0.96));
}

.popup-close,
.toast-close {
  opacity: 0.7;
}

.popup-close:hover,
.toast-close:hover {
  opacity: 1;
}

.basket .basket-header {
  color: #f7fbff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.basket .basket-second-header,
.basket .basket-item,
.basket .basket-checkout {
  border-radius: 22px;
}

.toaster {
  max-width: 560px;
}

.toast {
  border: 1px solid rgb(255 255 255 / 0.08);
  background: linear-gradient(180deg, rgb(12 18 31 / 0.94), rgb(6 10 18 / 0.96));
}

@media (width <= 600px) {
  .store-home .store-text,
  .category-header,
  .store-products-images .store-product,
  .store-products-list .store-product,
  .store-product-full,
  .store-sidebar > *,
  .site-footer-inner {
    border-radius: 22px;
  }

  .store-home .store-text ul,
  .store-home .store-text ol {
    grid-template-columns: 1fr;
  }

  .site-home-categories .category {
    min-height: 190px;
    padding: 22px;
  }
}

@supports (animation-timeline: view()) {
  .site-bg-image {
    animation: heroParallaxBg linear both;
    animation-timeline: view();
    animation-range: entry 0% exit 100%;
  }

  .site-header .hero-image {
    animation: heroParallaxImage linear both;
    animation-timeline: view();
    animation-range: entry 0% exit 100%;
  }

  .site-header .site-title {
    animation: heroParallaxTitle linear both;
    animation-timeline: view();
    animation-range: entry 0% exit 100%;
  }

  .site-header .site-actions {
    animation: heroParallaxActions linear both;
    animation-timeline: view();
    animation-range: entry 0% exit 100%;
  }
}

/* Premium theme fixes */

.site-navigation {
  position: relative;
  z-index: 4;
  margin-top: calc(var(--layout-gap) * -0.22);
}

.site-header {
  padding-bottom: clamp(96px, 12vw, 148px);
}

@media (width <= 960px) {
  .site-navigation {
    margin-top: calc(var(--layout-gap) * -0.12);
  }

  .site-header {
    padding-bottom: clamp(78px, 16vw, 116px);
  }
}

html {
  color-scheme: light dark;
  background: var(--page-base-bg, #03060d);
}

html.color-scheme-light {
  color-scheme: only light;
}

html.color-scheme-dark {
  color-scheme: only dark;
}

@media (prefers-color-scheme: light) {
  html.color-scheme-auto {
    color-scheme: only light;
  }
}

@media (prefers-color-scheme: dark) {
  html.color-scheme-auto {
    color-scheme: only dark;
  }
}

:root {
  --page-base-bg: #03060d;
  --page-background:
    radial-gradient(circle at top, rgb(10 18 32 / 0.32), transparent 32%),
    linear-gradient(180deg, #04070d 0%, #06101b 38%, #04070e 100%);
  --page-before-bg:
    radial-gradient(circle at 18% 18%, rgb(92 203 255 / 0.14), transparent 22%),
    radial-gradient(circle at 78% 10%, rgb(77 126 255 / 0.16), transparent 22%),
    radial-gradient(circle at 50% 0%, rgb(255 255 255 / 0.08), transparent 18%),
    radial-gradient(circle at 20% 30%, rgb(255 255 255 / 0.22) 0 1px, transparent 2px),
    radial-gradient(circle at 70% 38%, rgb(255 255 255 / 0.14) 0 1px, transparent 2px),
    radial-gradient(circle at 42% 78%, rgb(255 255 255 / 0.18) 0 1px, transparent 2px),
    radial-gradient(circle at 86% 64%, rgb(255 255 255 / 0.16) 0 1px, transparent 2px);
  --page-after-bg:
    radial-gradient(circle at 50% 8%, rgb(113 227 255 / 0.18), transparent 15%),
    radial-gradient(circle at 50% 2%, rgb(255 255 255 / 0.28), transparent 7%),
    linear-gradient(180deg, transparent 0%, rgb(4 8 15 / 0.16) 30%, rgb(4 8 15 / 0.74) 100%);
}

body {
  background: var(--page-background);
}

body::before {
  background: var(--page-before-bg);
}

body::after {
  background: var(--page-after-bg);
}

:root.color-scheme-light {
  --color-text: #14283d;
  --color-text-darker: #0f2234;
  --color-text-secondary: #5f7690;
  --color-text-dark: #ffffff;
  --color-bg: #eef5fb;
  --color-brighter-bg: rgb(255 255 255 / 82%);
  --color-input-bg: rgb(233 241 248 / 96%);
  --color-popup-bg: rgb(218 229 239 / 68%);
  --color-primary: #49bfff;
  --color-primary-hover: #1f9fe5;
  --color-primary-text: #06131f;
  --color-primary-text-hover: #06131f;
  --color-secondary: rgb(225 236 246 / 96%);
  --color-secondary-hover: rgb(213 228 241 / 98%);
  --color-secondary-text: #16304a;
  --color-secondary-text-hover: #102740;
  --color-tertiary: rgb(255 255 255 / 0.52);
  --color-tertiary-hover: rgb(73 191 255 / 0.14);
  --color-tertiary-text: #16304a;
  --color-tertiary-text-hover: #102740;
  --panel-bg: linear-gradient(180deg, rgb(255 255 255 / 0.9), rgb(234 242 249 / 0.94));
  --panel-bg-soft: linear-gradient(180deg, rgb(255 255 255 / 0.84), rgb(237 244 250 / 0.9));
  --panel-border: rgb(100 153 210 / 0.18);
  --panel-highlight: rgb(255 255 255 / 0.46);
  --panel-shadow: 0 24px 60px rgb(101 136 168 / 0.18);
  --page-base-bg: #edf4fb;
  --page-background:
    radial-gradient(circle at top, rgb(123 195 255 / 0.18), transparent 28%),
    linear-gradient(180deg, #f6fbff 0%, #edf5fb 38%, #e6eff8 100%);
  --page-before-bg:
    radial-gradient(circle at 18% 18%, rgb(73 191 255 / 0.1), transparent 22%),
    radial-gradient(circle at 78% 10%, rgb(122 165 255 / 0.1), transparent 22%),
    radial-gradient(circle at 50% 0%, rgb(255 255 255 / 0.82), transparent 18%),
    radial-gradient(circle at 20% 30%, rgb(120 155 189 / 0.18) 0 1px, transparent 2px),
    radial-gradient(circle at 70% 38%, rgb(120 155 189 / 0.14) 0 1px, transparent 2px),
    radial-gradient(circle at 42% 78%, rgb(120 155 189 / 0.16) 0 1px, transparent 2px),
    radial-gradient(circle at 86% 64%, rgb(120 155 189 / 0.14) 0 1px, transparent 2px);
  --page-after-bg:
    radial-gradient(circle at 50% 8%, rgb(73 191 255 / 0.12), transparent 15%),
    radial-gradient(circle at 50% 2%, rgb(255 255 255 / 0.92), transparent 7%),
    linear-gradient(180deg, transparent 0%, rgb(228 238 247 / 0.26) 30%, rgb(220 232 243 / 0.56) 100%);
}

@media (prefers-color-scheme: light) {
  :root.color-scheme-auto {
    --color-text: #14283d;
    --color-text-darker: #0f2234;
    --color-text-secondary: #5f7690;
    --color-text-dark: #ffffff;
    --color-bg: #eef5fb;
    --color-brighter-bg: rgb(255 255 255 / 82%);
    --color-input-bg: rgb(233 241 248 / 96%);
    --color-popup-bg: rgb(218 229 239 / 68%);
    --color-primary: #49bfff;
    --color-primary-hover: #1f9fe5;
    --color-primary-text: #06131f;
    --color-primary-text-hover: #06131f;
    --color-secondary: rgb(225 236 246 / 96%);
    --color-secondary-hover: rgb(213 228 241 / 98%);
    --color-secondary-text: #16304a;
    --color-secondary-text-hover: #102740;
    --color-tertiary: rgb(255 255 255 / 0.52);
    --color-tertiary-hover: rgb(73 191 255 / 0.14);
    --color-tertiary-text: #16304a;
    --color-tertiary-text-hover: #102740;
    --panel-bg: linear-gradient(180deg, rgb(255 255 255 / 0.9), rgb(234 242 249 / 0.94));
    --panel-bg-soft: linear-gradient(180deg, rgb(255 255 255 / 0.84), rgb(237 244 250 / 0.9));
    --panel-border: rgb(100 153 210 / 0.18);
    --panel-highlight: rgb(255 255 255 / 0.46);
    --panel-shadow: 0 24px 60px rgb(101 136 168 / 0.18);
    --page-base-bg: #edf4fb;
    --page-background:
      radial-gradient(circle at top, rgb(123 195 255 / 0.18), transparent 28%),
      linear-gradient(180deg, #f6fbff 0%, #edf5fb 38%, #e6eff8 100%);
    --page-before-bg:
      radial-gradient(circle at 18% 18%, rgb(73 191 255 / 0.1), transparent 22%),
      radial-gradient(circle at 78% 10%, rgb(122 165 255 / 0.1), transparent 22%),
      radial-gradient(circle at 50% 0%, rgb(255 255 255 / 0.82), transparent 18%),
      radial-gradient(circle at 20% 30%, rgb(120 155 189 / 0.18) 0 1px, transparent 2px),
      radial-gradient(circle at 70% 38%, rgb(120 155 189 / 0.14) 0 1px, transparent 2px),
      radial-gradient(circle at 42% 78%, rgb(120 155 189 / 0.16) 0 1px, transparent 2px),
      radial-gradient(circle at 86% 64%, rgb(120 155 189 / 0.14) 0 1px, transparent 2px);
    --page-after-bg:
      radial-gradient(circle at 50% 8%, rgb(73 191 255 / 0.12), transparent 15%),
      radial-gradient(circle at 50% 2%, rgb(255 255 255 / 0.92), transparent 7%),
      linear-gradient(180deg, transparent 0%, rgb(228 238 247 / 0.26) 30%, rgb(220 232 243 / 0.56) 100%);
  }
}

:root.color-scheme-light .site-header-top::before,
:root.color-scheme-light .site-navigation .menu,
:root.color-scheme-light .site-footer-inner,
:root.color-scheme-light .popup-content,
:root.color-scheme-light .basket-popup-content {
  background:
    linear-gradient(180deg, rgb(255 255 255 / 0.9), rgb(234 242 249 / 0.94)),
    linear-gradient(90deg, rgb(255 255 255 / 0.7), transparent 32%);
  box-shadow: var(--panel-shadow), inset 0 1px 0 rgb(255 255 255 / 0.7);
}

:root.color-scheme-light .site-header-top .site-title,
:root.color-scheme-light .site-navigation .site-title .menu-link,
:root.color-scheme-light .widget-title,
:root.color-scheme-light .category-header h1,
:root.color-scheme-light .category-header h2,
:root.color-scheme-light .category-header h3,
:root.color-scheme-light .category-header h4,
:root.color-scheme-light .category-header h5,
:root.color-scheme-light .category-header h6,
:root.color-scheme-light .store-product .price strong,
:root.color-scheme-light .basket .basket-header {
  color: #14283d;
  text-shadow: none;
}

:root.color-scheme-light .site-header-top .log-in,
:root.color-scheme-light .site-header-top .discord,
:root.color-scheme-light .site-header-top .site-link,
:root.color-scheme-light .site-header-top .user-name,
:root.color-scheme-light .site-navigation .menu-link,
:root.color-scheme-light .site-footer-inner .site-footer-nav a,
:root.color-scheme-light .site-footer-credit .legal a {
  color: #28425d;
}

:root.color-scheme-light .site-header::before {
  background:
    linear-gradient(180deg, rgb(255 255 255 / 0.52), rgb(229 238 247 / 0.72) 48%, rgb(223 234 244 / 0.9) 100%),
    radial-gradient(circle at 50% 7%, rgb(255 255 255 / 0.95), transparent 7%),
    radial-gradient(circle at 50% 8%, rgb(96 200 255 / 0.14), transparent 16%);
  border-color: rgb(100 153 210 / 0.16);
}

:root.color-scheme-light .site-header::after {
  background:
    linear-gradient(90deg, transparent, rgb(255 255 255 / 0.34), transparent),
    radial-gradient(circle at top left, rgb(73 191 255 / 0.08), transparent 26%);
}

:root.color-scheme-light .site-bg-image {
  opacity: 0.48;
  filter: saturate(0.92) brightness(1.08) contrast(0.94);
}

:root.color-scheme-light .site-navigation .menu-link:hover,
:root.color-scheme-light .site-navigation .menu-link.active,
:root.color-scheme-light .site-navigation .menu-link.link-active,
:root.color-scheme-light .site-footer-inner .site-footer-nav a:hover,
:root.color-scheme-light .site-footer-credit .legal a:hover {
  color: #0f2234;
  text-shadow: none;
}

@media (prefers-color-scheme: light) {
  :root.color-scheme-auto .site-header-top::before,
  :root.color-scheme-auto .site-navigation .menu,
  :root.color-scheme-auto .site-footer-inner,
  :root.color-scheme-auto .popup-content,
  :root.color-scheme-auto .basket-popup-content {
    background:
      linear-gradient(180deg, rgb(255 255 255 / 0.9), rgb(234 242 249 / 0.94)),
      linear-gradient(90deg, rgb(255 255 255 / 0.7), transparent 32%);
    box-shadow: var(--panel-shadow), inset 0 1px 0 rgb(255 255 255 / 0.7);
  }

  :root.color-scheme-auto .site-header-top .site-title,
  :root.color-scheme-auto .site-navigation .site-title .menu-link,
  :root.color-scheme-auto .widget-title,
  :root.color-scheme-auto .category-header h1,
  :root.color-scheme-auto .category-header h2,
  :root.color-scheme-auto .category-header h3,
  :root.color-scheme-auto .category-header h4,
  :root.color-scheme-auto .category-header h5,
  :root.color-scheme-auto .category-header h6,
  :root.color-scheme-auto .store-product .price strong,
  :root.color-scheme-auto .basket .basket-header {
    color: #14283d;
    text-shadow: none;
  }

  :root.color-scheme-auto .site-header-top .log-in,
  :root.color-scheme-auto .site-header-top .discord,
  :root.color-scheme-auto .site-header-top .site-link,
  :root.color-scheme-auto .site-header-top .user-name,
  :root.color-scheme-auto .site-navigation .menu-link,
  :root.color-scheme-auto .site-footer-inner .site-footer-nav a,
  :root.color-scheme-auto .site-footer-credit .legal a {
    color: #28425d;
  }

  :root.color-scheme-auto .site-header::before {
    background:
      linear-gradient(180deg, rgb(255 255 255 / 0.52), rgb(229 238 247 / 0.72) 48%, rgb(223 234 244 / 0.9) 100%),
      radial-gradient(circle at 50% 7%, rgb(255 255 255 / 0.95), transparent 7%),
      radial-gradient(circle at 50% 8%, rgb(96 200 255 / 0.14), transparent 16%);
    border-color: rgb(100 153 210 / 0.16);
  }

  :root.color-scheme-auto .site-header::after {
    background:
      linear-gradient(90deg, transparent, rgb(255 255 255 / 0.34), transparent),
      radial-gradient(circle at top left, rgb(73 191 255 / 0.08), transparent 26%);
  }

  :root.color-scheme-auto .site-bg-image {
    opacity: 0.48;
    filter: saturate(0.92) brightness(1.08) contrast(0.94);
  }

  :root.color-scheme-auto .site-navigation .menu-link:hover,
  :root.color-scheme-auto .site-navigation .menu-link.active,
  :root.color-scheme-auto .site-navigation .menu-link.link-active,
  :root.color-scheme-auto .site-footer-inner .site-footer-nav a:hover,
  :root.color-scheme-auto .site-footer-credit .legal a:hover {
    color: #0f2234;
    text-shadow: none;
  }
}

@media (width > 960px) {
  body.is-sidebar-left .site-content-widgets,
  body.is-sidebar-right .site-content-widgets {
    grid-template-columns: minmax(0, 1fr);
    justify-content: center;
  }

  body.is-sidebar-left .site-content-widgets .store-sidebar,
  body.is-sidebar-right .site-content-widgets .store-sidebar {
    display: none;
  }
}

.store-home .store-text {
  display: block;
  max-width: 920px;
}

.store-home .store-text p {
  margin: 0 0 16px;
}

.store-home .store-text p:not(:first-child) {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  color: var(--color-text-secondary);
}

.store-home .store-text p:last-child {
  margin-bottom: 0;
}

.store-home .store-text ul,
.store-home .store-text ol {
  display: block;
  margin: 0 0 16px 1.25rem;
}

.store-home .store-text li {
  display: list-item;
  position: static;
  padding: 0;
  margin-bottom: 8px;
  border: 0;
  border-radius: 0;
  background: none;
  color: var(--color-text-secondary);
}

.store-home .store-text li:last-child {
  margin-bottom: 0;
}

.store-home .store-text li::before {
  content: none;
}

.basket .basket-item .quantity-field {
  height: 44px;
  border: 1px solid rgb(112 216 255 / 0.16);
  border-radius: 16px;
  background: linear-gradient(180deg, rgb(10 16 28 / 0.94), rgb(6 10 18 / 0.98));
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.05), 0 10px 24px rgb(0 0 0 / 0.18);
  overflow: hidden;
}

.basket .basket-item .quantity-field input[type=number] {
  width: 48px;
  color: #f7fbff;
  background: transparent;
  font-weight: 700;
}

.basket .basket-item .quantity-field .adjust {
  width: 42px;
  background: linear-gradient(180deg, rgb(255 255 255 / 0.05), rgb(255 255 255 / 0.02));
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.basket .basket-item .quantity-field .adjust.decrease {
  margin-right: 0;
  border-right: 1px solid rgb(112 216 255 / 0.12);
}

.basket .basket-item .quantity-field .adjust.increase {
  margin-left: 0;
  border-left: 1px solid rgb(112 216 255 / 0.12);
}

.basket .basket-item .quantity-field .adjust::before {
  background-color: #f4fbff;
  mask-size: 11px;
}

.basket .basket-item .quantity-field .adjust:hover,
.basket .basket-item .quantity-field .adjust:focus {
  background: linear-gradient(180deg, rgb(112 216 255 / 0.18), rgb(255 255 255 / 0.04));
  box-shadow: inset 0 0 0 1px rgb(122 196 255 / 0.18);
}

.basket .basket-item .remove {
  --btn-size: 44px;
  --btn-color-text: #ff6e8a;
  --btn-color-text-hover: #ff93a7;
  border: 1px solid rgb(255 110 138 / 0.22);
  border-radius: 16px;
  background: linear-gradient(180deg, rgb(44 10 18 / 0.82), rgb(22 6 11 / 0.92));
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.05);
}

.basket .basket-item .remove:hover,
.basket .basket-item .remove:focus {
  border-color: rgb(255 110 138 / 0.34);
  background: linear-gradient(180deg, rgb(60 14 24 / 0.86), rgb(28 8 14 / 0.96));
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.06), 0 0 24px rgb(255 110 138 / 0.14);
}

.basket .basket-item .remove.btn-glyph::before,
.basket .basket-item .remove.btn-glyph-text::before {
  background-color: #ff6e8a;
}

.basket .basket-item .remove.btn-icon,
.basket .basket-item .remove.btn-icon-text::before {
  filter: brightness(0) saturate(100%) invert(54%) sepia(61%) saturate(961%) hue-rotate(303deg) brightness(103%) contrast(102%);
}

.store-products-list .store-product {
  display: flex;
  align-items: center;
  gap: 18px;
}

.store-products-list .store-product .image-link {
  flex: none;
  width: auto;
  min-height: 0;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: none;
}

.store-products-list .store-product .image,
.store-products-list .store-product .image-default {
  width: 64px;
  max-width: 64px;
  min-width: 64px;
  max-height: 64px;
  margin: 0;
  border-radius: 0;
  filter: none;
}

.store-products-list .store-product .product-title {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  font-size: clamp(1.05rem, 1.45vw, 1.32rem);
}

.store-products-list .store-product .price {
  flex: none;
  margin: 0;
  white-space: nowrap;
}

.store-products-list .store-product .actions {
  flex: none;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  overflow: visible;
}

.store-products-list .store-product .actions .wide,
.store-products-list .store-product .actions .half {
  flex: 0 0 auto;
  max-width: none;
}

.store-products-list .store-product .actions .quantity-field.with-open-basket,
.store-products-list .store-product .actions .quantity-field.with-open-basket.wide,
.store-products-list .store-product .actions .quantity-field.with-open-basket.half {
  flex: 0 0 auto !important;
  width: 112px !important;
  min-width: 112px !important;
  max-width: 112px !important;
}

.store-products-list .store-product .actions > .wide,
.store-products-list .store-product .actions > .half {
  flex: 0 0 auto !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
}

.store-products-list .store-product .btn-primary,
.store-products-list .store-product .btn-secondary,
.store-products-list .store-product .btn-tertiary {
  width: auto;
  min-width: 170px;
  justify-content: center;
  text-align: center;
}

@media (width <= 700px) {
  .store-products-list .store-product {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .store-products-list .store-product .product-title {
    flex: 1 1 calc(100% - 82px);
  }

  .store-products-list .store-product .price {
    margin-left: 82px;
  }

  .store-products-list .store-product .actions {
    width: 100%;
    margin-left: 82px;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .store-products-list .store-product .btn-primary,
  .store-products-list .store-product .btn-secondary,
  .store-products-list .store-product .btn-tertiary {
    min-width: 0;
  }
}

.site-header-top .log-in,
.site-header-top .open-basket,
.site-header-top .user-name {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: 1;
  text-align: center;
}

.site-header-top .log-in.btn-glyph-text::before,
.site-header-top .open-basket.btn-glyph-text::before,
.site-header-top .user-name.btn-glyph-text::before,
.site-header-top .log-in.btn-icon-text::before,
.site-header-top .open-basket.btn-icon-text::before,
.site-header-top .user-name.btn-icon-text::before {
  margin-right: 0;
  transform: translateY(-1px);
}

.store-product .quantity-field.with-open-basket {
  display: flex !important;
  align-items: stretch;
  justify-content: flex-start !important;
  height: 42px;
  border: 1px solid rgb(112 216 255 / 0.16);
  border-radius: 14px;
  background: linear-gradient(180deg, rgb(10 16 28 / 0.94), rgb(6 10 18 / 0.98));
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.05), 0 8px 18px rgb(0 0 0 / 0.16);
  overflow: hidden;
}

.store-product .quantity-field.with-open-basket input[type=number] {
  width: 40px;
  min-width: 40px;
  margin: 0 !important;
  color: #f7fbff;
  font-weight: 700;
  text-align: center;
  order: 1;
}

.store-product .quantity-field.with-open-basket .open-basket {
  display: none !important;
}

.store-product .quantity-field.with-open-basket .open-basket.btn-glyph-text::before,
.store-product .quantity-field.with-open-basket .open-basket.btn-icon-text::before {
  margin-right: 0;
  transform: none;
}

.store-product .quantity-field.with-open-basket .adjust {
  width: 36px;
  min-width: 36px;
  position: relative;
  display: block;
  background: linear-gradient(180deg, rgb(255 255 255 / 0.04), rgb(255 255 255 / 0.015));
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  color: transparent !important;
  font-size: 0 !important;
  line-height: 0 !important;
  text-align: center;
}

.store-product .quantity-field.with-open-basket .adjust.decrease {
  order: 0;
  margin-right: 0;
  border-right: 1px solid rgb(112 216 255 / 0.12);
}

.store-product .quantity-field.with-open-basket .adjust.increase {
  order: 2;
  margin-left: 0;
  border-left: 1px solid rgb(112 216 255 / 0.12);
}

.store-product .quantity-field.with-open-basket .adjust::before {
  content: "" !important;
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #f4fbff !important;
  mask: url("https://template-assets.tebex.io/images/plus.svg") no-repeat center center !important;
  mask-size: 10px !important;
}

.store-product .quantity-field.with-open-basket .adjust.decrease::before {
  mask-image: url("https://template-assets.tebex.io/images/minus.svg") !important;
}

.store-product .quantity-field.with-open-basket .adjust:hover,
.store-product .quantity-field.with-open-basket .adjust:focus,
.store-product .quantity-field.with-open-basket .open-basket:hover,
.store-product .quantity-field.with-open-basket .open-basket:focus {
  background: linear-gradient(180deg, rgb(112 216 255 / 0.18), rgb(255 255 255 / 0.04));
  box-shadow: inset 0 0 0 1px rgb(122 196 255 / 0.18);
}

.store-products-list .store-product .quantity-field.with-open-basket .open-basket {
  padding: 0 12px !important;
  font-size: 13px !important;
}

.store-products-list .store-product .actions > *:has(.quantity-field.with-open-basket) {
  flex: 0 0 auto !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
}

.store-product .actions[data-package-type="subscription"] .quantity-field,
.store-product .actions[data-package-type="recurring"] .quantity-field,
.store-product .actions[data-package-type="sub"] .quantity-field,
.store-product-full .actions[data-package-type="subscription"] .quantity-field,
.store-product-full .actions[data-package-type="recurring"] .quantity-field,
.store-product-full .actions[data-package-type="sub"] .quantity-field {
  display: none !important;
}


@media (width > 960px) {
  body.has-hero .site-header-top .site-title {
    display: none;
  }

  .site-header-top {
    z-index: 6;
    min-height: 72px;
  }

  .site-navigation {
    position: absolute;
    top: 18px;
    left: 50%;
    right: auto;
    bottom: auto;
    z-index: 7;
    width: max-content;
    max-width: calc(100% - 320px);
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 72px;
    transform: translateX(-50%);
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    pointer-events: none;
  }

  .site-navigation.stuck {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none;
  }

  .site-navigation .menu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    max-width: 100%;
    min-height: 72px;
    margin: 0;
    padding: 0;
    gap: 10px;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    pointer-events: auto;
  }

  .site-navigation .menu > .menu-item {
    flex: 0 0 auto;
  }

  .site-navigation li.site-title-link {
    display: none;
  }

  .site-navigation .menu-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 20px;
    border: 1px solid rgb(255 255 255 / 0.06);
    border-radius: 14px;
    background: linear-gradient(180deg, rgb(255 255 255 / 0.05), rgb(255 255 255 / 0.02));
    box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.08);
    color: #f2fbff;
    font-weight: 600;
  }

  .site-navigation .menu-link:hover,
  .site-navigation .menu-link.active,
  .site-navigation .menu-link.link-active {
    border-color: rgb(112 216 255 / 0.22);
    background: linear-gradient(180deg, rgb(255 255 255 / 0.07), rgb(255 255 255 / 0.03));
    box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.08), 0 0 22px rgb(112 216 255 / 0.12);
  }

  .site-navigation .menu-sub {
    top: calc(100% + 8px);
  }
}

.site-footer-inner .we-accept {
  align-items: center;
}

.site-footer-inner .we-accept li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
}

.site-footer-inner .we-accept img {
  display: block;
  width: auto;
  height: 24px;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
  vertical-align: middle;
}

/* Dark mode only */

.site-header-top .color-scheme {
  display: none !important;
}

@media (width > 960px) {
  .site-header-top .log-in,
  .site-header-top .user-name {
    margin-left: 0 !important;
    margin-right: auto;
  }
}

html,
html.color-scheme-auto,
html.color-scheme-light,
html.color-scheme-dark {
  color-scheme: only dark !important;
  background: #03060d;
}

:root.color-scheme-auto,
:root.color-scheme-light,
:root.color-scheme-dark {
  --color-text: #e8f3ff;
  --color-text-darker: #f7fbff;
  --color-text-secondary: #97abc4;
  --color-text-dark: #07101b;
  --color-bg: #05080f;
  --color-brighter-bg: rgb(10 16 28 / 72%);
  --color-input-bg: rgb(11 19 32 / 92%);
  --color-popup-bg: rgb(2 5 12 / 74%);
  --color-primary: #70d8ff;
  --color-primary-hover: #c9f5ff;
  --color-primary-text: #03111c;
  --color-primary-text-hover: #03111c;
  --color-secondary: rgb(16 27 45 / 94%);
  --color-secondary-hover: rgb(23 38 60 / 98%);
  --color-secondary-text: #d6e6f7;
  --color-secondary-text-hover: #fff;
  --color-tertiary: rgb(255 255 255 / 0.025);
  --color-tertiary-hover: rgb(112 216 255 / 0.12);
  --color-tertiary-text: #e8f4ff;
  --color-tertiary-text-hover: #fff;
  --color-removed: #ff8196;
  --panel-bg: linear-gradient(180deg, rgb(11 18 31 / 88%), rgb(6 10 19 / 94%));
  --panel-bg-soft: linear-gradient(180deg, rgb(12 19 32 / 78%), rgb(7 11 20 / 82%));
  --panel-border: rgb(128 185 255 / 0.16);
  --panel-highlight: rgb(188 232 255 / 0.08);
  --panel-shadow: 0 28px 80px rgb(0 0 0 / 0.55);
  --page-base-bg: #03060d;
  --page-background:
    radial-gradient(circle at top, rgb(10 18 32 / 0.32), transparent 32%),
    linear-gradient(180deg, #04070d 0%, #06101b 38%, #04070e 100%);
  --page-before-bg:
    radial-gradient(circle at 18% 18%, rgb(92 203 255 / 0.14), transparent 22%),
    radial-gradient(circle at 78% 10%, rgb(77 126 255 / 0.16), transparent 22%),
    radial-gradient(circle at 50% 0%, rgb(255 255 255 / 0.08), transparent 18%),
    radial-gradient(circle at 20% 30%, rgb(255 255 255 / 0.22) 0 1px, transparent 2px),
    radial-gradient(circle at 70% 38%, rgb(255 255 255 / 0.14) 0 1px, transparent 2px),
    radial-gradient(circle at 42% 78%, rgb(255 255 255 / 0.18) 0 1px, transparent 2px),
    radial-gradient(circle at 86% 64%, rgb(255 255 255 / 0.16) 0 1px, transparent 2px);
  --page-after-bg:
    radial-gradient(circle at 50% 8%, rgb(113 227 255 / 0.18), transparent 15%),
    radial-gradient(circle at 50% 2%, rgb(255 255 255 / 0.28), transparent 7%),
    linear-gradient(180deg, transparent 0%, rgb(4 8 15 / 0.16) 30%, rgb(4 8 15 / 0.74) 100%);
}

:root.color-scheme-light .site-header-top::before,
:root.color-scheme-auto .site-header-top::before,
:root.color-scheme-light .site-footer-inner,
:root.color-scheme-auto .site-footer-inner,
:root.color-scheme-light .popup-content,
:root.color-scheme-auto .popup-content,
:root.color-scheme-light .basket-popup-content,
:root.color-scheme-auto .basket-popup-content {
  background: linear-gradient(180deg, rgb(12 18 31 / 0.92), rgb(6 10 18 / 0.96)) !important;
  box-shadow: var(--panel-shadow), inset 0 1px 0 rgb(255 255 255 / 0.06) !important;
}

:root.color-scheme-light .site-header::before,
:root.color-scheme-auto .site-header::before {
  background:
    linear-gradient(180deg, rgb(7 11 19 / 0.18), rgb(4 8 15 / 0.68) 48%, rgb(4 8 15 / 0.94) 100%),
    radial-gradient(circle at 50% 7%, rgb(255 255 255 / 0.42), transparent 7%),
    radial-gradient(circle at 50% 8%, rgb(120 227 255 / 0.18), transparent 16%),
    radial-gradient(circle at 50% 8%, transparent 0 7%, rgb(108 210 255 / 0.14) 9%, transparent 17%) !important;
  border-color: rgb(146 219 255 / 0.1) !important;
}

:root.color-scheme-light .site-header::after,
:root.color-scheme-auto .site-header::after {
  background:
    linear-gradient(90deg, transparent, rgb(255 255 255 / 0.04), transparent),
    radial-gradient(circle at top left, rgb(112 216 255 / 0.08), transparent 26%) !important;
}

:root.color-scheme-light .site-bg-image,
:root.color-scheme-auto .site-bg-image {
  opacity: 0.76 !important;
  filter: saturate(1.08) brightness(0.56) contrast(1.08) !important;
}

/* Starfield hero override */

.site-bg-image,
.site-header .hero-image {
  display: none !important;
}

.site-bg-image,
.site-header .hero-image,
.site-header .site-title,
.site-header .site-actions {
  animation: none !important;
  animation-timeline: auto !important;
  transform: none !important;
  will-change: auto !important;
}

body {
  position: relative !important;
  isolation: isolate;
  background:
    linear-gradient(180deg, #01040a 0%, #020814 55%, #01040a 100%) !important;
  animation: none !important;
}

body::before {
  content: "" !important;
  position: fixed !important;
  inset: -4% !important;
  z-index: 0 !important;
  pointer-events: none !important;
  animation: none !important;
  transform: none !important;
  opacity: 0.95 !important;
  background:
    radial-gradient(circle at 8% 14%, rgb(255 255 255 / 0.88) 0 1px, transparent 1.8px),
    radial-gradient(circle at 22% 30%, rgb(255 255 255 / 0.7) 0 1px, transparent 1.7px),
    radial-gradient(circle at 36% 18%, rgb(255 255 255 / 0.8) 0 1px, transparent 1.8px),
    radial-gradient(circle at 52% 10%, rgb(255 255 255 / 0.9) 0 1px, transparent 1.9px),
    radial-gradient(circle at 68% 26%, rgb(255 255 255 / 0.76) 0 1px, transparent 1.8px),
    radial-gradient(circle at 84% 16%, rgb(255 255 255 / 0.82) 0 1px, transparent 1.8px),
    radial-gradient(circle at 14% 58%, rgb(255 255 255 / 0.68) 0 1px, transparent 1.6px),
    radial-gradient(circle at 28% 76%, rgb(255 255 255 / 0.8) 0 1px, transparent 1.8px),
    radial-gradient(circle at 48% 68%, rgb(255 255 255 / 0.72) 0 1px, transparent 1.7px),
    radial-gradient(circle at 62% 84%, rgb(255 255 255 / 0.78) 0 1px, transparent 1.8px),
    radial-gradient(circle at 80% 74%, rgb(255 255 255 / 0.7) 0 1px, transparent 1.7px),
    radial-gradient(circle at 94% 88%, rgb(255 255 255 / 0.8) 0 1px, transparent 1.8px);
  background-size: 260px 260px, 300px 300px, 280px 280px, 320px 320px, 340px 340px, 300px 300px, 280px 280px, 320px 320px, 360px 360px, 320px 320px, 340px 340px, 380px 380px !important;
  background-repeat: repeat !important;
  filter: none !important;
}

body::after {
  content: "" !important;
  position: fixed !important;
  inset: -4% !important;
  z-index: 0 !important;
  pointer-events: none !important;
  animation: none !important;
  transform: none !important;
  opacity: 0.45 !important;
  background:
    radial-gradient(circle at 8% 14%, rgb(120 210 255 / 0.28) 0 2.8px, transparent 7px),
    radial-gradient(circle at 22% 30%, rgb(120 210 255 / 0.2) 0 2.4px, transparent 6px),
    radial-gradient(circle at 36% 18%, rgb(160 225 255 / 0.24) 0 2.6px, transparent 6.5px),
    radial-gradient(circle at 52% 10%, rgb(160 225 255 / 0.32) 0 3px, transparent 7.5px),
    radial-gradient(circle at 68% 26%, rgb(120 210 255 / 0.22) 0 2.5px, transparent 6.5px),
    radial-gradient(circle at 84% 16%, rgb(160 225 255 / 0.24) 0 2.7px, transparent 7px),
    radial-gradient(circle at 14% 58%, rgb(120 210 255 / 0.18) 0 2.2px, transparent 5.8px),
    radial-gradient(circle at 28% 76%, rgb(160 225 255 / 0.22) 0 2.6px, transparent 6.8px),
    radial-gradient(circle at 48% 68%, rgb(120 210 255 / 0.2) 0 2.3px, transparent 6px),
    radial-gradient(circle at 62% 84%, rgb(160 225 255 / 0.24) 0 2.7px, transparent 6.8px),
    radial-gradient(circle at 80% 74%, rgb(120 210 255 / 0.18) 0 2.3px, transparent 6px),
    radial-gradient(circle at 94% 88%, rgb(160 225 255 / 0.22) 0 2.6px, transparent 6.6px) !important;
  background-size: 260px 260px, 300px 300px, 280px 280px, 320px 320px, 340px 340px, 300px 300px, 280px 280px, 320px 320px, 360px 360px, 320px 320px, 340px 340px, 380px 380px !important;
  background-repeat: repeat !important;
  filter: none !important;
}

body > :not(script):not(style) {
  position: relative;
  z-index: 1;
}

.site {
  gap: clamp(14px, 1.8vw, 24px) !important;
}

.site-header {
  min-height: clamp(220px, 28vw, 360px) !important;
  padding-top: clamp(18px, 3vw, 34px) !important;
  padding-bottom: clamp(14px, 2vw, 24px) !important;
  display: grid;
  align-items: center;
  overflow: visible !important;
}

body.no-hero.is-logo-centered .site-header,
body.has-hero .site-header {
  min-height: clamp(220px, 28vw, 360px) !important;
}

body.has-hero .site-header .site-title,
body.is-logo-centered.has-hero .site-header .site-title {
  position: relative !important;
  inset: auto !important;
  margin: 0 auto !important;
}

.site-header .site-actions {
  margin-top: 0 !important;
}

.site-header,
:root.color-scheme-light .site-header,
:root.color-scheme-auto .site-header,
:root.color-scheme-dark .site-header {
  background: transparent !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
}

.site-header::before {
  content: none !important;
}

 :root.color-scheme-light .site-header::before,
 :root.color-scheme-auto .site-header::before,
 :root.color-scheme-dark .site-header::before {
  content: none !important;
  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
}

.site-header::after,
:root.color-scheme-light .site-header::after,
:root.color-scheme-auto .site-header::after,
:root.color-scheme-dark .site-header::after {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  bottom: 0 !important;
  width: min(820px, 68vw) !important;
  height: min(820px, 68vw) !important;
  z-index: 0 !important;
  pointer-events: none !important;
  background: url("https://cdn.tebex.io/store/1791791/templates/286341/assets/6a99b70feb450c0f0e6dbc350aea7c91b65602d2.png") center center / contain no-repeat !important;
  opacity: 1 !important;
  border: 0 !important;
  box-shadow: none !important;
  filter: drop-shadow(0 10px 34px rgb(0 0 0 / 0.28));
  transform: translate(-50%, -150px) !important;
}

/* Performance trim */

:root,
:root.color-scheme-light,
:root.color-scheme-auto,
:root.color-scheme-dark {
  --bg-blur: none !important;
  --panel-shadow: 0 10px 24px rgb(0 0 0 / 0.26) !important;
}

body::before {
  inset: 0 !important;
  opacity: 0.9 !important;
  background:
    radial-gradient(circle at 10% 16%, rgb(255 255 255 / 0.86) 0 1px, transparent 1.8px),
    radial-gradient(circle at 28% 32%, rgb(255 255 255 / 0.72) 0 1px, transparent 1.7px),
    radial-gradient(circle at 48% 14%, rgb(255 255 255 / 0.82) 0 1px, transparent 1.8px),
    radial-gradient(circle at 68% 28%, rgb(255 255 255 / 0.76) 0 1px, transparent 1.8px),
    radial-gradient(circle at 20% 74%, rgb(255 255 255 / 0.76) 0 1px, transparent 1.8px),
    radial-gradient(circle at 82% 78%, rgb(255 255 255 / 0.74) 0 1px, transparent 1.8px) !important;
  background-size: 320px 320px, 360px 360px, 340px 340px, 380px 380px, 360px 360px, 400px 400px !important;
}

body::after {
  content: none !important;
}

.site-header-top,
.site-header,
.site-navigation,
.site-content,
.site-footer,
.site-bg-image {
  view-transition-name: none !important;
}

.site-header-top::before,
.site-navigation .menu,
.site-footer-inner,
.popup-content,
.basket-popup-content,
.store-home .store-text,
.category-header,
.store-products-images .store-product,
.store-products-list .store-product,
.store-product-full,
.store-sidebar > *,
.basket .basket-second-header,
.basket .basket-item,
.basket .basket-checkout,
.site-home-categories .category {
  backdrop-filter: none !important;
  box-shadow: 0 10px 24px rgb(0 0 0 / 0.22) !important;
}

.store-home .store-text,
.category-header,
.store-products-images .store-product,
.store-products-list .store-product,
.store-product-full,
.store-sidebar > *,
.site-home-categories .category {
  animation: none !important;
}

.site-header::after,
:root.color-scheme-light .site-header::after,
:root.color-scheme-auto .site-header::after,
:root.color-scheme-dark .site-header::after,
.site-header .site-title img {
  filter: none !important;
}
