:root {
  --color-text: #fff;
  --color-text-darker: #e5e5e5;
  --color-text-secondary: #ccc;
  --color-text-dark: #0D0D0D;
  --color-bg: #000;
  --color-brighter-bg: #0D0D0D;
  --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);
  --btn-size: 46px;
  --btn-icon-size: 18px;
  --btn-icon-gap: 8px;
  --tebex-footer-height: 35px;
  --widget-padding: 16px;
  --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: var(--color-text-secondary);
}
@media (width > 600px) {
  :root {
    --widget-padding: 20px;
  }
}
@media (width > 960px) {
  :root {
    --widget-padding: 24px;
  }
}
@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;
  background: transparent;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}

strong,
b {
  font-weight: 700;
}

em,
i {
  font-style: italic;
}

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

textarea {
  resize: none;
}

symbol,
use,
svg {
  overflow: visible;
}

svg,
img {
  display: block;
}

li {
  display: block;
}

button {
  display: block;
}

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

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

:focus {
  outline: 0;
}

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

@view-transition {
  navigation: auto;
}
::view-transition-group(root) {
  animation-duration: var(--page-transition-duration);
  animation-timing-function: ease;
}

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

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

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

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

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

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

html {
  overflow: hidden scroll;
  scrollbar-width: thin;
  scrollbar-color: var(--color-secondary) var(--color-bg);
  scrollbar-gutter: stable;
}
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: var(--btn-size);
  padding: 0 10px;
  line-height: var(--btn-size);
  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: var(--btn-color-text-hover);
  background-color: var(--btn-color-bg-hover);
}

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

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

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

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

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

.btn-icon-text {
  display: flex;
  align-items: center;
  min-width: var(--btn-size);
}
.btn-icon-text::before {
  content: "";
  display: block;
  margin-right: var(--btn-icon-gap);
  width: var(--btn-icon-size);
  height: var(--btn-icon-size);
  flex: none;
  background: var(--btn-icon) center center/var(--btn-icon-size) no-repeat;
}
@media (width <= 960px) {
  :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: var(--btn-icon-size);
  height: var(--btn-icon-size);
  flex: none;
  background-color: var(--btn-color-text);
  mask: var(--btn-icon) center center/contain no-repeat;
  transition: background-color 0.15s ease-in-out;
}
.btn-glyph:hover::before, .btn-glyph:focus::before,
.btn-glyph-text:hover::before,
.btn-glyph-text:focus::before {
  background-color: var(--btn-color-text-hover);
}

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

.btn-glyph-text {
  display: flex;
  align-items: center;
  min-width: var(--btn-size);
}
.btn-glyph-text::before {
  margin-right: var(--btn-icon-gap);
}
@media (width <= 960px) {
  :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 {
  --btn-size: 36px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  color: var(--color-text);
  background: var(--color-bg);
  height: calc(var(--btn-size) + 2px);
  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: min(40px, var(--btn-size));
  height: var(--btn-size);
  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 {
  --btn-icon: url("https://template-assets.tebex.io/images/plus.svg");
  --btn-icon-size: 10px;
  position: relative;
  z-index: 2;
  flex: none;
}
.quantity-field .adjust.decrease {
  --btn-icon: url("https://template-assets.tebex.io/images/minus.svg");
  margin-right: auto;
  order: -1;
}
.quantity-field .adjust.increase {
  margin-left: auto;
  order: 100;
}

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

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

.site {
  display: grid;
  grid-auto-rows: auto 1fr auto;
  grid-template-columns: 100%;
  align-items: start;
  gap: var(--widget-padding);
  min-height: calc(100vh - var(--tebex-footer-height));
  font-size: 14px;
  view-transition-name: site;
}
@media (width > 960px) {
  .site {
    gap: calc(var(--widget-padding) * 2);
  }
}
.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-inner {
  overflow: hidden;
}
.site-header-inner .user-name .text,
.site-header-inner .user-name .text-hover {
  display: block;
  transition: visibility 0.15s ease-in-out, opacity 0.15s ease-in-out;
}
.site-header-inner .user-name .text-hover {
  margin-top: calc(var(--btn-size) * -1);
}
.site-header-inner .user-name:not(:hover):not(:focus-within) .text-hover {
  visibility: hidden;
  opacity: 0;
}
.site-header-inner .user-name:hover .text, .site-header-inner .user-name:focus-within .text {
  visibility: hidden;
  opacity: 0;
}
@media (width <= 960px) {
  .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 {
    --btn-icon: url("https://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 {
    --btn-icon: url("https://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;
  }
  .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 {
    --btn-icon: url("https://template-assets.tebex.io/images/checkout.svg");
  }
  .site-header-inner .user-name {
    --btn-icon: url("https://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: grid;
  gap: var(--widget-padding);
}
@media (width > 600px) {
  .site-home-categories {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    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);
    text-align: center;
  }
}
.site-home-categories .category .image {
  max-width: 130px;
}
@media (width > 600px) {
  .site-home-categories .category .image {
    margin: auto;
    max-width: 100%;
  }
}
.site-home-categories .category .image-default {
  position: relative;
  width: min(70px, 100%);
  aspect-ratio: 1;
}
@media (width > 960px) {
  .site-home-categories .category .image-default {
    width: min(100px, 100%);
  }
}
.site-home-categories .category .image-default::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background-color: rgb(from var(--color-text) r g b/0.8);
  mask: url("https://template-assets.tebex.io/images/package-default.svg") center center/contain no-repeat;
}

.store-text {
  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 <= 960px) {
  .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;
}

.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(250px, 1fr));
  gap: 24px 36px;
}

.store-product {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: var(--widget-padding);
}
.store-product .product-title {
  font-size: 20px;
  font-weight: 600;
}
.store-product .product-title a {
  color: inherit;
  transition: color 0.15s ease-in-out;
}
.store-product .product-title a:hover {
  color: var(--color-primary);
}
.store-product .product-title .countdown {
  display: block;
  margin-top: 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://template-assets.tebex.io/images/countdown.svg") center center/contain no-repeat;
}
.store-product .image-link {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  width: fit-content;
}
.store-product .image-link:hover ~ .product-title a {
  color: var(--color-primary);
}
.store-product .image {
  margin: 0 auto;
  max-width: 100%;
}
.store-product .image-default {
  position: relative;
  width: 136px;
  aspect-ratio: 1;
}
.store-product .image-default::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  margin: auto;
  width: min(100px, 100%);
  height: min(100px, 100%);
  background-color: rgb(from var(--color-text) r g b/0.8);
  mask: url("https://template-assets.tebex.io/images/package-default.svg") center center/contain no-repeat;
}
.store-product .descr {
  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-color: var(--color-text);
  mask: url("https://template-assets.tebex.io/images/loading.svg") center center/contain no-repeat;
}
.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 .price strong {
  font-size: 20px;
  font-weight: inherit;
}
.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 {
  --btn-size: 44px;
}
.store-product .half {
  flex: 0 1 calc(50% - 6px);
}
.store-product .wide {
  flex: 1 1 auto;
}
.store-product .gift {
  --btn-icon: url("https://template-assets.tebex.io/images/gift.svg");
  flex: none;
}
.store-product .remove {
  --btn-icon: url("https://template-assets.tebex.io/images/delete.svg");
  flex: none;
}

.store-products-images .store-product .image-link {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: auto;
}

.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 {
    min-width: 180px;
  }
  .store-products-list .store-product .image-link {
    margin: 0;
  }
  .store-products-list .store-product .product-title {
    margin-right: auto;
  }
}

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

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

.store-product-full {
  display: grid;
  gap: var(--widget-padding);
}
.store-product-full, .store-product-full.popup-content {
  padding-bottom: 0;
}
.store-product-full .product-title {
  font-size: 30px;
}
.store-product-full .image {
  max-width: 100%;
}
.store-product-full .actions {
  position: sticky !important;
  bottom: 0;
  z-index: 2;
  align-items: center;
  order: 1;
  margin: 0 calc(var(--widget-padding) * -1);
  padding: var(--widget-padding);
  background-color: rgb(from var(--color-brighter-bg) r g b/0.65);
  backdrop-filter: blur(5px);
}
.store-product-full .actions .half,
.store-product-full .actions .wide {
  flex: 0 1 240px;
}
.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://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;
}

.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 {
    --btn-icon: url("https://template-assets.tebex.io/images/close.svg");
    --btn-icon-size: 24px;
    position: absolute;
    top: 12px;
    right: 72px;
  }
  .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;
  }
  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 {
    margin-top: auto;
  }
  .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://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 {
    --btn-icon: url("https://template-assets.tebex.io/images/chevron.svg");
    --btn-icon-size: 20px;
  }
  .site-navigation .has-children .toggle::before {
    transition: rotate 0.15s ease-in-out;
  }
  .site-navigation .has-children.expanded > .toggle::before {
    rotate: 180deg;
  }
  .site-navigation .has-children > 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 {
    --btn-size: 28px;
    --btn-icon: url("https://template-assets.tebex.io/images/chevron.svg");
    --btn-icon-size: 20px;
    flex: none;
  }
  .navigation-horizontal .has-children .toggle::before {
    transition: rotate 0.15s ease-in-out;
  }
  .navigation-horizontal .has-children:hover > .toggle::before {
    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) !important;
    background-color: var(--color-primary) !important;
  }
}

@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 {
    --btn-icon: url("https://template-assets.tebex.io/images/chevron.svg");
    --btn-icon-size: 20px;
    flex: none;
  }
  .navigation-vertical .has-children .toggle::before {
    transition: rotate 0.15s ease-in-out;
  }
  .navigation-vertical .has-children.expanded > .toggle::before {
    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 <= 960px) {
  .site-footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--widget-padding);
  }
}
.site-footer-inner .site-footer-nav {
  line-height: 150%;
  font-size: 14px;
}
@media (width > 960px) {
  .site-footer-inner .site-footer-nav {
    margin-bottom: 12px;
  }
}
.site-footer-inner .site-footer-nav ul {
  display: flex;
}
@media (width <= 960px) {
  .site-footer-inner .site-footer-nav ul {
    flex-direction: column;
    gap: var(--widget-padding);
    text-align: center;
  }
}
@media (width > 960px) {
  .site-footer-inner .site-footer-nav ul {
    gap: calc(var(--widget-padding) * 2);
  }
}
.site-footer-inner .site-footer-nav a {
  color: var(--color-text-darker);
  text-decoration-line: underline;
  text-underline-offset: 2px;
  transition: color 0.15s ease-in-out;
}
.site-footer-inner .site-footer-nav a:hover {
  color: var(--color-primary);
}
.site-footer-inner .copyright {
  line-height: 16px;
  color: var(--color-text-secondary);
  font-size: 12px;
}
.site-footer-inner .we-accept {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (width > 960px) {
  .site-footer-inner .we-accept {
    position: absolute;
    top: 0;
    right: var(--content-padding);
    bottom: 0;
    pointer-events: none;
  }
}
.site-footer-inner .we-accept li {
  display: block;
}
.site-footer-inner .we-accept img {
  display: block;
  max-width: 57px;
  max-height: 26px;
}

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

.popup {
  --fade-duration: 300ms;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 1000;
  overflow: hidden scroll;
  scrollbar-width: thin;
  scrollbar-color: var(--color-secondary) transparent;
  background-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);
  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-color: var(--color-text);
  mask: url("https://template-assets.tebex.io/images/loading.svg") center center/contain no-repeat;
}
.drawer-up .popup-content::after, .drawer-down .popup-content::after, .drawer-left .popup-content::after, .drawer-right .popup-content::after {
  content: "";
  display: block;
  position: absolute;
  background: rgb(from var(--color-text-secondary) r g b/0.33);
  border-radius: 2px;
  pointer-events: none;
}
.drawer-up .popup-content::after, .drawer-down .popup-content::after {
  left: 0;
  right: 0;
  margin-inline: auto;
  height: 4px;
  width: 100px;
}
.drawer-up .popup-content::after {
  bottom: 7px;
}
.drawer-down .popup-content::after {
  top: 7px;
}
.drawer-left .popup-content::after, .drawer-right .popup-content::after {
  top: 0;
  bottom: 0;
  margin-block: auto;
  width: 4px;
  height: 100px;
}
.drawer-left .popup-content::after {
  right: 7px;
}
.drawer-right .popup-content::after {
  left: 7px;
}

.popup-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  opacity: 0.5;
  line-height: 0;
  font-size: 0;
  color: transparent;
  transition: all 0.15s ease-in-out;
}
.popup-close::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--color-text);
  mask: url("https://template-assets.tebex.io/images/close.svg") center center/20px no-repeat;
}
@media (width <= 600px) {
  .popup-close {
    width: 50px;
    height: 50px;
  }
  .popup-close::before {
    mask-size: 24px;
  }
}
.popup-close:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.1);
}

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

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

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

