@import url("https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&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;
  --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;
}

@view-transition {
  navigation: auto;
}
::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 .site-link {
  --btn-icon: url("https://template-assets.tebex.io/images/globe.svg");
}
.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;
}
.site-header-top .open-basket {
  --btn-icon: url("https://template-assets.tebex.io/images/checkout.svg");
}
.site-header-top .user-name {
  --btn-icon: url("https://template-assets.tebex.io/images/log-out.svg");
  margin-left: auto;
  contain: paint;
}
@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: "";
  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;
}
.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: "";
  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;
}
.store-product-options .actions .btn-primary,
.store-product-options .actions .btn-secondary,
.store-product-options .actions .btn-tertiary {
  width: 230px;
}
.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) {
  margin-block: 5px;
}
.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 .trial {
  display: block;
  margin-block: 4px;
  width: fit-content;
  padding: 8px 14px;
  letter-spacing: 0.04em;
  color: var(--color-primary-text);
  background: var(--color-primary);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
}
.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%;
}
/* ========================================================================== 
   EVE MC PREMIUM THEME — lightweight visual layer
   ========================================================================== */
:root,
:root.color-scheme-dark,
:root.color-scheme-auto {
  --eve-bg: #08070d;
  --eve-bg-soft: #0f0d17;
  --eve-panel: rgba(19, 16, 29, .88);
  --eve-panel-solid: #14111f;
  --eve-panel-hover: #1a1628;
  --eve-line: rgba(255, 255, 255, .09);
  --eve-line-strong: rgba(182, 123, 255, .25);
  --eve-text: #f6f2ff;
  --eve-muted: #a9a2b8;
  --eve-purple: #a96bff;
  --eve-purple-2: #7c4dff;
  --eve-blue: #72a9ff;
  --eve-success: #64e6bb;
  --color-text: var(--eve-text);
  --color-text-darker: #ffffff;
  --color-text-secondary: var(--eve-muted);
  --color-text-dark: #09070e;
  --color-bg: var(--eve-bg);
  --color-brighter-bg: rgba(20, 17, 31, .94);
  --color-input-bg: #171320;
  --color-popup-bg: rgba(4, 3, 8, .82);
  --color-primary: var(--eve-purple);
  --color-primary-hover: #bd8aff;
  --color-primary-text: #0b0711;
  --color-primary-text-hover: #09060e;
  --color-secondary: #201a2e;
  --color-secondary-hover: #2a223b;
  --color-secondary-text: var(--eve-text);
  --color-secondary-text-hover: #fff;
  --color-tertiary-hover: rgba(255, 255, 255, .07);
  --content-inner-width: 1240px;
  --header-height: auto;
  --layout-gap: 34px;
  --widget-padding: 24px;
  --products-gap: 20px;
  --bg-blur: blur(14px);
}

html { scroll-behavior: smooth; }
body {
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--eve-text);
  background:
    radial-gradient(circle at 12% -10%, rgba(124, 77, 255, .14), transparent 31rem),
    radial-gradient(circle at 88% 16%, rgba(169, 107, 255, .08), transparent 28rem),
    var(--eve-bg);
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: .16;
  background-image: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000, transparent 80%);
}

h1, h2, h3, h4, h5, h6,
.site-title,
.product-title,
.widget-title {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  letter-spacing: -.035em;
}

.site { background: transparent; }
.site-bg-image { opacity: .12; filter: saturate(.65) contrast(1.1); }

