:root {
  --color-text: #fff;
  --color-text-darker: #e5e5e5;
  --color-text-secondary: #e6e6e6;
  --color-text-dark: #0D0D0D;
  --color-bg: #13131B;
  --color-brighter-bg: #0d0f15;
  --color-primary: rgb(0 72 255);
  --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-tertiary-text);
  --color-removed: #C12E2E;
  --color-sale-banner-bg: var(--color-primary);
  --color-sale-banner-text: var(--color-primary-text);
  --tebex-footer-height: 35px;
  --widget-padding: 24px;
  --content-padding: var(--widget-padding);
  --content-inner-width: 1280px;
  --content-width: calc((var(--content-padding) * 2) + var(--content-inner-width));
  --sidebar-width: 287px;
  --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: #fb9aba;
}
@media (width > 960px) {
  :root {
    --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;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  vertical-align: baseline;
  color: inherit;
  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;
}

html {
  overflow: hidden scroll;
  scrollbar-width: thin;
  scrollbar-color: var(--color-secondary) var(--color-bg);
  scrollbar-gutter: stable both-edges;
}
html.no-scroll {
  overflow: hidden;
  overscroll-behavior-y: none;
}

body {
  position: relative;
  max-width: 100%;
  width: 100%;
  line-height: normal;
  color: var(--color-text);
  background: var(--color-bg);
  accent-color: var(--color-primary);
  font-family: sans-serif;
  font-size: 16px;
}
body::before {
  view-transition-name: siteBgImage;
}

::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: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: 32px;
}
.text-content h2 {
  font-size: 26px;
}
.text-content h3 {
  font-size: 20px;
}
.text-content h4 {
  font-size: 18px;
}
.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 {
  --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);
  display: block;
  width: fit-content;
  height: 46px;
  padding: 0 10px;
  line-height: 46px;
  color: var(--btn-color-text);
  background-color: var(--btn-color-bg);
  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: #ffffff;
  background: linear-gradient(45deg, #fb6060, #db3a70);
}

.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 {
  position: relative;
  flex: none;
  width: 0px;
  height: 0px;
  padding: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 18px;
}
:root .btn-icon {
  line-height: 0;
  font-size: 0;
  color: transparent;
}

.btn-icon-text {
  display: flex;
  align-items: center;
  min-width: 46px;
}
.btn-icon-text::before {
  content: "";
  display: block;
  margin-right: 8px;
  width: 18px;
  height: 18px;
  flex: none;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (width <= 840px) {
  :root .btn-icon-text {
    justify-content: center;
    font-size: 0;
    color: transparent;
  }
  :root .btn-icon-text::before {
    margin-right: 0;
  }
}

.btn-glyph::before,
.btn-glyph-text::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  flex: none;
  background-color: var(--btn-color-text);
  mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: contain;
  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: 46px;
  height: 46px;
}
: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: 46px;
}
.btn-glyph-text::before {
  margin-right: 8px;
}
@media (width <= 840px) {
  :root .btn-glyph-text {
    justify-content: center;
    font-size: 0;
    color: transparent;
  }
  :root .btn-glyph-text::before {
    margin-right: 0;
  }
}

.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;
  color: var(--color-text);
  background: var(--color-bg);
  height: 36px;
  border: 1px solid var(--color-secondary);
}
.quantity-field input[type=number] {
  position: relative;
  z-index: 1;
  flex: none;
  -moz-appearance: textfield;
  appearance: textfield;
  field-sizing: content;
  min-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: 0 -12px 0 -15px;
  min-width: auto;
  padding: 0 15px;
  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;
}
.quantity-field .adjust.increase {
  margin-left: auto;
  order: 100;
}
.quantity-field .adjust::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--color-text);
  mask: url("https://webstore-template-assets.tebex.io/images/plus.svg") no-repeat center center;
  mask-size: 10px;
}
.quantity-field .adjust.decrease::before {
  mask-image: url("https://webstore-template-assets.tebex.io/images/minus.svg");
}

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

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

.site {
  display: grid;
  grid-template-columns: 100%;
  align-items: start;
  gap: var(--widget-padding);
  min-height: calc(100vh - var(--tebex-footer-height));
  font-size: 14px;
}

.site-content { 
view-transition-name: siteContent; 
}

@media (width > 960px) {
  .site {
    gap: calc(var(--widget-padding) * 0);
  }
}
.page-index.home-categories-enabled .site {
  grid-auto-rows: auto auto 1fr auto;
}

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

.site-header {
  position: relative;
  z-index: 2;
  view-transition-name: siteHeader;
}

.site-header-inner .user-name {
  contain: paint;
}
.site-header-inner .user-name .text,
.site-header-inner .user-name .text-hover {
  transition: opacity 0.15s ease-in-out, font-size 0.15s ease-in-out, visibility 0.15s ease-in-out;
}
.site-header-inner .user-name:not(:hover):not(:focus-within) .text-hover {
  visibility: hidden;
  color: transparent;
  font-size: 0;
}
.site-header-inner .user-name:hover .text, .site-header-inner .user-name:focus-within .text {
  visibility: hidden;
  opacity: 0;
  font-size: 0;
}
@media (width <= 840px) {
  .site-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--widget-padding) 0;
    position: relative;
    padding: 110px 0 calc(50px - var(--widget-padding));
    flex-wrap: wrap;
  }
  .site-header-inner .actions {
    position: absolute;
    top: var(--widget-padding);
    left: 0;
    display: flex;
    gap: 6px;
  }
  .site-header-inner .toggle-navigation {
    background-image: url("https://webstore-template-assets.tebex.io/images/burger.svg");
  }
  .site-header-inner .log-in,
  .site-header-inner .user-actions {
    position: absolute;
    top: var(--widget-padding);
    right: 0;
  }
  .site-header-inner .user-actions {
    display: flex;
    gap: 12px;
  }
  .site-header-inner .open-basket::before {
    mask-image: url("https://webstore-template-assets.tebex.io/images/checkout.svg");
  }
  .site-header-inner .user-name {
    display: none;
  }
  .site-header-inner .site-title {
    width: 100%;
    line-height: 80px;
    font-size: 50px;
    font-weight: 900;
    text-align: center;
  }
  .site-header-inner .site-title img {
    margin: 0 auto;
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
  }
  .site-header-inner .info {
    display: block;
    position: relative;
    flex: none;
    width: 50%;
    padding-left: 42px;
    line-height: 18px;
  }
  .site-header-inner .info.discord {
    right: 0;
    left: auto;
    padding-left: 0;
    padding-right: 42px;
    text-align: right;
  }
  .site-header-inner .info .image {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    width: 32px;
    height: 32px;
    object-fit: contain;
  }
  .site-header-inner .info.discord .image {
    left: auto;
    right: 0;
  }
  .site-header-inner .info .title {
    display: block;
    line-height: 20px;
    color: var(--color-text);
    font-size: 12px;
    font-weight: 600;
  }
  .site-header-inner .info .action {
    display: block;
    color: var(--color-primary);
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    transition: color 0.15s ease-in-out;
    cursor: pointer;
  }
  .site-header-inner .info:hover .action {
    color: var(--color-primary-hover);
  }
  .site-header-inner .info .value {
    width: fit-content;
    border: 1px solid #606060;
    padding: 0 5px;
    background: rgba(96, 96, 96, 0.5);
    color: #CCC;
    font-size: 12px;
  }
}
@media (width > 960px) {
  .site-header-inner {
    position: relative;
    height: calc(355px - var(--widget-padding) * 2);
  }
  body.is-navigation-horizontal .site-header-inner {
    height: 355px;
  }
  .site-header-inner .actions {
    position: absolute;
    top: var(--widget-padding);
    left: 0;
    display: flex;
    gap: 6px;
  }
  .site-header-inner .toggle-navigation {
    display: none;
    background-image: url("https://webstore-template-assets.tebex.io/images/burger.svg");
  }
  .site-header-inner .log-in,
  .site-header-inner .user-actions {
    position: absolute;
    top: var(--widget-padding);
    right: 0;
  }
  .site-header-inner .user-actions {
    display: flex;
    gap: var(--widget-padding);
  }
  .site-header-inner .open-basket::before {
    mask-image: url("https://webstore-template-assets.tebex.io/images/checkout.svg");
  }
  .site-header-inner .user-name {
    position: relative;
    text-align: center;
    justify-content: center;
  }
  .site-header-inner .user-name::before {
    mask-image: url("https://webstore-template-assets.tebex.io/images/user.svg");
  }
  .site-header-inner .site-title {
    position: absolute;
    inset: calc(var(--widget-padding) + 46px) 280px 0 280px;
    margin: auto;
    width: fit-content;
    height: fit-content;
    line-height: 72px;
    font-size: 60px;
    font-weight: 900;
    text-align: center;
  }
  .site-header-inner .site-title img {
    margin: 0 auto;
    max-width: 100%;
    max-height: 128px;
  }
  .site-header-inner .info {
    position: absolute;
    top: calc(var(--widget-padding) + 46px);
    left: 0;
    bottom: 0;
    margin: auto 0;
    max-width: 280px;
    width: 33.3333333333%;
    height: fit-content;
    line-height: 22px;
  }
  .site-header-inner .info.server {
    padding-left: 64px;
  }
  .site-header-inner .info.discord {
    right: 0;
    left: auto;
    padding-right: 82px;
    text-align: right;
  }
  .site-header-inner .info .image {
    position: absolute;
    top: -50px;
    left: 0;
    bottom: -50px;
    margin: auto 0;
    width: 46px;
    height: 46px;
    object-fit: contain;
  }
  .site-header-inner .info.discord .image {
    left: auto;
    right: 0;
    width: 64px;
    height: 64px;
  }
  .site-header-inner .info .title {
    display: block;
    line-height: 28px;
    color: var(--color-text);
    font-size: 18px;
    font-weight: 600;
  }
  .site-header-inner .info .action {
    display: block;
    color: var(--color-primary);
    font-size: 16px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    transition: color 0.15s ease-in-out;
    cursor: pointer;
  }
  .site-header-inner .info:hover .action {
    color: var(--color-primary-hover);
  }
  .site-header-inner .info .value {
    width: fit-content;
    border: 1px solid #606060;
    padding: 0 6px;
    background: rgba(96, 96, 96, 0.5);
    color: #CCC;
    font-size: 16px;
  }
}