.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: 18px;
}
.basket .basket-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 50px var(--content-padding) 30px;
  font-size: 22px;
  font-weight: 600;
  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://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: 18px;
  font-weight: 300;
  text-align: center;
}
.basket .basket-second-header .total {
  font-size: 14px;
}
.basket .basket-second-header .total strong {
  font-size: 18px;
  font-weight: inherit;
}
.basket .basket-content {
  flex: 1;
  overflow-x: hidden;
  overflow-y: auto;
}
.basket .basket-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: var(--widget-padding);
}
.basket .basket-item {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 12px;
  padding: var(--widget-padding);
  background: var(--color-brighter-bg);
}
.basket .basket-item .info {
  margin-right: auto;
}
.basket .basket-item .options {
  list-style-position: inside;
}
.basket .basket-item .options:has(li) {
  margin-block: 5px;
}
.basket .basket-item .options li {
  display: block;
  padding: 1px 0;
}
.basket .basket-item .options li::before {
  content: "";
  display: inline-block;
  margin-right: 0.4em;
  width: 3px;
  height: 3px;
  vertical-align: middle;
  background-color: currentColor;
  border-radius: 50%;
}
.basket .basket-item .title {
  font-size: 20px;
  font-weight: 600;
}
.basket .basket-item .trial {
  display: block;
  margin-block: 4px;
  padding: 8px 14px;
  letter-spacing: 0.04em;
  color: var(--color-primary-text);
  background: var(--color-primary);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
}
.basket .basket-item .price {
  color: var(--color-primary);
  font-size: 14px;
}
.basket .basket-item .price strong {
  font-size: 18px;
  font-weight: inherit;
}
.basket .basket-item .quantity-field {
  --btn-size: 38px;
}
.basket .basket-item .remove {
  --btn-size: 40px;
  --btn-icon: url("https://template-assets.tebex.io/images/delete.svg");
  --btn-icon-size: 24px;
  flex: none;
}
.basket .basket-checkout {
  margin-top: auto;
  padding: 0 var(--content-padding) 50px;
}
@media (width > 960px) {
  .basket .basket-checkout {
    padding-bottom: 100px;
  }
}
.basket .basket-checkout h3 {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: var(--widget-padding);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}
.basket .basket-checkout .total {
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 400;
}
.basket .basket-checkout .total strong {
  font-size: 24px;
  font-weight: inherit;
}
.basket .basket-checkout .checkout {
  width: 100%;
}

.basket-popup .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-color: var(--color-text);
  mask: url("https://template-assets.tebex.io/images/loading.svg") center center/contain no-repeat;
}
.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;
  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::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--color-text);
  mask: url("https://template-assets.tebex.io/images/close.svg") center center/20px no-repeat;
}
.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;
}

.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://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%;
}

/* ==========================================================
   Secret Code storefront
   ========================================================== */
:root {
  --sc-bg: #050812;
  --sc-surface: #0b1120;
  --sc-surface-2: #10192c;
  --sc-line: rgba(134, 169, 255, .14);
  --sc-blue: #1478ff;
  --sc-cyan: #23d7ff;
  --sc-purple: #875cff;
  --sc-white: #f6f9ff;
  --sc-muted: #97a7c3;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at 80% 5%, rgba(29, 92, 255, .14), transparent 28rem),
    var(--sc-bg);
  color: var(--sc-white);
}

.site {
  overflow: hidden;
}

.site-header {
  position: relative;
  z-index: 20;
  background: rgba(5, 8, 18, .82);
  border-bottom: 1px solid var(--sc-line);
  backdrop-filter: blur(18px);
}

.site-header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 82px;
  min-height: 82px;
}

.site-header-inner .site-title {
  position: static;
  inset: auto;
  display: flex;
  align-items: center;
  width: auto;
  height: 82px;
  margin: 0;
  line-height: normal;
}

.site-header-inner .site-title a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.site-title img {
  width: auto;
  max-width: 150px;
  max-height: 50px;
  object-fit: contain;
}

@media (width > 960px) {
  body.is-navigation-horizontal .site-header-inner,
  .site-header-inner {
    height: 82px;
  }

  .site-header-inner .log-in,
  .site-header-inner .user-actions {
    top: 50%;
    transform: translateY(-50%);
  }
}

.navigation-horizontal {
  background: rgba(8, 13, 26, .74);
  border-top: 1px solid rgba(255, 255, 255, .035);
}

.navigation-horizontal .navigation-list > li > a {
  position: relative;
  letter-spacing: .035em;
}

.navigation-horizontal .navigation-list > li > a::after {
  position: absolute;
  right: 50%;
  bottom: 8px;
  left: 50%;
  height: 2px;
  background: linear-gradient(90deg, var(--sc-blue), var(--sc-cyan));
  border-radius: 4px;
  content: "";
  transition: left .25s ease, right .25s ease;
}

.navigation-horizontal .navigation-list > li > a:hover::after,
.navigation-horizontal .navigation-list > li > a.link-active::after {
  right: 18%;
  left: 18%;
}

.page-index .site-header {
  position: absolute;
  inset: 0 0 auto;
}

.sc-home {
  background: var(--sc-bg);
}

.sc-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  align-items: center;
  min-height: min(900px, 100vh);
  padding: 180px max(32px, calc((100vw - 1320px) / 2)) 100px;
  isolation: isolate;
}

.sc-hero-grid {
  position: absolute;
  z-index: -3;
  inset: 0;
  opacity: .2;
  background-image:
    linear-gradient(rgba(116, 151, 255, .14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(116, 151, 255, .14) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black 20%, transparent 90%);
}

.sc-hero::after {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 8, 18, .2) 42%, rgba(5, 8, 18, .68));
  content: "";
}

.sc-hero-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(12px);
}

.sc-hero-glow-one {
  top: 10%;
  right: 2%;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(20, 120, 255, .28), transparent 66%);
}

.sc-hero-glow-two {
  bottom: 0;
  left: 15%;
  width: 460px;
  height: 300px;
  background: radial-gradient(circle, rgba(135, 92, 255, .16), transparent 70%);
}

.sc-hero-content {
  position: relative;
  z-index: 3;
  max-width: 760px;
}

.sc-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #a9b9d4;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.sc-kicker i {
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--sc-blue), var(--sc-cyan));
  box-shadow: 0 0 14px var(--sc-cyan);
}

.sc-hero h2 {
  margin: 24px 0;
  color: var(--sc-white);
  font-size: clamp(48px, 6.2vw, 92px);
  line-height: .98;
  letter-spacing: -.055em;
  text-transform: uppercase;
}

.sc-hero h2 span {
  color: transparent;
  background: linear-gradient(100deg, #1680ff 5%, #32e2ff 52%, #a677ff);
  background-clip: text;
  -webkit-background-clip: text;
}

.sc-hero-content > p {
  max-width: 640px;
  margin: 0;
  color: var(--sc-muted);
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.7;
}

.sc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.sc-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.sc-button:hover {
  transform: translateY(-3px);
}

.sc-button-primary {
  gap: 18px;
  color: white;
  background: linear-gradient(110deg, var(--sc-blue), #355dff);
  box-shadow: 0 15px 42px rgba(20, 120, 255, .28);
}

.sc-button-primary:hover {
  box-shadow: 0 18px 52px rgba(20, 120, 255, .42);
}

.sc-button-secondary {
  color: var(--sc-white);
  background: rgba(255, 255, 255, .035);
  border-color: rgba(255, 255, 255, .14);
}

.sc-button-secondary:hover {
  border-color: var(--sc-cyan);
}

.sc-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 34px;
  color: #7f90ad;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sc-trust-row b {
  margin-right: 6px;
  color: var(--sc-cyan);
}

.sc-hero-visual {
  position: relative;
  min-height: 540px;
}

.sc-logo-stage {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: min(370px, 30vw);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(75, 166, 255, .28);
  border-radius: 34%;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .01)),
    rgba(8, 15, 31, .74);
  box-shadow:
    inset 0 0 60px rgba(38, 119, 255, .12),
    0 0 100px rgba(23, 116, 255, .18);
  rotate: -8deg;
  animation: sc-float 5s ease-in-out infinite;
  backdrop-filter: blur(12px);
}

.sc-logo-stage::before {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 30%;
  content: "";
}

.sc-logo-stage img {
  z-index: 1;
  width: 70%;
  max-height: 70%;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(59, 173, 255, .38));
}

.sc-logo-stage strong {
  font-size: clamp(70px, 9vw, 130px);
  font-style: italic;
}

.sc-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(55, 151, 255, .19);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.sc-orbit-one {
  width: 500px;
  height: 500px;
  animation: sc-spin 18s linear infinite;
}

.sc-orbit-two {
  width: 610px;
  height: 380px;
  border-color: rgba(135, 92, 255, .2);
  transform: translate(-50%, -50%) rotate(35deg);
  animation: sc-pulse 4s ease-in-out infinite;
}

.sc-floating-card {
  position: absolute;
  z-index: 2;
  min-width: 170px;
  padding: 16px 18px;
  border: 1px solid rgba(91, 158, 255, .22);
  border-radius: 10px;
  background: rgba(8, 15, 31, .76);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .25);
  backdrop-filter: blur(12px);
}

.sc-floating-card span,
.sc-floating-card strong {
  display: block;
}

.sc-floating-card span {
  margin-bottom: 5px;
  color: #7084a7;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
}

.sc-floating-card strong {
  color: #dff8ff;
  font-size: 13px;
}

.sc-floating-card-one {
  top: 22%;
  left: 0;
}

.sc-floating-card-two {
  right: -5%;
  bottom: 21%;
}

.sc-marquee-section,
.sc-categories,
.sc-about {
  padding: 100px max(24px, calc((100vw - 1320px) / 2));
}

.sc-marquee-section {
  position: relative;
  border-block: 1px solid var(--sc-line);
  background: linear-gradient(180deg, #080d19, #050812);
}

.sc-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 38px;
}

.sc-section-heading h3 {
  margin: 10px 0 0;
  color: var(--sc-white);
  font-size: clamp(34px, 4vw, 58px);
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.sc-section-heading > a {
  padding-bottom: 8px;
  color: #b8c8e3;
  border-bottom: 1px solid #2e4265;
  font-weight: 700;
}

.sc-section-heading > a span {
  margin-left: 15px;
  color: var(--sc-cyan);
}

.sc-product-marquee {
  overflow: hidden;
  margin-inline: min(0px, calc((1320px - 100vw) / 2));
  mask-image: linear-gradient(90deg, transparent, black 4%, black 96%, transparent);
}

.sc-product-track {
  display: flex;
  width: max-content;
  gap: 22px;
  animation: sc-marquee 48s linear infinite;
}

.sc-product-track:hover {
  animation-play-state: paused;
}

.sc-product-card {
  width: min(340px, 78vw);
  overflow: hidden;
  border: 1px solid var(--sc-line);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(19, 30, 53, .92), rgba(8, 13, 25, .95));
  box-shadow: 0 18px 55px rgba(0, 0, 0, .22);
  transition: border-color .3s ease, transform .3s ease;
}

.sc-product-card:hover {
  border-color: rgba(35, 215, 255, .48);
  transform: translateY(-5px);
}

.sc-product-image {
  position: relative;
  display: block;
  height: 205px;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 20%, rgba(20, 120, 255, .25), transparent 55%),
    #0b1221;
}

.sc-product-image::after {
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(transparent, rgba(5, 8, 18, .88));
  content: "";
}

.sc-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.sc-product-card:hover .sc-product-image img {
  transform: scale(1.045);
}

.sc-product-image > span {
  display: grid;
  height: 100%;
  place-items: center;
  color: rgba(255, 255, 255, .16);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: .14em;
}

.sc-product-image em {
  position: absolute;
  z-index: 2;
  bottom: 14px;
  left: 16px;
  padding: 6px 9px;
  color: #b9efff;
  border: 1px solid rgba(35, 215, 255, .25);
  border-radius: 5px;
  background: rgba(6, 20, 36, .7);
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.sc-product-info {
  padding: 19px;
}

.sc-product-info h4 {
  margin: 0 0 15px;
  font-size: 19px;
}

.sc-product-info h4 a {
  color: var(--sc-white);
}

.sc-product-info .product-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sc-product-info .price {
  color: #dceaff;
  font-weight: 800;
}

.sc-categories {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(70, 150, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(70, 150, 255, .025) 1px, transparent 1px),
    radial-gradient(circle at 8% 18%, rgba(35, 215, 255, .1), transparent 25rem),
    radial-gradient(circle at 92% 76%, rgba(135, 92, 255, .1), transparent 28rem),
    #050812;
  background-size: 52px 52px, 52px 52px, auto, auto, auto;
}

.sc-categories::before {
  position: absolute;
  top: 5%;
  right: -160px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(35, 215, 255, .08);
  border-radius: 50%;
  box-shadow:
    0 0 0 55px rgba(35, 215, 255, .018),
    0 0 0 110px rgba(135, 92, 255, .014);
  content: "";
  pointer-events: none;
}

.sc-categories-heading {
  position: relative;
  z-index: 2;
}

.sc-categories-heading > div {
  max-width: 780px;
}

.sc-categories-heading p {
  max-width: 560px;
  margin: 15px 0 0;
  color: #8394b2;
  font-size: 15px;
  line-height: 1.65;
}

.sc-categories-index {
  padding-bottom: 10px;
  color: #50617f;
  border-bottom: 1px solid rgba(94, 128, 180, .28);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  white-space: nowrap;
}

.sc-categories .site-home-categories {
  display: grid;
  grid-template-columns: minmax(0, 1.62fr) minmax(300px, .88fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
  padding: 0;
  max-width: none;
}

.sc-categories .category {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 260px;
  overflow: hidden;
  padding: 26px;
  align-items: flex-start;
  flex-direction: column;
  justify-content: space-between;
  gap: 50px;
  border: 1px solid rgba(91, 134, 199, .2);
  border-radius: 18px;
  background: #0b1221;
  color: var(--sc-white);
  font-size: 24px;
  font-weight: 800;
  text-align: left;
  isolation: isolate;
  box-shadow: 0 22px 65px rgba(0, 0, 0, .24);
  transition:
    border-color .35s ease,
    box-shadow .35s ease,
    transform .35s ease;
}

.sc-categories .category-featured {
  grid-row: 1 / span 2;
  min-height: 540px;
  padding: 34px;
}

.sc-categories .category::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 7, 16, .91) 0%, rgba(3, 7, 16, .55) 42%, rgba(3, 7, 16, .08) 76%),
    linear-gradient(0deg, rgba(3, 7, 16, .96) 0%, rgba(3, 7, 16, .3) 54%, rgba(3, 7, 16, .1) 100%);
  content: "";
  pointer-events: none;
  transition: opacity .35s ease;
}