/* Header */
.site-header-top {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 76px;
  padding: 0;
  border-bottom: 1px solid var(--eve-line);
  background: rgba(8, 7, 13, .82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.site-header-top__inner {
  width: min(var(--content-inner-width), calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}
.eve-header-brand { margin-right: auto; display: flex; align-items: center; }
.eve-header-brand img { width: auto !important; max-width: 145px; height: 42px !important; object-fit: contain; }
.eve-header-brand span { font: 700 1.4rem "Space Grotesk"; }
.eve-header-nav { flex: 1; display: flex; justify-content: center; }
.eve-header-actions { margin-left: auto; display: flex; align-items: center; gap: 9px; }
.eve-header-nav .site-navigation { position: static; width: auto; padding: 0; background: none; border: 0; }
.eve-header-nav .site-navigation .menu { display: flex; align-items: center; gap: 4px; }
.eve-header-nav .site-title-link { display: none; }
.site-navigation .menu-link {
  position: relative;
  padding: 11px 13px;
  border-radius: 9px;
  color: var(--eve-muted);
  font-size: .88rem;
  font-weight: 700;
  transition: color .18s ease, background .18s ease;
}
.site-navigation .menu-link:hover { color: #fff; background: rgba(255,255,255,.045); }
.site-navigation .menu-link.link-active { color: #fff; background: rgba(169,107,255,.1); }
.site-navigation .menu-link.link-active::after {
  content: "";
  position: absolute;
  left: 13px; right: 13px; bottom: 5px;
  height: 2px; border-radius: 99px;
  background: linear-gradient(90deg, var(--eve-purple), var(--eve-blue));
}
.site-navigation .menu-sub {
  min-width: 210px;
  padding: 8px;
  border: 1px solid var(--eve-line);
  border-radius: 12px;
  background: rgba(17, 14, 25, .98);
  box-shadow: 0 18px 55px rgba(0,0,0,.42);
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-tertiary {
  min-height: 42px;
  border-radius: 10px;
  font-weight: 800;
  letter-spacing: -.01em;
  transition: transform .16s ease, border-color .16s ease, background .16s ease, box-shadow .16s ease;
}
.btn-primary {
  border: 1px solid rgba(255,255,255,.15);
  background: linear-gradient(135deg, #b679ff 0%, #8752ff 100%);
  box-shadow: 0 8px 25px rgba(125, 76, 255, .2);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 11px 30px rgba(125, 76, 255, .3); }
.btn-secondary { border: 1px solid var(--eve-line); background: rgba(255,255,255,.045); }
.btn-secondary:hover { transform: translateY(-1px); border-color: rgba(182,123,255,.35); background: rgba(255,255,255,.075); }

/* Hero */
.site-header { width: 100%; max-width: none; min-height: 0; padding: 0; }
.eve-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--eve-line);
  min-height: 430px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0c0913 0%, #100d1a 56%, #0b0911 100%);
}
.eve-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 48%, rgba(161, 94, 255, .18), transparent 24rem),
    linear-gradient(115deg, transparent 45%, rgba(255,255,255,.025));
}
.eve-hero::after {
  content: "";
  position: absolute;
  width: 540px; height: 540px;
  right: -120px; top: -230px;
  border: 1px solid rgba(169,107,255,.16);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(169,107,255,.025), 0 0 0 140px rgba(169,107,255,.018);
}
.eve-hero .site-hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .12; filter: grayscale(.15) saturate(.8); }
.eve-hero__backdrop { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,7,13,.98) 0%, rgba(8,7,13,.72) 52%, rgba(8,7,13,.25) 100%); }
.eve-hero__inner {
  position: relative;
  z-index: 2;
  width: min(var(--content-inner-width), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  align-items: center;
  gap: 50px;
  padding: 76px 0 72px;
}
.eve-eyebrow { display: inline-flex; align-items: center; gap: 9px; color: #c89fff; font-size: .73rem; font-weight: 800; letter-spacing: .18em; }
.eve-eyebrow::before { content: ""; width: 24px; height: 1px; background: currentColor; }
.eve-hero__content h2 { max-width: 680px; margin-top: 16px; font-size: clamp(2.7rem, 5.8vw, 5.35rem); line-height: .96; font-weight: 700; }
.eve-hero__content h2 span { color: transparent; background: linear-gradient(90deg, #fff 0%, #bc8aff 54%, #7baaff 100%); -webkit-background-clip: text; background-clip: text; }
.eve-hero__content p { max-width: 590px; margin-top: 22px; color: var(--eve-muted); font-size: 1.02rem; line-height: 1.75; }
.eve-hero__actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 30px; }
.eve-hero__cta { min-width: 150px; justify-content: center; text-align: center; }
.eve-hero__brand { display: flex; justify-content: center; align-items: center; min-height: 230px; }
.eve-hero__brand img { max-width: min(430px, 100%); max-height: 220px; object-fit: contain; filter: drop-shadow(0 22px 35px rgba(0,0,0,.48)) drop-shadow(0 0 26px rgba(162,98,255,.13)); }
.eve-hero__brand span { font: 700 clamp(3rem,7vw,7rem) "Space Grotesk"; color: #fff; }

/* Main content */
.site-content { width: min(var(--content-inner-width), calc(100% - 40px)); padding-top: 52px; padding-bottom: 70px; }
.site-content::before { content: "STORE"; display: block; margin-bottom: 10px; color: var(--eve-purple); font-size: .7rem; font-weight: 800; letter-spacing: .18em; }
.store-content, .store-sidebar > *, .store-text, .store-form, .widget {
  border: 1px solid var(--eve-line);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(21,18,31,.93), rgba(14,12,21,.93));
  box-shadow: 0 18px 60px rgba(0,0,0,.16);
}
.store-content { overflow: hidden; }
.store-sidebar { gap: 18px; }
.store-sidebar > *, .widget { overflow: hidden; }
.widget-title, .store-sidebar h2, .store-sidebar h3 { padding-bottom: 15px; border-bottom: 1px solid var(--eve-line); font-size: 1.02rem; }

/* Products */
.store-products-images { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--products-gap); }
.store-product {
  position: relative;
  overflow: hidden;
  padding: 13px;
  border: 1px solid var(--eve-line);
  border-radius: 15px;
  background: linear-gradient(155deg, rgba(24,20,35,.98), rgba(15,13,22,.98));
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.store-product:hover { transform: translateY(-4px); border-color: var(--eve-line-strong); box-shadow: 0 18px 40px rgba(0,0,0,.28); }
.store-product .image-link { overflow: hidden; border-radius: 11px; background: #0c0a11; }
.store-product .image { width: 100%; transition: transform .28s ease, opacity .2s ease; }
.store-product:hover .image { transform: scale(1.025); }
.store-product .product-title { margin: 16px 3px 5px; font-size: 1.03rem; font-weight: 700; }
.store-product .product-title a:hover { color: #cba6ff; }
.store-product .actions { margin-top: 13px; padding-top: 13px; border-top: 1px solid var(--eve-line); }
.store-product .price { color: #fff; font-weight: 800; }
.store-product .price .discount { color: #827b90; font-weight: 500; }
.store-product .gift { opacity: .7; }
.store-product .gift:hover { opacity: 1; }
.store-product-full { padding: 22px; }

/* Forms, basket and popups */
.store-form input, .store-form select, .store-form textarea,
input[type=text], input[type=email], input[type=password], input[type=number], select, textarea {
  border: 1px solid var(--eve-line);
  border-radius: 10px;
  background: rgba(255,255,255,.04);
}
.store-form input:focus, .store-form select:focus, .store-form textarea:focus { border-color: rgba(169,107,255,.6); box-shadow: 0 0 0 3px rgba(169,107,255,.1); }
.popup .site, .popup-content, .basket { border: 1px solid var(--eve-line); border-radius: 18px; background: #110e19; box-shadow: 0 30px 90px rgba(0,0,0,.55); }

/* Footer */
.site-footer { padding: 0; border-top: 1px solid var(--eve-line); background: #09070e; }
.site-footer-inner { width: min(var(--content-inner-width), calc(100% - 40px)); padding: 40px 0 34px; }
.eve-footer-main { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-bottom: 28px; }
.eve-footer-brand { display: flex; align-items: center; gap: 14px; }
.eve-footer-brand img { width: auto; height: 38px; max-width: 130px; object-fit: contain; }
.eve-footer-brand div { display: grid; gap: 2px; }
.eve-footer-brand strong { font: 700 1rem "Space Grotesk"; }
.eve-footer-brand span, .eve-footer-note, .copyright { color: var(--eve-muted); font-size: .78rem; }
.eve-footer-note { max-width: 460px; line-height: 1.6; text-align: right; }
.eve-footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding-top: 24px; border-top: 1px solid var(--eve-line); }
.we-accept { opacity: .72; }
.we-accept img { filter: grayscale(1) brightness(1.5); max-height: 22px; }
.copyright { max-width: 650px; text-align: right; }

@media (max-width: 1000px) {
  .eve-header-nav { display: none !important; }
  .eve-hero__inner { grid-template-columns: 1fr .7fr; }
  .store-products-images { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .site-header-top, .site-header-top__inner { min-height: 66px; }
  .site-header-top__inner { width: min(100% - 24px, var(--content-inner-width)); gap: 10px; }
  .eve-header-brand { position: absolute; left: 50%; transform: translateX(-50%); }
  .eve-header-brand img { max-width: 105px; height: 34px !important; }
  .eve-header-actions .user-name, .eve-header-actions .color-scheme { display: none; }
  .eve-mobile-navigation .site-navigation { top: 66px; }
  .eve-hero { min-height: 0; }
  .eve-hero__inner { grid-template-columns: 1fr; padding: 62px 0 52px; }
  .eve-hero__content { text-align: center; }
  .eve-eyebrow { justify-content: center; }
  .eve-hero__content p { margin-inline: auto; }
  .eve-hero__actions { justify-content: center; }
  .eve-hero__brand { display: none; }
  .site-content { width: min(100% - 24px, var(--content-inner-width)); padding-top: 34px; }
  .store-products-images { grid-template-columns: 1fr; }
  .eve-footer-main, .eve-footer-bottom { flex-direction: column; align-items: flex-start; }
  .eve-footer-note, .copyright { text-align: left; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}


/* ==========================================================================
   EVE MC v3 — layout corrections
   Keeps the store fast and fixes the Tebex sidebar/content column flow.
   ========================================================================== */

/* The logo used to inherit Tebex's absolutely-positioned .site-title rule. */
.site-header-top .eve-header-brand {
  position: static;
  inset: auto;
  flex: 0 0 auto;
  margin: 0;
  width: auto;
  max-width: 150px;
  height: 52px;
  min-width: 92px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: visible;
}
.site-header-top .eve-header-brand img {
  display: block;
  width: auto !important;
  height: 48px !important;
  max-width: 150px !important;
  max-height: 48px !important;
  object-fit: contain;
}
.site-header-top__inner {
  justify-content: flex-start;
}
.eve-header-nav {
  flex: 1 1 auto;
  justify-content: flex-start;
  min-width: 0;
}
.eve-header-actions {
  flex: 0 0 auto;
  margin-left: auto;
}

/* No hero/banner section on the store pages. */
.site-header,
.eve-hero {
  display: none !important;
}

/* The theme is intentionally dark-only, so hide any legacy toggle too. */
.color-scheme {
  display: none !important;
}

/* Main store spacing starts directly below the header. */
.site-content {
  width: min(var(--content-inner-width), calc(100% - 40px));
  max-width: var(--content-inner-width);
  margin-inline: auto;
  padding: 48px 0 72px;
}
.site-content::before {
  display: none;
  content: none;
}

/* Desktop: always give sidebar and content their own real columns. */
@media (width > 960px) {
  body:not(.is-sidebar-bottom) .site-content-widgets {
    display: grid;
    grid-template-columns: 286px minmax(0, 1fr);
    align-items: start;
    gap: 32px;
  }

  /* Tebex adds no class for the default/left position. */
  body:not(.is-sidebar-right):not(.is-sidebar-bottom) .site-content-widgets > .store-sidebar {
    grid-column: 1;
    grid-row: 1;
    order: initial;
  }
  body:not(.is-sidebar-right):not(.is-sidebar-bottom) .site-content-widgets > main,
  body:not(.is-sidebar-right):not(.is-sidebar-bottom) .site-content-widgets > .store-content {
    grid-column: 2;
    grid-row: 1;
  }

  body.is-sidebar-right:not(.is-sidebar-bottom) .site-content-widgets {
    grid-template-columns: minmax(0, 1fr) 286px;
  }
  body.is-sidebar-right:not(.is-sidebar-bottom) .site-content-widgets > main,
  body.is-sidebar-right:not(.is-sidebar-bottom) .site-content-widgets > .store-content {
    grid-column: 1;
    grid-row: 1;
  }
  body.is-sidebar-right:not(.is-sidebar-bottom) .site-content-widgets > .store-sidebar {
    grid-column: 2;
    grid-row: 1;
  }

  /* Pages where the sidebar module is disabled use the full width. */
  .site-content-widgets:not(:has(.store-sidebar)) {
    grid-template-columns: minmax(0, 1fr) !important;
  }
  .site-content-widgets:not(:has(.store-sidebar)) > main,
  .site-content-widgets:not(:has(.store-sidebar)) > .store-content {
    grid-column: 1 !important;
  }
}

.site-content-widgets > main,
.site-content-widgets > .store-content,
.store-products-images,
.store-products-list,
.store-products-tiered {
  min-width: 0;
  width: 100%;
}

.store-sidebar {
  width: 100%;
  min-width: 0;
}
.store-sidebar > * {
  width: 100%;
}

/* Cards have enough room and no longer clip their purchase action. */
.store-products-images {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.store-product .actions {
  min-width: 0;
}
.store-product .actions > * {
  max-width: 100%;
}

@media (width <= 1100px) and (width > 960px) {
  body:not(.is-sidebar-bottom) .site-content-widgets,
  body.is-sidebar-right:not(.is-sidebar-bottom) .site-content-widgets {
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 24px;
  }
  body.is-sidebar-right:not(.is-sidebar-bottom) .site-content-widgets {
    grid-template-columns: minmax(0, 1fr) 250px;
  }
}

@media (width <= 960px) {
  .site-header-top .eve-header-brand {
    position: absolute;
    left: 50%;
    translate: -50% 0;
    min-width: 0;
    height: 46px;
  }
  .site-header-top .eve-header-brand img {
    height: 40px !important;
    max-width: 118px !important;
  }
  .site-content {
    width: min(100% - 24px, var(--content-inner-width));
    padding: 32px 0 56px;
  }
  .site-content-widgets {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .site-content-widgets > main,
  .site-content-widgets > .store-content {
    order: 1;
  }
  .site-content-widgets > .store-sidebar {
    order: 2;
  }
}

@media (width <= 680px) {
  .store-products-images {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ========================================================================== 
   EVE MC v4 — full-width glass header, roomier widgets, natural page text
   ========================================================================== */

/* Full-width sticky glass header. The inner content stays neatly aligned. */
.site-header-top {
  position: sticky !important;
  top: 0;
  z-index: 1000;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  min-height: 74px;
  border-bottom: 1px solid rgba(202, 174, 255, .13);
  background: rgba(8, 7, 14, .66);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .18);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
}
.site-header-top__inner {
  width: min(var(--content-inner-width), calc(100% - 40px));
  max-width: var(--content-inner-width);
  min-height: 74px;
  margin: 0 auto;
  padding: 0;
}

/* Let content visibly pass under the translucent header while scrolling. */
.site { overflow: visible; }

/* Lightweight particles: CSS only, fixed, non-interactive and GPU-cheap. */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .34;
  background-image:
    radial-gradient(circle, rgba(190, 130, 255, .72) 0 1px, transparent 1.6px),
    radial-gradient(circle, rgba(105, 151, 255, .52) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(255, 255, 255, .28) 0 1px, transparent 1.4px);
  background-size: 137px 137px, 193px 193px, 251px 251px;
  background-position: 11px 19px, 67px 83px, 121px 37px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), rgba(0,0,0,.28) 75%, transparent);
}

/* Main page text should read like page content, not a cramped widget. */
.store-text {
  width: 100% !important;
  max-width: none !important;
  margin-inline: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--color-text-secondary);
  font-size: .98rem;
  line-height: 1.65;
}
.store-text > * { max-width: none; }
.store-text p + p { margin-top: 1rem; }
.store-home .store-text { margin-bottom: 32px; }

/* Keep actual content comfortably wide beside the sidebar. */
@media (width > 960px) {
  body:not(.is-sidebar-bottom) .site-content-widgets {
    grid-template-columns: 268px minmax(0, 1fr);
    gap: 40px;
  }
  body.is-sidebar-right:not(.is-sidebar-bottom) .site-content-widgets {
    grid-template-columns: minmax(0, 1fr) 268px;
  }
}

/* Sidebar widgets: slightly smaller contents, more breathing room, no clipping. */
.store-sidebar {
  gap: 16px !important;
  padding-top: 0 !important;
}
.store-sidebar > *,
.widget {
  min-width: 0;
  overflow: hidden;
  border-radius: 15px;
}
.store-sidebar .widget-title,
.store-sidebar h2,
.store-sidebar h3,
.widget-title {
  min-height: 48px;
  margin: 0 !important;
  padding: 14px 16px 13px !important;
  line-height: 1.25;
  font-size: .9rem !important;
  letter-spacing: -.02em;
  overflow: visible;
}
.store-sidebar .widget-content,
.store-sidebar .widget-body,
.store-sidebar > * > :not(.widget-title):not(h2):not(h3) {
  min-width: 0;
}

/* Recent donor / community avatar rows. */
.store-sidebar img:not(.image),
.widget img:not(.image) {
  flex: 0 0 auto;
  max-width: 100%;
}
.store-sidebar .avatar,
.store-sidebar [class*="avatar"] img,
.store-sidebar [class*="player"] img,
.store-sidebar [class*="donator"] img,
.store-sidebar [class*="payment"] img {
  width: 38px !important;
  height: 38px !important;
  min-width: 38px;
  object-fit: cover;
  border-radius: 8px;
}
.store-sidebar [class*="username"],
.store-sidebar [class*="ign"],
.store-sidebar [class*="player"],
.store-sidebar [class*="donator"] {
  min-width: 0;
  font-size: .82rem;
  line-height: 1.35;
}

/* Featured package widget: reduce media and typography just enough to fit. */
.store-sidebar .widget-featured .store-product,
.store-sidebar .store-product {
  padding: 10px;
  border-radius: 13px;
}
.store-sidebar .store-product .image-link {
  border-radius: 10px;
}
.store-sidebar .store-product .image {
  width: 100%;
  max-height: 190px;
  object-fit: contain;
}
.store-sidebar .store-product .product-title {
  margin: 12px 4px 4px;
  font-size: .88rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.store-sidebar .store-product .actions {
  margin-top: 10px;
  padding-top: 10px;
  gap: 8px;
}
.store-sidebar .store-product .price {
  font-size: 1.05rem;
}
.store-sidebar .store-product .btn-primary,
.store-sidebar .store-product .btn-secondary,
.store-sidebar .store-product .btn-tertiary {
  width: 100%;
  min-width: 0;
  min-height: 38px;
  padding-inline: 10px;
  justify-content: center;
  text-align: center;
  font-size: .82rem;
  white-space: normal;
}

/* List-style product rows must never cut off the button or item name. */
.store-products-list .store-product {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 18px;
}
.store-products-list .store-product .image-link {
  display: none;
}
.store-products-list .store-product .product-title {
  min-width: 0;
  margin: 0;
  line-height: 1.4;
  overflow-wrap: anywhere;
}
.store-products-list .store-product .actions {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}
.store-products-list .store-product .actions,
.store-products-list .store-product .actions-multiple {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}
.store-products-list .store-product .btn-primary,
.store-products-list .store-product .btn-secondary,
.store-products-list .store-product .btn-tertiary {
  min-width: 128px;
  max-width: 100%;
  justify-content: center;
  text-align: center;
}

/* General card internals should stay inside rounded borders. */
.store-content,
.store-product,
.widget,
.store-sidebar > * {
  contain: paint;
}
.store-product * {
  min-width: 0;
}

@media (width <= 960px) {
  .site-header-top__inner {
    width: min(100% - 24px, var(--content-inner-width));
  }
  .store-text {
    font-size: .94rem;
    line-height: 1.6;
  }
}

@media (width <= 680px) {
  .store-products-list .store-product {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }
  .store-products-list .store-product .actions,
  .store-products-list .store-product .actions-multiple {
    justify-content: stretch;
  }
  .store-products-list .store-product .btn-primary,
  .store-products-list .store-product .btn-secondary,
  .store-products-list .store-product .btn-tertiary {
    width: 100%;
  }
}

/* EVE MC v5: show three store packages per row on desktop. */
@media (width > 1200px) {
  .store-products-images {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

/* Keep cards readable on narrower desktop/tablet layouts. */
@media (width <= 1200px) and (width > 720px) {
  .store-products-images {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (width <= 720px) {
  .store-products-images {
    grid-template-columns: minmax(0, 1fr) !important;
  }
}

/* ========================================================================== 
   EVE MC v6 — unified header, cleaner donor/status widgets
   ========================================================================== */

/* Remove the second navigation "layer" inside the glass header. */
.eve-header-nav,
.eve-header-nav .site-navigation,
.eve-header-nav .site-navigation .menu {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
.eve-header-nav .site-navigation {
  margin: 0 !important;
  padding: 0 !important;
}
.eve-header-nav .site-navigation .menu {
  min-height: 74px;
  padding: 0 !important;
}
/* Keep only a subtle active state, not a large opaque card. */
.site-navigation .menu-link.link-active {
  background: rgba(166, 102, 255, .075) !important;
}

/* Recent donor row: center the avatar and text and keep skin edges visible. */
.widget-recent .widget-content {
  padding: 12px 14px 13px !important;
}
.widget-recent .purchase {
  align-items: center !important;
  gap: 11px !important;
  min-height: 44px;
  margin: 0 !important;
  overflow: visible !important;
}
.widget-recent .avatar {
  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  max-width: 42px !important;
  max-height: 42px !important;
  object-fit: contain !important;
  object-position: center !important;
  border-radius: 8px !important;
  transform: none !important;
}
.widget-recent .purchase > div,
.widget-recent .purchase > span {
  min-width: 0;
}
.widget-recent .username {
  display: block;
  margin: 0 0 1px;
  line-height: 1.25;
}

/* Server status card rebuilt into two compact information rows. */
.widget-server-status .widget-title {
  display: flex;
  align-items: center;
  gap: 9px;
}
.widget-server-status .widget-title::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 1px;
  border-radius: 50%;
  background: #45e58b;
  box-shadow: 0 0 0 4px rgba(69, 229, 139, .10), 0 0 14px rgba(69, 229, 139, .55);
}
.widget-server-status .widget-content {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 8px 14px;
  padding: 13px 16px 15px !important;
  text-align: left !important;
}
.widget-server-status h6 {
  grid-column: 1;
  margin: 0 !important;
  color: #fff;
  font-size: .85rem;
  font-weight: 750;
  line-height: 1.3;
  cursor: pointer;
  overflow-wrap: anywhere;
}
.widget-server-status h6::before {
  content: "IP";
  display: block;
  margin-bottom: 3px;
  color: var(--eve-muted);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .12em;
}
.widget-server-status h6:hover {
  color: #cfaeff;
}
.widget-server-status .eve-status-count {
  grid-column: 2;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  color: #fff;
  font-size: .83rem;
  font-weight: 800;
  white-space: nowrap;
}
.widget-server-status .eve-status-count::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #45e58b;
  box-shadow: 0 0 10px rgba(69, 229, 139, .6);
}
/* Hide the original status sentence after JS extracts its live numbers. */
.widget-server-status .eve-status-original {
  display: none !important;
}

@media (max-width: 960px) {
  .eve-header-nav .site-navigation .menu { min-height: 0; }
}

/* ========================================================================== 
   EVE MC v7 — clean basket quantity + home-only intro panel
   ========================================================================== */

/* Remove the lighter rectangle behind the basket quantity number. */
.store-product .quantity-field input.quantity,
.store-product .quantity-field input[type="number"] {
  background: transparent !important;
  background-color: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: 0 !important;
}

.store-product .quantity-field input.quantity:hover,
.store-product .quantity-field input.quantity:focus {
  background: transparent !important;
  box-shadow: none !important;
}

/* Homepage CTA panel. It is inserted by main.js only on the root homepage. */
.eve-home-intro {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(150px, .8fr);
  align-items: center;
  gap: clamp(24px, 4vw, 58px);
  width: 100%;
  min-height: 285px;
  margin: 0 0 38px;
  padding: clamp(28px, 4.2vw, 54px);
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 82% 26%, rgba(157, 91, 255, .22), transparent 35%),
    linear-gradient(135deg, rgba(20, 16, 31, .96), rgba(10, 9, 17, .92));
  border: 1px solid rgba(184, 135, 255, .18);
  border-radius: 22px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, .22);
}

.eve-home-intro::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(110deg, transparent 0 58%, rgba(135, 88, 255, .07) 58% 59%, transparent 59%),
    radial-gradient(circle at 18% 110%, rgba(88, 112, 255, .12), transparent 36%);
}

.eve-home-intro__content {
  min-width: 0;
}

.eve-home-intro__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 15px;
  color: #bd91ff;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eve-home-intro__eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: .8;
}

.eve-home-intro h1 {
  max-width: 620px;
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.45rem);
  font-weight: 780;
  letter-spacing: -.055em;
  line-height: .98;
}

.eve-home-intro h1 span {
  color: #b783ff;
}

.eve-home-intro p {
  max-width: 610px;
  margin: 20px 0 0;
  color: rgba(232, 226, 244, .72);
  font-size: clamp(.93rem, 1.35vw, 1.04rem);
  line-height: 1.65;
}

.eve-home-intro__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 26px;
  padding: 0 22px;
  color: #0a0710 !important;
  font-size: .88rem;
  font-weight: 800;
  text-decoration: none !important;
  background: linear-gradient(135deg, #bd83ff, #8f5cff);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(137, 81, 255, .22);
  transition: transform .16s ease, filter .16s ease, box-shadow .16s ease;
}

.eve-home-intro__button:hover {
  color: #0a0710 !important;
  filter: brightness(1.06);
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(137, 81, 255, .3);
}

.eve-home-intro__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: 190px;
}

.eve-home-intro__visual::before {
  content: "";
  position: absolute;
  width: min(300px, 90%);
  aspect-ratio: 1;
  border: 1px solid rgba(179, 117, 255, .13);
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(126, 76, 255, .12) inset;
}

.eve-home-intro__logo {
  position: relative;
  z-index: 1;
  display: block;
  width: min(330px, 100%);
  max-height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(72, 36, 173, .38));
}

/* Keep regular homepage text naturally flowing below the panel. */
body.eve-home-page .store-text {
  align-self: start;
}

@media (max-width: 800px) {
  .eve-home-intro {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
    padding: 30px 24px;
  }

  .eve-home-intro__visual {
    order: -1;
    min-height: 110px;
  }

  .eve-home-intro__logo {
    width: min(210px, 72%);
    max-height: 105px;
  }

  .eve-home-intro__visual::before {
    width: 170px;
  }
}

@media (max-width: 520px) {
  .eve-home-intro {
    margin-bottom: 28px;
    border-radius: 16px;
  }

  .eve-home-intro h1 {
    font-size: 2.15rem;
  }
}

/* ================================================================
   EVE MC v8 — CTA cleanup, Discord action, quantity icons and codes
   ================================================================ */

/* The small eyebrow was removed from the markup; keep spacing balanced. */
.eve-home-intro__content {
  justify-content: center;
}

.eve-home-intro__discord {
  position: absolute;
  right: 28px;
  bottom: 24px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(183, 132, 255, .32);
  border-radius: 11px;
  color: #f8f4ff;
  background: rgba(10, 8, 18, .58);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .24);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
  transition: border-color .18s ease, background-color .18s ease, transform .18s ease;
}

.eve-home-intro__discord:hover {
  border-color: rgba(192, 145, 255, .72);
  background: rgba(124, 65, 226, .32);
  transform: translateY(-2px);
}

.eve-home-intro__discord-icon {
  width: 18px;
  height: 18px;
  background: currentColor;
  mask: url("https://template-assets.tebex.io/images/discord.svg") center / contain no-repeat;
  -webkit-mask: url("https://template-assets.tebex.io/images/discord.svg") center / contain no-repeat;
}

/* Always show real + / − glyphs, even if the theme mask asset fails. */
.quantity-field button.adjust,
.quantity-field button.decrease,
.quantity-field button.increase {
  color: #f8f4ff !important;
  font-family: Arial, sans-serif !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  text-indent: 0 !important;
}

.quantity-field button.adjust::before,
.quantity-field button.decrease::before,
.quantity-field button.increase::before {
  display: none !important;
  content: none !important;
}

/* Basket coupon / creator fields. Values are retained while browsing. */
.eve-basket-codes {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.eve-basket-code {
  display: grid;
  gap: 7px;
}

.eve-basket-code > span {
  color: rgba(244, 239, 255, .72);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .075em;
  text-transform: uppercase;
}

.eve-basket-code input {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(184, 145, 255, .18);
  border-radius: 9px;
  outline: none;
  color: #f8f5ff;
  background: rgba(255, 255, 255, .035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .02);
  font: inherit;
  transition: border-color .18s ease, background-color .18s ease, box-shadow .18s ease;
}

.eve-basket-code input::placeholder {
  color: rgba(226, 217, 242, .35);
}

.eve-basket-code input:hover {
  border-color: rgba(184, 145, 255, .32);
  background: rgba(255, 255, 255, .05);
}

.eve-basket-code input:focus {
  border-color: rgba(166, 101, 255, .82);
  background: rgba(124, 65, 226, .08);
  box-shadow: 0 0 0 3px rgba(143, 79, 239, .12);
}

@media (max-width: 720px) {
  .eve-home-intro__discord {
    position: static;
    margin-top: 18px;
    width: fit-content;
  }
}


/* ================================================================
   EVE MC v9 — lower Discord CTA + reliable quantity icons/codes
   ================================================================ */

/* Keep the Discord action visually lower beneath the logo. */
.eve-home-intro__discord {
  right: 24px;
  bottom: 10px;
}

/* Use CSS glyphs so + / − remain visible after every Tebex AJAX refresh. */
.quantity-field .adjust,
.store-sidebar .quantity-field .adjust,
.basket .quantity-field .adjust {
  display: inline-grid !important;
  place-items: center !important;
  flex: 0 0 36px !important;
  width: 36px !important;
  min-width: 36px !important;
  height: 100% !important;
  padding: 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
  color: transparent !important;
  background: transparent !important;
  text-indent: -9999px !important;
  overflow: hidden !important;
}

.quantity-field .adjust::before,
.store-sidebar .quantity-field .adjust::before,
.basket .quantity-field .adjust::before {
  display: grid !important;
  place-items: center !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  color: #f8f4ff !important;
  background: none !important;
  mask: none !important;
  -webkit-mask: none !important;
  font-family: Arial, sans-serif !important;
  font-size: 19px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  text-indent: 0 !important;
}

.quantity-field .adjust.decrease::before { content: "−" !important; }
.quantity-field .adjust.increase::before { content: "+" !important; }

/* Sidebar quantity bar: reserve space for both controls and center the value. */
.store-sidebar .store-product .quantity-field {
  display: flex !important;
  align-items: stretch !important;
  width: 100% !important;
  min-height: 42px !important;
}

.store-sidebar .store-product .quantity-field .open-basket {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 0 !important;
  margin: 0 !important;
  order: 2 !important;
}

.store-sidebar .store-product .quantity-field input.quantity {
  width: 30px !important;
  min-width: 30px !important;
  margin: 0 !important;
  order: 1 !important;
  text-align: center !important;
}

/* Make inserted basket fields impossible to collapse inside the sticky footer. */
.basket .basket-checkout .eve-basket-codes,
.basket-popup-content .eve-basket-codes {
  display: grid !important;
  width: 100% !important;
  gap: 12px !important;
  margin: 0 0 20px !important;
  visibility: visible !important;
  opacity: 1 !important;
}

@media (max-width: 720px) {
  .eve-home-intro__discord {
    margin-top: 24px;
  }
}


/* ================================================================
   EVE MC v10 — correct sidebar action state + CTA corner Discord
   ================================================================ */

/* Tebex toggles the quantity field with the hidden attribute.
   Never let layout overrides force a zero-quantity bar to remain visible. */
.store-product .quantity-field[hidden],
.store-sidebar .store-product .quantity-field[hidden],
.product-actions .quantity-field[hidden] {
  display: none !important;
}

/* Likewise, hide the original purchase button only after Tebex marks it hidden. */
.store-product .add[hidden],
.store-product .subscribe[hidden],
.product-actions .add[hidden],
.product-actions .subscribe[hidden] {
  display: none !important;
}

/* Quantity controls are visible only in the active, non-hidden state. */
.store-sidebar .store-product .quantity-field:not([hidden]) {
  display: flex !important;
  align-items: stretch !important;
}

/* Discord belongs to the entire CTA panel, not to the logo circle. */
.eve-home-intro {
  position: relative;
}

.eve-home-intro__visual {
  position: relative;
}

.eve-home-intro__discord {
  position: absolute !important;
  right: 28px !important;
  bottom: 24px !important;
  margin: 0 !important;
  z-index: 6;
}

@media (max-width: 720px) {
  .eve-home-intro__discord {
    position: static !important;
    margin-top: 18px !important;
    align-self: flex-start;
  }
}

/* ================================================================
   EVE MC — final quantity control alignment
   ================================================================ */
/* Keep both sidebar and basket quantity glyphs truly centered inside
   their rectangular controls, without relying on inherited line-height. */
.quantity-field .adjust,
.store-sidebar .quantity-field .adjust,
.basket .quantity-field .adjust {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 100% !important;
  min-height: 0 !important;
  padding: 0 !important;
  line-height: 0 !important;
}

.quantity-field .adjust::before,
.store-sidebar .quantity-field .adjust::before,
.basket .quantity-field .adjust::before {
  position: static !important;
  display: block !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  line-height: 1 !important;
  transform: translateY(1px) !important;
}


/* ==========================================================================
   EVE MC v16 — CTA action group, live status and functional basket codes
   ========================================================================== */

/* Keep both CTA buttons together in the panel's lower-right corner. */
.eve-home-intro .eve-home-intro__actions {
  position: absolute;
  right: 28px;
  bottom: 24px;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  max-width: calc(100% - 56px);
}

.eve-home-intro .eve-home-intro__secondary,
.eve-home-intro .eve-home-intro__discord,
.eve-home-intro .eve-home-intro__map {
  position: static !important;
  inset: auto !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: auto !important;
  min-width: max-content;
  min-height: 42px;
  margin: 0 !important;
  padding: 0 15px;
  white-space: nowrap;
  border: 1px solid rgba(183, 132, 255, .32);
  border-radius: 11px;
  color: #f8f4ff;
  background: rgba(10, 8, 18, .62);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .24);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
}

.eve-home-intro .eve-home-intro__secondary:hover {
  border-color: rgba(192, 145, 255, .72);
  background: rgba(124, 65, 226, .32);
  transform: translateY(-2px);
}

.eve-home-intro__map-icon {
  width: 17px;
  height: 17px;
  margin-right: 8px;
  flex: 0 0 auto;
  background: currentColor;
  mask: url("https://template-assets.tebex.io/images/globe.svg") center / contain no-repeat;
  -webkit-mask: url("https://template-assets.tebex.io/images/globe.svg") center / contain no-repeat;
}

@media (max-width: 720px) {
  .eve-home-intro .eve-home-intro__actions {
    position: static;
    grid-column: 1 / -1;
    justify-content: flex-start;
    flex-wrap: wrap;
    max-width: 100%;
    margin-top: 8px;
  }
}

.widget-server-status.eve-status-loading .eve-status-count { opacity: .65; }
.widget-server-status.eve-status-online .widget-title::after,
.widget-server-status.eve-status-online .eve-status-count::before {
  background: #45e58b;
  box-shadow: 0 0 0 4px rgba(69,229,139,.10), 0 0 14px rgba(69,229,139,.55);
}
.widget-server-status.eve-status-offline .widget-title::after,
.widget-server-status.eve-status-offline .eve-status-count::before {
  background: #ff647c;
  box-shadow: 0 0 0 4px rgba(255,100,124,.10), 0 0 14px rgba(255,100,124,.45);
}

.eve-basket-code__input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
  gap: 8px;
}

.eve-basket-code__input-row input {
  min-width: 0;
  margin: 0 !important;
}

.eve-basket-code__apply {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 68px;
  padding: 0 13px;
  border: 1px solid rgba(184,145,255,.28);
  border-radius: 9px;
  color: #f8f5ff;
  background: rgba(143,79,239,.18);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  transition: background-color .18s ease, border-color .18s ease;
}

.eve-basket-code__apply:hover {
  border-color: rgba(192,145,255,.65);
  background: rgba(143,79,239,.34);
}

.eve-basket-code__message {
  min-height: 15px;
  color: rgba(226,217,242,.48);
  font-size: 11px;
  line-height: 1.35;
}

.eve-basket-code.is-loading { opacity: .72; }
.eve-basket-code.is-applied .eve-basket-code__message { color: #62e49a; }
.eve-basket-code.is-applied input { border-color: rgba(98,228,154,.42); }
.eve-basket-code.is-error .eve-basket-code__message { color: #ff8295; }
.eve-basket-code.is-error input { border-color: rgba(255,100,124,.58); }

.basket .basket-checkout h3 {
  flex-wrap: wrap;
  gap: 8px 12px;
}

.eve-basket-discounts {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
  gap: 6px;
  text-transform: none;
}

.eve-basket-discounts[hidden] { display: none !important; }

.eve-discount-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 27px;
  padding: 0 9px;
  border: 1px solid rgba(80,226,145,.28);
  border-radius: 999px;
  color: #69e79f;
  background: rgba(31,164,93,.12);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  text-transform: none;
}

.eve-discount-badge b {
  color: rgba(219,255,233,.72);
  font-size: 14px;
  line-height: 1;
}

.eve-discount-badge--creator {
  border-color: rgba(183,132,255,.30);
  color: #c89dff;
  background: rgba(143,79,239,.12);
}


/* ==========================================================================
   EVE MC v19 — working form submit and clear coupon validation states
   ========================================================================== */

.eve-basket-code {
  display: block;
  margin: 0;
}

.eve-basket-code > label {
  display: block;
  margin-bottom: 8px;
  color: rgba(238, 234, 248, .72);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.eve-basket-code__input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
  gap: 8px;
}

.eve-basket-code__input-row input {
  min-width: 0;
  margin: 0 !important;
  border: 1px solid rgba(170, 145, 255, .22) !important;
  transition:
    border-color .18s ease,
    background-color .18s ease,
    box-shadow .18s ease !important;
}

.eve-basket-code__apply {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  padding: 0 14px;
  color: #fff;
  background: rgba(150, 91, 255, .18);
  border: 1px solid rgba(173, 126, 255, .38);
  border-radius: 9px;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  transition: background-color .18s ease, border-color .18s ease;
}

.eve-basket-code__apply:hover {
  background: rgba(150, 91, 255, .30);
  border-color: rgba(190, 154, 255, .72);
}

.eve-basket-code__message {
  display: block;
  min-height: 17px;
  margin-top: 6px;
  color: rgba(238, 234, 248, .58);
  font-size: 11px;
  line-height: 1.35;
}

.eve-basket-code.is-loading .eve-basket-code__input-row input {
  border-color: #a86cff !important;
  box-shadow: 0 0 0 3px rgba(168, 108, 255, .12) !important;
}

.eve-basket-code.is-loading .eve-basket-code__apply {
  opacity: .62;
  cursor: wait;
}

.eve-basket-code.is-error .eve-basket-code__input-row input {
  color: #ffdbe1 !important;
  background: rgba(255, 73, 103, .08) !important;
  border-color: #ff4967 !important;
  box-shadow: 0 0 0 3px rgba(255, 73, 103, .12) !important;
}

.eve-basket-code.is-error .eve-basket-code__message {
  color: #ff7189 !important;
  font-weight: 700;
}

.eve-basket-code.is-applied .eve-basket-code__input-row input {
  color: #dffff0 !important;
  background: rgba(69, 229, 139, .07) !important;
  border-color: #45e58b !important;
  box-shadow: 0 0 0 3px rgba(69, 229, 139, .10) !important;
}

.eve-basket-code.is-applied .eve-basket-code__message {
  color: #55e99a !important;
  font-weight: 700;
}

@media (max-width: 520px) {
  .eve-basket-code__input-row {
    grid-template-columns: 1fr;
  }

  .eve-basket-code__apply {
    min-height: 40px;
  }
}