.site-sale-banner {
  margin-top: var(--widget-padding);
  margin-bottom: var(--widget-padding);
  padding: var(--widget-padding) var(--content-padding);
  color: var(--color-sale-banner-text);
  background: var(--color-sale-banner-bg);
  font-size: 21px;
  text-align: center;
}

.site-footer {
  background: var(--color-brighter-bg);
}

.site-home-categories {
  display: flex;
  flex-direction: column;
  gap: var(--widget-padding);
}
@media (width > 600px) {
  .site-home-categories {
    flex-direction: row;
    justify-content: center;
    gap: var(--widget-padding) 36px;
  }
}
.site-home-categories .category {
  display: flex;
  align-items: center;
  gap: var(--widget-padding);
  flex-basis: 100%;
  line-height: 26px;
  font-size: 24px;
  font-weight: 700;
}
@media (width <= 600px) {
  .site-home-categories .category {
    width: 100%;
  }
}
@media (width > 600px) {
  .site-home-categories .category {
    flex-direction: column;
    align-items: center;
    gap: var(--widget-padding);
    max-width: 240px;
    text-align: center;
  }
}
.site-home-categories .category img {
  max-width: 130px;
}
@media (width > 600px) {
  .site-home-categories .category img {
    margin: auto;
    max-width: 100%;
  }
}

.store-text {
  padding: var(--content-padding);
  line-height: 1.375;
  font-size: 16px;
  font-weight: 400;
}

.store-form {
  font-size: 18px;
}
.store-form h1,
.store-form h2,
.store-form h3,
.store-form h4,
.store-form h5,
.store-form h6,
.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-secondary);
  background: var(--color-bg);
  font-size: 14px;
}
.popup .store-form input[type=text],
.popup .store-form input[type=password],
.popup .store-form input[type=email],
.popup .store-form input[type=number],
.popup .store-form input[type=search],
.popup .store-form input[type=url],
.popup .store-form input[type=tel],
.popup .store-form input[type=date],
.popup .store-form input[type=time],
.popup .store-form input[type=datetime-local],
.popup .store-form input[type=file],
.popup .store-form input[type=month],
.popup .store-form input[type=week],
.popup .store-form select,
.popup .store-form textarea {
  background: #242424;
}
.popup.drawer .store-form input[type=text],
.popup.drawer .store-form input[type=password],
.popup.drawer .store-form input[type=email],
.popup.drawer .store-form input[type=number],
.popup.drawer .store-form input[type=search],
.popup.drawer .store-form input[type=url],
.popup.drawer .store-form input[type=tel],
.popup.drawer .store-form input[type=date],
.popup.drawer .store-form input[type=time],
.popup.drawer .store-form input[type=datetime-local],
.popup.drawer .store-form input[type=file],
.popup.drawer .store-form input[type=month],
.popup.drawer .store-form input[type=week],
.popup.drawer .store-form select,
.popup.drawer .store-form textarea {
  user-select: auto;
}
@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 <= 840px) {
  .site-content-widgets {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
}
@media (width > 960px) {
  .site-content-widgets {
    display: grid;
    grid-template-columns: var(--sidebar-width) 1fr;
    align-items: start;
    gap: 48px;
  }
  body.is-sidebar-right .site-content-widgets {
    grid-template-columns: 1fr var(--sidebar-width);
  }
  .site-content-widgets .store-sidebar {
    order: -1;
  }
  body.is-sidebar-right .site-content-widgets .store-sidebar {
    order: 1;
  }
}

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

.no-products {
  padding: var(--widget-padding);
  font-size: 18px;
  text-align: center;
}



.site-navigation {
  --fade-duration: 200ms;
  view-transition-name: siteNavigation;
}
@media (width <= 960px) {
  .site-navigation {
    position: fixed;
    inset: 0;
    z-index: 100000;
    padding: 0;
    transition: display var(--fade-duration) allow-discrete, opacity var(--fade-duration) ease;
  }
  @starting-style {
    .site-navigation {
      opacity: 0;
    }
  }
  body:not(.show-navigation) .site-navigation {
    visibility: hidden;
    opacity: 0;
  }
  .site-navigation.drawer {
    user-select: none;
  }
  .site-navigation .close-navigation {
    position: absolute;
    top: 12px;
    right: 72px;
    background-image: url("https://webstore-template-assets.tebex.io/images/close.svg");
    background-size: 24px;
  }
  .site-navigation .menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    inset: 0 60px 0 0;
    padding: 72px var(--widget-padding) var(--widget-padding);
    background: var(--color-bg);
    line-height: 24px;
    color: var(--color-text-secondary);
    font-size: 18px;
    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;
    right: 7px;
    bottom: 0;
    margin-block: auto;
    width: 4px;
    height: 100px;
    background: rgb(from var(--color-text-secondary) r g b/0.33);
    border-radius: 2px;
    pointer-events: none;
    visibility: hidden;
  }
  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 {
    opacity: 0.8;
    scale: 0.95;
  }
  .site-navigation.may-close .menu {
    opacity: 0.8;
  }
  .site-navigation ul ul {
    padding-left: var(--widget-padding);
    line-height: 22px;
    font-size: 16px;
  }
  .site-navigation li {
    position: relative;
    width: 100%;
  }
  .site-navigation .log-out a {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .site-navigation .log-out a::before {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    background-color: currentColor;
    mask: url("https://webstore-template-assets.tebex.io/images/log-out.svg") center center no-repeat;
    mask-size: contain;
  }
  .site-navigation .has-children {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .site-navigation .has-children > a {
    flex: 1 1 auto;
  }
  .site-navigation .has-children .toggle {
    background-image: url("https://webstore-template-assets.tebex.io/images/chevron.svg");
    background-size: 20px;
    transition: rotate 0.15s ease-in-out;
  }
  .site-navigation .has-children.expanded > .toggle {
    rotate: 180deg;
  }
  .site-navigation .has-children > ul {
    width: 100%;
  }
  .site-navigation .has-children:not(.expanded) > ul {
    display: none;
  }
  .site-navigation a {
    display: block;
    padding: 11px 0;
    transition: color 0.15s ease-in-out;
  }
  .site-navigation a:hover {
    color: var(--color-primary);
  }
  .site-navigation a.active {
    color: var(--color-primary);
    font-weight: 700;
  }
  .site-navigation ul ul a {
    padding: 8px 0;
  }
}

@media (width > 960px) {
  .navigation-horizontal .close-navigation {
    display: none;
  }
  .navigation-horizontal .menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: calc(var(--widget-padding) / 2);
    line-height: 28px;
    background: var(--color-brighter-bg);
    font-size: 18px;
    font-weight: 700;
  }
  .navigation-horizontal .menu > li > a {
    padding: 14px calc(var(--widget-padding) / 2);
  }
  .navigation-horizontal .menu > li.has-children > a {
    padding-right: 0;
  }
  .navigation-horizontal ul ul {
    line-height: 24px;
    font-size: 16px;
    font-weight: 400;
  }
  .navigation-horizontal > ul > li > a {
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 18ch;
  }
  .navigation-horizontal .has-children {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .navigation-horizontal .has-children .toggle {
    flex: none;
    width: 28px;
    height: 28px;
    background-color: transparent;
    background-image: url("https://webstore-template-assets.tebex.io/images/chevron.svg");
    background-size: 20px;
    transition: rotate 0.15s ease-in-out;
  }
  .navigation-horizontal .has-children:hover > .toggle {
    rotate: 180deg;
  }
  .navigation-horizontal .has-children > ul {
    position: absolute;
    top: calc(100% - var(--widget-padding) / 2);
    left: 0;
    width: max-content;
    padding: calc(var(--widget-padding) / 2) 0;
    background: rgb(from var(--color-brighter-bg) r g b/0.7);
    backdrop-filter: blur(10px);
    transition: all 0.15s ease-in-out;
  }
  .navigation-horizontal .has-children:not(:hover) > ul {
    visibility: hidden;
    opacity: 0;
    translate: 0 -10px;
  }
  .navigation-horizontal a {
    display: block;
    transition: color 0.15s ease-in-out;
  }
  .navigation-horizontal a:hover, .navigation-horizontal a.link-active {
    color: var(--color-primary);
  }
  .navigation-horizontal li li a {
    width: 100%;
    max-width: 24ch;
    padding: 4px calc(var(--widget-padding) / 2);
    transition: all 0.15s ease-in-out;
  }
  .navigation-horizontal li li a:hover, .navigation-horizontal li li a.link-active {
    color: var(--color-bg);
    background-color: var(--color-primary);
  }
}

@media (width > 960px) {
  .navigation-vertical.widget {
    padding: calc(var(--widget-padding) / 2);
  }
  .navigation-vertical .close-navigation {
    display: none;
  }
  .navigation-vertical .menu {
    line-height: 28px;
    color: var(--color-text-secondary);
    font-size: 18px;
    font-weight: 400;
  }
  .navigation-vertical ul ul {
    padding-left: 12px;
    line-height: 22px;
    font-size: 15px;
  }
  .navigation-vertical .has-children {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .navigation-vertical .has-children > a {
    flex: 1 1 auto;
    max-width: calc(100% - 46px);
  }
  .navigation-vertical .has-children .toggle {
    background-color: transparent !important;
    background-image: url("https://webstore-template-assets.tebex.io/images/chevron.svg");
    background-size: 20px;
    transition: rotate 0.15s ease-in-out;
  }
  .navigation-vertical .has-children.expanded > .toggle {
    rotate: 180deg;
  }
  .navigation-vertical .has-children > ul {
    width: 100%;
  }
  .navigation-vertical .has-children:not(.expanded) > ul {
    display: none;
  }
  .navigation-vertical a {
    display: block;
    padding: calc(var(--widget-padding) / 2);
    transition: color 0.15s ease-in-out;
  }
  .navigation-vertical a:hover, .navigation-vertical a.link-active {
    color: var(--color-primary);
  }
  .navigation-vertical a.link-active {
    font-weight: 600;
  }
  .navigation-vertical ul ul a {
    padding: 8px calc(var(--widget-padding) / 2);
  }
}

.widget {
  padding: var(--widget-padding);
}
.widget + .widget {
  margin-top: var(--widget-padding);
}

.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-secondary);
  background: var(--color-bg);
  font-size: 14px;
}
.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;
}
.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: 0 auto 12px;
  width: 96px;
}
.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-bg);
}
@keyframes progressBarAnimation {
  to {
    background-position: 100% 0;
  }
}
.widget-community-goal .progress-bar,
.widget-goal .progress-bar {
  height: 12px;
  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-inner {
  position: relative;
  padding: 20px var(--content-padding);
}
@media (width <= 840px) {
  .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 <= 840px) {
  .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;
}

.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 {
  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-color: rgba(0, 0, 0, 0.8);
  transition: background-color var(--fade-duration) ease, opacity var(--fade-duration) ease-in-out, display var(--fade-duration) allow-discrete;
}
@starting-style {
  .popup {
    opacity: 0;
  }
}
.popup.drawer {
  user-select: none;
}
.popup.may-close {
  user-select: none;
  background-color: rgba(0, 0, 0, 0.4);
}
.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);
  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);
  backdrop-filter: blur(10px);
  background: var(--color-brighter-bg);
  transition: translate var(--fade-duration) ease, opacity var(--fade-duration) ease;
}
@starting-style {
  .popup-content {
    translate: 0 20px;
  }
}
@media (pointer: coarse) {
  .popup-content {
    padding-bottom: calc(var(--widget-padding) * 2);
  }
}
.popup.touching .popup-content {
  transition: opacity var(--fade-duration) ease, scale var(--fade-duration) ease;
}
.popup.may-close .popup-content, .popup.drawer[hidden] .popup-content {
  opacity: 0.8;
  scale: 0.95;
}
.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.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://webstore-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;
  display: none;
}
.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: 40px;
  height: 40px;
  background: url("https://webstore-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;
}
@media (width <= 600px) {
  .popup-close {
    width: 50px;
    height: 50px;
    background-size: 24px;
  }
}