.sc-categories .category::after {
  position: absolute;
  z-index: 3;
  inset: 0;
  border: 1px solid transparent;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(101, 230, 255, .52), transparent 28%, transparent 70%, rgba(135, 92, 255, .38)) border-box;
  mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0;
  content: "";
  pointer-events: none;
  transition: opacity .3s ease;
}

.sc-categories .category .image {
  position: absolute;
  z-index: -2;
  inset: 0;
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: none;
  transform: scale(1.002);
  transition: transform .7s cubic-bezier(.2, .75, .25, 1), filter .35s ease;
}

.sc-categories .category:hover {
  border-color: rgba(35, 215, 255, .34);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .38), 0 0 40px rgba(35, 215, 255, .06);
  transform: translateY(-5px);
}

.sc-categories .category:hover::after {
  opacity: 1;
}

.sc-categories .category:hover .image {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.035);
}

.sc-category-topline {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}

.sc-category-badge,
.sc-category-count {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid rgba(126, 180, 255, .22);
  border-radius: 999px;
  background: rgba(5, 11, 23, .62);
  backdrop-filter: blur(10px);
}

.sc-category-badge {
  padding: 0 11px;
  color: #bcefff;
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.sc-category-badge::before {
  width: 5px;
  height: 5px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--sc-cyan);
  box-shadow: 0 0 10px var(--sc-cyan);
  content: "";
}

.sc-category-badge-free {
  color: #bdffd7;
  border-color: rgba(82, 255, 157, .22);
}

.sc-category-badge-free::before {
  background: #52ff9d;
  box-shadow: 0 0 10px #52ff9d;
}

.sc-category-count {
  padding: 0 10px;
  color: #92a4c3;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sc-categories .category .sc-category-copy {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  width: min(100%, 440px);
  max-width: 74%;
  color: inherit;
  line-height: 1.08;
}

.sc-categories .category .sc-category-copy > small {
  order: 2;
  margin-top: 12px;
  color: #a6b6d0;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.55;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .95);
}

.sc-categories .category .sc-category-copy > span {
  order: 1;
  color: var(--sc-white);
  font-size: clamp(28px, 3.4vw, 58px);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: .94;
  text-transform: uppercase;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .9);
}

.sc-categories .category .sc-category-copy > b {
  order: 3;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 19px;
  color: var(--sc-cyan);
  font-size: 9px;
  letter-spacing: .1em;
  line-height: 1.2;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .9);
}

.sc-categories .category .sc-category-copy > b i {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid rgba(35, 215, 255, .35);
  border-radius: 50%;
  font-size: 12px;
  font-style: normal;
  transition: color .25s ease, background .25s ease, transform .25s ease;
}

.sc-categories .category:hover .sc-category-copy > b i {
  color: #04101a;
  background: var(--sc-cyan);
  transform: rotate(45deg);
}

.sc-categories .category:not(.category-featured) .sc-category-copy > span {
  font-size: clamp(25px, 2.35vw, 38px);
}

.sc-categories .category:not(.category-featured) .sc-category-copy > small {
  display: none;
}

.sc-about .store-text {
  max-width: 920px;
  margin: auto;
  color: var(--sc-muted);
}

/* ============================================================
   SECRET CODE — CATEGORY EXPERIENCE
   ============================================================ */

.sc-category-hero {
  position: relative;
  min-height: 365px;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 90px max(24px, calc((100vw - 1320px) / 2)) 70px;
  border-bottom: 1px solid var(--sc-line);
  background:
    linear-gradient(90deg, rgba(4, 8, 18, .97), rgba(4, 8, 18, .72)),
    radial-gradient(circle at 72% 42%, rgba(35, 215, 255, .17), transparent 24rem),
    radial-gradient(circle at 85% 20%, rgba(128, 74, 255, .18), transparent 25rem),
    #050914;
}

.sc-category-hero::before {
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, transparent, #000 35%, transparent);
  content: "";
}

.sc-category-hero-glow {
  position: absolute;
  right: 9%;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(35, 215, 255, .15);
  border-radius: 50%;
  box-shadow:
    0 0 0 55px rgba(35, 215, 255, .025),
    0 0 0 110px rgba(128, 74, 255, .018);
}

.sc-category-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.sc-category-hero h1 {
  max-width: 900px;
  margin: 12px 0 18px;
  color: var(--sc-white);
  font-size: clamp(52px, 8vw, 100px);
  line-height: .92;
  letter-spacing: -.065em;
  text-transform: uppercase;
}

.sc-category-hero p {
  max-width: 650px;
  margin: 0;
  color: #9eb0cb;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.55;
}

.sc-category-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 30px;
}

.sc-category-meta span {
  color: #dceaff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sc-category-meta span::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--sc-cyan);
  box-shadow: 0 0 12px var(--sc-cyan);
  vertical-align: 1px;
  content: "";
}

.sc-category-nav-wrap {
  position: sticky;
  z-index: 20;
  top: 72px;
  padding: 0 max(24px, calc((100vw - 1320px) / 2));
  border-bottom: 1px solid var(--sc-line);
  background: rgba(5, 9, 20, .86);
  backdrop-filter: blur(18px);
}

.sc-category-nav {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 16px 0;
  scrollbar-width: none;
}

.sc-category-nav::-webkit-scrollbar {
  display: none;
}

.sc-category-nav a {
  flex: 0 0 auto;
  padding: 10px 16px;
  color: #91a3bf;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .035em;
  text-transform: uppercase;
  transition: .2s ease;
}

.sc-category-nav a:hover,
.sc-category-nav a.active {
  color: #e7fbff;
  border-color: rgba(35, 215, 255, .26);
  background: rgba(35, 215, 255, .08);
}

.sc-category-content {
  display: block !important;
  max-width: 1320px;
  padding-top: 76px;
  padding-bottom: 110px;
}

.sc-category-description {
  margin: 0 0 50px;
  color: #9eb0cb;
  border: 1px solid var(--sc-line);
  border-radius: 12px;
  background: rgba(11, 18, 33, .72);
}

.sc-category-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}

.sc-category-heading h2 {
  margin: 8px 0 0;
  color: var(--sc-white);
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -.045em;
}

.sc-category-heading > p {
  max-width: 410px;
  margin: 0 0 4px;
  color: #7f91ad;
  line-height: 1.55;
}

.sc-category-products.store-products-images {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.sc-category-products .store-product {
  position: relative;
  gap: 12px;
  overflow: hidden;
  padding: 0 0 20px;
  border: 1px solid var(--sc-line);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(16, 25, 44, .96), rgba(7, 12, 24, .98));
  box-shadow: 0 20px 60px rgba(0, 0, 0, .2);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.sc-category-products .store-product:hover {
  z-index: 2;
  border-color: rgba(35, 215, 255, .42);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .34), 0 0 30px rgba(35, 215, 255, .05);
  transform: translateY(-6px);
}

.sc-category-products .store-product .image-link {
  position: relative;
  width: 100%;
  height: auto;
  margin: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0a1120;
}

.sc-category-products .store-product .image-link::after {
  position: absolute;
  inset: auto 0 0;
  height: 50%;
  pointer-events: none;
  background: linear-gradient(transparent, rgba(6, 11, 22, .84));
  content: "";
}

.sc-category-products .store-product .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease, filter .5s ease;
}

.sc-category-products .store-product:hover .image {
  filter: saturate(1.08);
  transform: scale(1.045);
}

.sc-view-product {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 14px;
  padding: 8px 10px;
  color: #dffaff;
  border: 1px solid rgba(35, 215, 255, .28);
  border-radius: 6px;
  background: rgba(5, 15, 28, .76);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.sc-view-product b {
  margin-left: 5px;
  color: var(--sc-cyan);
}

.sc-product-labels,
.sc-category-products .product-title,
.sc-category-products .product-actions {
  margin-right: 20px;
  margin-left: 20px;
}

.sc-product-labels {
  display: flex;
  gap: 7px;
  margin-top: 7px;
}

.sc-product-labels span {
  padding: 5px 7px;
  color: #80dff5;
  border: 1px solid rgba(35, 215, 255, .16);
  border-radius: 4px;
  background: rgba(35, 215, 255, .055);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sc-category-products .product-title {
  min-height: 52px;
  margin-top: 0;
  margin-bottom: 0;
  color: #f1f7ff;
  font-size: 20px;
  line-height: 1.3;
}

.sc-category-products .product-actions {
  align-items: center;
  margin-top: auto;
}

.sc-category-products .product-actions .price {
  color: #dceaff;
  font-weight: 700;
}

.sc-category-products .product-actions .btn-primary,
.sc-category-products .product-actions .add,
.sc-category-products .product-actions .subscribe {
  border-radius: 6px;
}

.sc-empty-category {
  max-width: 780px;
  margin: 20px auto;
  padding: 80px 30px;
  border: 1px solid var(--sc-line);
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 0, rgba(35, 215, 255, .12), transparent 22rem),
    rgba(10, 16, 30, .8);
  text-align: center;
}

.sc-empty-category span {
  color: var(--sc-cyan);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
}

.sc-empty-category h2 {
  margin: 12px 0;
  color: var(--sc-white);
  font-size: clamp(28px, 4vw, 44px);
}

.sc-empty-category p {
  margin-bottom: 28px;
  color: var(--sc-muted);
}

@media (width <= 960px) {
  .sc-category-hero {
    min-height: 320px;
    padding-top: 70px;
  }

  .sc-category-nav-wrap {
    top: 64px;
  }

  .sc-category-heading {
    align-items: start;
    flex-direction: column;
  }

  .sc-category-products.store-products-images {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (width <= 620px) {
  .sc-category-hero {
    min-height: 290px;
    padding-top: 55px;
    padding-bottom: 48px;
  }

  .sc-category-hero h1 {
    font-size: clamp(44px, 17vw, 68px);
  }

  .sc-category-meta {
    gap: 10px 18px;
  }

  .sc-category-content {
    padding-top: 50px;
    padding-bottom: 75px;
  }

  .sc-category-products.store-products-images {
    grid-template-columns: 1fr;
  }

  .sc-category-products .store-product .image-link {
    aspect-ratio: 16 / 9;
  }
}

.site-footer {
  border-top: 1px solid var(--sc-line);
  background: #040711;
}

.sc-footer-brand {
  display: grid;
  justify-items: center;
  margin-bottom: 34px;
  text-align: center;
}

.sc-footer-logo img {
  width: auto;
  max-width: 150px;
  max-height: 55px;
  object-fit: contain;
}

.sc-footer-brand p {
  margin: 16px 0;
  color: var(--sc-muted);
}

.sc-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}

.sc-footer-links a {
  color: #c8d4e9;
  font-size: 13px;
  font-weight: 700;
}

@keyframes sc-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -16px; }
}

@keyframes sc-spin {
  to { rotate: 360deg; }
}

@keyframes sc-pulse {
  0%, 100% { opacity: .55; }
  50% { opacity: 1; }
}

@keyframes sc-marquee {
  to { transform: translateX(calc(-50% - 11px)); }
}

@media (prefers-reduced-motion: reduce) {
  .sc-logo-stage,
  .sc-orbit,
  .sc-product-track {
    animation: none;
  }
}

@media (max-width: 1000px) {
  .page-index .site-header {
    position: relative;
  }

  .sc-hero {
    grid-template-columns: 1fr;
    padding-top: 90px;
    text-align: center;
  }

  .sc-hero-content {
    margin: auto;
  }

  .sc-kicker,
  .sc-hero-actions,
  .sc-trust-row {
    justify-content: center;
  }

  .sc-hero-visual {
    min-height: 430px;
  }

  .sc-logo-stage {
    width: min(330px, 62vw);
  }

  .sc-categories .site-home-categories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .sc-categories .category-featured {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 440px;
  }
}

@media (max-width: 640px) {
  .sc-hero {
    min-height: auto;
    padding: 72px 20px 45px;
  }

  .sc-hero h2 {
    font-size: clamp(39px, 12.5vw, 58px);
  }

  .sc-hero-content > p {
    font-size: 15px;
  }

  .sc-button {
    width: 100%;
  }

  .sc-trust-row {
    gap: 12px 20px;
  }

  .sc-hero-visual {
    min-height: 360px;
  }

  .sc-orbit-one {
    width: 330px;
    height: 330px;
  }

  .sc-orbit-two {
    width: 390px;
    height: 250px;
  }

  .sc-floating-card {
    min-width: 140px;
    padding: 12px;
  }

  .sc-floating-card-one {
    top: 14%;
  }

  .sc-floating-card-two {
    right: -12px;
    bottom: 14%;
  }

  .sc-marquee-section,
  .sc-categories,
  .sc-about {
    padding: 72px 20px;
  }

  .sc-section-heading {
    align-items: start;
    flex-direction: column;
  }

  .sc-categories .site-home-categories {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 16px;
  }

  .sc-categories .category {
    width: 100%;
    min-height: 0;
    aspect-ratio: 16 / 9;
    padding: 20px;
    gap: 24px;
    border-radius: 14px;
    transform: none;
  }

  .sc-categories .category-featured {
    grid-column: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
    padding: 22px;
  }

  .sc-categories .category::before {
    background:
      linear-gradient(90deg, rgba(3, 7, 16, .92) 0%, rgba(3, 7, 16, .55) 45%, rgba(3, 7, 16, .08) 78%),
      linear-gradient(0deg, rgba(3, 7, 16, .94) 0%, rgba(3, 7, 16, .16) 58%, transparent 100%);
  }

  .sc-categories .category .image {
    object-position: center;
    filter: none;
    transform: scale(1.002);
  }

  .sc-categories .category:hover .image {
    filter: none;
    transform: scale(1.002);
  }

  .sc-categories .category .sc-category-copy {
    max-width: 72%;
  }

  .sc-categories .category .sc-category-copy > span {
    font-size: clamp(24px, 8vw, 36px);
  }

  .sc-categories .category:not(.category-featured) .sc-category-copy > span {
    font-size: clamp(22px, 7vw, 30px);
  }

  .sc-categories .category .sc-category-copy > small,
  .sc-categories .category .sc-category-copy > b {
    display: none;
  }

  .sc-category-count {
    display: none;
  }

  .sc-categories-index {
    display: none;
  }
}

@media (hover: none) {
  .sc-categories .category:hover::after {
    opacity: 0;
  }
}

/* Secret Code compact storefront header
   Kept last and deliberately specific so the stock 355px Tebex masthead
   can never win through the desktop media rules above. */
@media (min-width: 961px) {
  body.page-index #header.site-header,
  body.is-navigation-horizontal #header.site-header,
  #header.site-header {
    width: 100% !important;
    max-width: none !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 clamp(28px, 5vw, 76px) !important;
  }

  body.page-index #header .site-header-inner,
  body.is-navigation-horizontal #header .site-header-inner,
  #header .site-header-inner {
    width: 100% !important;
    max-width: 1440px !important;
    height: 72px !important;
    min-height: 72px !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }

  #header .site-header-inner .site-title {
    position: absolute !important;
    inset: 0 auto 0 0 !important;
    width: auto !important;
    height: 72px !important;
    margin: 0 !important;
    line-height: 72px !important;
  }

  #header .site-header-inner .site-title img {
    width: auto !important;
    max-width: 118px !important;
    max-height: 42px !important;
  }

  #header .site-header-inner .log-in,
  #header .site-header-inner .user-actions {
    top: 50% !important;
    right: 0 !important;
    bottom: auto !important;
    transform: translateY(-50%) !important;
  }

  #header .site-header-inner .info {
    display: none !important;
  }

  #header .navigation-horizontal {
    width: 100% !important;
    max-width: 1440px !important;
    min-height: 50px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    border-radius: 0 !important;
  }
}

/* Secret Code premium package detail */
.sc-package-page {
  width: min(1180px, calc(100% - 40px));
  margin: 48px auto 90px;
}

.sc-package-detail,
.sc-package-detail.popup-content {
  --sc-package-pad: clamp(22px, 4vw, 46px);
  display: grid;
  gap: 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 0 0 !important;
  border: 1px solid rgba(101, 224, 255, .16);
  border-radius: 24px;
  background:
    radial-gradient(circle at 8% 0%, rgba(43, 204, 255, .12), transparent 25%),
    radial-gradient(circle at 95% 35%, rgba(121, 65, 255, .11), transparent 28%),
    #070b14;
  box-shadow: 0 32px 90px rgba(0, 0, 0, .62), inset 0 1px rgba(255, 255, 255, .035);
}

.store-product-popup-content {
  width: min(1120px, calc(100vw - 36px));
  max-width: 1120px;
  max-height: min(92vh, 1000px);
  border-radius: 24px;
}

.store-product-popup-content.sc-package-detail {
  overflow-y: auto;
}

.sc-package-detail::before {
  content: "";
  position: absolute;
  z-index: 5;
  top: 0;
  left: 12%;
  width: 76%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #39d8ff, #9267ff, transparent);
  opacity: .9;
}

.sc-package-heading {
  padding: var(--sc-package-pad) var(--sc-package-pad) 26px;
}

.sc-package-eyebrow,
.sc-package-section-label {
  color: #6fe7ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.sc-package-eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 13px;
}

.sc-package-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #41e8d2;
  box-shadow: 0 0 0 5px rgba(65, 232, 210, .08), 0 0 14px #41e8d2;
}

.sc-package-detail .product-title {
  max-width: 900px;
  margin: 0;
  color: #f5f8ff;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.05;
}

.sc-package-detail .product-title .countdown {
  display: inline-flex;
  margin: 0 0 6px 12px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 91, 108, .24);
  border-radius: 999px;
  background: rgba(255, 91, 108, .08);
  font-size: 10px;
  letter-spacing: .08em;
  vertical-align: middle;
}

.sc-package-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.sc-package-tags span {
  padding: 7px 11px;
  border: 1px solid rgba(131, 211, 255, .13);
  border-radius: 999px;
  background: rgba(255, 255, 255, .035);
  color: #aebbd0;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sc-package-showcase {
  position: relative;
  overflow: hidden;
  margin: 0 var(--sc-package-pad);
  border: 1px solid rgba(131, 211, 255, .12);
  border-radius: 18px;
  background: #03050a;
}

.sc-package-showcase > .image {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  margin: 0;
  object-fit: cover;
}

.sc-package-showcase > img.image {
  aspect-ratio: 16 / 8.5;
}

.sc-package-showcase .media-slider {
  position: relative;
  z-index: 1;
}

.sc-package-image-glow {
  position: absolute;
  z-index: 2;
  inset: auto 8% -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(53, 220, 255, .8), transparent);
  box-shadow: 0 0 28px 8px rgba(53, 220, 255, .12);
  pointer-events: none;
}

.sc-package-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 275px;
  gap: clamp(28px, 5vw, 64px);
  padding: 38px var(--sc-package-pad) 42px;
}

.sc-package-section-label {
  margin-bottom: 18px;
}

.sc-package-detail .descr {
  color: #b7c1d3;
  font-size: 15px;
  line-height: 1.72;
}

.sc-package-detail .descr > :first-child {
  margin-top: 0;
}

.sc-package-detail .descr h1,
.sc-package-detail .descr h2,
.sc-package-detail .descr h3 {
  margin-top: 28px;
  color: #f1f5ff;
  font-weight: 750;
}

.sc-package-detail .descr a {
  color: #5de1ff;
}

.sc-package-detail .descr img {
  max-width: 100%;
  border-radius: 12px;
}

.sc-package-assurance {
  align-self: start;
  overflow: hidden;
  border: 1px solid rgba(126, 217, 255, .12);
  border-radius: 16px;
  background: rgba(255, 255, 255, .025);
}

.sc-assurance-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 17px;
}

.sc-assurance-item + .sc-assurance-item {
  border-top: 1px solid rgba(126, 217, 255, .09);
}

.sc-assurance-icon {
  display: grid;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(75, 221, 255, .19);
  border-radius: 10px;
  background: rgba(75, 221, 255, .07);
  color: #5de1ff;
  font-size: 17px;
}

.sc-assurance-item strong,
.sc-assurance-item small {
  display: block;
}

.sc-assurance-item strong {
  margin-bottom: 3px;
  color: #edf3ff;
  font-size: 12px;
}

.sc-assurance-item small {
  color: #78879f;
  font-size: 10px;
}

.sc-package-purchase {
  display: flex;
  position: sticky;
  z-index: 8;
  bottom: 0;
  align-items: center;
  gap: 24px;
  order: 2;
  padding: 18px var(--sc-package-pad);
  border-top: 1px solid rgba(110, 223, 255, .13);
  background: rgba(5, 9, 17, .93);
  box-shadow: 0 -18px 48px rgba(0, 0, 0, .32);
  backdrop-filter: blur(18px);
}

.sc-package-purchase-copy {
  min-width: 210px;
  margin-right: auto;
}

.sc-package-purchase-copy small,
.sc-package-purchase-copy strong {
  display: block;
}

.sc-package-purchase-copy small {
  margin-bottom: 3px;
  color: #59dffb;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.sc-package-purchase-copy strong {
  color: #dfe7f5;
  font-size: 13px;
}

.sc-package-detail .sc-package-purchase > .actions {
  display: flex;
  position: relative !important;
  z-index: 1;
  bottom: auto;
  align-items: center;
  flex: 1 1 auto;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  background: none;
  backdrop-filter: none;
}

.sc-package-detail .actions .price {
  margin: 0 auto 0 0;
  color: #f5f8ff;
  white-space: nowrap;
}

.sc-package-detail .actions .price strong {
  font-size: 25px;
  font-weight: 800;
}

.sc-package-detail .actions .btn-primary,
.sc-package-detail .actions .add,
.sc-package-detail .actions .subscribe {
  min-width: 210px;
  border-radius: 10px;
  background: linear-gradient(105deg, #43d4dc, #47bde7);
  box-shadow: 0 10px 30px rgba(52, 205, 230, .18);
  color: #041016;
  font-weight: 850;
}

.sc-package-detail .actions .gift {
  border-color: rgba(125, 220, 255, .16);
  border-radius: 10px;
  background-color: rgba(255, 255, 255, .055);
}

.popup .sc-package-detail .popup-close {
  top: 16px;
  right: 16px;
  z-index: 20;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 12px;
  background-color: rgba(2, 5, 10, .72);
  backdrop-filter: blur(12px);
}

@media (max-width: 760px) {
  .sc-package-page {
    width: calc(100% - 24px);
    margin: 24px auto 60px;
  }

  .store-product-popup-content {
    width: calc(100vw - 16px);
    max-height: calc(100vh - 16px);
    border-radius: 17px;
  }

  .sc-package-detail,
  .sc-package-detail.popup-content {
    --sc-package-pad: 17px;
    border-radius: 17px;
  }

  .sc-package-heading {
    padding-top: 25px;
    padding-right: 58px;
  }

  .sc-package-detail .product-title {
    font-size: clamp(25px, 8vw, 36px);
  }

  .sc-package-showcase {
    border-radius: 12px;
  }

  .sc-package-showcase > img.image {
    aspect-ratio: 16 / 10;
  }

  .sc-package-body {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-top: 28px;
  }

  .sc-package-purchase {
    align-items: stretch;
    flex-direction: column;
    gap: 13px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .sc-package-purchase-copy {
    display: none;
  }

  .sc-package-detail .sc-package-purchase > .actions {
    flex-wrap: wrap;
    justify-content: stretch;
  }

  .sc-package-detail .actions .price {
    width: 100%;
  }

  .sc-package-detail .actions .wide,
  .sc-package-detail .actions .half {
    flex: 1 1 180px;
  }

  .sc-package-detail .actions .btn-primary,
  .sc-package-detail .actions .add,
  .sc-package-detail .actions .subscribe {
    min-width: 0;
  }
}

/* Secret Code full product page v4 */
.sc-product-page {
  width: min(1380px, calc(100% - 48px));
  margin: 22px auto 100px;
}

.sc-product-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 26px;
  color: #65748c;
  font-size: 12px;
  font-weight: 650;
}

.sc-product-breadcrumb a {
  color: #9aa9bf;
  text-decoration: none;
}

.sc-product-breadcrumb a:hover {
  color: #58dcff;
}

.sc-product-hero {
  display: grid !important;
  grid-template-columns: minmax(0, 1.15fr) minmax(370px, .85fr);
  gap: clamp(42px, 6vw, 90px);
  align-items: start;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: clamp(26px, 4vw, 58px) !important;
  border: 1px solid rgba(91, 213, 255, .11);
  border-radius: 28px;
  background:
    radial-gradient(circle at 3% 50%, rgba(0, 170, 255, .09), transparent 30%),
    linear-gradient(145deg, rgba(9, 15, 27, .94), rgba(4, 7, 13, .96));
  box-shadow: 0 35px 100px rgba(0, 0, 0, .42), inset 0 1px rgba(255, 255, 255, .025);
}

.sc-product-gallery {
  position: relative;
  min-width: 0;
  padding: 20px;
}

.sc-gallery-glow {
  position: absolute;
  inset: 5% -3% -7%;
  border-radius: 34px;
  background:
    radial-gradient(ellipse at 45% 65%, rgba(0, 187, 255, .68), rgba(0, 136, 255, .25) 38%, transparent 70%);
  filter: blur(42px);
  opacity: .72;
  pointer-events: none;
}

.sc-gallery-frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(83, 217, 255, .3);
  border-radius: 20px;
  background: #02050a;
  box-shadow:
    0 0 0 5px rgba(4, 180, 255, .035),
    0 24px 75px rgba(0, 162, 255, .24),
    inset 0 1px rgba(255, 255, 255, .07);
}