.popup .store-product-full .popup-close,
.popup .store-product-full button.popup-close {
  background-color: rgb(0 0 0 / 0%);
  border-bottom-left-radius: 12px;
}

.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://webstore-template-assets.tebex.io/images/loading.svg") center center no-repeat;
  background-size: contain;
}

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

.login-popup-content {
  max-width: 480px;
  padding-bottom: calc(var(--widget-padding) - 12px);
}

.basket {
  position: relative;
  z-index: 1001;
}
.site-content .basket {
  display: none;
}
.basket .basket-empty {
  margin: auto;
  text-align: center;
  font-size: 46px;
  font-family: Bebas Neue;
}
.basket .basket-header {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 50px var(--content-padding) 62px;
  font-size: 32px;
  font-weight: 600;
  background: rgba(40, 40, 40, 0.5);
}
@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://webstore-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);
  background: rgb(from var(--color-brighter-bg) r g b/0.9);
  font-size: 20px;
  font-weight: 300;
  text-align: center;
}
.basket .basket-second-header .total {
  font-size: 18px;
}
.basket .basket-second-header .total strong {
  font-size: 20px;
  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://webstore-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: 12px;
  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);
}
.basket .basket-item .info {
  margin-right: auto;
}
.basket .basket-item .options {
  list-style-position: inside;
}
.basket .basket-item .options:has(li) {
  padding: 5px 0;
}
.basket .basket-item .options li {
  display: block;
  padding: 1px 0;
}
.basket .basket-item .options li::before {
  content: "";
  display: inline-block;
  margin-right: 0.4em;
  width: 3px;
  height: 3px;
  vertical-align: middle;
  background-color: currentColor;
  border-radius: 50%;
}
.basket .basket-item .title {
  font-size: 22px;
  font-weight: 600;
}
.basket .basket-item .price {
  color: var(--color-primary);
  font-size: 14px;
}
.basket .basket-item .price strong {
  font-size: 18px;
  font-weight: inherit;
}
.basket .basket-item .quantity-field {
  height: 40px;
}
.basket .basket-item .remove {
  width: 40px;
  height: 40px;
}
.basket .basket-item .remove::before {
  mask-image: url("https://webstore-template-assets.tebex.io/images/delete.svg");
}
.basket .basket-checkout {
  margin-top: 16px;
  padding: 0 var(--content-padding) 50px;
}
@media (width > 960px) {
  .basket .basket-checkout {
    padding-bottom: 200px;
  }
}
.basket .basket-checkout h3 {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  align-items: baseline;
  margin-bottom: var(--widget-padding);
  font-family: 'Poppins';
  font-size: 26px;
  font-weight: 600;
  text-transform: uppercase;
}
.basket .basket-checkout .total {
  color: #c2c1c2 !important;
  font-size: 16px;
  font-weight: 600;
}
.basket .basket-checkout .total strong {
  font-size: 26px;
  font-weight: 600;
}
.basket .basket-checkout .checkout {
  background: linear-gradient(90deg, #f078b6, #fd6886) !important;
  width: 100%;
}

.basket .basket-checkout .checkout:hover {
  background: linear-gradient(45deg, #fb6060, #db3a70) !important;
}

.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: var(--color-bg);
  transition: translate var(--fade-duration) ease-in-out;
}
@starting-style {
  .basket-popup-content {
    translate: 100% 0;
  }
}
  
:root .basket-popup[hidden] .basket-popup-content {
  translate: 100% 0;
}
.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://webstore-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;
  background: var(--color-brighter-bg);
  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://webstore-template-assets.tebex.io/images/close.svg") center center/20px no-repeat;
  opacity: 0.5;
  line-height: 0;
  font-size: 0;
  color: transparent;
  transition: opacity 0.15s ease-in-out, background-color 0.15s ease-in-out;
}
.toast-close:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.1);
}

.store-category-tiered {
  --gap: calc(var(--widget-padding) * .75);
  padding: var(--widget-padding);
}

.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;
}

.no-products {
  color: var(--color-text-secondary);
  background: var(--color-brighter-bg);
  border-radius: 5px;
}

.store-product-full{
  margin: -6rem auto 0;
  padding: 25px;
  border: 2px solid #f487ab;
  border-radius: 8px;
  background: var(--color-brighter-bg);
  max-width: 900px;
  width: 100%;
  box-sizing: border-box;
}

.store-product-full {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 14px !important;
}

.store-product-full .jhn-product-modal-top{
  display: grid !important;
  grid-template-columns: 1fr;
  grid-template-areas:
    "title"
    "image"
    "price"
    "ctas";
  justify-items: center;
}

.store-product-full .jhn-product-modal-top-right{
  display: contents !important;
}

.store-product-full .product-title,
.store-product-full .product-title *{
  grid-area: title !important;
  text-align: center !important;
  margin: 0 !important;
}

.store-product-full .jhn-product-modal-top-left{
  width: 50% !important;
  max-width: 100% !important;
}

.store-product-full .jhn-product-modal-top-right .price{
  grid-area: price !important;
  text-align: center !important;
  margin: 0 auto 4px !important;
  width: auto !important;
}

.store-product-full .jhn-product-modal-top-right .price strong,
.store-product-full .jhn-product-modal-top-right .price .money,
.store-product-full .jhn-product-modal-top-right .price .price{
  color: #fff;
  font-weight: 800;
  font-size: 26px;
  white-space: nowrap;
  text-shadow:
    0 0 16px rgba(253,124,164,.90),
    0 0 32px rgba(155,155,255,.65),
    0 0 44px rgba(253,124,164,.45);
}

.store-product-full .jhn-product-modal-top-right .actions,
.store-product-full .actions.product-actions{
  grid-area: ctas !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 12px !important;
  flex-wrap: wrap;
  margin: 0 !important;
  padding: 0 !important;
  width: auto !important;
  overflow: visible !important;
}

.store-product-full .jhn-product-modal-top-right .actions .btn,
.store-product-full .jhn-product-modal-top-right .actions a.btn{
  flex: 0 0 auto !important;
  white-space: nowrap !important;
}

.store-products-images .store-product .actions {
  background: transparent !important;
  overflow: visible !important;
  border-radius: 0 0 12px 12px !important; 
  padding: 10px 12px 12px !important;
}

.store-product-full .actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}

.store-product-full .btn-primary,
.store-product-full .btn-secondary {
  height: 48px;
  line-height: 48px;
  padding-inline: 18px;
}

:root:has(.store-product-full) .jhn-header::before,
:root:has(.store-product-full) .jhn-header::after,
:root:has(.store-product-full) article.store-product::before,
:root:has(.store-product-full) article.store-product::after,
:root:has(.store-product-full) .jhn-help-block::after {
  pointer-events: none;
  z-index: -1;
}

:root:has(.store-product-full) .jhn-header::before {
  background: none !important;
  background-image: none !important;
  mask-image: none !important;
  -webkit-mask-image: none !important;
  opacity: 0 !important;
  filter: none !important;
}

.store-product .quantity-field {
  border-radius: 5px;
  background: var(--color-brighter-bg);
}
.store-product .quantity-field input[type=number] {
  border: none;
}

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

.store-products-images {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)) !important;
  gap: 80px 20px !important;
  margin-top: 62px !important;
}

.store-product {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: var(--widget-padding);
}
.store-product .product-title {
  font-size: 20px;
  font-weight: 600;
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700;800&display=swap');

.store-product .product-title{
  margin: 0;
  text-align: center;
}

.store-product .product-title a{
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(20px, 2.2vw, 24px);
  line-height: 1.1;
  letter-spacing: .4px;
  color: #fff;
  display: inline-block;
  text-decoration: none;
  transition: color .2s ease, text-shadow .2s ease, transform .2s ease;
  text-shadow:
    0 0 8px rgba(255,133,182,.45),
    0 0 18px rgba(255,133,182,.55);
}

.store-product .product-title a:hover{
  color: #ff70a0;
  text-shadow: 0 0 10px rgba(255,45,125,.50);
  transform: translateY(-1px);
}

.store-product .product-title a::after{
  content:"";
  display:block;
  width: 42%;
  height: 2px;
  margin: 6px auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, #f078b6, #fd6886);
  opacity: .9;
  transition: width .2s ease, opacity .2s ease;
}

.store-product .product-title a:hover::after{
  width: 80%;
  opacity: 1;
}

.store-product .product-title a:hover {
  color: var(--color-primary);
}
.store-product .product-title .countdown {
  display: block;
  margin-top: 4px;
  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://webstore-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 {
  margin: 0 auto;
  max-width: 100%;
}
.store-product .descr {
  color: var(--color-text-secondary);
}
.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://webstore-template-assets.tebex.io/images/loading.svg") center center no-repeat;
  background-size: contain;
}
.store-product:not(.store-product-full) .actions {
  flex-wrap: wrap;
}
.store-products-images .store-product:not(.store-product-full) .actions {
  flex: 1 1 auto;
  align-content: flex-end;
}
.store-product .price {
  font-size: 14px;
}
.store-product .price .discount {
  margin-right: 1ch;
  color: var(--color-removed);
  font-weight: 400;
  text-decoration-line: line-through;
}
.store-product:not(.store-product-full) .price {
  width: 100%;
}
.store-products-images .store-product:not(.store-product-full) .price {
  margin-bottom: auto;
}
.store-product .quantity-field {
  height: 46px;
}
.store-product .half {
  flex: 0 1 calc(50% - 6px);
}
.store-product .wide {
  flex: 1 1 auto;
}
.store-product .gift {
  flex: none;
  background-image: url("https://webstore-template-assets.tebex.io/images/gift.svg");
}
.store-product .remove {
  flex: none;
  background-image: url("https://webstore-template-assets.tebex.io/images/delete.svg");
}