.sc-gallery-frame > .image {
  display: block;
  width: 100%;
  max-width: none;
  aspect-ratio: 16 / 9;
  margin: 0;
  object-fit: cover;
}

.sc-gallery-frame .media-slider {
  width: 100%;
  max-width: none;
  margin: 0;
}

.sc-gallery-frame .media-slider .slider,
.sc-gallery-frame .media-slider .slide,
.sc-gallery-frame .media-slider .slide-image,
.sc-gallery-frame .media-slider .slide-frame {
  width: 100%;
}

.sc-gallery-frame .media-slider .slider {
  aspect-ratio: 16 / 9;
  background: #03060b;
}

.sc-gallery-frame .media-slider .slide-image,
.sc-gallery-frame .media-slider .slide-frame {
  height: 100%;
  object-fit: cover;
}

.sc-gallery-frame .media-slider .thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  margin: 0;
  padding: 14px;
  border-top: 1px solid rgba(87, 213, 255, .1);
  background: rgba(2, 6, 12, .96);
  list-style: none;
}

.sc-gallery-frame .media-slider .thumb {
  flex: 0 0 92px;
  overflow: hidden;
  margin: 0;
  border: 1px solid transparent;
  border-radius: 9px;
  cursor: pointer;
}

.sc-gallery-frame .media-slider .thumb.active {
  border-color: #45d9ff;
  box-shadow: 0 0 18px rgba(47, 208, 255, .45);
}

.sc-gallery-frame .media-slider .open-lightbox {
  top: 16px;
  right: 16px;
}

.sc-product-media-column,
.sc-product-summary-column {
  min-width: 0;
}

.sc-product-summary-column {
  position: sticky;
  top: 100px;
}

.sc-product-summary {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding-top: 20px;
}

.sc-product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 28px;
}

.sc-product-tags span {
  padding: 9px 16px;
  border: 1px solid rgba(76, 215, 255, .22);
  border-radius: 999px;
  background: linear-gradient(100deg, rgba(15, 197, 255, .18), rgba(40, 140, 255, .09));
  color: #5fddff;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .1em;
}

.sc-product-kicker,
.sc-section-eyebrow {
  margin: 0 0 10px;
  color: #55dfff;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.sc-product-hero .product-title {
  margin: 0;
  color: #f7f9ff;
  font-size: clamp(37px, 4.2vw, 66px);
  font-weight: 850;
  letter-spacing: -.055em;
  line-height: .98;
}

.sc-product-hero .countdown {
  display: inline-flex;
  margin-left: 10px;
  vertical-align: middle;
}

.sc-product-mini-features {
  display: grid;
  gap: 0;
  margin: 34px 0;
  border-top: 1px solid rgba(113, 213, 255, .11);
  border-bottom: 1px solid rgba(113, 213, 255, .11);
}

.sc-product-mini-features > div {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 3px;
}

.sc-product-mini-features > div + div {
  border-top: 1px solid rgba(113, 213, 255, .08);
}

.sc-product-mini-features b {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(74, 217, 255, .18);
  border-radius: 9px;
  background: rgba(41, 192, 255, .07);
  color: #5ce2ff;
}

.sc-product-mini-features strong,
.sc-product-mini-features small {
  display: block;
}

.sc-product-mini-features strong {
  color: #edf4ff;
  font-size: 12px;
}

.sc-product-mini-features small {
  margin-top: 2px;
  color: #718098;
  font-size: 10px;
}

.sc-product-buy > .actions {
  display: flex !important;
  position: static !important;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  background: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.sc-product-buy .price {
  flex: 0 0 100%;
  margin: 0 0 12px !important;
  color: #fff;
}

.sc-product-buy .price strong {
  font-size: 31px;
  font-weight: 850;
}

.sc-product-buy .wide,
.sc-product-buy .half {
  flex: 1 1 190px;
}

.sc-product-buy .btn-primary,
.sc-product-buy .add,
.sc-product-buy .subscribe {
  min-height: 52px;
  border: 0;
  border-radius: 11px;
  background: linear-gradient(105deg, #44dcff, #2696ff);
  box-shadow: 0 13px 34px rgba(0, 165, 255, .28);
  color: #02111a;
  font-weight: 900;
}

.sc-product-buy .gift {
  min-height: 52px;
  border-color: rgba(92, 215, 255, .2);
  border-radius: 11px;
  background: rgba(255, 255, 255, .045);
}

.sc-secure-note {
  margin: 17px 0 0;
  color: #637189;
  font-size: 9px;
  letter-spacing: .055em;
  text-align: center;
  text-transform: uppercase;
}

.sc-product-description {
  position: relative;
  z-index: 2;
  margin: 54px 20px 8px;
  padding-top: 42px;
  border-top: 1px solid rgba(91, 213, 255, .12);
}

.sc-product-description h2 {
  margin: 0 0 28px;
  color: #f3f7ff;
  font-size: clamp(27px, 3vw, 40px);
  letter-spacing: -.035em;
}

.sc-product-description .descr {
  color: #aab6ca;
  font-size: 15px;
  line-height: 1.78;
}

.sc-product-description .descr img,
.sc-product-description .descr iframe {
  max-width: 100%;
  border-radius: 14px;
}

.sc-product-help {
  margin-top: 42px;
  padding: 28px;
  border: 1px solid rgba(91, 213, 255, .12);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0, rgba(88, 101, 242, .18), transparent 48%),
    linear-gradient(145deg, rgba(10, 18, 31, .96), rgba(6, 11, 20, .98));
  box-shadow: 0 18px 48px rgba(0, 0, 0, .22);
}

.sc-product-help > span {
  color: #56dfff;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.sc-product-help h3 {
  margin: 10px 0;
  color: #f1f5fd;
  font-size: 21px;
}

.sc-product-help p {
  margin: 0 0 20px;
  color: #8290a6;
  font-size: 12px;
  line-height: 1.6;
}

.sc-product-help .sc-discord-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(130, 141, 255, .38);
  border-radius: 11px;
  background: linear-gradient(110deg, #5865f2, #7384ff);
  box-shadow: 0 12px 28px rgba(88, 101, 242, .25);
  color: #fff;
  font-weight: 850;
  text-decoration: none;
}

.sc-product-help .sc-discord-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(88, 101, 242, .36);
}

.sc-product-help .sc-discord-btn svg {
  width: 21px;
  height: 21px;
}

@media (max-width: 960px) {
  .sc-product-page {
    width: min(760px, calc(100% - 28px));
  }

  .sc-product-hero {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .sc-product-gallery {
    padding: 5px;
  }

  .sc-product-summary-column {
    position: static;
  }

  .sc-product-summary {
    padding-top: 0;
  }
}

@media (max-width: 600px) {
  .sc-product-page {
    width: calc(100% - 20px);
    margin-top: 12px;
  }

  .sc-product-breadcrumb {
    display: none;
  }

  .sc-product-hero {
    gap: 28px;
    padding: 14px 14px 26px !important;
    border-radius: 18px;
  }

  .sc-gallery-frame {
    border-radius: 13px;
  }

  .sc-gallery-frame .media-slider .thumb {
    flex-basis: 68px;
  }

  .sc-product-hero .product-title {
    font-size: clamp(34px, 12vw, 48px);
  }

  .sc-product-tags {
    margin-bottom: 22px;
  }

  .sc-product-tags span {
    padding: 7px 10px;
    font-size: 8px;
  }

  .sc-product-description {
    margin: 42px 4px 0;
    padding-top: 34px;
  }

  .sc-product-help {
    margin-top: 34px;
    padding: 22px;
  }
}

/* ==========================================================
   Secret Code v8 — active navigation, larger logo and clean bg
   ========================================================== */

/* Remove the stock Tebex background image configured in Appearance. */
body::before {
  content: none !important;
  display: none !important;
  background: none !important;
  background-image: none !important;
}

body {
  background:
    radial-gradient(circle at 18% 0, rgba(29, 112, 255, .09), transparent 34rem),
    radial-gradient(circle at 88% 22%, rgba(83, 53, 190, .06), transparent 31rem),
    #050812 !important;
}

#header.site-header {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 clamp(22px, 4vw, 64px) !important;
  background: rgba(4, 8, 17, .94);
  border-bottom: 1px solid rgba(101, 230, 255, .11);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .16);
}

#header .site-header-inner {
  position: relative !important;
  display: grid !important;
  grid-template-columns: minmax(92px, auto) minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: clamp(20px, 3.5vw, 58px) !important;
  width: 100% !important;
  max-width: 1440px !important;
  height: 88px !important;
  min-height: 88px !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

#header .site-header-inner .site-title {
  position: static !important;
  inset: auto !important;
  display: flex !important;
  align-items: center !important;
  width: auto !important;
  height: 88px !important;
  margin: 0 !important;
  line-height: normal !important;
}

#header .site-header-inner .site-title a {
  display: flex;
  align-items: center;
  height: 100%;
}

#header .site-header-inner .site-title img {
  width: auto !important;
  max-width: 176px !important;
  max-height: 58px !important;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(75, 125, 255, .25));
}

#header .sc-main-navigation {
  position: static !important;
  width: 100% !important;
  max-width: none !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

#header .sc-main-navigation > .menu {
  justify-content: center;
  gap: clamp(2px, .8vw, 12px);
  padding: 0 !important;
  background: transparent !important;
  font-size: 13px;
  font-weight: 750;
}

#header .sc-main-navigation .menu > li > a {
  padding: 15px 12px;
  color: #99a9bf;
  font-size: 12px;
  letter-spacing: .055em;
  text-transform: uppercase;
}

#header .sc-main-navigation .menu > li > a:hover,
#header .sc-main-navigation .menu > li > a.link-active {
  color: #e9fbff;
}

#header .sc-main-navigation .menu > li > a::after {
  bottom: 7px;
}

#header .sc-main-navigation .has-children > ul {
  top: calc(100% - 4px);
  overflow: hidden;
  min-width: 210px;
  padding: 8px !important;
  border: 1px solid rgba(101, 230, 255, .14);
  border-radius: 12px;
  background: rgba(7, 13, 24, .96) !important;
  box-shadow: 0 20px 55px rgba(0, 0, 0, .42);
}

#header .sc-main-navigation .has-children > ul a {
  max-width: 28ch;
  padding: 10px 12px;
  border-radius: 7px;
  color: #aab8cc;
  font-size: 12px;
}

#header .sc-main-navigation .has-children > ul a:hover,
#header .sc-main-navigation .has-children > ul a.link-active {
  color: #e8fbff !important;
  background: rgba(101, 230, 255, .09) !important;
}

#header .sc-nav-discord > a {
  color: #a9bdff !important;
}

#header .site-header-inner .actions {
  display: none;
}

#header .site-header-inner .log-in,
#header .site-header-inner .user-actions {
  position: static !important;
  inset: auto !important;
  justify-self: end;
  transform: none !important;
}

.sc-product-breadcrumb {
  margin-bottom: 22px;
}

.sc-product-breadcrumb .sc-go-back {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  padding: 10px 14px;
  border: 1px solid rgba(101, 230, 255, .14);
  border-radius: 9px;
  background: rgba(10, 18, 32, .62);
  color: #aab9ce;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .065em;
  text-transform: uppercase;
  transition: color .18s ease, border-color .18s ease, background .18s ease, transform .18s ease;
}

.sc-product-breadcrumb .sc-go-back span {
  color: #65e6ff;
  font-size: 16px;
  line-height: 1;
  transition: transform .18s ease;
}

.sc-product-breadcrumb .sc-go-back:hover {
  border-color: rgba(101, 230, 255, .36);
  background: rgba(101, 230, 255, .07);
  color: #effcff;
  transform: translateY(-1px);
}

.sc-product-breadcrumb .sc-go-back:hover span {
  transform: translateX(-2px);
}

@media (max-width: 1100px) and (min-width: 961px) {
  #header .site-header-inner {
    gap: 18px !important;
  }

  #header .site-header-inner .site-title img {
    max-width: 132px !important;
    max-height: 52px !important;
  }

  #header .sc-main-navigation > .menu {
    gap: 0;
  }

  #header .sc-main-navigation .menu > li > a {
    padding-inline: 8px;
    font-size: 10px;
  }

  #header .site-header-inner .user-name {
    display: none;
  }
}

@media (max-width: 960px) {
  #header.site-header {
    padding: 0 18px !important;
  }

  #header .site-header-inner {
    display: flex !important;
    justify-content: center !important;
    height: 76px !important;
    min-height: 76px !important;
  }

  #header .site-header-inner .site-title {
    height: 76px !important;
  }

  #header .site-header-inner .site-title img {
    max-width: 138px !important;
    max-height: 51px !important;
  }

  #header .site-header-inner .actions {
    position: absolute;
    top: 50%;
    left: 0;
    display: flex;
    transform: translateY(-50%);
  }

  #header .site-header-inner .user-actions,
  #header .site-header-inner .log-in {
    position: absolute !important;
    top: 50% !important;
    right: 0 !important;
    transform: translateY(-50%) !important;
  }

  #header .sc-main-navigation {
    position: fixed !important;
  }

  #header .sc-main-navigation > .menu {
    justify-content: flex-start;
    gap: 0;
    padding: 72px 22px 24px !important;
    background:
      radial-gradient(circle at 0 0, rgba(50, 151, 255, .13), transparent 22rem),
      #060b14 !important;
    font-size: 16px;
  }

  #header .sc-main-navigation .menu > li > a {
    padding: 13px 4px;
    font-size: 13px;
  }

  #header .sc-main-navigation .has-children > ul {
    min-width: 0;
    padding: 5px 0 8px 16px !important;
    border: 0;
    border-left: 1px solid rgba(101, 230, 255, .15);
    border-radius: 0;
    background: transparent !important;
    box-shadow: none;
  }
}

@media (max-width: 600px) {
  #header .site-header-inner .site-title img {
    max-width: 112px !important;
    max-height: 45px !important;
  }

  .sc-product-page {
    width: min(100% - 28px, 1380px);
    margin-top: 16px;
  }
}

/* ==========================================================
   Secret Code v7 — account, gift icon and premium basket
   ========================================================== */

/* Keep the gift action neutral; color only the gift glyph. */
.store-product .gift.btn-glyph::before,
.store-product .gift.btn-glyph-text::before,
.sc-product-buy .gift.btn-glyph::before,
.sc-product-buy .gift.btn-glyph-text::before {
  background-color: #65e6ff !important;
  filter: drop-shadow(0 0 7px rgba(101, 230, 255, .72));
}

.store-product .gift.btn-glyph:hover::before,
.store-product .gift.btn-glyph:focus::before,
.store-product .gift.btn-glyph-text:hover::before,
.store-product .gift.btn-glyph-text:focus::before,
.sc-product-buy .gift.btn-glyph:hover::before,
.sc-product-buy .gift.btn-glyph:focus::before,
.sc-product-buy .gift.btn-glyph-text:hover::before,
.sc-product-buy .gift.btn-glyph-text:focus::before {
  background-color: #a9f3ff !important;
}

/* Logged-in user and basket controls. */
#header .site-header-inner .user-actions {
  align-items: center;
  gap: 10px !important;
}

#header .site-header-inner .user-name {
  --btn-color-text: #f4f8ff;
  --btn-color-text-hover: #ff879d;
  --btn-color-bg: rgba(8, 15, 27, .86);
  --btn-color-bg-hover: rgba(21, 12, 28, .94);
  min-width: 150px;
  height: 46px;
  padding: 0 17px;
  border: 1px solid rgba(101, 230, 255, .22);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(101, 230, 255, .07), transparent 45%),
    rgba(8, 15, 27, .88);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, .045),
    0 9px 24px rgba(0, 0, 0, .22);
  color: #f4f8ff;
  font-size: 13px;
  font-weight: 780;
  letter-spacing: .01em;
}

#header .site-header-inner .user-name::before {
  background-color: #65e6ff;
  filter: drop-shadow(0 0 6px rgba(101, 230, 255, .54));
}

#header .site-header-inner .user-name:hover,
#header .site-header-inner .user-name:focus {
  border-color: rgba(255, 103, 143, .38);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, .055),
    0 10px 28px rgba(255, 74, 126, .1);
  transform: translateY(-1px);
}

#header .site-header-inner .user-name:hover::before,
#header .site-header-inner .user-name:focus::before {
  background-color: #ff879d;
}

#header .site-header-inner .open-basket {
  --btn-color-text: #03131b;
  --btn-color-text-hover: #020b10;
  --btn-color-bg: transparent;
  --btn-color-bg-hover: transparent;
  min-width: 112px;
  height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(138, 240, 255, .62);
  border-radius: 12px;
  background: linear-gradient(110deg, #65e6ff 0%, #3bc7f3 52%, #5aa7ff 100%);
  box-shadow:
    0 10px 28px rgba(44, 192, 255, .2),
    inset 0 1px rgba(255, 255, 255, .42);
  color: #03131b;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .015em;
}

#header .site-header-inner .open-basket::before {
  background-color: #03131b;
}

#header .site-header-inner .open-basket:hover,
#header .site-header-inner .open-basket:focus {
  border-color: #c8f8ff;
  background: linear-gradient(110deg, #8ceeff 0%, #58d8ff 52%, #7eb9ff 100%);
  box-shadow:
    0 13px 34px rgba(44, 192, 255, .32),
    inset 0 1px rgba(255, 255, 255, .55);
  transform: translateY(-2px);
}

/* Premium basket drawer and overlay. */
.basket-popup {
  background:
    radial-gradient(circle at 100% 0, rgba(61, 205, 255, .09), transparent 30%),
    rgba(0, 3, 8, .84);
  backdrop-filter: blur(8px);
}

.basket-popup-content {
  width: min(570px, 100%);
  max-width: 570px;
  border-left: 1px solid rgba(101, 230, 255, .18);
  background:
    radial-gradient(circle at 100% 0, rgba(54, 201, 255, .14), transparent 24%),
    radial-gradient(circle at 20% 100%, rgba(103, 69, 255, .09), transparent 30%),
    linear-gradient(180deg, #070c15 0%, #04070d 100%);
  box-shadow:
    -24px 0 80px rgba(0, 0, 0, .66),
    inset 1px 0 rgba(255, 255, 255, .02);
}

.basket-popup .popup-close {
  top: 18px;
  right: 18px;
  z-index: 5;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 10px;
  background: rgba(255, 255, 255, .035);
  opacity: .8;
}

.basket-popup .popup-close::before {
  background-color: #b7c6d9;
  mask-size: 16px;
}

.basket-popup .popup-close:hover {
  border-color: rgba(101, 230, 255, .32);
  background: rgba(101, 230, 255, .08);
  opacity: 1;
}

.basket-popup .popup-close:hover::before {
  background-color: #65e6ff;
}

.basket .basket-header {
  min-height: 112px;
  padding: 30px 76px 24px 28px;
  border-bottom: 1px solid rgba(101, 230, 255, .1);
  background:
    linear-gradient(120deg, rgba(101, 230, 255, .08), transparent 48%),
    rgba(8, 14, 24, .72);
}

.basket .basket-title {
  gap: 14px;
  color: #f5f8ff;
  font-size: 18px;
  font-weight: 850;
  letter-spacing: .02em;
  text-transform: none;
}

.basket .basket-title::before {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(101, 230, 255, .2);
  border-radius: 11px;
  background-color: #65e6ff;
  mask: url("https://template-assets.tebex.io/images/checkout.svg") center center/19px no-repeat;
  filter: drop-shadow(0 0 8px rgba(101, 230, 255, .42));
}

.basket .basket-second-header {
  min-height: 58px;
  padding: 15px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, .055);
  background: rgba(4, 9, 16, .78);
  color: #8695aa;
  font-size: 13px;
  font-weight: 650;
}

.basket .basket-second-header .count {
  padding: 6px 10px;
  border: 1px solid rgba(101, 230, 255, .13);
  border-radius: 999px;
  background: rgba(101, 230, 255, .045);
}

.basket .basket-second-header .total {
  color: #65e6ff;
  font-size: 13px;
  font-weight: 720;
}

.basket .basket-second-header .total strong {
  font-size: 17px;
  font-weight: 820;
}

.basket .basket-content {
  scrollbar-width: thin;
  scrollbar-color: rgba(101, 230, 255, .4) transparent;
}

.basket .basket-items {
  gap: 12px;
  padding: 22px 24px 28px;
}

.basket .basket-item {
  position: relative;
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .065);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(101, 230, 255, .035), transparent 46%),
    rgba(255, 255, 255, .025);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, .025),
    0 12px 30px rgba(0, 0, 0, .16);
  transition:
    border-color .18s ease,
    background-color .18s ease,
    transform .18s ease;
}

.basket .basket-item:hover {
  border-color: rgba(101, 230, 255, .16);
  background-color: rgba(101, 230, 255, .025);
  transform: translateY(-1px);
}

.basket .basket-item .info {
  min-width: 0;
}

.basket .basket-item .title {
  max-width: 255px;
  color: #f3f7ff;
  font-size: 15px;
  font-weight: 820;
  line-height: 1.28;
}

.basket .basket-item .title a {
  transition: color .16s ease;
}

.basket .basket-item .title a:hover {
  color: #65e6ff;
}

.basket .basket-item .options {
  color: #7c899c;
  font-size: 11px;
}

.basket .basket-item .price {
  margin-top: 5px;
  color: #65e6ff;
  font-size: 12px;
  font-weight: 720;
}

.basket .basket-item .price strong {
  font-size: 16px;
  font-weight: 850;
}

.basket .basket-item .quantity-field {
  --btn-size: 36px;
  overflow: hidden;
  height: 38px;
  border: 1px solid rgba(126, 148, 177, .42);
  border-radius: 9px;
  background: rgba(2, 6, 12, .8);
}

.basket .basket-item .quantity-field input {
  color: #f3f7ff;
  font-size: 13px;
  font-weight: 800;
}

.basket .basket-item .quantity-field .adjust::before {
  background-color: #8392a7;
}

.basket .basket-item .quantity-field .adjust:hover {
  background: rgba(101, 230, 255, .09);
}

.basket .basket-item .quantity-field .adjust:hover::before {
  background-color: #65e6ff;
}

.basket .basket-item .remove {
  --btn-size: 38px;
  --btn-icon-size: 17px;
  border: 1px solid rgba(255, 111, 139, .14);
  border-radius: 9px;
  background: rgba(255, 83, 116, .055);
}

.basket .basket-item .remove::before {
  background-color: #a4afbf;
}

.basket .basket-item .remove:hover,
.basket .basket-item .remove:focus {
  border-color: rgba(255, 111, 139, .42);
  background: rgba(255, 83, 116, .12);
}

.basket .basket-item .remove:hover::before,
.basket .basket-item .remove:focus::before {
  background-color: #ff7892;
}

.basket .basket-checkout {
  margin-top: auto;
  padding: 24px 28px 34px;
  border-top: 1px solid rgba(101, 230, 255, .11);
  background: rgba(4, 8, 15, .9);
  box-shadow: 0 -18px 44px rgba(0, 0, 0, .28);
  backdrop-filter: blur(16px);
}

.basket .basket-checkout h3 {
  margin-bottom: 17px;
  color: #a7b3c3;
  font-size: 12px;
  letter-spacing: .075em;
}

.basket .basket-checkout .total {
  color: #65e6ff;
  font-size: 15px;
  letter-spacing: 0;
}

.basket .basket-checkout .total strong {
  font-size: 24px;
  font-weight: 860;
}

.basket .basket-checkout .checkout {
  min-height: 52px;
  border: 1px solid rgba(164, 244, 255, .7);
  border-radius: 11px;
  background: linear-gradient(110deg, #65e6ff 0%, #3acaf4 48%, #5ba8ff 100%);
  box-shadow:
    0 14px 34px rgba(46, 190, 255, .22),
    inset 0 1px rgba(255, 255, 255, .46);
  color: #03131b;
  font-size: 13px;
  font-weight: 920;
}

.basket .basket-checkout .checkout:hover,
.basket .basket-checkout .checkout:focus {
  border-color: #d4faff;
  background: linear-gradient(110deg, #91efff 0%, #58d8ff 48%, #80bdff 100%);
  box-shadow:
    0 17px 40px rgba(46, 190, 255, .32),
    inset 0 1px rgba(255, 255, 255, .55);
  transform: translateY(-1px);
}

@media (max-width: 600px) {
  #header .site-header-inner .user-actions {
    gap: 7px !important;
  }

  #header .site-header-inner .open-basket {
    min-width: 46px;
    padding: 0;
  }

  .basket-popup-content {
    border-left: 0;
  }

  .basket .basket-header {
    min-height: 92px;
    padding: 22px 66px 18px 18px;
  }

  .basket .basket-title::before {
    width: 36px;
    height: 36px;
  }

  .basket .basket-second-header {
    padding-inline: 18px;
  }

  .basket .basket-items {
    padding: 16px 14px 22px;
  }

  .basket .basket-item {
    display: grid;
    grid-template-columns: 1fr auto;
    padding: 17px;
  }

  .basket .basket-item .info {
    grid-column: 1 / -1;
  }

  .basket .basket-item .title {
    max-width: none;
  }

  .basket .basket-item .quantity-field {
    justify-self: start;
  }

  .basket .basket-item .remove {
    justify-self: end;
  }

  .basket .basket-checkout {
    padding: 20px 18px max(24px, env(safe-area-inset-bottom));
  }
}