.store-products-images .store-product::before,
.store-products-images .store-product::after{
  content: none !important;
}

.store-products-images .store-product{
  position: relative;
  overflow: hidden;
  padding: 14px 16px 0px !important;
  border-radius: 14px !important;
  border: 2px solid transparent !important;
  background:
    linear-gradient(180deg, #8a3f5c 0%, #0c0920 100%) padding-box,
    linear-gradient(135deg, #f078b6, #ff4582) border-box !important;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .06),
    0 10px 30px rgba(0, 0, 0, 0.77);
  transform: translateZ(0);
  transform-style: preserve-3d;
  transform-origin: 50% 90%;
  will-change: transform, box-shadow;
  transition: transform .3s cubic-bezier(.2,.6,.2,1), box-shadow .35s ease;
}

.store-products-images .store-product .product-title,
.store-products-images .store-product .product-title a{
  transition: color .2s ease;
}

.store-products-images .store-product:hover{
  transform: translateY(-8px) rotateX(3deg) translateZ(24px);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .08),
    0 6px 50px rgba(253, 80, 175, .45),
    0 12px 36px rgba(0, 0, 0, .6);
}

.store-products-images .store-product .image-link{
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3.2 !important;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  transform: translateZ(8px);
  transition: transform .3s cubic-bezier(.2,.6,.2,1);
}

.store-products-images .store-product .image{
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transform: scale(1.0);
  transition: transform .45s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: block;
  border-radius: 12px;
}


.store-products-images .store-product:hover .image{
  transform: translateZ(1px);
}

.store-products-images .store-product .product-title{
  padding: 6px 16px 2px !important;
  text-align: center !important;
  font-family: "Poppins", system-ui, sans-serif;
  font-weight: 700 !important;
  font-size: clamp(25px, 2.4vw, 24px) !important;
  color: #fff;
}

.store-products-images .store-product .price strong{
  color: #fff;
  font-weight: 800;
  font-size: 26px;
  white-space: nowrap;
  text-shadow:
    0 0 16px rgba(253,124,164,.60),
    0 0 8px rgba(253,124,164,.25);
}

.store-products-images .store-product .actions{
  padding: 0 16px 16px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px !important;
}

.store-products-images .store-product .actions .btn-primary,
.store-products-images .store-product .actions .add.btn-primary.wide{
  width: 100% !important;
  min-height: 46px;
  line-height: 46px;
  border-radius: 10px !important;
  background: linear-gradient(90deg, #f078b6, #fd6886) !important;
  color: #fff !important;
  border: none !important;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .15),
    0 6px 24px rgba(253, 104, 134, .30);
  transition: transform .15s ease, box-shadow .15s ease;
}

.store-products-images .store-product .actions .btn-primary:hover,
.store-products-images .store-product .actions .add.btn-primary.wide:hover{
  background: linear-gradient(45deg, #fb6060, #db3a70) !important;
  transform: translateY(1px);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .20),
    0 8px 28px rgba(253, 104, 134, .45);
}

.store-products-list .store-product {
  padding: calc(var(--widget-padding) * 0.75);
}
.store-products-list .store-product .image {
  width: 60px;
}
.store-products-list .store-product .actions {
  flex-wrap: nowrap;
  align-items: center;
}
.store-products-list .store-product .wide {
  flex: 0 1 auto;
}
.store-products-list .store-product .price {
  width: auto;
}
@media (width <= 600px) {
  .store-products-list .store-product .wide {
    width: 100%;
  }
}
@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 .actions {
    gap: calc(var(--widget-padding) * 0.75);
  }
  .store-products-list .store-product .actions .wide {
    width: 170px;
  }
  .store-products-list .store-product .image-link {
    margin: 0;
  }
  .store-products-list .store-product .product-title {
    margin-right: auto;
  }
}

.store-product-full .product-title {
  grid-area: title;
  font-size: 20px;
}
@media (width > 600px) {
  .store-product-full {
    display: grid;
    grid-template: "image title" auto "image descr" 1fr "actions actions" auto/180px 1fr;
    gap: var(--widget-padding);
  }
  .store-product-full .image,
  .store-product-full .image-link {
    grid-area: image;
  }
  .store-product-full .image {
    max-width: 100%;
    margin-top: -30px;
  }
  .store-product-full .product-title {
    grid-area: title;
  }
  .store-product-full .descr {
    grid-area: descr;
  }
  .store-product-full .actions {
    grid-area: actions;
    align-self: start;
  }
}
.store-product-full .actions {
  position: sticky !important;
  align-items: center;
  bottom: 0;
  margin: 0 calc(var(--widget-padding) * -1);
  padding: var(--widget-padding);
  background-color: rgb(from var(--color-brighter-bg) r g b/0.9);
  backdrop-filter: blur(5px);
}
@media (width <= 600px) {
  .store-product-full .actions {
    order: 1;
  }
}
@media (width > 600px) {
  .store-product-full .actions {
    padding-left: calc(180px + var(--widget-padding) * 2);
  }
}
.store-product-full .actions .wide {
  max-width: 220px;
}
.store-product-full .price {
  margin-right: auto;
}

.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://webstore-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-products-tiered {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: var(--gap);
}

.store-product-tiered {
  --border-color: rgb(from var(--color-text) r g b / .1);
  --primary-color: rgb(from var(--color-primary) r g b / .25);
  display: grid;
  grid-row: span 4;
  grid-template-rows: subgrid;
  gap: var(--gap);
  padding: var(--gap);
}
.store-product-tiered.store-product-cta {
  background-image: linear-gradient(to bottom, transparent 67%, var(--primary-color));
}
.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://webstore-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%;
}

.store-products-images .store-product .actions .quantity-field{
  display: none !important;
}

.store-product-full .quantity-field{ display:none !important; 
}

.store-product .btn-primary[data-in-cart="1"] {
  color: #fff;
  background: linear-gradient(45deg, #fb6060, #db3a70);
}

.store-product .btn-primary[data-in-cart="1"]:hover,
.store-product .btn-primary[data-in-cart="1"]:focus {
  color: #fff;
  background: linear-gradient(45deg, #fb6060, #db3a70);
}

.store-products-images .store-product .actions .btn-primary,
.store-product .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 150ms ease-in-out, opacity 150ms ease-in-out, transform 150ms ease-in-out;
}

.store-product .btn-primary .btn-label {
  margin-left: 0 !important;
}

.store-product .btn-primary svg,
.store-product .btn-primary img,
.store-product .btn-primary i,
.store-product .btn-primary .icon {
  width: 18px; height: 18px; flex: 0 0 18px;
}

.store-products-images .store-product a.btn-primary[href*="/checkout/packages/add/"],
.store-products-images .store-product form[action*="/checkout/packages/add/"] .btn-primary[type="submit"],
.store-product-full a.btn-primary[href*="/checkout/packages/add/"],
.store-product-full form[action*="/checkout/packages/add/"] .btn-primary[type="submit"] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  min-height: 46px;
  padding: 0 18px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 999px;
  white-space: nowrap !important;
}

.store-products-images .store-product a.btn-primary[href*="/checkout/packages/add/"] svg,
.store-products-images .store-product form[action*="/checkout/packages/add/"] .btn-primary[type="submit"] svg,
.store-product-full a.btn-primary[href*="/checkout/packages/add/"] svg,
.store-product-full form[action*="/checkout/packages/add/"] .btn-primary[type="submit"] svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  display: block;
}

.store-product .btn-primary .btn-label { margin-left: 0 !important; }

.store-products-images .store-product .actions .btn-primary,
.store-product .btn-primary,
.store-product-full .btn-primary {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  transition: background 150ms ease-in-out, opacity 150ms ease-in-out, transform 150ms ease-in-out;
}

.store-product .btn-primary svg,
.store-product .btn-primary img,
.store-product .btn-primary i,
.store-product .btn-primary .icon,
.store-product-full .btn-primary svg,
.store-product-full .btn-primary img,
.store-product-full .btn-primary i,
.store-product-full .btn-primary .icon {
  width: 18px; height: 18px; flex: 0 0 18px; display: block;
}

.store-product .btn-primary .btn-label { margin-left: 0 !important; }

.store-product-full .actions .btn-primary,
.popup .actions.product-actions .btn-primary {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
}

.popup .actions.product-actions .btn-primary:hover span {
  display: inline !important;
}

.popup .actions.product-actions .btn-primary svg,
.popup .actions.product-actions .btn-primary:hover svg {
  width: 18px !important;
  height: 18px !important;
  transform: none !important;
}

.popup .actions.product-actions .btn-primary.btn-gift:hover .btn-label,
.popup .actions.product-actions a.btn-primary[href*="/gift"]:hover .btn-label {
  display: inline !important;
}

.store-products-images .store-product .actions a.btn-primary,
.store-product a.btn-primary,
.store-product-full a.btn-primary,
.store-products-images .store-product .actions .btn-primary,
.store-product .btn-primary,
.store-product-full .btn-primary {
  color: #fff !important;
  text-decoration: none !important;
}

.store-product a.btn-primary:link,
.store-product a.btn-primary:visited,
.store-product a.btn-primary:active,
.store-product a.btn-primary:focus,
.store-product-full a.btn-primary:link,
.store-product-full a.btn-primary:visited,
.store-product-full a.btn-primary:active,
.store-product-full a.btn-primary:focus {
  color: #fff !important;
  text-decoration: none !important;
}

.store-product-full .popup-scroll-cont,
.store-product-full.popup-content .popup-scroll-cont{
  min-height: 100dvh !important;
  align-items: flex-start;
}

.store-product-full .popup-content,
.store-product-full.popup-content{
  margin-top: var(--content-padding) !important;
}

.store-product-full,
.store-product-full.popup-content{
  padding-bottom: 25px;
}