/* ==========================================================
   Secret Code v9 — mobile product flow and fixed purchase bar
   ========================================================== */
@media (max-width: 600px) {
  body:has(.sc-product-page) {
    padding-bottom: calc(106px + env(safe-area-inset-bottom));
  }

  .sc-product-page {
    width: 100%;
    margin: 0 auto 42px;
    padding: 14px 14px 0;
  }

  .sc-product-hero {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 0 !important;
    overflow: visible;
    padding: 10px 10px 28px !important;
    border-radius: 17px;
  }

  /* Flatten both desktop columns so the mobile order is explicit. */
  .sc-product-media-column,
  .sc-product-summary-column {
    display: contents;
  }

  .sc-product-gallery {
    order: 1;
    padding: 0;
  }

  .sc-product-summary {
    display: flex;
    order: 2;
    flex-direction: column;
    padding: 22px 4px 0;
  }

  .sc-product-description {
    order: 3;
    margin: 34px 4px 0;
    padding-top: 30px;
  }

  .sc-product-help {
    order: 4;
    margin: 34px 4px 0;
  }

  .sc-gallery-glow {
    inset: 8% 0 -2%;
    filter: blur(28px);
    opacity: .48;
  }

  .sc-gallery-frame {
    border-radius: 13px;
  }

  /* The product name is the first item immediately below the preview. */
  .sc-product-summary .product-title {
    order: 1;
    margin: 0 0 18px;
    font-size: clamp(32px, 11vw, 46px);
    line-height: .98;
  }

  .sc-product-summary .sc-product-tags {
    order: 2;
    margin: 0 0 18px;
  }

  .sc-product-summary .sc-product-kicker {
    display: none;
  }

  .sc-product-summary .sc-product-mini-features {
    order: 3;
    margin: 4px 0 0;
  }

  .sc-product-summary .sc-product-buy {
    order: 4;
  }

  .sc-product-summary .sc-secure-note {
    display: none;
  }

  .sc-product-description h2 {
    margin-bottom: 20px;
    font-size: 27px;
  }

  .sc-product-description .descr {
    font-size: 14px;
    line-height: 1.72;
  }

  /*
   * Fixed purchase dock: price | basket/quantity | gift.
   * It remains connected to Tebex's native package actions.
   */
  .sc-product-buy > .actions {
    position: fixed !important;
    z-index: 110;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center;
    gap: 8px;
    width: 100% !important;
    margin: 0 !important;
    padding:
      11px max(12px, env(safe-area-inset-right))
      max(11px, env(safe-area-inset-bottom))
      max(12px, env(safe-area-inset-left)) !important;
    border-top: 1px solid rgba(101, 230, 255, .2);
    background:
      linear-gradient(110deg, rgba(101, 230, 255, .055), transparent 36%),
      rgba(4, 9, 17, .96) !important;
    box-shadow:
      0 -16px 42px rgba(0, 0, 0, .58),
      inset 0 1px rgba(255, 255, 255, .035) !important;
    backdrop-filter: blur(18px) !important;
  }

  .sc-product-buy .actions .price {
    flex: 0 0 auto;
    width: auto !important;
    min-width: 72px;
    margin: 0 !important;
    white-space: nowrap;
  }

  .sc-product-buy .actions .price strong {
    font-size: clamp(20px, 6.5vw, 27px);
    line-height: 1;
  }

  .sc-product-buy .actions .wide,
  .sc-product-buy .actions .half,
  .sc-product-buy .actions > .quantity-field {
    flex: 1 1 auto;
    min-width: 0;
  }

  .sc-product-buy .actions .quantity-field {
    height: 48px;
    border-color: rgba(101, 230, 255, .25);
    border-radius: 10px;
    background: rgba(1, 5, 11, .86);
  }

  .sc-product-buy .actions .quantity-field input {
    min-width: 0;
    font-size: 12px;
    font-weight: 850;
  }

  .sc-product-buy .actions .btn-primary,
  .sc-product-buy .actions .add,
  .sc-product-buy .actions .subscribe {
    min-width: 0;
    min-height: 48px;
    padding-inline: 12px;
    white-space: nowrap;
  }

  .sc-product-buy .actions .gift {
    flex: 0 0 48px !important;
    width: 48px !important;
    min-width: 48px !important;
    min-height: 48px;
    padding: 0 !important;
    border-color: rgba(101, 230, 255, .2);
    background: rgba(101, 230, 255, .065);
  }

  .sc-product-buy .actions .gift::before {
    width: 20px;
    height: 20px;
  }

  /* Keep popups and the basket drawer above the fixed purchase dock. */
  .popup,
  .basket-popup {
    z-index: 200;
  }
}

@media (max-width: 360px) {
  .sc-product-buy > .actions {
    gap: 6px;
    padding-inline: 9px !important;
  }

  .sc-product-buy .actions .price {
    min-width: 64px;
  }

  .sc-product-buy .actions .price strong {
    font-size: 20px;
  }

  .sc-product-buy .actions .gift {
    flex-basis: 44px !important;
    width: 44px !important;
    min-width: 44px !important;
  }
}

.sc-category-hero {
    min-height: auto;
    padding-top: 70px;
    padding-bottom: 28px;
}

.sc-category-tabs {
    margin-top: 0;
    padding-top: 16px;
    padding-bottom: 16px;
}

.sc-products-section {
    padding-top: 45px;
}

/* ==========================================================
   Secret Code v10 — mobile navigation stacking and account
   ========================================================== */
@media (max-width: 960px) {
  body.show-navigation {
    overflow: hidden;
  }

  body.show-navigation #header.site-header {
    z-index: 2147482999 !important;
  }

  /* The drawer must remain above product media and the purchase dock. */
  #header .sc-main-navigation {
    position: fixed !important;
    z-index: 2147483000 !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100dvh !important;
    min-height: 100vh !important;
    isolation: isolate;
    background: rgba(1, 4, 10, .72) !important;
    backdrop-filter: blur(10px);
  }

  #header .sc-main-navigation > .menu {
    position: absolute !important;
    z-index: 2;
    inset: 0 !important;
    display: flex !important;
    width: 100% !important;
    height: 100% !important;
    padding:
      max(86px, calc(66px + env(safe-area-inset-top)))
      max(22px, env(safe-area-inset-right))
      max(24px, env(safe-area-inset-bottom))
      max(22px, env(safe-area-inset-left)) !important;
    border: 0 !important;
    background:
      radial-gradient(circle at 14% 0, rgba(52, 166, 255, .16), transparent 24rem),
      linear-gradient(180deg, #07101d 0%, #040912 100%) !important;
    box-shadow: none !important;
  }

  #header .sc-main-navigation .close-navigation {
    position: absolute !important;
    z-index: 4;
    top: max(18px, env(safe-area-inset-top)) !important;
    right: max(18px, env(safe-area-inset-right)) !important;
    display: flex !important;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(101, 230, 255, .16);
    border-radius: 12px;
    background: rgba(7, 15, 27, .82);
  }

  #header .sc-main-navigation .close-navigation::before {
    background-color: #d9f8ff;
  }

  #header .sc-main-navigation .menu > li > a {
    padding: 14px 4px;
  }

  #header .sc-main-navigation .sc-mobile-account {
    display: block !important;
    width: 100%;
    margin-top: auto;
    padding-top: 22px;
    border-top: 1px solid rgba(101, 230, 255, .11);
  }

  #header .sc-main-navigation .sc-mobile-account-link {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    min-height: 66px;
    padding: 10px 12px !important;
    border: 1px solid rgba(101, 230, 255, .16);
    border-radius: 13px;
    background:
      linear-gradient(135deg, rgba(101, 230, 255, .07), transparent 45%),
      rgba(9, 17, 30, .84);
  }

  #header .sc-mobile-account-icon {
    display: block;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(101, 230, 255, .18);
    border-radius: 11px;
    background-color: #65e6ff;
    mask: url("https://template-assets.tebex.io/images/user.svg") center/20px no-repeat;
    filter: drop-shadow(0 0 7px rgba(101, 230, 255, .35));
  }

  #header .sc-mobile-account-copy {
    min-width: 0;
  }

  #header .sc-mobile-account-copy small,
  #header .sc-mobile-account-copy strong {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  #header .sc-mobile-account-copy small {
    margin-bottom: 3px;
    color: #77879d;
    font-size: 9px;
    font-weight: 750;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  #header .sc-mobile-account-copy strong {
    color: #f1f8ff;
    font-size: 14px;
    font-weight: 850;
  }

  #header .sc-mobile-account-action {
    color: #65e6ff;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .055em;
    text-transform: uppercase;
  }
}

@media (max-width: 600px) {
  /* Keep the native basket action readable instead of compressing it to 46px. */
  #header .site-header-inner .user-actions {
    gap: 8px !important;
  }

  #header .site-header-inner .open-basket {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: auto !important;
    min-width: 92px !important;
    height: 44px;
    padding: 0 13px !important;
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
  }

  #header .site-header-inner .open-basket::before {
    flex: 0 0 auto;
  }
}

@media (max-width: 390px) {
  #header.site-header {
    padding-inline: 12px !important;
  }

  #header .site-header-inner {
    justify-content: flex-start !important;
  }

  #header .site-header-inner .site-title {
    margin-left: 52px !important;
  }

  #header .site-header-inner .site-title img {
    max-width: 92px !important;
  }

  #header .site-header-inner .open-basket {
    min-width: 84px !important;
    padding-inline: 10px !important;
    font-size: 11px;
  }

  #header .sc-main-navigation .sc-mobile-account-link {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  #header .sc-mobile-account-icon {
    width: 40px;
    height: 40px;
  }

  #header .sc-mobile-account-action {
    display: none;
  }
}

/* ============================================================
   SECRET CODE — HOME FAQ
   ============================================================ */

.sc-faq {
  position: relative;
  overflow: hidden;
  padding: 110px max(24px, calc((100vw - 1320px) / 2)) 125px;
  border-top: 1px solid rgba(91, 134, 199, .16);
  background:
    radial-gradient(circle at 8% 10%, rgba(35, 215, 255, .1), transparent 27rem),
    radial-gradient(circle at 92% 90%, rgba(135, 92, 255, .08), transparent 28rem),
    linear-gradient(180deg, #050812, #03060d);
  isolation: isolate;
}

.sc-faq-glow {
  position: absolute;
  z-index: -1;
  top: 90px;
  left: 50%;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(101, 230, 255, .06);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(101, 230, 255, .012),
    0 0 0 140px rgba(135, 92, 255, .01);
  translate: -50% 0;
  pointer-events: none;
}

.sc-faq-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .65fr);
  align-items: end;
  gap: 64px;
  margin-bottom: 58px;
}

.sc-faq-heading h3 {
  margin: 12px 0 0;
  color: var(--sc-white);
  font-size: clamp(44px, 6vw, 78px);
  font-weight: 900;
  letter-spacing: -.058em;
  line-height: .94;
  text-transform: uppercase;
}

.sc-faq-heading h3 span {
  color: transparent;
  background: linear-gradient(90deg, #65e6ff, #768eff 70%, #9b70ff);
  background-clip: text;
  -webkit-background-clip: text;
}

.sc-faq-intro {
  padding: 0 0 8px 27px;
  border-left: 1px solid rgba(101, 230, 255, .2);
}

.sc-faq-intro p {
  margin: 0 0 20px;
  color: #8fa2bf;
  font-size: 15px;
  line-height: 1.75;
}

.sc-faq-intro a {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #c9f7ff;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.sc-faq-intro a span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid rgba(101, 230, 255, .3);
  border-radius: 50%;
  color: var(--sc-cyan);
  transition: color .25s ease, background .25s ease, transform .25s ease;
}

.sc-faq-intro a:hover span {
  color: #04101a;
  background: var(--sc-cyan);
  transform: rotate(45deg);
}

.sc-faq-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 14px;
}

.sc-faq-item {
  overflow: hidden;
  border: 1px solid rgba(91, 134, 199, .18);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(101, 230, 255, .035), transparent 38%),
    rgba(9, 15, 28, .82);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .14);
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}

.sc-faq-item:hover,
.sc-faq-item[open] {
  border-color: rgba(101, 230, 255, .32);
  background:
    linear-gradient(135deg, rgba(101, 230, 255, .07), transparent 42%),
    rgba(10, 18, 33, .94);
}