:where(.store-product-full.popup-content, .popup .store-product-full){
  position: relative;
  width: min(96vw, 980px);
  margin: 0 auto;
  border: none !important;
  border-radius: 16px !important;
  background: transparent !important;
  box-shadow:
    inset 0 0 0 1.5px rgba(255,110,180,.99),
    inset 0 0 18px rgba(253,104,134,.25),
    0 22px 60px rgba(0,0,0,.6),
    0 0 0 1px rgba(255,126,170,.38),
    0 0 22px rgba(253,104,134,.35),
    0 0 56px rgba(255,120,182,.28),
    0 0 110px rgba(255,120,182,.18);
  overflow: hidden;
  padding: 18px 18px 22px;
}

:where(.store-product-full.popup-content, .popup .store-product-full) .image-link{
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1/1;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 10px 30px rgba(0,0,0,.55);
}

:where(.store-product-full.popup-content, .popup .store-product-full) .image{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

:where(.store-product-full.popup-content, .popup .store-product-full) .image-link:hover .image{
  transform: scale(1.04);
}

:where(.store-product-full.popup-content, .popup .store-product-full) .product-title,
:where(.store-product-full.popup-content, .popup .store-product-full) .product-title *{
  margin: 0;
  text-align: center;
  font-family: "Bebas Neue", system-ui, sans-serif;
  font-style: italic;
  font-size: clamp(36px, 5.6vw, 54px);
}

:where(.store-product-full.popup-content, .popup .store-product-full) .product-title em{
  background: linear-gradient(90deg, #f078b6, #fd6886);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

:where(.store-product-full.popup-content, .popup .store-product-full) .price{
  text-align: center;
  margin: 4px 0 10px;
}

:where(.store-product-full.popup-content, .popup .store-product-full) .price .money,
:where(.store-product-full.popup-content, .popup .store-product-full) .price strong{
  color: #ff81a5;
  font-weight: 800;
  font-size: clamp(22px, 2.6vw, 28px);
  letter-spacing: .3px;
  text-shadow: 0 0 14px rgba(244,135,171,.35);
  white-space: nowrap;
}

:where(.store-product-full.popup-content, .popup .store-product-full) .actions{
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 12px !important;
  flex-wrap: wrap;
  margin: 0;
  padding-top: 6px;
}

:where(.store-product-full.popup-content, .popup .store-product-full) .actions .btn-primary{
  position: relative;
  z-index: 0;
  width: min(360px, 100%);
  min-height: 48px;
  line-height: 48px;
  border-radius: 12px !important;
  color: #fff !important;
  border: none !important;
  background: linear-gradient(90deg, #f078b6, #fd6886) !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.18), 0 10px 30px rgba(253,104,134,.30);
  transition: transform .2s ease, box-shadow .25s ease, filter .2s ease;
  will-change: transform, box-shadow, filter;
}

:where(.store-product-full.popup-content, .popup .store-product-full) .actions .btn-primary:hover{
  background: linear-gradient(45deg, #fb6060, #db3a70) !important;
}

:where(.store-product-full.popup-content, .popup .store-product-full) .actions :is(.gift, .btn-secondary.gift, a.gift, button.gift){
  border-radius: 12px !important;
  border: none !important;
  background: linear-gradient(90deg, #4aa3ff, #246bff);
  color: #fff;
  min-height: 48px;
  line-height: 48px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.18), 0 8px 22px rgba(36,107,255,.25);
}

:where(.store-product-full.popup-content, .popup .store-product-full) .actions :is(.gift, .btn-secondary.gift, a.gift, button.gift):hover{
  filter: brightness(1.08);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.22), 0 10px 26px rgba(36,107,255,.35);
}

:where(.store-product-full.popup-content, .popup .store-product-full) .descr{
  border-top: 1px solid rgba(255,255,255,.10);
  margin-top: 4px;
  padding-top: 32px;
}

.store-products-images .store-product{ gap: 4px !important; }
.store-products-images .store-product .image-link{
  margin-bottom: 0 !important;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.06) !important;
}
.store-products-images .store-product .product-title{
  padding-top: 6px !important;
  margin-top: 0 !important;
}

@media (max-width:6000px){
  .store-products-images article.store-product p.price{
    display:block !important;
    width:100% !important;
    text-align:center !important;
    margin-left:auto !important;
    margin-right:auto !important;
    justify-content:center !important;
    align-items:center !important;
  }
  .store-products-images article.store-product p.price > *{ margin:0 !important; }
  .store-products-images article.store-product p.price strong,
  .store-products-images article.store-product p.price span{
    display:inline-block !important;
    text-align:center !important;
  }
}

  .store-products-images .store-product {
    max-width: 350px !important;
    width: 100% !important;
    margin-inline: auto !important;
  }
}

@media (max-width: 405px) {
  .store-products-images {
    grid-template-columns: 1fr !important;
    justify-content: center !important;
    padding-inline: 14px !important;
    gap: 12px !important;
  }
  .store-products-images .store-product {
    max-width: 360px !important;
    width: 100% !important;
    margin-inline: auto !important;
  }
}

@media (min-width: 334px) and (max-width: 438px) {
  .store-products-images {
    grid-template-columns: repeat(auto-fit, minmax(1fr, 1fr)) !important;
    justify-content: center !important;
    align-items: stretch !important;
    padding-inline: 20px !important;
    gap: 20px !important;
  }

  .store-products-images .store-product {
    max-width: 300px !important;
    width: 100% !important;
    margin-inline: auto !important;
    border-radius: 12px !important;
    padding: 8px 0px 2px !important;
    min-height: 350px !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .store-products-images .store-product .image-link {
    aspect-ratio: 4 / 3 !important;
    padding: 0px 8px 14px !important;
    border-bottom: 1px solid rgba(255, 255, 255, .16) !important;
  }

  .store-products-images .store-product .image {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
  }

  .store-products-images .store-product .product-title {
    margin: 8px 0 2px !important;
    line-height: 1.1 !important;
    padding-bottom: 0 !important;
    text-align: center !important;
  }

  .store-products-images .store-product .price {
    margin-top: 0 !important;
    text-align: center !important;
  }

  .store-products-images .store-product .actions {
    margin-top: auto !important;
    padding-top: 10px !important;
  }
}

@media (min-width: 650px) and (max-width: 650px) {
  .store-products-images {
    grid-template-columns: repeat(auto-fit, minmax(1fr, 1fr)) !important;
    justify-content: center !important;
    align-items: stretch !important;
    padding-inline: 20px !important;
    gap: 20px !important;
  }

  .store-products-images .store-product {
    max-width: 300px !important;
    width: 100% !important;
    margin-inline: auto !important;
    border-radius: 12px !important;
    padding: 8px 0px 2px !important;
    min-height: 350px !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .store-products-images .store-product .image-link {
    aspect-ratio: 16 / 9 !important;
    padding: 0px 8px 14px !important;
    border-bottom: 1px solid rgba(255, 255, 255, .16) !important;
  }

  .store-products-images .store-product .image {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
  }

  .store-products-images .store-product .product-title {
    margin: 8px 0 2px !important;
    line-height: 1.1 !important;
    padding-bottom: 0 !important;
    text-align: center !important;
  }

  .store-products-images .store-product .price {
    margin-top: 0 !important;
    text-align: center !important;
  }

  .store-products-images .store-product .actions {
    margin-top: auto !important;
    padding-top: 10px !important;
  }
}

@media (min-width: 700px) and (max-width: 900px) {
  .store-products-images {
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr)) !important;
    justify-content: center !important;
    align-items: stretch !important;
    padding-inline: 20px !important;
    gap: 20px !important;
  }

  .store-products-images .store-product {
    max-width: 300px !important;
    width: 100% !important;
    margin-inline: auto !important;
    border-radius: 12px !important;
    padding: 8px 0px 2px !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .store-products-images .store-product .image-link {
    aspect-ratio: 16 / 9 !important;
    padding: 0px 8px 14px !important;
    border-bottom: 1px solid rgba(255, 255, 255, .16) !important;
  }

  .store-products-images .store-product .image {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
  }

  .store-products-images .store-product .product-title {
    margin: 8px 0 2px !important;
    line-height: 1.1 !important;
    padding-bottom: 0 !important;
    text-align: center !important;
  }

  .store-products-images .store-product .price {
    margin-top: 0 !important;
    text-align: center !important;
  }

  .store-products-images .store-product .actions {
    margin-top: auto !important;
    padding-top: 10px !important;
  }
}

@media (min-width: 901px) and (max-width: 1213px) {
  .store-products-images {
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr)) !important;
    justify-content: center !important;
    align-items: stretch !important;
    padding-inline: 20px !important;
    gap: 20px !important;
  }

  .store-products-images .store-product {
    max-width: 350px !important;
    width: 100% !important;
    margin-inline: auto !important;
    border-radius: 12px !important;
    padding: 8px 2px 2px !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .store-products-images .store-product .image-link {
    aspect-ratio: 4 / 3 !important;
    padding: 5px 12px 14px !important;
    border-bottom: 1px solid rgba(255, 255, 255, .16) !important;
  }

  .store-products-images .store-product .image {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    filter: contrast(110%) brightness(105%) saturate(100%);
    transition: filter 0.25s ease;
  }
  
  .store-products-images .store-product .image:hover {
    filter: contrast(115%) brightness(110%) saturate(105%);
  }

  .store-products-images .store-product .product-title {
    margin: 8px 0 2px !important;
    line-height: 1.1 !important;
    padding-bottom: 0 !important;
    text-align: center !important;
  }

  .store-products-images .store-product .price {
    margin-top: 0 !important;
    text-align: center !important;
  }

  .store-products-images .store-product .actions {
    margin-top: auto !important;
    padding-top: 10px !important;
  }
}

@media (max-width: 1024px) {
  .popup .popup-scroll-cont {
    align-items: flex-start !important;
    padding: 3vh 16px 6vh !important;
  }

  .popup .popup-content {
    max-width: 640px !important;
    margin: 0 auto !important;
    height: 642px;
  }

  .popup .store-product-full .jhn-product-modal-top-left,
  .popup .store-product-full .jhn-product-modal-top-right {
    width: 100% !important;
  }

  .popup .store-product-full .image-link {
    padding: 0 0 12px !important;
  }

  .popup .store-product-full .image {
    width: 100% !important;
    height: auto !important;
    max-height: 60vh !important;
    object-fit: cover !important;
    display: block !important;
    margin: 0 auto !important;
  }
}

.popup .btn-icon.gift {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  width: auto !important;
  padding: 0 16px !important;
  line-height: 46px !important;

  font-size: 16px !important;
  color: #fff !important;

  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}
.popup .btn-icon.gift .btn-label {
  display: inline !important;
  font-size: 20px !important;
  color: #ffffff !important;
}
@media (width <= 840px) {
  .popup .btn-icon.gift .btn-label { color: #fff !important; }
}
.popup .btn-icon.gift:hover {
  background: linear-gradient(45deg, #00a8ff, #0087fa);
  box-shadow: 0 0 8px 2px rgba(50, 140, 255, 0.5);
  transform: none !important;
}
.popup .btn-icon.gift svg {
  flex: 0 0 18px !important;
  width: 18px !important;
  height: 18px !important;
  margin: 0 !important;
  vertical-align: middle !important;
  transform: none !important;
  transition: none !important;
}
.popup .btn-icon.gift:hover .btn-label {
  display: inline !important;
}

.popup .store-product-full .jhn-product-modal-top {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "title"
    "image"
    "price"
    "ctas";
  justify-items: center;
  align-items: start;
  row-gap: 14px;
}
.popup .store-product-full .jhn-product-modal-top-right { display: contents !important; }
.popup .store-product-full .product-title,
.popup .store-product-full .product-title * {
  grid-area: title !important;
  width: 100% !important;
  text-align: center !important;
  margin: 0 !important;
}
.popup .store-product-full .jhn-product-modal-top-left {
  grid-area: image !important;
  justify-self: center !important;
}
.popup .store-product-full .jhn-product-modal-top-left .image,
.popup .store-product-full .jhn-product-modal-top-left .image-link,
.popup .store-product-full .jhn-product-modal-top-left img {
  display: block !important;
  margin: 0 auto !important;
  max-width: 100% !important;
}
.popup .store-product-full .jhn-product-modal-top-right .price,
.popup .store-product-full .price {
  grid-area: price !important;
  width: 100% !important;
  text-align: center !important;
  margin: 8px 0 10px !important;
  padding-top: 14px;
  padding-bottom: 6px;
}
.popup .store-product-full .jhn-product-modal-top-right .actions,
.popup .store-product-full .actions.product-actions {
  grid-area: ctas !important;
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 12px !important;
  flex-wrap: wrap;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
}
.popup .store-product-full .jhn-product-modal-top-right .actions > *,
.popup .store-product-full .actions.product-actions > * {
  flex: 0 0 auto !important;
  margin: 0 !important;
}

.popup .store-product-full {
  height: auto;
  max-height: calc(100dvh - 40px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-gutter: stable both-edges;
  overscroll-behavior: contain;
}

@media (max-width: 414px) {

:where(.store-product-full.popup-content, .popup .store-product-full) .descr{
  margin-top: -10px;
}

  .popup.open .popup-content,
  .popup .popup-content {
    max-height: 80vh !important;
    display: grid !important;
    grid-template-rows: auto auto 1fr auto !important;
    overflow: hidden !important;
  }
  
  .popup.open .store-product-full .image-link,
  .popup .store-product-full .image-link {
    padding: 6px 10px 8px !important;
    aspect-ratio: 16 / 10 !important;
  }
  .popup.open .store-product-full .image,
  .popup.open .store-product-full .image-link > img,
  .popup .store-product-full .image,
  .popup .store-product-full .image-link > img {
    width: 90% !important;
    height: auto !important;
    max-height: 28vh !important;
    object-fit: cover !important;
    display: block !important;
    margin: 0 auto !important;
  }

  .popup.open .store-product-full p.price,
  .popup .store-product-full p.price,
  .popup.open .store-product-full .jhn-product-modal-top-right .price,
  .popup .store-product-full .jhn-product-modal-top-right .price {
    font-size: 20px !important;
    line-height: 1.1 !important;
    width: 100% !important;
    text-align: center !important;
    margin: 2px 0 0px !important;
    padding: 0px 0 !important;
  }
  .popup.open .store-product-full p.price strong,
  .popup .store-product-full p.price strong,
  .popup.open .store-product-full p.price span,
  .popup .store-product-full p.price span {
    font-size: inherit !important;
    line-height: inherit !important;
  }
  
  .popup .store-product-full .actions .btn,
  .popup .store-product-full .actions .btn-primary, .btn-icon.gift
  .popup .store-product-full .actions button {
    flex: 1 1 0 !important;
    max-width: calc(50% - 3px) !important;
    font-size: 18px !important;
    padding: 8px 0 !important;
  }

}

@media (max-width: 1024px) {
  .popup .popup-content {
    max-height: 82vh !important;
    display: grid !important;
    grid-template-rows: auto auto 1fr auto !important;
    overflow: hidden !important;
    margin: 0 auto !important;
    max-width: 520px !important;
    width: 100% !important;
  }

  .popup .store-product-full { display: flex !important; flex-direction: column !important; min-height: 0 !important; }

  .popup.open .store-product-full .image-link,
  .popup .store-product-full .image-link {
    padding: 6px 10px 8px !important;
    aspect-ratio: 16 / 10 !important;
  }
  .popup.open .store-product-full .image,
  .popup.open .store-product-full .image-link > img,
  .popup .store-product-full .image,
  .popup .store-product-full .image-link > img {
    width: 70% !important;
    height: auto !important;
    max-height: 18vh !important;
    object-fit: cover !important;
    display: block !important;
    margin: 0 auto !important;
  }

  .popup.open .store-product-full p.price,
  .popup .store-product-full p.price,
  .popup.open .store-product-full .jhn-product-modal-top-right .price,
  .popup .store-product-full .jhn-product-modal-top-right .price {
    font-size: 20px !important;
    line-height: 1.1 !important;
    width: 100% !important;
    text-align: center !important;
    margin: 2px 0 0px !important;
    padding: 0px 0 !important;
  }
  .popup.open .store-product-full p.price strong,
  .popup .store-product-full p.price strong,
  .popup.open .store-product-full p.price span,
  .popup .store-product-full p.price span {
    font-size: inherit !important;
    line-height: inherit !important;
  }

  .popup .store-product-full .actions,
  .popup .store-product-full .actions.product-actions {
    gap: 8px !important;
    padding: 1px 12px 0 !important;
    justify-content: center !important;
  }
  .popup .store-product-full .actions .btn,
  .popup .store-product-full .actions .btn-primary, .btn-icon.gift
  .popup .store-product-full .actions button {
    flex: 1 1 0 !important;
    max-width: calc(50% - 4px) !important;
    font-size: 18px !important;
    padding: 8px 0 !important;
  }

  .popup .store-product-full {
    border-top: 1px solid rgba(255,255,255,.14);
    margin-top: 8px !important;
    padding-top: 8px !important;
    flex: 1 1 auto !important;
    min-height: 0 !important;
    max-height: 700px !important;
    overflow: auto !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-gutter: stable both-edges;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .popup .store-product-full {
    position: relative;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    scrollbar-gutter: stable both-edges;
    scrollbar-width: thin;
    overscroll-behavior: contain;
    clip-path: inset(0 round 16px);
  }
}

:where(.store-product-full.popup-content, .popup .store-product-full) .descr::after {
  content: "";
  display: block;
  height: 22px;
}

/* Hide Scrollbar */

:where(.store-product-full.popup-content, .popup .store-product-full) {
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
  
  scrollbar-width: none;
}
:where(.store-product-full.popup-content, .popup .store-product-full)::-webkit-scrollbar {
  display: none; 
}

.popup,
.popup .popup-content,
.popup .store-product-full .descr{
  overscroll-behavior: contain;
}

.store-product-full{
 overflow-y: auto !important;
 -webkit-overflow-scrolling: touch;
 }
 
 .store-product-full button.popup-close {
  background: none !important;
  background-color: #ff8eb3 !important;
  mask: url("https://webstore-template-assets.tebex.io/images/close.svg") center center / 22px no-repeat;
  -webkit-mask: url("https://webstore-template-assets.tebex.io/images/close.svg") center center / 22px no-repeat;
  border-radius: 10px;
  opacity: 0.8;
  transition: opacity .25s ease, background-color .25s ease, box-shadow .25s ease;
}

.store-product-full button.popup-close:hover {
  opacity: 1;
  background-color: #ff88af !important;
  box-shadow:
    0 0 12px rgba(255, 120, 182, .6),
    0 0 24px rgba(255, 120, 182, .3);
}

@media (max-width: 700px) {
  .store-product-full.popup-content,
  .popup .store-product-full {
    max-height: 76vh !important;
    padding: 14px 14px 18px !important;
    margin: 0 auto !important;
    border-radius: 12px !important;
  }

  .store-product-full .jhn-product-modal-top-left img {
    max-height: 200px !important;
  }
}

@media (pointer: coarse) {
  .popup .popup-content {
    will-change: transform;
    transition: transform .22s ease;
  }
  .product-popup .store-product-full,
  .popup .store-product-full {
    will-change: transform;
    transition: transform .22s ease;
  }
}

.popup .popup-content:has(.store-product-full) {
  max-height: 75vh !important;
  overflow: auto !important;
}

@media (min-width: 841px){
  .popup .popup-content:has(.store-product-full){
    box-sizing: border-box;
    margin: 0 auto !important;
    width: min(680px, calc(100vw - 32px)) !important;
    max-width: none !important;
  }

  .popup .store-product-full{ margin: 0 !important; }

  .popup .store-product-full .jhn-product-modal-top{
    column-gap: 24px !important;
  }
}

@media (max-width: 840px){
  .popup .popup-content:has(.store-product-full){
    box-sizing: border-box;
    padding: 12px !important;
    width: calc(100vw - 24px) !important;
    max-width: none !important;
    margin: 0 auto !important;
  }
}

.store-product-full .popup-scroll-cont,
.store-product-full.popup-content .popup-scroll-cont {
  min-height: auto !important;
}


.popup .store-product-full {
  position: relative;
  background: transparent !important;
}

.popup .store-product-full::before {
  content: "";
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: rgba(0,0,0,0.25);
  -webkit-backdrop-filter: blur(10px) saturate(1.05);
  backdrop-filter: blur(10px) saturate(1.05);
  transform: translateZ(0);
  will-change: backdrop-filter, transform;
}

.popup .store-product-full .descr {
  padding: 28px 30px !important;
  box-sizing: border-box;
}

@media (max-width: 640px){
  .popup .store-product-full .descr {
    padding: 16px 10px !important;
  }
}

.popup .store-product-full .descr > :first-child { margin-top: 0; }
.popup .store-product-full .descr > :last-child  { margin-bottom: 0; }
.popup .store-product-full {
  position: relative;
  background: transparent !important;
}

@media (min-width: 841px){
  .store-product-popup-content{
    box-sizing: border-box;
    margin: 0 auto !important;
    width: min(680px, calc(100vw - 32px)) !important;
    max-width: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

@media (max-width: 840px){
  .store-product-popup-content{
    box-sizing: border-box;
    width: calc(100vw - 24px) !important;
    margin: 0 auto !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
    max-width: none !important;
  }
}

.btn-primary.is-loading,
.btn-secondary.is-loading,
.btn-tertiary.is-loading { pointer-events: none; opacity: .95; }

.btn-primary.is-loading:has(.btn-label)::after,
.btn-secondary.is-loading:has(.btn-label)::after,
.btn-tertiary.is-loading:has(.btn-label)::after {
  content: none !important;
}

.btn-primary.is-loading .btn-label::after,
.btn-secondary.is-loading .btn-label::after,
.btn-tertiary.is-loading .btn-label::after {
  content: "";
  display: inline-block;
  margin-left: 10px;
  width: 1em; height: 1em;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  vertical-align: -0.125em;
  animation: rmSpin .8s linear infinite;
}

.btn-primary.is-loading:not(:has(.btn-label))::after,
.btn-secondary.is-loading:not(:has(.btn-label))::after,
.btn-tertiary.is-loading:not(:has(.btn-label))::after {
  content: "";
  display: inline-block;
  margin-left: 10px;
  width: 1em; height: 1em;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  vertical-align: -0.125em;
  animation: rmSpin .8s linear infinite;
}


@media (max-width: 900px) {
  .jhn-footer-copy span,
  .site-footer-credit .site-footer-credit-inner {
    display: inline-block !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis;
    font-size: 12px !important;
    line-height: 1.2;
    text-align: center;
    padding: 0 6px calc(8px + env(safe-area-inset-bottom, 0px)) !important;
  }
}

@media (max-width: 900px){
  .mobile-menu-overlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .15s ease;
    z-index: 9000;
  }
  .nav-toggle:checked ~ .mobile-menu-overlay,
  body.show-navigation .mobile-menu-overlay{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  
  .jhn-footer-copy span,
  .site-footer-credit .site-footer-credit-inner{
    display:block;
    white-space:normal;
    overflow-wrap:anywhere;
    text-align:center;
    padding:0 12px calc(16px + env(safe-area-inset-bottom,0px));
  }
}

@media (max-width: 900px){
  :root{ --rm-drawer-w: min(82vw, 340px); }
  .mobile-menu-overlay{
    left: var(--rm-drawer-w);
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 9500;
  }
}

@media (max-width: 900px){
  .mobile-menu-overlay{
    position: fixed;
    top: 0; right: 0; bottom: 0; left: var(--rm-drawer-w, min(82vw,340px));
    background: linear-gradient(to right,
                rgba(0,0,0,0) 0,
                rgba(0,0,0,.18) 14px,
                rgba(0,0,0,.55) 36px);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .18s ease .08s;
    z-index: 9000;
  }
  .nav-toggle:checked ~ .mobile-menu-overlay,
  body.show-navigation .mobile-menu-overlay{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}


@media (hover: none) and (pointer: coarse) {

  .site-navigation .menu.navigation-list > li > a:active,
  .site-navigation .menu.navigation-list > li > a:focus-visible,
  .site-navigation .menu.navigation-list li.login a.log-in:active,
  .site-navigation .menu.navigation-list li.login a.log-in:focus-visible,
  ul.menu.navigation-list li a:active,
  ul.menu.navigation-list li a:focus-visible {
    background: linear-gradient(90deg,#f078b6,#fd6886) !important;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 12px 25px rgba(0,0,0,.25);
    border: none;
  }
  
}

  @media (max-width: 1024px) {
    button.popup-close,
    button.popup-close svg { display: none !important; }
  

  .btn-primary:active,
  .btn-primary:focus-visible,
  .btn-secondary:active,
  .btn-secondary:focus-visible {
    box-shadow: 0 0 4px var(--main-color);
  }

  .open-basket:active,
  .open-basket:focus-visible {
    color: var(--main-color);
  }

  .site-navigation .close-navigation:active,
  .site-navigation .close-navigation:focus-visible {
    background: linear-gradient(90deg,#f078b6,#fd6886) !important;
  }
}

@media (min-width: 961px){
  html[lang^="en"] .jhn-header-top-right{
    justify-items: end !important;
  }

  html[lang^="en"] .jhn-header-top-right .open-basket{
    grid-row: 2 !important;
    grid-column: -1 / -1 !important;
    justify-self: end !important;
  }

  html[lang^="en"] .jhn-header-top-right > .user-actions{
    grid-row: 2 !important;
    grid-column: -1 / -1 !important;
    justify-self: end !important;
    width: max-content !important;
  }
}

@supports selector(:has(*)){
  html[lang^="en"] .jhn-header-top-right > :has(.btn-glyph-text.open-basket){
    grid-row: 2 !important;
    grid-column: -1 / -1 !important;
    justify-self: end !important;
  }
}

@media (min-width: 961px){
  .rm-actions-toprow,
  .rm-actions-cartrow { display: contents !important; }
  .rm-actions-cartrow .open-basket { width: auto !important; }
}

@media (max-width:1024px){
  .login-popup .popup-content{
    top: 60px;
    display:grid;
    place-items:center;
  }
  .login-popup-content{
    width:100%;
    max-width:480px;
    padding-inline:16px;
    height:auto;
  }
  .login-popup-content .btn-primary{
    width:100% !important;
    max-width:360px !important;
    height:56px !important;
    margin:50px auto 0 !important;
  }
}

@media (hover: hover) and (pointer: fine) {
  html, body { min-width: 961px; }
}


.rm-banner{
  position: fixed;
  left: 0;
  bottom: -80px;
  width: 100%;
  z-index: 9999;
  text-align: center;
  padding: 16px 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: #fff;
  background: #5cb85c;
  transition: bottom .5s ease, opacity .5s ease;
  opacity: 0;
  pointer-events: none;
}
.rm-banner.show{
  bottom: 0;
  opacity: 1;
}
.rm-banner-success{ background:#5cb85c; }
.rm-banner-error{ background:#d9534f; }

.yt-thumbnail-wrapper,
.yt-wrap {
  position: relative;
  width: min(720px, 100%);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12);
  transition: transform .3s ease;
}

.yt-wrap:hover {
  box-shadow:
    0 0 15px rgba(244,135,175,.45),
    0 0 30px rgba(255,100,140,.25),
    0 0 60px rgba(244,100,180,.25),
    0 5px 25px rgba(0,0,0,.6),
    inset 0 0 15px rgba(255,255,255,.06);
  transition: transform .4s ease;
}

.yt-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter .35s ease, transform .35s ease;
  filter: brightness(1);
}

#ytPoster,
.yt-thumb-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: none;
  cursor: pointer;
  background:
    linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.4)),
    var(--yt-thumb, none) center / cover no-repeat;
  background-color: #0b0e18;
  z-index: 2;
  pointer-events: auto;
}

#ytPoster::before,
.yt-thumb-play::before {
  content: "";
  width: 90px;
  height: 60px;
  border-radius: 14px;
  background: #13131b;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
  transition: transform .25s ease, background .3s ease, box-shadow .35s ease;
}

#ytPoster::after,
.yt-thumb-play::after {
  content: "";
  position: absolute;
  width: 44px;
  height: 44px;
  background: #fff;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="white" d="M8 5v14l11-7z"/></svg>') center/contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="white" d="M8 5v14l11-7z"/></svg>') center/contain no-repeat;
}

#ytPoster { transition: filter .35s ease; }

.yt-wrap:hover #ytPoster { filter: brightness(1.25); }

.yt-thumbnail-wrapper:hover .yt-thumb-play::before,
#ytPoster:hover::before {
  background: linear-gradient(90deg, #fe5d92, #fd6886);
  box-shadow:
    0 0 25px rgba(254,93,146,.55),
    0 0 45px rgba(253,104,134,.4),
    inset 0 0 6px rgba(255,255,255,.15);
}

#ytIframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 1;
}

.yt-wrap.is-playing #ytIframe { opacity: 1; pointer-events: auto; }
.yt-wrap.is-playing #ytPoster { display: none; }
.yt-wrap.is-playing .yt-full  { display: grid; place-items: center; }

.yt-full {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #13131b;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
  display: none;
}
.yt-full::before {
  content: "";
  width: 18px;
  height: 18px;
  display: block;
  margin: auto;
  background: #fff;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="white" d="M7 14H5v5h5v-2H7v-3zm12 5h-5v-2h3v-3h2v5zM7 7h3V5H5v5h2V7zm12 3V5h-5v2h3v3h2z"/></svg>') center/contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="white" d="M7 14H5v5h5v-2H7v-3zm12 5h-5v-2h3v-3h2v5zM7 7h3V5H5v5h2V7zm12 3V5h-5v2h3v3h2z"/></svg>') center/contain no-repeat;
}

.yt-wrap:fullscreen { width: 100vw; height: 100vh; max-width: none; border-radius: 0; }
.yt-wrap:fullscreen #ytIframe { width: 100%; height: 100%; }

@media (max-width: 900px){
  .yt-thumbnail-wrapper, .yt-wrap { max-width: 100%; }
}

.user-dropdown{
  --user-btn-height: 44px;
  --user-btn-radius: 8px;
  --menu-width: 260px;
  --menu-min-width: 260px;
  --menu-offset-x: -138px;
  --menu-offset-y: 2px;
  --menu-radius: 12px;
  --menu-z: 999999;
  --menu-divider: rgba(255,255,255,.12);
  --menu-hover-bg: rgba(255,255,255,.06);
  --user-name-size: 17px;
  --user-name-weight: 600;
  --user-icon-size: 20px;
}

.user-dropdown{
  position: relative;
  display: inline-block;
  z-index: var(--menu-z);
}

.user-dropdown .btn-secondary.btn-glyph-text.user-name{
  height: var(--user-btn-height);
  padding: 0 20px;
  border-radius: var(--user-btn-radius);
  background: rgba(20,20,20,0.45);
  color: #fff;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}

.user-dropdown .btn-secondary.btn-glyph-text.user-name .text span{
  font-size: var(--user-name-size);
  font-weight: var(--user-name-weight);
  line-height: 1.1;
}

.user-dropdown .btn-secondary.btn-glyph-text.user-name .text svg{
  width: var(--user-icon-size);
  height: var(--user-icon-size);
}

.user-dropdown .btn-secondary.btn-glyph-text.user-name svg path{
  fill: currentColor;
}

.user-dropdown .btn-secondary.btn-glyph-text.user-name:hover,
.user-dropdown .btn-secondary.btn-glyph-text.user-name.show{
  background: linear-gradient(90deg, #f078b6, #fd6886);
  box-shadow: 0 0 10px rgb(253 105 136 / 66%);
  border-color: transparent;
  color: #fff;
}

#userMenu{
  position: absolute;
  top: calc(100% + var(--menu-offset-y));
  left: 0;
  width: var(--menu-width);
  min-width: var(--menu-min-width);
  transform: translateX(var(--menu-offset-x));
  z-index: var(--menu-z);
  background: rgb(15 15 15 / 65%);
  backdrop-filter: blur(14px) saturate(100%);
  -webkit-backdrop-filter: blur(14px) saturate(100%);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5), 0 0 40px rgba(244,135,171,0.25) !important;
  border-radius: var(--menu-radius);
  padding: 0 !important;
  overflow: hidden;
}

#userMenu > li{
  list-style: none;
  margin: 0;
  padding: 0;
}

#userMenu > li > a{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  font-size: 16px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  text-decoration: none;
  border-radius: 0;
  transition: background .18s ease, color .18s ease;
}

#userMenu > li > a:hover{
  background: var(--menu-hover-bg);
  color: #fff;
  font-weight: 500;
}

#userMenu > li:first-child > a{
  border-top-left-radius: var(--menu-radius);
  border-top-right-radius: var(--menu-radius);
}

#userMenu > li:last-child > a{
  border-bottom-left-radius: var(--menu-radius);
  border-bottom-right-radius: var(--menu-radius);
}

#userMenu .separator{
  display: none !important;
}

#userMenu > li:not(:last-child){
  border-bottom: 1px solid var(--menu-divider);
}