.sc-faq-item:hover {
  transform: translateY(-2px);
}

.sc-faq-item summary {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 32px;
  align-items: center;
  gap: 14px;
  min-height: 82px;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
  color: #edf7ff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
}

.sc-faq-item summary::-webkit-details-marker {
  display: none;
}

.sc-faq-number {
  color: #58708f;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
}

.sc-faq-item summary > i {
  position: relative;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(101, 230, 255, .2);
  border-radius: 50%;
  transition: border-color .25s ease, background .25s ease, transform .3s ease;
}

.sc-faq-item summary > i::before,
.sc-faq-item summary > i::after {
  position: absolute;
  width: 10px;
  height: 1.5px;
  border-radius: 999px;
  background: #65e6ff;
  content: "";
}

.sc-faq-item summary > i::after {
  rotate: 90deg;
}

.sc-faq-item[open] summary > i {
  border-color: rgba(101, 230, 255, .48);
  background: rgba(101, 230, 255, .1);
  transform: rotate(45deg);
}

.sc-faq-answer {
  padding: 0 70px 24px 72px;
}

.sc-faq-answer p {
  margin: 0;
  color: #91a4c0;
  font-size: 13px;
  line-height: 1.75;
}

.sc-faq a {
  color: #5ddcff;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(93, 220, 255, 0.55);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.sc-faq a:hover {
  color: #a77bff;
  text-decoration-color: #a77bff;
}

.sc-faq a:focus-visible {
  outline: 2px solid #5ddcff;
  outline-offset: 4px;
  border-radius: 3px;
}

@media (max-width: 900px) {
  .sc-faq {
    padding-top: 86px;
    padding-bottom: 100px;
  }

  .sc-faq-heading {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .sc-faq-intro {
    max-width: 620px;
  }

  .sc-faq-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .sc-faq {
    padding: 70px 16px 92px;
  }

  .sc-faq-heading {
    gap: 25px;
    margin-bottom: 38px;
  }

  .sc-faq-heading h3 {
    font-size: clamp(39px, 13vw, 56px);
  }

  .sc-faq-intro {
    padding-left: 18px;
  }

  .sc-faq-intro p {
    font-size: 13px;
  }

  .sc-faq-item summary {
    grid-template-columns: 28px minmax(0, 1fr) 30px;
    gap: 10px;
    min-height: 76px;
    padding: 16px 14px;
    font-size: 13px;
  }

  .sc-faq-item summary > i {
    width: 30px;
    height: 30px;
  }

  .sc-faq-answer {
    padding: 0 48px 21px 52px;
  }

  .sc-faq-answer p {
    font-size: 12px;
  }
}

/* =========================================================
   SECRET CODE LOGIN
   Added after the existing theme so it does not replace any
   navigation, basket, product, mobile or FAQ customization.
   ========================================================= */

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

.login-popup .popup-backdrop {
  background:
    radial-gradient(circle at 50% 42%, rgba(38, 166, 255, .16), transparent 34%),
    rgba(0, 3, 8, .88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.login-popup-content {
  width: min(540px, calc(100% - 32px));
  max-width: 540px;
  padding: 0 !important;
  overflow: hidden;
  border: 1px solid rgba(91, 215, 255, .18);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0, rgba(97, 63, 255, .15), transparent 38%),
    radial-gradient(circle at 0 20%, rgba(31, 190, 255, .12), transparent 34%),
    linear-gradient(145deg, #0b1019, #070a10 62%);
  box-shadow:
    0 34px 100px rgba(0, 0, 0, .72),
    0 0 60px rgba(18, 169, 255, .08);
}

.login-popup-content::before {
  content: "";
  display: block;
  height: 2px;
  background: linear-gradient(90deg, transparent, #43ddff 32%, #7865ff 72%, transparent);
  box-shadow: 0 0 24px rgba(68, 220, 255, .55);
}

.login-popup .popup-close {
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  background: rgba(255, 255, 255, .035);
}

.login-popup .popup-close::before {
  opacity: .72;
  mask-size: 16px;
}

.sc-login-card {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 34px 38px 30px;
  background: transparent;
}

.sc-login-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 82px;
  right: -76px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(89, 210, 255, .07);
  border-radius: 50%;
  box-shadow: 0 0 0 32px rgba(71, 185, 255, .025);
}

.sc-login-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 48px;
  padding-right: 48px;
}

.sc-login-logo {
  display: grid;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(87, 220, 255, .15);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(67, 214, 255, .09), rgba(99, 64, 255, .08));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
}

.sc-login-logo img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(59, 211, 255, .28));
}

.sc-login-logo strong {
  color: #69e4ff;
  font-size: 16px;
  letter-spacing: -.04em;
}

.sc-login-brand-copy {
  display: grid;
  gap: 3px;
}

.sc-login-brand-copy small {
  color: #5bddff;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .2em;
}

.sc-login-brand-copy strong {
  color: #eaf2ff;
  font-size: 13px;
  font-weight: 750;
}

.sc-login-heading {
  margin: 34px 0 26px;
}

.sc-login-kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 13px;
  color: #67dcff;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.sc-login-kicker i {
  width: 22px;
  height: 1px;
  background: linear-gradient(90deg, #49dcff, transparent);
}

.sc-login-card .sc-login-heading h2 {
  margin: 0;
  color: #f6f9ff;
  font-size: clamp(30px, 6vw, 42px);
  font-weight: 850;
  letter-spacing: -.045em;
  line-height: 1;
}

.sc-login-heading p {
  max-width: 420px;
  margin: 14px 0 0;
  color: #8390a5;
  font-size: 12px;
  line-height: 1.65;
}

.sc-login-action {
  margin: 0 !important;
}

.sc-login-provider {
  display: flex !important;
  width: 100%;
  min-height: 58px;
  align-items: center;
  justify-content: flex-start;
  gap: 13px;
  padding: 0 18px !important;
  border: 1px solid rgba(72, 218, 255, .34) !important;
  border-radius: 13px !important;
  background: linear-gradient(105deg, #48defd, #289bff 58%, #6472ff) !important;
  box-shadow: 0 15px 38px rgba(31, 164, 255, .24);
  color: #03121c !important;
  font-size: 13px;
  font-weight: 900;
  text-transform: none;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.sc-login-provider:hover {
  transform: translateY(-2px);
  box-shadow: 0 19px 44px rgba(31, 164, 255, .34);
  filter: brightness(1.06);
}

.sc-login-provider-icon {
  display: grid;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 9px;
  background: rgba(2, 17, 28, .12);
}

.sc-login-provider-icon svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.sc-login-arrow {
  margin-left: auto;
  font-size: 18px;
}

.sc-login-form {
  display: grid;
  gap: 10px;
  margin: 0 !important;
}

.sc-login-form label {
  color: #92a1b8;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sc-login-form input {
  min-height: 52px;
  border: 1px solid rgba(92, 213, 255, .15);
  border-radius: 11px;
  background: rgba(255, 255, 255, .035);
}

.sc-login-form button {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  border-radius: 11px;
  background: linear-gradient(105deg, #48defd, #289bff 58%, #6472ff);
  color: #03121c;
}

.sc-login-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
  margin-top: 22px;
  padding: 17px 0;
  border-top: 1px solid rgba(99, 212, 255, .09);
  border-bottom: 1px solid rgba(99, 212, 255, .09);
}

.sc-login-trust span {
  color: #7d8ba0;
  font-size: 8px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sc-login-trust b {
  margin-right: 4px;
  color: #56e1ff;
}

.sc-login-note {
  margin: 17px auto 0 !important;
  color: #59677b !important;
  font-size: 9px !important;
  line-height: 1.55 !important;
  text-align: center;
}

@media (max-width: 600px) {
  .login-popup-content {
    width: calc(100% - 20px);
    max-height: calc(100dvh - 24px);
    overflow-y: auto;
    border-radius: 20px;
  }

  .login-popup .popup-close {
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
  }

  .sc-login-card {
    padding: 25px 21px 23px;
  }

  .sc-login-heading {
    margin: 28px 0 22px;
  }

  .sc-login-card .sc-login-heading h2 {
    font-size: 34px;
  }

  .sc-login-provider {
    min-height: 56px;
    padding: 0 14px !important;
  }

  .sc-login-trust {
    gap: 10px 13px;
  }
}

/* =========================================================
   SECRET CODE LOGIN V14 — COMPACT
   Final overrides only; the accumulated storefront remains intact.
   ========================================================= */

.login-popup .popup-backdrop {
  background: rgba(1, 4, 9, .82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.login-popup-content {
  width: min(420px, calc(100% - 32px));
  max-width: 420px;
  overflow: visible;
  border: 1px solid rgba(100, 211, 255, .2);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% -20%, rgba(62, 199, 255, .15), transparent 42%),
    linear-gradient(155deg, #0a111b, #070b12 68%);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, .7),
    0 0 0 1px rgba(255, 255, 255, .015),
    0 0 42px rgba(36, 177, 255, .08);
}

.login-popup-content::before {
  position: absolute;
  top: 0;
  right: 18%;
  left: 18%;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #4de1ff, #6878ff, transparent);
  box-shadow: 0 0 16px rgba(76, 220, 255, .5);
}

.login-popup .popup-close {
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-color: rgba(255, 255, 255, .075);
  background: rgba(255, 255, 255, .035);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.login-popup .popup-close:hover {
  border-color: rgba(91, 218, 255, .28);
  background: rgba(91, 218, 255, .08);
  transform: rotate(6deg);
}

.sc-login-card {
  padding: 32px 32px 28px;
  text-align: center;
}

.sc-login-card::after {
  display: none;
}

.sc-login-brand {
  display: flex;
  min-height: 0;
  justify-content: center;
  padding: 0;
}

.sc-login-logo {
  display: grid;
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(86, 220, 255, .2);
  border-radius: 17px;
  background:
    radial-gradient(circle at 30% 20%, rgba(73, 219, 255, .16), transparent 52%),
    rgba(33, 48, 72, .34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .07),
    0 12px 30px rgba(0, 0, 0, .26),
    0 0 28px rgba(49, 192, 255, .09);
}

.sc-login-logo img {
  width: 43px;
  height: 43px;
  filter: drop-shadow(0 0 10px rgba(72, 208, 255, .3));
}

.sc-login-heading {
  margin: 20px 0 24px;
}

.sc-login-card .sc-login-heading h2 {
  font-size: clamp(27px, 5vw, 32px);
  font-weight: 820;
  letter-spacing: -.04em;
  line-height: 1.08;
}

.sc-login-heading p {
  max-width: none;
  margin: 9px 0 0;
  color: #8493a8;
  font-size: 12px;
  line-height: 1.55;
}

.sc-login-provider {
  min-height: 54px;
  gap: 12px;
  padding: 0 15px !important;
  border: 1px solid rgba(90, 222, 255, .28) !important;
  border-radius: 12px !important;
  background: linear-gradient(105deg, #50ddf7, #35a9ff 57%, #6676ff) !important;
  box-shadow:
    0 12px 28px rgba(34, 155, 255, .2),
    inset 0 1px 0 rgba(255, 255, 255, .24);
  font-size: 13px;
}

.sc-login-provider:hover {
  transform: translateY(-1px);
  box-shadow:
    0 16px 34px rgba(34, 155, 255, .29),
    inset 0 1px 0 rgba(255, 255, 255, .26);
}

.sc-login-provider-icon {
  flex-basis: 30px;
  width: 30px;
  height: 30px;
  border-radius: 8px;
}

.sc-product-hero {
  align-items: start;
}

.sc-product-media-column {
  align-self: start;
  min-width: 0;
}

.sc-product-gallery,
.sc-gallery-frame {
  width: 100%;
  height: auto;
}

.sc-gallery-frame {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.sc-gallery-frame > .image,
.sc-gallery-frame img,
.sc-gallery-frame swiper-container,
.sc-gallery-frame swiper-slide {
  width: 100%;
  height: 100%;
}

.sc-gallery-frame img {
  display: block;
  object-fit: cover;
  object-position: center;
}

.sc-login-provider-icon svg {
  width: 20px;
  height: 20px;
}

.sc-login-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 17px auto 0 !important;
  color: #66758a !important;
  font-size: 9px !important;
  letter-spacing: .015em;
  line-height: 1.4 !important;
}

.sc-login-note span {
  display: grid;
  width: 15px;
  height: 15px;
  place-items: center;
  border: 1px solid rgba(78, 219, 255, .2);
  border-radius: 50%;
  color: #57ddf9;
  font-size: 8px;
}

@media (max-width: 600px) {
  .login-popup-content {
    width: calc(100% - 24px);
    max-height: calc(100dvh - 24px);
    border-radius: 17px;
  }

  .sc-login-card {
    padding: 28px 20px 24px;
  }

  .sc-login-heading {
    margin: 18px 0 21px;
  }

  .sc-login-card .sc-login-heading h2 {
    font-size: 28px;
  }

  .sc-login-provider {
    min-height: 53px;
  }
}

.sc-category-page {
  width: 100%;
  min-width: 0;
}


    
    
    