.jhn-header .currency,
.jhn-header .language,
.jhn-header .user-actions{
  position: relative;
}

@media (max-width: 991px){
  .user-dropdown{ display: none; }
}

.cfx-portal{
  --cfx-star-size: 14px;
  --cfx-star-x: 8px;
  --cfx-star-y: 8px;
  --cfx-star-rotate: 5deg;
  --cfx-star-color: #fff;
  --cfx-star-stroke: #fff;
  --cfx-star-stroke-w: 1;
  --cfx-star-shadow: 0 0 0 rgba(0,0,0,0);

  --cfx-r-size: 18px;
  --cfx-r-weight: 600;
  --cfx-r-x: -20px;
  --cfx-r-y: 0px;
  --cfx-r-color: #fff;
  --cfx-r-stretch: 1.18;

  --cfx-sep-h: 16px;
  --cfx-sep-ml: 60px;
  --cfx-sep-mr: 6px;
  --cfx-sep-x: -185px;
  --cfx-sep-opacity: .8;

  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px 10px 6px;
  color: #fff;
}

.cfx-portal .cfx-star{
  width: var(--cfx-star-size);
  height: var(--cfx-star-size);
  transform:
    translate(var(--cfx-star-x), var(--cfx-star-y))
    rotate(var(--cfx-star-rotate));
  color: var(--cfx-star-color);
  filter: drop-shadow(var(--cfx-star-shadow));
  transition: transform .18s ease, color .18s ease, filter .18s ease;
}
.cfx-portal .cfx-star path{
  fill: none !important;
  stroke: var(--cfx-star-stroke);
  stroke-width: var(--cfx-star-stroke-w);
  stroke-linejoin: round;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.cfx-portal .cfx-r{
  display: inline-block;
  font-size: var(--cfx-r-size);
  font-weight: var(--cfx-r-weight);
  line-height: 1;
  color: var(--cfx-r-color);
  transform: scaleX(var(--cfx-r-stretch)) translate(var(--cfx-r-x), var(--cfx-r-y));
  transform-origin: left center;
}

.cfx-portal { 
 --cfx-r-tilt: 6deg; 
}

.cfx-portal .cfx-r{
  font-style: oblique var(--cfx-r-tilt);
}

@supports not (font-style: oblique 8deg){
  .cfx-portal .cfx-r{
    font-style: italic;
    display: inline-block;
    transform: skewX(calc(-1 * var(--cfx-r-tilt)));
    transform-origin: left bottom;
  }
}

.cfx-portal .cfx-sep{
  width: 1px;
  height: var(--cfx-sep-h);
  background: rgba(255,255,255,var(--cfx-sep-opacity));
  margin-left: var(--cfx-sep-ml);
  margin-right: var(--cfx-sep-mr);
  transform: translateX(var(--cfx-sep-x));
  flex: 0 0 1px;
}

.cfx-portal .cfx-word{
  font-weight: 500;
  letter-spacing: .2px;
}

@keyframes rmSpin { to { transform: rotate(360deg) } }

.rm-loading-mask,
.rm-loading-mask.active {
  display: none !important;
  background: transparent !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

html.rm-fullscreen .yt-poster,
html.rm-fullscreen .yt-full,
html.rm-fullscreen .yt-wrap::before,
html.rm-fullscreen .yt-wrap::after {
  display: none !important;
  transition: none !important;
  filter: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

html.rm-lock, body.rm-lock {
  overflow: hidden !important;
  height: 100%;
}

html.rm-loading { overflow: auto !important; cursor: auto !important; }
body.rm-loading { cursor: auto !important; }

:root {
  --rm-product-img-ratio: 16/9;
}

.widget .store-product .image-link,
.store-products-images .store-product .image-link {
  display: block;
  position: relative;
  aspect-ratio: var(--rm-product-img-ratio);
  overflow: hidden;
}

.widget .store-product .image-link img,
.store-products-images .store-product .image-link img,
.popup .store-product .image-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.widget .store-product .image-link img { 
  opacity: 1;
  transition: opacity .25s ease;
}
@media (prefers-reduced-motion: reduce) {
  .widget .store-product .image-link img { transition: none !important; }
}

.rm-hero {
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 10px;
  position: relative;
}

.rm-hero-img,
.rm-hero-video {
  width: 100%%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rm-gallery-prev,
.rm-gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  border: none;
  font-size: 26px;
  line-height: 1;
  padding: 5px 12px;
  border-radius: 14%;
  cursor: pointer;
  z-index: 15;
  transition: background 0.3s ease, transform 0.2s ease;
}

.rm-gallery-prev:hover,
.rm-gallery-next:hover {
  background: rgba(255, 130, 182, 1.0);
  transform: translateY(-50%);
}

.rm-gallery-prev { left: 12px; }
.rm-gallery-next { right: 12px; }

@media (max-width: 768px) {
  .rm-gallery-prev,
  .rm-gallery-next {
    padding: 5px 10px;
    font-size: 22px;
  }
}

.rm-hero-video + .rm-gallery-prev,
.rm-hero-video + .rm-gallery-next {
  background: rgba(0, 0, 0, 0.35);
}

.store-product-full .rm-hero img {
  cursor: zoom-in !important;
}

.rm-image-viewer {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  backdrop-filter: blur(6px);
}

.rm-image-viewer-inner {
  max-width: 90%;
  max-height: 90%;
}

.rm-image-viewer img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(255, 120, 182, 0.50);
  cursor: zoom-out;
  transition: transform .25s ease;
  transform: scale(1.50);
}

.rm-hero-video-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.rm-hero-video-wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.rm-thumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.rm-thumb {
  width: 48px;
  height: 32px;
  border: 0;
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}

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

.rm-thumb[aria-selected="true"] {
  outline: 0px solid #fff;
  box-shadow: 0 0 0 2px #fff, 0 0 12px rgba(255, 255, 255, 0.6);
}

.rm-thumb-video {
  display: grid;
  place-items: center;
  font: 600 12px/1 system-ui, sans-serif;
}

@media (max-width: 640px) {
  .rm-thumb {
    width: 42px;
    height: 28px;
    border-radius: 6px;
  }
}

  .store-product-popup-content {
    max-height: 85vh !important;
  }
  .store-product-popup-content .descr {
    max-height: 42vh !important;
  }
}

.store-product-popup-content {
  max-width: 760px !important;
  width: 100% !important;
}

.store-product-full.popup-content,
.popup.open .store-product-full.popup-content,
.popup.is-open .store-product-full.popup-content {
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch !important;
  overscroll-behavior: contain !important;
  touch-action: pan-y !important;
}

.store-product-full.popup-content {
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch !important;
  overscroll-behavior: contain !important;
  touch-action: pan-y !important;
  position: relative !important;
}

.popup .store-product-full .jhn-product-modal-top-left {
  min-width: 0;
  align-self: start;
}

.popup .store-product-full .rm-hero {
  position: relative;
  width: 150%;
  left: 50%;
  transform: translateX(-50%);
  max-width: none;
  aspect-ratio: 16 / 9;
  height: auto !important;
  margin: 0 0 8px;
  border-radius: 12px;
  overflow: hidden;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.popup .store-product-full .rm-hero-video,
.popup .store-product-full .rm-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 1024px) {

  .store-product-full.popup-content .popup-close {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: absolute !important;
    top: 12px !important;
    right: 12px !important;
    z-index: 9999 !important;
    opacity: 1 !important;
    visibility: visible !important;
    width: 42px !important;
    height: 42px !important;
    background: #ff7db9 !important;
    border-radius: 50% !important;
    box-shadow: 0 0 8px rgba(255, 125, 185, 0.4);
  }

@media (max-width: 1024px) {
  .popup.drawer .descr,
  .popup.drawer .popup-body {
    -webkit-overflow-scrolling: touch !important;
  }
}

  .popup.drawer .descr::before,
  .popup.drawer .popup-body::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
  }

  .popup .store-product-full .rm-hero {
    width: 90%;
    margin: 0 auto;
    left: 0;
    right: 0;
    bottom: 10px;
    transform: none;
  }
}

@media (min-width: 485px) and (max-width: 700px) {
  .popup .store-product-full .rm-hero {
    width: 90%;
    margin: 0 auto;
    left: 0;
    right: 0;
    bottom: -15px;
    transform: none;
  }
}