@import url("https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap");

:root {
  --color-text: #000;
  --color-text-darker: #222;
  --color-text-secondary: #444;
  --color-text-dark: #fff;
  --color-bg: #fff;
  --color-brighter-bg: hsl(0 0% 100% / 77%);
  --color-input-bg: #dcdcdc;
  --color-popup-bg: hsl(0 0% 0% / 30%);
  --color-primary: #41C4C3;
  --color-primary-hover: #000;
  --color-primary-text: var(--color-text-dark);
  --color-primary-text-hover: var(--color-primary-text);
  --color-secondary: #dcdcdc;
  --color-secondary-hover: #cecece;
  --color-secondary-text: var(--color-text);
  --color-secondary-text-hover: var(--color-text-darker);
  --color-tertiary: transparent;
  --color-tertiary-hover: hsl(0 0% 0% / 15%);
  --color-tertiary-text: var(--color-text);
  --color-tertiary-text-hover: var(--color-tertiary-text);
  --color-removed: #a22a2a;
  --header-height: 350px;
  --tebex-footer-height: 37px;
  --layout-gap: 20px;
  --widget-padding: 20px;
  --content-padding: var(--widget-padding);
  --content-inner-width: 1280px;
  --content-width: calc((var(--content-padding) * 2) + var(--content-inner-width));
  --sidebar-width: 287px;
  --products-gap: 24px 36px;
  --btn-size: 46px;
  --btn-size-small: 38px;
  --btn-size-xsmall: 34px;
  --btn-icon-size: 18px;
  --btn-color-text: var(--color-text);
  --btn-color-text-hover: var(--btn-color-text);
  --btn-color-bg: var(--color-bg);
  --btn-color-bg-hover: var(--btn-color-bg);
  --bg-blur: blur(10px);
  --page-transition-duration: .35s;
  --tebex-legal-footer-max-width: min(var(--content-inner-width),
      calc(100vw - (var(--content-padding) * 2)));
  --tebex-legal-footer-background-color: var(--color-brighter-bg);
  --tebex-legal-footer-border-color: var(--color-brighter-bg);
  --tebex-legal-footer-text-color: var(--color-text-secondary);
}

@media (width > 600px) {
  :root {
    --widget-padding: 24px;
    --layout-gap: 48px;
  }
}

@media (width > 960px) {
  :root {
    --layout-gap: 72px;
    --content-padding: calc(var(--widget-padding) * 2);
  }
}

@media (max-width: 900px) {
  :root {
    --tebex-footer-height: 70px;
  }
}

@media (max-width: 600px) {
  :root {
    --tebex-footer-height: 80px;
  }
}

@media (prefers-color-scheme: dark) {
  :root.color-scheme-auto {
    --color-text: #fff;
    --color-text-darker: #e5e5e5;
    --color-text-secondary: #ccc;
    --color-text-dark: #0D0D0D;
    --color-bg: #000;
    --color-brighter-bg: hsl(0 0% 4% / 70%);
    --color-input-bg: #242424;
    --color-popup-bg: hsl(0 0% 0% / 85%);
    --color-primary: #41C4C3;
    --color-primary-hover: #fff;
    --color-primary-text: var(--color-text-dark);
    --color-primary-text-hover: var(--color-primary-text);
    --color-secondary: #ccc;
    --color-secondary-hover: #e5e5e5;
    --color-secondary-text: var(--color-text-dark);
    --color-secondary-text-hover: var(--color-secondary-text);
    --color-tertiary: transparent;
    --color-tertiary-hover: rgb(255 255 255 / 15%);
    --color-tertiary-text: var(--color-text);
    --color-tertiary-text-hover: var(--color-text-darker);
    --color-removed: #C12E2E;
  }
}

:root.color-scheme-dark {
  --color-text: #fff;
  --color-text-darker: #e5e5e5;
  --color-text-secondary: #ccc;
  --color-text-dark: #0D0D0D;
  --color-bg: #000;
  --color-brighter-bg: hsl(0 0% 4% / 70%);
  --color-input-bg: #242424;
  --color-popup-bg: hsl(0 0% 0% / 85%);
  --color-primary: #41C4C3;
  --color-primary-hover: #fff;
  --color-primary-text: var(--color-text-dark);
  --color-primary-text-hover: var(--color-primary-text);
  --color-secondary: #ccc;
  --color-secondary-hover: #e5e5e5;
  --color-secondary-text: var(--color-text-dark);
  --color-secondary-text-hover: var(--color-secondary-text);
  --color-tertiary: transparent;
  --color-tertiary-hover: rgb(255 255 255 / 15%);
  --color-tertiary-text: var(--color-text);
  --color-tertiary-text-hover: var(--color-text-darker);
  --color-removed: #C12E2E;
}

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

strong,
b {
  font-weight: 700;
}

em,
i {
  font-style: italic;
}

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

textarea {
  resize: none;
}

symbol,
use,
svg {
  overflow: visible;
}

svg,
img {
  display: block;
}

li {
  display: block;
}

button {
  display: block;
}

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

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

:focus {
  outline: 0;
}

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

@view-transition {
  navigation: auto;
}

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

@keyframes pageMoveOut {
  0% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0;
  }
}

@keyframes pageMoveIn {

  0%,
  50% {
    scale: 0.98;
    opacity: 0;
  }

  100% {
    scale: 1;
    opacity: 1;
  }
}

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

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

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

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

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

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

html {
  overflow: hidden scroll;
  scrollbar-width: thin;
  scrollbar-color: var(--color-secondary) var(--color-bg);
  scrollbar-gutter: stable;
  scroll-behavior: smooth;
  color-scheme: light dark;
}

html.no-scroll {
  overflow: hidden;
}

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

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

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

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

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

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

.text-content {
  line-height: 1.4;
  word-wrap: break-word;
  word-break: break-word;
}

.text-content h1,
.text-content h2,
.text-content h3,
.text-content h4,
.text-content h5,
.text-content h6 {
  font-weight: 800;
}

.text-content h1:not(:last-child),
.text-content h2:not(:last-child),
.text-content h3:not(:last-child),
.text-content h4:not(:last-child),
.text-content h5:not(:last-child),
.text-content h6:not(:last-child) {
  margin-bottom: 24px;
}

.text-content p:not(:last-child) {
  margin-bottom: 12px;
}

.text-content h1 {
  font-size: 34px;
}

@media (width > 600px) {
  .text-content h1 {
    font-size: 38px;
  }
}

.text-content h2 {
  font-size: 28px;
}

@media (width > 600px) {
  .text-content h2 {
    font-size: 32px;
  }
}

.text-content h3 {
  font-size: 20px;
}

@media (width > 600px) {
  .text-content h3 {
    font-size: 24px;
  }
}

.text-content h4 {
  font-size: 18px;
}

@media (width > 600px) {
  .text-content h4 {
    font-size: 22px;
  }
}

.text-content img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

.text-content ol,
.text-content ul {
  margin-left: 1em;
}

.text-content ol:not(:last-child),
.text-content ul:not(:last-child) {
  margin-bottom: 12px;
}

.text-content li {
  display: list-item;
}

.btn-primary,
.btn-secondary,
.btn-tertiary {
  display: block;
  width: fit-content;
  height: var(--btn-size);
  padding: 0 10px;
  line-height: var(--btn-size);
  color: var(--btn-color-text);
  background-color: var(--btn-color-bg);
  border-radius: 5px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (width > 960px) {

  .btn-primary,
  .btn-secondary,
  .btn-tertiary {
    padding: 0 14px;
  }
}

.btn-primary:disabled,
.btn-secondary:disabled,
.btn-tertiary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-secondary:hover,
.btn-secondary:focus,
.btn-tertiary:hover,
.btn-tertiary:focus {
  color: var(--btn-color-text-hover);
  background-color: var(--btn-color-bg-hover);
}

.btn-primary.btn-small,
.btn-secondary.btn-small,
.btn-tertiary.btn-small {
  --btn-size: var(--btn-size-small);
  padding: 0 8px;
  font-size: 12px;
}

@media (width > 960px) {

  .btn-primary.btn-small,
  .btn-secondary.btn-small,
  .btn-tertiary.btn-small {
    padding: 0 10px;
  }
}

.btn-primary.btn-xsmall,
.btn-secondary.btn-xsmall,
.btn-tertiary.btn-xsmall {
  --btn-size: var(--btn-size-xsmall);
  padding: 0 8px;
  font-size: 11px;
}

@media (width > 960px) {

  .btn-primary.btn-xsmall,
  .btn-secondary.btn-xsmall,
  .btn-tertiary.btn-xsmall {
    padding: 0 10px;
  }
}

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

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

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

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

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

:root .btn-icon {
  line-height: 0;
  font-size: 0;
  color: transparent;
}

.btn-icon-text {
  display: flex;
  align-items: center;
  min-width: var(--btn-size);
}

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

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

.btn-glyph:hover::before,
.btn-glyph:focus::before,
.btn-glyph-text:hover::before,
.btn-glyph-text:focus::before {
  background-color: var(--btn-color-text-hover);
}

.btn-glyph {
  position: relative;
  flex: none;
  width: var(--btn-size);
  height: var(--btn-size);
}

:root .btn-glyph {
  padding: 0;
  line-height: 0;
  font-size: 0;
  color: transparent;
}

.btn-glyph::before {
  position: absolute;
  inset: 0;
  margin: auto;
}

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

.btn-glyph-text::before {
  margin-right: 8px;
}

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

.link-text:hover {
  color: var(--color-text);
}

.quantity-field {
  display: flex;
  align-items: stretch;
  justify-content: center;
  height: 36px;
  overflow: hidden;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid var(--color-secondary);
  border-radius: 5px;
}

.quantity-field input[type=number] {
  position: relative;
  z-index: 1;
  flex: none;
  -moz-appearance: textfield;
  appearance: textfield;
  width: 40px;
  height: 100%;
  font-size: 16px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.quantity-field input[type=number]:focus,
.quantity-field input[type=number]:hover {
  border-color: var(--color-secondary-hover);
}

.quantity-field input[type=number]::-webkit-inner-spin-button,
.quantity-field input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.quantity-field.with-open-basket input[type=number] {
  margin-left: calc((40px - 2ch) * -1);
  margin-right: 0.25em;
  order: 1;
  text-align: right;
  transition: color 0.15s ease-in-out;
}

.quantity-field .open-basket {
  margin-right: 5px;
  width: fit-content;
  height: 100%;
  order: 2;
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.15s ease-in-out;
}

.quantity-field .open-basket:focus,
.quantity-field .open-basket:hover {
  color: var(--color-primary);
}

.quantity-field .open-basket:focus~input[type=number],
.quantity-field .open-basket:hover~input[type=number] {
  color: var(--color-primary);
}

.quantity-field .adjust {
  position: relative;
  z-index: 2;
  flex: none;
  width: 34px;
  height: 100%;
  padding: 0;
  line-height: 0;
  font-size: 0;
  color: transparent;
}

.quantity-field .adjust.decrease {
  margin-right: auto;
  order: -1;
  border-radius: 5px 0 0 5px;
}

.quantity-field .adjust.increase {
  margin-left: auto;
  order: 100;
  border-radius: 0 5px 5px 0;
}

.quantity-field .adjust::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--color-text);
  mask: url("https://template-assets.tebex.io/images/plus.svg") no-repeat center center;
  mask-size: 10px;
}

.quantity-field .adjust.decrease::before {
  mask-image: url("https://template-assets.tebex.io/images/minus.svg");
}

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

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

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

.page-index .site {
  gap: 0;
}

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

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

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

.site-header-top,
.site-header,
.site-content,
.site-footer-inner {
  margin: 0 auto;
  padding: 0 var(--content-padding);
  width: 100%;
}

@media (width > 960px) {

  .site-header-top,
  .site-header,
  .site-content,
  .site-footer-inner {
    max-width: var(--content-width);
  }
}

.site-header-top {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  margin-bottom: calc(var(--layout-gap) * -1);
  width: 100%;
  min-height: var(--btn-size);
  view-transition-name: siteHeaderTop;
}

body.is-logo-centered.is-header-visible .site-header-top {
  margin-bottom: 0;
}

@media (width <=960px) {
  .site-header-top {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--color-brighter-bg);
    backdrop-filter: var(--bg-blur);
  }
}

@media (width > 960px) {
  .site-header-top {
    justify-content: flex-end;
  }
}

.site-header-top .site-title {
  position: absolute;
  inset: 0;
  margin: auto;
  max-width: calc(100% - 32px - var(--btn-size-xsmall) * 4 - var(--content-padding) * 2);
  width: fit-content;
  height: fit-content;
  line-height: 24px;
  font-size: 18px;
  font-weight: 900;
  text-align: center;
  text-box: trim-both cap alphabetic;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-header-top .site-title img {
  max-width: 100%;
  max-height: 28px;
}

@media (width <=960px) {
  .site-header-top .btn-glyph-text {
    color: transparent;
    font-size: 0;
  }

  .site-header-top .btn-glyph-text::before {
    margin-right: 0;
  }
}

.site-header-top .toggle-navigation {
  --btn-icon: url("https://template-assets.tebex.io/images/burger.svg");
}

.site-header-top .site-link {
  --btn-icon: url("https://template-assets.tebex.io/images/globe.svg");
}

.site-header-top .color-scheme {
  --btn-icon: url("https://template-assets.tebex.io/images/sun.svg");
  --btn-icon-size: 15px;
}

@media (prefers-color-scheme: dark) {
  :root.color-scheme-auto .site-header-top .color-scheme {
    --btn-icon: url("https://template-assets.tebex.io/images/moon.svg");
  }
}

:root.color-scheme-dark .site-header-top .color-scheme {
  --btn-icon: url("https://template-assets.tebex.io/images/moon.svg");
}

.site-header-top .log-in {
  --btn-icon: url("https://template-assets.tebex.io/images/user.svg");
  margin-left: auto;
}

.site-header-top .open-basket {
  --btn-icon: url("https://template-assets.tebex.io/images/checkout.svg");
}

.site-header-top .user-name {
  --btn-icon: url("https://template-assets.tebex.io/images/log-out.svg");
  margin-left: auto;
  contain: paint;
}

@media (width > 960px) {
  .site-header-top .user-name {
    --btn-icon: url("https://template-assets.tebex.io/images/user.svg");
  }
}

.site-header-top .user-name .text,
.site-header-top .user-name .text-hover {
  transition: opacity 0.15s ease, font-size 0.15s ease, visibility 0.15s ease;
}

.site-header-top .user-name:not(:hover):not(:focus-within) .text-hover {
  visibility: hidden;
  color: transparent;
  font-size: 0;
}

.site-header-top .user-name:hover .text,
.site-header-top .user-name:focus-within .text {
  visibility: hidden;
  opacity: 0;
  font-size: 0;
}

.site-header {
  position: relative;
  align-content: center;
  view-transition-name: siteHeader;
}

@media (width <=960px) {
  .site-header {
    padding: 0;
  }
}

body.no-hero.is-logo-centered .site-header {
  min-height: 80px;
}

@media (width > 960px) {
  body.has-hero .site-header {
    min-height: var(--header-height);
  }
}

.site-header .site-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  width: 100%;
}

@media (width > 960px) {
  .site-header .site-actions {
    gap: 6px;
  }
}

.site-header .site-title {
  line-height: 42px;
  font-size: 36px;
  font-weight: 900;
  text-box: trim-both cap alphabetic;
}

body.has-hero .site-header .site-title {
  color: var(--color-text-dark);
}

@media (width > 960px) {
  .site-header .site-title {
    line-height: 60px;
    font-size: 54px;
  }
}

.site-header .site-title img {
  max-width: 500px;
  max-height: 60px;
}

body.is-logo-centered .site-header .site-title {
  margin: auto;
  width: fit-content;
  height: fit-content;
  text-align: center;
}

body.is-logo-centered .site-header .site-title img {
  max-height: 128px;
}

body.is-logo-centered.has-hero .site-header .site-title {
  position: absolute;
  inset: 0;
  filter: drop-shadow(0 1px 3px hsla(0, 0%, 0%, 0.5)), drop-shadow(0 6px 12px hsla(0, 0%, 0%, 0.5));
}

@media (prefers-color-scheme: dark) {
  :root.color-scheme-auto body.is-logo-centered.has-hero .site-header .site-title {
    color: var(--color-text);
    filter: drop-shadow(0 1px 3px hsl(from var(--color-bg) h s l/50%)) drop-shadow(0 6px 12px hsl(from var(--color-bg) h s l/50%));
  }
}

:root.color-scheme-dark body.is-logo-centered.has-hero .site-header .site-title {
  color: var(--color-text);
  filter: drop-shadow(0 1px 3px hsl(from var(--color-bg) h s l/50%)) drop-shadow(0 6px 12px hsl(from var(--color-bg) h s l/50%));
}

.site-header .hero-image {
  margin: auto;
  width: 100%;
  height: auto;
  max-height: var(--header-height);
  object-fit: cover;
}

@media (width > 960px) {
  .site-header .hero-image {
    border-radius: 10px;
  }
}

.site-navigation {
  --fade-duration: 200ms;
  view-transition-name: siteNavigation;
}

@media (width <=960px) {
  .site-navigation {
    position: fixed;
    inset: 0;
    z-index: 100000;
    padding: 0;
    backdrop-filter: var(--bg-blur);
    transition: display var(--fade-duration) allow-discrete, backdrop-filter var(--fade-duration), opacity var(--fade-duration) ease;
  }

  @starting-style {
    .site-navigation {
      opacity: 0;
    }
  }

  body:not(.show-navigation) .site-navigation {
    display: none;
    opacity: 0;
  }

  .site-navigation.drawer {
    user-select: none;
  }

  .site-navigation.may-close {
    backdrop-filter: none;
  }

  .site-navigation .menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    inset: 0 calc(var(--btn-size) * 2) 0 0;
    padding: 72px var(--widget-padding) var(--widget-padding);
    line-height: 28px;
    font-size: 21px;
    font-weight: 500;
    background: rgb(from var(--color-bg) r g b/0.95);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
    overflow: hidden auto;
    scrollbar-width: thin;
    scrollbar-color: var(--color-secondary) var(--color-bg);
    transition: opacity var(--fade-duration) ease, scale var(--fade-duration) ease, translate var(--fade-duration) ease;
  }

  @starting-style {
    .site-navigation .menu {
      translate: -100% 0;
    }
  }

  .site-navigation.drawer .menu::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 7px;
    margin: auto;
    width: 4px;
    height: 100px;
    background: rgb(from var(--color-text-secondary) r g b/0.33);
    border-radius: 2px;
    pointer-events: none;
  }

  body:not(.show-navigation) .site-navigation .menu {
    translate: -100% 0;
  }

  .site-navigation.touching .menu {
    transition: opacity var(--fade-duration) ease, scale var(--fade-duration) ease;
  }

  body:not(.show-navigation) .site-navigation .menu,
  .site-navigation.may-close .menu {
    opacity: 0.8;
    scale: 0.95;
  }

  .site-navigation.may-close .menu {
    border-radius: 10px;
  }

  .site-navigation .popup-close {
    --btn-icon: url("https://template-assets.tebex.io/images/close.svg");
    top: 12px;
    right: calc(var(--btn-size) * 2 + 12px);
  }

  .site-navigation.touching .popup-close {
    opacity: 0;
    visibility: hidden;
    transition-duration: 100ms;
  }

  .site-navigation .menu-sub {
    width: 100%;
    padding-left: var(--widget-padding);
    line-height: 22px;
    font-size: 16px;
  }

  .site-navigation .menu-item {
    position: relative;
    width: 100%;
  }

  .site-navigation .has-children {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .site-navigation .has-children .toggle {
    --btn-icon: url("https://template-assets.tebex.io/images/chevron.svg");
    flex: none;
  }

  .site-navigation .has-children .toggle::before {
    transition: rotate 0.15s ease-in-out;
  }

  .site-navigation .has-children.expanded>.toggle::before {
    rotate: 180deg;
  }

  .site-navigation .has-children:not(.expanded) .menu-sub {
    display: none;
  }

  .site-navigation .menu-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex: 1 1 auto;
    padding: 11px 0;
    transition: color 0.15s ease-in-out;
  }

  .site-navigation .menu-link:hover {
    color: var(--color-primary);
  }

  .site-navigation .menu-link.active {
    color: var(--color-primary);
    font-weight: 700;
  }

  .site-navigation .menu-sub .menu-link {
    padding: 8px 0;
  }

  .site-navigation .site-link,
  .site-navigation .log-out {
    margin-top: auto;
    margin-left: -8px;
  }

  .site-navigation .site-link a,
  .site-navigation .log-out a {
    --btn-icon: url("https://template-assets.tebex.io/images/globe.svg");
    width: 100%;
  }

  .site-navigation .log-out a {
    --btn-icon: url("https://template-assets.tebex.io/images/log-out.svg");
  }

  .site-navigation .site-link+.log-out {
    margin-top: 0;
  }
}

@media (width > 960px) {
  .site-navigation {
    position: sticky;
    top: -1px;
    z-index: 100;
    transition: background-color 0.15s ease;
  }

  .site-navigation.stuck {
    background-color: var(--color-brighter-bg);
    backdrop-filter: var(--bg-blur);
  }

  .site-navigation .menu {
    display: flex;
    align-items: center;
    gap: var(--widget-padding);
    margin-inline: auto;
    padding-block: var(--content-padding);
    width: 100%;
    max-width: var(--content-inner-width);
    min-height: var(--btn-size);
    padding: calc(var(--widget-padding) * 0.75) var(--widget-padding);
    line-height: var(--btn-size);
    font-size: 16px;
    font-weight: 500;
    text-align: center;
  }

  .site-navigation:not(.stuck) .menu {
    background-color: var(--color-brighter-bg);
    backdrop-filter: var(--bg-blur);
    border-radius: 10px;
  }

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

  .site-navigation .menu>.menu-item>.menu-link {
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 18ch;
  }

  .site-navigation .menu-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: color 0.15s ease-in-out;
  }

  .site-navigation .menu-link:hover,
  .site-navigation .menu-link.link-active {
    color: var(--color-primary);
  }

  .site-navigation li.site-title-link {
    flex: none;
    align-content: center;
    margin-right: var(--widget-padding);
    max-width: none;
    text-align: left;
  }

  .site-navigation .site-title {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-box: trim-both cap alphabetic;
  }
}

@media (width > 960px) and (width > 960px) {
  .site-navigation .site-title {
    font-size: 40px;
  }
}

@media (width > 960px) {
  .site-navigation .site-title .menu-link {
    color: var(--color-primary);
  }

  .site-navigation .site-title .menu-link:hover {
    color: var(--color-primary-hover);
  }

  .site-navigation .site-title img {
    max-width: 100%;
    max-height: var(--btn-size);
    border-radius: 5px;
  }

  .site-navigation .has-children {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .site-navigation .has-children .toggle {
    --btn-size: 30px;
    --btn-icon: url("https://template-assets.tebex.io/images/chevron.svg");
    --btn-color-bg-hover: var(--color-tertiary);
    flex: none;
    transition: rotate 0.15s ease-in-out;
  }

  .site-navigation .has-children:hover>.toggle {
    rotate: 180deg;
  }

  .site-navigation .menu-sub {
    position: absolute;
    top: 100%;
    left: -100px;
    right: -100px;
    margin-inline: auto;
    width: max-content;
    padding: calc(var(--widget-padding) / 2) 0;
    background: rgb(from var(--color-brighter-bg) r g b/0.9);
    border-radius: 5px;
    backdrop-filter: var(--bg-blur);
    transition: all 0.15s ease-in-out;
  }

  .site-navigation .has-children:not(:hover)>.menu-sub {
    visibility: hidden;
    opacity: 0;
    translate: 0 -10px;
  }

  .site-navigation .menu .menu-sub {
    line-height: 24px;
    font-size: 16px;
    font-weight: 400;
  }

  .site-navigation .menu-sub .menu-link {
    width: 100%;
    max-width: 24ch;
    padding: 4px calc(var(--widget-padding) / 2);
    transition: all 0.15s ease-in-out;
  }

  .site-navigation .menu-sub .menu-link:hover,
  .site-navigation .menu-sub .menu-link.link-active {
    color: var(--color-bg);
    background-color: var(--color-primary);
  }
}

.site-home-categories {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--widget-padding);
  margin-bottom: var(--layout-gap);
}

.site-home-categories .category {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: subgrid;
  align-items: center;
  gap: calc(var(--widget-padding) / 2);
  overflow: hidden;
  padding: var(--widget-padding);
  line-height: 26px;
  background: var(--color-brighter-bg) linear-gradient(to bottom, transparent 67%, rgb(from var(--color-primary) r g b/0.15)) no-repeat 0 0/100% 200%;
  border-radius: 10px;
  backdrop-filter: var(--bg-blur);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.015em;
  text-shadow: 0 1px 0 rgb(from var(--color-bg) r g b/0.5);
  transition: color 0.15s ease-in-out, background-position-y 0.3s ease;
}

@media (width > 600px) {
  .site-home-categories .category {
    gap: var(--widget-padding);
  }
}

@media (width > 600px) {
  .site-home-categories .category {
    padding-block: 20px;
    line-height: 32px;
    font-size: 24px;
    text-align: center;
  }
}

.site-home-categories .category:hover {
  color: var(--color-primary);
  background-position-y: 100%;
}

.site-home-categories .category .image {
  max-width: 100%;
  width: auto;
  max-height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

@media (width > 600px) {
  .site-home-categories .category .image {
    margin: auto;
  }
}

.site-home-categories .category .image-default {
  position: relative;
  width: min(100px, 100%);
  aspect-ratio: 1;
}

.site-home-categories .category .image-default::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background-color: rgb(from var(--color-text) r g b/0.8);
  mask: url("https://template-assets.tebex.io/images/package-default.svg") center center/contain no-repeat;
}

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

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

.store-form {
  font-size: 18px;
}

.store-form p {
  margin-bottom: 24px;
}

.store-form .input-group,
.store-form .field,
.store-form .field-inline {
  margin-bottom: 24px;
}

.store-form .input-group>p,
.store-form .field>p,
.store-form .field-inline>p {
  margin-bottom: 12px;
}

.store-form .field-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 12px;
}

@media (width > 600px) {
  .store-form .field-inline {
    gap: 0 24px;
  }
}

.store-form input,
.store-form select,
.store-form textarea {
  display: block;
}

.store-form input[type=text],
.store-form input[type=password],
.store-form input[type=email],
.store-form input[type=number],
.store-form input[type=search],
.store-form input[type=url],
.store-form input[type=tel],
.store-form input[type=date],
.store-form input[type=time],
.store-form input[type=datetime-local],
.store-form input[type=file],
.store-form input[type=month],
.store-form input[type=week],
.store-form select,
.store-form textarea {
  margin-bottom: 12px;
  width: 100%;
  padding: 14px 12px;
  color: var(--color-text-darker);
  background: var(--color-input-bg);
  font-size: 14px;
  border-radius: 10px;
}

@media (width > 960px) {

  .store-form input[type=text],
  .store-form input[type=password],
  .store-form input[type=email],
  .store-form input[type=number],
  .store-form input[type=search],
  .store-form input[type=url],
  .store-form input[type=tel],
  .store-form input[type=date],
  .store-form input[type=time],
  .store-form input[type=datetime-local],
  .store-form input[type=file],
  .store-form input[type=month],
  .store-form input[type=week],
  .store-form select,
  .store-form textarea {
    padding: 12px;
    font-size: 16px;
  }
}

.store-form .field-inline input,
.store-form .field-inline select,
.store-form .field-inline textarea {
  width: auto;
}

.store-form .actions {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.store-form .actions .link-text {
  align-self: center;
  font-size: 18px;
  font-weight: 700;
  margin: 0 16px;
}

@media (width <=960px) {
  .site-content-widgets {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
}

@media (width > 960px) {
  body:not(.is-sidebar-bottom) .site-content-widgets {
    display: grid;
    align-items: start;
    gap: 32px;
  }

  body.is-sidebar-left .site-content-widgets {
    grid-template-columns: var(--sidebar-width) 1fr;
  }

  body.is-sidebar-left .site-content-widgets .store-sidebar {
    order: -1;
  }

  body.is-sidebar-right .site-content-widgets {
    grid-template-columns: 1fr var(--sidebar-width);
  }
}

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

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

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

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

.store-product {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.store-product .product-title {
  font-size: 20px;
  font-weight: 600;
}

.store-product .product-title a {
  color: inherit;
  transition: color 0.15s ease-in-out;
}

.store-product .product-title a:hover {
  color: var(--color-primary);
}

.store-product .product-title .countdown {
  display: block;
  margin-top: 8px;
  color: var(--color-removed);
  font-size: 0.75em;
  font-variant-numeric: tabular-nums;
}

.store-product .product-title .countdown::before {
  content: "";
  display: inline-block;
  vertical-align: -0.15em;
  margin-right: 0.25em;
  width: 1em;
  height: 1em;
  background-color: currentColor;
  mask: url("https://template-assets.tebex.io/images/countdown.svg") center center/contain no-repeat;
}

.store-product .image-link {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  width: fit-content;
}

.store-product .image-link:hover~.product-title a {
  color: var(--color-primary);
}

.store-product .image {
  margin: 0 auto;
  max-width: 100%;
  border-radius: 10px;
}

.store-product .image-default {
  position: relative;
  width: min(140px, 100%);
  aspect-ratio: 1;
}

.store-product .image-default::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  margin: auto;
  background-color: rgb(from var(--color-text) r g b/0.8);
  mask: url("https://template-assets.tebex.io/images/package-default.svg") center center/contain no-repeat;
}

.store-product .descr {
  font-size: 14px;
}

.store-product .actions {
  display: flex;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.store-product .actions.updating {
  pointer-events: none;
}

.store-product .actions.updating>* {
  opacity: 0.3;
  filter: grayscale(100%);
}

.store-product .actions.updating::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: 10;
  margin: auto;
  width: 30px;
  height: 30px;
  background: url("https://template-assets.tebex.io/images/loading.svg") center center no-repeat;
  background-size: contain;
}

.store-product:not(.store-product-full) .actions {
  flex-wrap: wrap;
  align-content: flex-end;
  flex: 1 1 auto;
}

.store-product .price {
  font-size: 14px;
  font-weight: 500;
}

.store-product .price .discount {
  margin-right: 1ch;
  color: var(--color-removed);
  font-weight: 400;
  text-decoration-line: line-through;
}

.store-product .price strong {
  font-size: 20px;
  font-weight: inherit;
}

.store-product:not(.store-product-full) .price {
  width: 100%;
}

.store-product .quantity-field {
  height: var(--btn-size);
  background: var(--color-brighter-bg);
}

.store-product .quantity-field input[type=number] {
  border: none;
}

.store-product .half {
  flex: 1 1 33%;
  overflow: visible;
}

.store-product .wide {
  flex: 1 1 auto;
}

.store-product .gift {
  --btn-icon: url("https://template-assets.tebex.io/images/gift.svg");
  flex: none;
}

.store-product .remove {
  --btn-icon: url("https://template-assets.tebex.io/images/delete.svg");
  flex: none;
}

.store-products-images .store-product {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: subgrid;
}

.store-products-images .store-product .image-link {
  align-content: center;
  width: 100%;
  overflow: hidden;
}

.store-products-images .store-product .descr {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

.store-products-list .store-product .image-link {
  margin: 0;
}

.store-products-list .store-product .image {
  width: 80px;
}

@media (width > 600px) {
  .store-products-list .store-product {
    flex-direction: row;
    align-items: center;
    gap: 12px calc(var(--widget-padding) * 0.75);
  }

  .store-products-list .store-product .product-title {
    margin-right: auto;
  }

  .store-products-list .store-product .actions {
    flex-wrap: nowrap;
    align-items: center;
    flex: 0 1 auto;
    gap: calc(var(--widget-padding) * 0.75);
  }

  .store-products-list .store-product .price {
    width: auto;
  }

  .store-products-list .store-product .half {
    flex: 0 1 140px;
  }

  .store-products-list .store-product .wide {
    flex: 0 1 170px;
  }
}

.media-slider {
  --slider-spacing: 6px;
  --thumbs-size: 40px;
  --thumb-padding: 6px;
  position: relative;
  width: 100%;
  overflow: hidden;
}

@media (width > 360px) {
  .media-slider {
    --slider-spacing: 12px;
    --thumbs-size: 55px;
  }
}

@media (width > 600px) {
  .media-slider {
    --thumbs-size: 70px;
  }
}

@media (width > 960px) {
  .media-slider {
    --thumbs-size: 90px;
  }
}

@media (width > 1400px) {
  .media-slider {
    --thumbs-size: 110px;
  }
}

.media-slider .slider {
  width: 100%;
  min-height: 200px;
  overflow: hidden;
  margin-bottom: var(--thumb-padding);
}

.media-slider .slider::part(container) {
  --swiper-navigation-size: 24px;
  --swiper-theme-color: var(--color-text);
}

.media-slider .slider::part(wrapper) {
  align-items: center;
}

.media-slider .slide {
  align-content: center;
}

.media-slider .slide-image {
  margin: auto;
  max-width: 100%;
  min-height: 200px;
  max-height: 100%;
  object-fit: contain;
  border-radius: 5px;
}

.media-slider .slide-video {
  border-radius: 5px;
  background: #000 var(--preview-image) center center/cover no-repeat;
  position: relative;
}

.media-slider .slide-frame {
  display: block;
  margin: auto;
  width: 100%;
  max-height: 100%;
  aspect-ratio: 16/9;
  transition: visibility 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.media-slider .slide-frame:not(.iframe-loaded) {
  visibility: hidden;
  opacity: 0;
}

.media-slider .thumbs {
  display: flex;
  gap: var(--slider-spacing);
  align-items: stretch;
  flex-wrap: wrap;
}

.store-product-full .media-slider .thumbs {
  justify-content: center;
}

.media-slider .thumb {
  display: block;
  width: var(--thumbs-size);
  height: var(--thumbs-size);
  padding: var(--thumb-padding);
  background-color: var(--color-bg);
  border-radius: 5px;
  cursor: pointer;
}

.media-slider .thumb-image,
.media-slider .thumb-youtube {
  width: calc(var(--thumbs-size) - var(--thumb-padding) * 2);
  height: calc(var(--thumbs-size) - var(--thumb-padding) * 2);
  transition: opacity 0.3s ease-in-out;
}

.media-slider .thumb:not(.active) .thumb-image,
.media-slider .thumb:not(.active) .thumb-youtube {
  opacity: 0.5;
}

.media-slider .thumb-image {
  object-fit: contain;
}

.media-slider .thumb-youtube {
  position: relative;
  align-content: center;
}

.media-slider .thumb-youtube img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.media-slider .thumb-youtube::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  margin: auto;
  width: 30px;
  height: 30px;
  background-color: #fff;
  mask: url("https://template-assets.tebex.io/images/play.svg") center center/contain no-repeat;
}

.media-slider .open-lightbox {
  position: absolute;
  top: var(--slider-spacing);
  right: var(--slider-spacing);
  z-index: 2;
  align-content: center;
  width: 40px;
  height: 40px;
  background-color: rgb(from var(--color-bg) r g b/75%);
  backdrop-filter: blur(10px);
  visibility: hidden;
  line-height: 0;
  font-size: 0;
  color: transparent;
  opacity: 0;
  border-radius: 5px;
  transition: all 0.15s ease-in-out;
}

.media-slider .open-lightbox:hover,
.media-slider .open-lightbox:focus {
  background-color: rgb(from var(--color-bg) r g b/90%);
}

.media-slider .open-lightbox::before {
  content: "";
  display: block;
  margin: auto;
  width: 18px;
  height: 18px;
  flex: none;
  background-color: var(--color-tertiary-text);
  mask: url("https://template-assets.tebex.io/images/fullscreen.svg") center center/contain no-repeat;
  transition: background-color 0.15s ease-in-out;
}

.media-slider .open-lightbox:hover::before,
.media-slider .open-lightbox:focus::before {
  background-color: var(--color-tertiary-text-hover);
}

.media-slider .slider:has(.swiper-slide-active .slide-image):hover~.open-lightbox,
.media-slider .open-lightbox:hover {
  opacity: 1;
  visibility: visible;
}

.popup.popup-media-slider {
  --slider-spacing: 6px;
  --thumbs-size: 40px;
  --thumb-padding: 6px;
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: minmax(0, auto) calc(var(--thumbs-size) + var(--slider-spacing));
  overflow: hidden;
  backdrop-filter: blur(10px);
}

@media (width > 360px) {
  .popup.popup-media-slider {
    --slider-spacing: 12px;
    --thumbs-size: 70px;
  }
}

@media (width > 600px) {
  .popup.popup-media-slider {
    --thumbs-size: 70px;
  }
}

@media (width > 960px) {
  .popup.popup-media-slider {
    --thumbs-size: 90px;
  }
}

@media (width > 1400px) {
  .popup.popup-media-slider {
    --thumbs-size: 120px;
  }
}

.popup.popup-media-slider .popup-close {
  top: var(--slider-spacing);
  right: var(--slider-spacing);
  z-index: 2;
  backdrop-filter: blur(5px);
  border-radius: 5px;
}

.popup.popup-media-slider .slider {
  width: 100%;
}

.popup.popup-media-slider .slider::part(container) {
  --swiper-navigation-size: 30px;
  --swiper-theme-color: var(--color-text);
}

@media (width > 600px) {
  .popup.popup-media-slider .slider::part(container) {
    --swiper-navigation-size: 36px;
  }
}

.popup.popup-media-slider .slider::part(wrapper) {
  align-items: center;
}

.popup.popup-media-slider .slide {
  align-content: center;
  padding: var(--slider-spacing);
}

.popup.popup-media-slider .slide-image {
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.popup.popup-media-slider .slide-video {
  border-radius: 5px;
  background: #000 var(--preview-image) center center/cover no-repeat;
  position: relative;
}

.popup.popup-media-slider .slide-frame {
  display: block;
  margin: auto;
  width: 100%;
  max-height: 100%;
  aspect-ratio: 16/9;
  transition: visibility 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.popup.popup-media-slider .slide-frame:not(.iframe-loaded) {
  visibility: hidden;
  opacity: 0;
}

.popup.popup-media-slider .thumbs {
  display: flex;
  gap: var(--slider-spacing);
  align-items: stretch;
  flex-wrap: wrap;
  padding: 0 var(--slider-spacing) var(--slider-spacing);
}

.popup.popup-media-slider .thumb {
  display: block;
  width: var(--thumbs-size);
  height: var(--thumbs-size);
  padding: var(--thumb-padding);
  background-color: rgb(from var(--color-bg) r g b/0.7);
  border-radius: 5px;
  cursor: pointer;
}

.popup.popup-media-slider .thumb-image,
.popup.popup-media-slider .thumb-youtube {
  width: calc(var(--thumbs-size) - var(--thumb-padding) * 2);
  height: calc(var(--thumbs-size) - var(--thumb-padding) * 2);
  transition: opacity 0.3s ease-in-out;
}

.popup.popup-media-slider .thumb:not(.active) .thumb-image,
.popup.popup-media-slider .thumb:not(.active) .thumb-youtube {
  opacity: 0.5;
}

.popup.popup-media-slider .thumb-image {
  object-fit: contain;
}

.popup.popup-media-slider .thumb-youtube {
  position: relative;
  align-content: center;
}

.popup.popup-media-slider .thumb-youtube img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.popup.popup-media-slider .thumb-youtube::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  margin: auto;
  width: 36px;
  height: 36px;
  background-color: var(--color-text);
  mask: url("https://template-assets.tebex.io/images/play.svg") center center/contain no-repeat;
}

.store-product-full .image {
  margin-inline: auto;
  max-width: 100%;
  order: -1;
}

.store-product-full .product-title {
  font-size: 28px;
  font-weight: 800;
}

.store-product-full .price {
  width: 100%;
  font-size: 24px;
}

.store-product-full .price strong {
  font-size: 28px;
}

.store-product-full .actions {
  flex-wrap: wrap;
}

.store-product-full .wide {
  max-width: 240px;
}

@media (width > 600px) {
  .store-product-full {
    display: grid;
    grid-template: "image title" auto "image actions" auto "image descr" 1fr/1fr 1fr;
    gap: 24px var(--layout-gap);
  }

  .store-product-full .image,
  .store-product-full .media-slider {
    grid-area: image;
    margin-right: 0;
  }

  .store-product-full .product-title {
    grid-area: title;
    font-size: 32px;
    align-self: flex-end;
  }

  .store-product-full .descr {
    grid-area: descr;
    font-size: 16px;
  }

  .store-product-full .actions {
    grid-area: actions;
    align-self: start;
  }
}

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

.back-to-top::before {
  rotate: 90deg;
}

.store-product-options .product-title {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 600;
}

.store-product-options .actions {
  position: sticky !important;
  bottom: var(--widget-padding);
  justify-content: start;
  width: fit-content;
  max-width: 100%;
}

.store-product-options .actions.updating {
  pointer-events: none;
}

.store-product-options .actions.updating>* {
  opacity: 0.3;
  filter: grayscale(100%);
}

.store-product-options .actions.updating::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: 10;
  margin: auto;
  width: 30px;
  height: 30px;
  background: url("https://template-assets.tebex.io/images/loading.svg") center center no-repeat;
  background-size: contain;
}

.store-product-options .actions .btn-primary,
.store-product-options .actions .btn-secondary,
.store-product-options .actions .btn-tertiary {
  width: 230px;
}

.store-product-options .actions-multiple {
  width: auto;
}

.store-product-options .actions-multiple .btn-primary,
.store-product-options .actions-multiple .btn-secondary,
.store-product-options .actions-multiple .btn-tertiary {
  width: auto;
  flex: 1 1 auto;
}

.store-sidebar {
  display: grid;
  gap: 36px;
}

body:not(.is-sidebar-bottom) .store-sidebar {
  padding-top: 14px;
}

body.is-sidebar-bottom .store-sidebar {
  margin-top: calc(var(--layout-gap) * 1.5);
}

@media (width > 600px) {
  body.is-sidebar-bottom .store-sidebar {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

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

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

.widget-gift-card {
  text-align: center;
}

.widget-gift-card .gift-card-input {
  margin-bottom: 12px;
  width: 100%;
  padding: 14px 12px;
  color: var(--color-text-darker);
  background: var(--color-input-bg);
  font-size: 14px;
  border-radius: 10px;
  font-size: 14px;
}

@media (width > 960px) {
  .widget-gift-card .gift-card-input {
    padding: 12px;
    font-size: 16px;
  }
}

.popup .widget-gift-card .gift-card-input {
  background: #242424;
}

.widget-gift-card .check {
  width: 100%;
}

.widget-recent .purchase {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  margin-bottom: 6px;
  line-height: 1.4;
}

.widget-recent .avatar {
  flex: none;
  max-width: 40px;
  max-height: 40px;
  object-fit: contain;
  border-radius: 5px;
}

.widget-recent .username {
  font-weight: 700;
}

.widget-recent .empty {
  text-align: center;
}

.widget-recent time {
  opacity: 0.5;
  font-size: 0.9em;
}

.widget-recent .sep {
  margin: 0 0.3em;
}

.widget-top-donator .avatar {
  margin-bottom: 12px;
  max-width: 96px;
  border-radius: 10px;
}

.widget-top-donator .username {
  margin-bottom: 6px;
  font-weight: 700;
  font-size: 18px;
}

.widget-top-donator .empty {
  text-align: center;
}

.widget-community-goal .widget-content,
.widget-goal .widget-content {
  text-align: center;
}

.widget-community-goal p:not(:last-child),
.widget-goal p:not(:last-child) {
  margin-bottom: 12px;
}

.widget-community-goal .progress,
.widget-goal .progress {
  height: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--color-tertiary-hover);
  border-radius: 6px;
}

@keyframes progressBarAnimation {
  to {
    background-position: 100% 0;
  }
}

.widget-community-goal .progress-bar,
.widget-goal .progress-bar {
  height: 12px;
  border-radius: 6px;
  background: var(--color-primary);
}

.widget-community-goal .progress-bar.striped,
.widget-goal .progress-bar.striped {
  background: var(--color-primary) linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary) 33%, rgb(from var(--color-primary-hover) r g b/0.35) 33%, rgb(from var(--color-primary-hover) r g b/0.35) 66%, var(--color-primary) 66%, var(--color-primary) 100%) repeat;
  background-size: 24px 100%;
}

.widget-community-goal .progress-bar.striped.animated,
.widget-goal .progress-bar.striped.animated {
  animation: progressBarAnimation 10s infinite linear;
}

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

.widget-community-goal .descr {
  margin-bottom: 12px;
}

.widget-server-status .widget-content {
  text-align: center;
}

.widget-server-status h6 {
  margin-bottom: 12px;
}

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

.site-footer-inner {
  position: relative;
  padding: 20px var(--content-padding);
}

@media (width <=960px) {
  .site-footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--widget-padding);
  }
}

.site-footer-inner .site-footer-nav {
  line-height: 150%;
  font-size: 14px;
}

@media (width > 960px) {
  .site-footer-inner .site-footer-nav {
    margin-bottom: 12px;
  }
}

.site-footer-inner .site-footer-nav ul {
  display: flex;
}

@media (width <=960px) {
  .site-footer-inner .site-footer-nav ul {
    flex-direction: column;
    gap: var(--widget-padding);
    text-align: center;
  }
}

@media (width > 960px) {
  .site-footer-inner .site-footer-nav ul {
    gap: calc(var(--widget-padding) * 2);
  }
}

.site-footer-inner .site-footer-nav a {
  color: var(--color-text-darker);
  text-decoration-line: underline;
  text-underline-offset: 2px;
  transition: color 0.15s ease-in-out;
}

.site-footer-inner .site-footer-nav a:hover {
  color: var(--color-primary);
}

.site-footer-inner .copyright {
  line-height: 16px;
  color: var(--color-text-secondary);
  font-size: 12px;
}

.site-footer-inner .we-accept {
  display: flex;
  align-items: center;
  gap: 12px;
}

@media (width > 960px) {
  .site-footer-inner .we-accept {
    position: absolute;
    top: 0;
    right: var(--content-padding);
    bottom: 0;
    pointer-events: none;
  }
}

.site-footer-inner .we-accept li {
  display: block;
}

.site-footer-inner .we-accept img {
  display: block;
  max-width: 57px;
  max-height: 26px;
}

:root.color-scheme-light .site-footer-inner .we-accept img[alt=Visa] {
  filter: brightness(0.1);
}

@media (prefers-color-scheme: light) {
  :root.color-scheme-auto .site-footer-inner .we-accept img[alt=Visa] {
    filter: brightness(0.1);
  }
}

.site-footer-credit {
  color: var(--color-text-secondary);
  background: #101010;
  font-size: 11px;
}

.site-footer-credit .site-footer-credit-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  gap: 22px;
  margin: auto;
  padding-top: 16px;
  padding-bottom: 16px;
  min-height: 45px;
}

@media (width > 960px) {
  .site-footer-credit .site-footer-credit-inner {
    align-items: center;
    flex-direction: row;
  }
}

.site-footer-credit .copyright {
  display: flex;
  align-items: flex-start;
  gap: 22px;
}

@media (width > 960px) {
  .site-footer-credit .copyright {
    align-items: center;
  }
}

.site-footer-credit .copyright .tebex-logo-link {
  flex: none;
}

.site-footer-credit .legal {
  display: flex;
  gap: 16px;
  white-space: nowrap;
}

@media (width > 960px) {
  .site-footer-credit .legal {
    gap: 20px;
  }
}

.site-footer-credit .legal a {
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.15s ease-in-out;
}

.site-footer-credit .legal a:hover {
  color: var(--color-primary);
}

.popup {
  --fade-duration: 300ms;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 200000;
  overflow: hidden scroll;
  scrollbar-width: thin;
  scrollbar-color: var(--color-secondary) transparent;
  background: var(--color-popup-bg);
  transition: opacity var(--fade-duration) ease, display var(--fade-duration) allow-discrete;
}

@starting-style {
  .popup {
    opacity: 0;
  }
}

.popup.drawer {
  user-select: none;
}

.popup[hidden] {
  opacity: 0;
  display: none;
}

.popup-scroll-cont {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  padding: calc(var(--content-padding) / 2);
  overflow: hidden;
  overscroll-behavior: none;
}

@media (width > 600px) {
  .popup-scroll-cont {
    padding: var(--content-padding);
  }
}

@media (pointer: coarse) {
  .popup .popup-scroll-cont {
    align-items: flex-end;
    padding-bottom: 0;
  }
}

.popup-content {
  position: relative;
  width: 100%;
  max-width: 550px;
  padding: var(--widget-padding);
  background: var(--color-brighter-bg);
  border-radius: 10px;
  backdrop-filter: var(--bg-blur);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
  transition: translate var(--fade-duration) ease, opacity var(--fade-duration) ease;
}

@media (pointer: coarse) {
  .popup-content {
    padding-bottom: calc(var(--widget-padding) * 2);
  }
}

@starting-style {
  .popup-content {
    translate: 0 20px;
  }
}

.popup.drawer-down .popup-content {
  border-radius: 10px 10px 0 0;
}

.popup.drawer-up .popup-content {
  border-radius: 0 0 10px 10px;
}

.popup.drawer-right .popup-content {
  border-radius: 10px 0 0 10px;
}

.popup.drawer-left .popup-content {
  border-radius: 0 10px 10px 0;
}

.popup.touching .popup-content {
  transition: opacity var(--fade-duration) ease, scale var(--fade-duration) ease;
}

.popup.drawer[hidden] .popup-content,
.popup.may-close .popup-content {
  opacity: 0.8;
  scale: 0.95;
}

.popup.may-close .popup-content {
  border-radius: 10px;
}

.popup.drawer-up[hidden] .popup-content {
  translate: 0 -100%;
}

.popup.drawer-down[hidden] .popup-content {
  translate: 0 100%;
}

.popup.drawer-right[hidden] .popup-content {
  translate: 100% 0;
}

.popup.drawer-left[hidden] .popup-content {
  translate: -100% 0;
}

.popup:not(.drawer)[hidden] .popup-content {
  translate: 0 20px;
}

.popup:not(.drawer)[hidden] .popup-content {
  translate: 0 20px;
}

.popup.popup-loading .popup-content {
  min-height: 180px;
}

.popup.popup-loading .popup-content::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  margin: auto;
  width: 38px;
  height: 38px;
  background: url("https://template-assets.tebex.io/images/loading.svg") center center no-repeat;
  background-size: contain;
}

.drawer-up .popup-content::after,
.drawer-down .popup-content::after,
.drawer-left .popup-content::after,
.drawer-right .popup-content::after {
  content: "";
  display: block;
  position: absolute;
  background: rgb(from var(--color-text-secondary) r g b/0.33);
  border-radius: 2px;
  pointer-events: none;
}

.drawer-up .popup-content::after,
.drawer-down .popup-content::after {
  left: 0;
  right: 0;
  margin-inline: auto;
  height: 4px;
  width: 100px;
}

.drawer-up .popup-content::after {
  bottom: 7px;
}

.drawer-down .popup-content::after {
  top: 7px;
}

.drawer-left .popup-content::after,
.drawer-right .popup-content::after {
  top: 0;
  bottom: 0;
  margin-block: auto;
  width: 4px;
  height: 100px;
}

.drawer-left .popup-content::after {
  right: 7px;
}

.drawer-right .popup-content::after {
  left: 7px;
}

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

@media (width <=600px) {
  .popup-close {
    mask-size: 24px;
  }
}

.popup-close:hover,
.popup-close:focus {
  background-color: var(--color-tertiary-text-hover);
}

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

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

.gift-form-popup .popup-content h1,
.gift-form-popup .popup-content h2,
.gift-form-popup .popup-content h3,
.gift-form-popup .popup-content h4,
.gift-form-popup .popup-content h5,
.gift-form-popup .popup-content h6 {
  margin-bottom: 12px;
}

.gift-form-popup .popup-content .btn-primary {
  width: 240px;
}

.gift-form-popup .popup-content .actions {
  position: relative;
  width: fit-content;
  max-width: 100%;
}

.gift-form-popup .popup-content .actions.updating {
  pointer-events: none;
}

.gift-form-popup .popup-content .actions.updating>* {
  opacity: 0.3;
  filter: grayscale(100%);
}

.gift-form-popup .popup-content .actions.updating::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: 10;
  margin: auto;
  width: 30px;
  height: 30px;
  background: url("https://template-assets.tebex.io/images/loading.svg") center center no-repeat;
  background-size: contain;
}

.login-popup {
  z-index: 1002;
  background: transparent !important;
  box-shadow: none !important;
}

.login-popup .popup-scroll-cont {
  background: transparent !important;
}

.login-popup-content {
  max-width: none !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.basket {
  position: relative;
  z-index: 1001;
}

.site-content .basket {
  display: none;
}

.basket .basket-empty {
  margin: 60px auto;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 60px 20px;
  max-width: 320px;
}

.basket .basket-empty::before {
  content: "";
  display: block;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.04) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="rgba(255,255,255,0.7)" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><path d="M6 2L3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4z"></path><line x1="3" y1="6" x2="21" y2="6"></line><path d="M16 10a4 4 0 0 1-8 0"></path></svg>') center/36px no-repeat;
  border-radius: 50%;
}

.basket .basket-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 50px var(--content-padding) 30px;
  font-size: 22px;
  font-weight: 600;
}

@media (width > 960px) {
  .basket .basket-header {
    padding-top: 70px;
  }
}

.basket .basket-title {
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
}

.basket .basket-title::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background-color: var(--color-text);
  mask: url("https://template-assets.tebex.io/images/user.svg") center center no-repeat;
  mask-size: contain;
}

.basket .basket-second-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px var(--content-padding);
  background: var(--color-brighter-bg);
  font-size: 18px;
  font-weight: 300;
  text-align: center;
}

.basket .basket-second-header .total {
  font-size: 14px;
}

.basket .basket-second-header .total strong {
  font-size: 18px;
  font-weight: inherit;
}

.basket .basket-second-header .currency {
  display: flex;
  align-items: center;
  gap: 6px;
}

.basket .basket-second-header .currency::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url("https://template-assets.tebex.io/images/dropdown-arrow.svg") center center no-repeat;
}

.basket .basket-content {
  flex: 1;
  overflow-x: hidden;
  overflow-y: auto;
}

.basket .basket-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: var(--widget-padding);
}

.basket .basket-item {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 12px;
  padding: var(--widget-padding);
  background: var(--color-brighter-bg);
  border-radius: 10px;
}

.basket .basket-item .info {
  margin-right: auto;
}

.basket .basket-item .options {
  list-style-position: inside;
}

.basket .basket-item .options:has(li) {
  padding: 5px 0;
}

.basket .basket-item .options li {
  display: block;
  padding: 1px 0;
}

.basket .basket-item .options li::before {
  content: "";
  display: inline-block;
  margin-right: 0.4em;
  width: 3px;
  height: 3px;
  vertical-align: middle;
  background-color: currentColor;
  border-radius: 50%;
}

.basket .basket-item .title {
  font-size: 20px;
  font-weight: 600;
}

.basket .basket-item .price {
  color: var(--color-primary);
  font-size: 14px;
}

.basket .basket-item .price strong {
  font-size: 18px;
  font-weight: inherit;
}

.basket .basket-item .quantity-field {
  flex: none;
  height: 40px;
}

.basket .basket-item .remove {
  --btn-icon: url("https://template-assets.tebex.io/images/delete.svg");
  --btn-size: 40px;
}

.basket .basket-checkout {
  margin-top: auto;
  padding: 0 var(--content-padding) 50px;
}

@media (width > 960px) {
  .basket .basket-checkout {
    padding-bottom: 100px;
  }
}

.basket .basket-checkout h3 {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: var(--widget-padding);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}

.basket .basket-checkout .total {
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 400;
}

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

.basket .basket-checkout .checkout {
  width: 100%;
}

.basket-popup {
  background-color: transparent;
}

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

.basket-popup-content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 520px;
  height: 100vh;
  height: 100dvh;
  padding: 0;
  background-color: #000000;
}

.basket-popup-content,
.popup.drawer .basket-popup-content {
  border-radius: 0;
}

.popup.drawer .basket-popup-content::after {
  inset: 0 auto 0 7px;
  margin-block: auto;
  width: 4px;
  height: 100px;
}

.popup.may-close .basket-popup-content {
  border-radius: 0;
}

@starting-style {
  .basket-popup-content {
    translate: 100% 0;
  }
}

:root .popup[hidden] .basket-popup-content {
  translate: 100% 0;
}

.basket-popup-content .popup-close {
  border-radius: 0 0 0 10px;
}

.basket-popup-content.updating {
  pointer-events: none;
}

.basket-popup-content.updating::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: 10;
  margin: auto;
  width: 38px;
  height: 38px;
  background: url("https://template-assets.tebex.io/images/loading.svg") center center no-repeat;
  background-size: contain;
}

.basket-popup-content.updating>* {
  filter: grayscale(100%);
}

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

.toaster:empty {
  display: none;
}

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

@starting-style {
  .toast {
    opacity: 0;
    height: 0;
  }
}

.toast[hidden] {
  display: block;
  opacity: 0;
  height: 0;
}

.toast.toast-warning {
  background: #cab600;
}

.toast.toast-error {
  background: #C12E2E;
}

.toast.toast-success {
  background: #4caf50;
}

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

.toast-close:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.1);
}

.store-category-tiered-header {
  margin-bottom: var(--widget-padding);
  font-size: 18px;
}

.store-category-tiered-header h1,
.store-category-tiered-header h2,
.store-category-tiered-header h3,
.store-category-tiered-header h4,
.store-category-tiered-header h5,
.store-category-tiered-header h6,
.store-category-tiered-header p {
  margin-bottom: 24px;
}

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

.store-product-tiered {
  --gap: var(--widget-padding);
  --border-color: rgb(from var(--color-text) r g b / .1);
  display: grid;
  grid-row: span 4;
  grid-template-rows: subgrid;
  gap: var(--gap);
}

.store-product-tiered .image {
  margin: auto;
  max-width: 100%;
  object-fit: contain;
}

.store-product-tiered .product-title {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}

.store-product-tiered .countdown {
  display: block;
  margin-top: 4px;
  color: var(--color-removed);
  font-size: 0.75em;
  font-variant-numeric: tabular-nums;
}

.store-product-tiered .countdown::before {
  content: "";
  display: inline-block;
  vertical-align: -0.15em;
  margin-right: 0.25em;
  width: 1em;
  height: 1em;
  background-color: currentColor;
  mask: url("https://template-assets.tebex.io/images/countdown.svg") center center/contain no-repeat;
}

.store-product-tiered .descr {
  padding-block: var(--gap);
  border-block: 1px solid var(--border-color);
  color: var(--color-text-secondary);
}

.store-product-tiered .price {
  font-size: 14px;
  text-align: center;
}

.store-product-tiered .price .discount {
  margin-right: 1ch;
  color: var(--color-removed);
  font-weight: 400;
  text-decoration-line: line-through;
}

.store-product-tiered .price strong {
  font-size: 20px;
  font-weight: inherit;
}

.store-product-tiered .actions {
  gap: var(--gap);
}

.store-product-tiered .actions .wide {
  width: 100%;
}

.store-quote {
  padding: var(--widget-padding);
}

.store-quote .wide {
  flex: 1 1 50%;
}

@import url("https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --accent: #21e6ed;
  --accent-dim: rgba(33, 230, 237, 0.12);
  --accent-glow: rgba(33, 230, 237, 0.35);
  --bg: #0a0a0a;
  --bg2: #0f0f0f;
  --bg3: #141414;
  --border: #1e1e1e;
  --border2: #2a2a2a;
  --text-muted: #555;
  --text-mid: #888;
  --text-light: #bbb;
}

body {
  font-family: "Urbanist", sans-serif;
  background: var(--bg);
}

.custom-topbar {
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: #0c0c0c;
  padding: 10px 0;
}

.ticker-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: tickerMove 18s linear infinite;
}

.ticker-track span {
  color: #3a3a3a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.custom-navbar {
  width: 100%;
  background: rgba(10, 10, 10, .92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 9999;
}

.custom-navbar-inner,
.custom-navbar-mobile-row {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.custom-nav-logo img,
.mobile-brand img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.custom-nav-center {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.custom-nav-center a {
  color: #aaa;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .08em;
  transition: color .2s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
}

.nav-icon {
  width: 16px;
  height: 16px;
  opacity: 0.7;
  transition: all .2s;
  stroke-width: 2.5px;
}

.custom-nav-center a:hover,
.custom-nav-center a.active {
  color: var(--accent);
}

.custom-nav-center a:hover .nav-icon,
.custom-nav-center a.active .nav-icon {
  opacity: 1;
  filter: drop-shadow(0 0 5px var(--accent));
}

.custom-nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 10;
}

.custom-login-btn {
  height: 40px;
  padding: 0 18px;
  border-radius: 10px;
  background: var(--bg3);
  border: 1px solid var(--border2);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  transition: .2s ease;
}

.custom-cart-btn {
  background: #fff !important;
  color: #000 !important;
  border-radius: 10px;
  padding: 0 18px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
  border: none !important;
  font-size: 13px;
  cursor: pointer;
}

.custom-cart-btn:hover {
  background: #f3f4f6 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
  color: #000 !important;
}

.basket-btn-icon {
  height: 20px;
  width: auto;
  filter: brightness(0);
}

.custom-cart-btn strong {
  background: #000;
  color: #fff;
  min-width: 20px;
  height: 20px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  margin-left: 2px;
}

.fivem-login-btn {
  background: #fff !important;
  color: #000 !important;
  border-radius: 10px;
  padding: 0 20px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
  border: none !important;
  font-size: 14px;
}

.fivem-login-btn:hover {
  background: #f0f0f0 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
  color: #000 !important;
}

.hero-login-btn {
  height: 52px;
  padding: 0 32px;
  font-size: 16px;
  border-radius: 12px;
}

.fivem-btn-icon {
  height: 20px;
  width: auto;
  filter: brightness(0);
  /* Black icon on white background */
}

.custom-login-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* USER MENU */
.custom-user-nav {
  position: relative;
  z-index: 10001;
  /* Ensure it stays above navbar items but below popups if needed */
}

.user-profile {
  height: 40px;
  padding: 0 14px 0 6px;
  border-radius: 12px;
  background: var(--bg3);
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.user-profile:hover {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.05);
}

.user-avatar-wrap {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.user-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.user-avatar-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #000;
  font-weight: 900;
  font-size: 14px;
}

.user-name {
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.user-arrow {
  width: 14px;
  height: 14px;
  color: #555;
  transition: transform 0.2s;
}

.custom-user-nav:hover .user-arrow {
  transform: rotate(180deg);
  color: var(--accent);
}

.user-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 160px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
  z-index: 1000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.custom-user-nav:hover .user-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  color: #888;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.2s;
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent);
}

.dropdown-item svg {
  width: 16px;
  height: 16px;
}

.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 75vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  background: #000;
}

.hero-section::before {
  display: none;
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 20px 30px, #fff, rgba(0, 0, 0, 0)),
    radial-gradient(1px 1px at 40px 70px, #fff, rgba(0, 0, 0, 0)),
    radial-gradient(2px 2px at 50px 160px, #fff, rgba(0, 0, 0, 0)),
    radial-gradient(2px 2px at 90px 40px, #fff, rgba(0, 0, 0, 0)),
    radial-gradient(1px 1px at 130px 80px, #fff, rgba(0, 0, 0, 0)),
    radial-gradient(1px 1px at 160px 120px, #fff, rgba(0, 0, 0, 0));
  background-repeat: repeat;
  background-size: 300px 300px;
  opacity: 0.2;
  z-index: 1;
  pointer-events: none;
}

.hero-inner {
  /* transform removed to fix black gap */
}

.hero-grid {
  display: none;
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-orb {
  display: none;
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .15;
  pointer-events: none;
}

.hero-orb-1 {
  width: 700px;
  height: 700px;
  top: -200px;
  right: -100px;
  background: radial-gradient(circle, rgba(65, 196, 195, 0.3), transparent 70%);
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: 5%;
  background: radial-gradient(circle, #21e6ed44, transparent 70%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 40px;
  min-height: 75vh;
  padding-bottom: 10vh;
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  max-width: 850px;
  width: 100%;
  transform: translateY(-80px);
}

/*.hero-badge {*/
/*  display: inline-flex;*/
/*  align-items: center;*/
/*  gap: 8px;*/
/*  width: fit-content;*/
/*  background: var(--accent-dim);*/
/*  border: 1px solid rgba(33,230,237,.2);*/
/*  border-radius: 999px;*/
/*  padding: 6px 16px;*/
/*}*/

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.hero-badge span:last-child {
  color: var(--accent);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  margin-bottom: 8px;
}

.hero-title .brand-name {
  font-size: clamp(60px, 8vw, 110px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
}

.hero-title .brand-label {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 300;
  color: var(--accent);
  letter-spacing: 0.4em;
  margin-top: 5px;
  opacity: 0.9;
}

.hero-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  max-width: 580px;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-btn-primary,
.hero-btn-secondary {
  min-width: 180px;
  justify-content: center;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 16px;
  flex-wrap: wrap;
  width: 100%;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-number {
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
}

.stat-label {
  font-size: .75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .1em;
}

.hero-right {
  position: relative;
  height: 600px;
}

.hero-image-fallback {
  background: linear-gradient(135deg, var(--bg3), var(--bg2));
}

.features-section,
.home-category-section,
.fp-section,
.home-widgets-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 40px;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.section-label::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.section-label span {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.02em;
}

.section-title .muted {
  color: #333;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 60px;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  background: var(--border);
}

.feature-card {
  background: var(--bg2);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
}

.feature-desc {
  font-size: .9rem;
  color: #555;
  line-height: 1.6;
}

.custom-categories {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.custom-categories .category {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 24px;
  transition: .2s ease;
}

.custom-categories .category:hover {
  border-color: rgba(33, 230, 237, .25);
  color: var(--accent);
}

.home-sidebar {
  display: grid;
  gap: 20px;
}

.custom-footer {
  border-top: 1px solid var(--border);
  padding: 60px 40px;
  background: var(--bg);
}

.custom-footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
}

.custom-footer-top {
  display: flex;
  align-items: center;
  gap: 16px;
}

.custom-footer-top img {
  height: 30px;
  width: auto;
}

.footer-store-name {
  color: #fff;
  font-weight: 900;
  font-size: 1.1rem;
}

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

.custom-footer-links a {
  color: #444;
  font-size: .85rem;
  font-weight: 700;
}

.custom-footer-links a:hover {
  color: var(--accent);
}

.custom-footer-copy {
  color: #333;
  font-size: .82rem;
  font-weight: 600;
}

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 40px 20px;
    min-height: auto;
    gap: 30px;
  }

  .hero-right {
    height: 280px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .features-section,
  .home-category-section,
  .fp-section,
  .home-widgets-section,
  .custom-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .custom-navbar-mobile-row {
    padding: 0 20px;
    min-height: 64px;
  }
}

/* FEATURED PRODUCTS */

.fp-section {
  max-width: 1400px;
  margin: -30px auto 80px auto;
  padding: 40px 40px 100px 40px;
  position: relative;
  z-index: 10;
}

.fp-header {
  margin-bottom: 40px;
}

.fp-title {
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
}

.fp-accent {
  color: var(--accent);
}

.fp-sub {
  color: #777;
  margin-top: 6px;
  font-size: 16px;
}

.category-header,
.store-category-tiered-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.category-controls {
  display: flex;
  gap: 12px;
  align-items: center;
}

.fp-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}

.fp-header-right,
.category-controls {
  display: flex;
  gap: 12px;
  align-items: center;
}

.fp-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}

.fp-header-right {
  display: flex;
  gap: 12px;
  align-items: center;
}

.fp-search-box {
  position: relative;
  width: 300px;
}

.fp-search-box input {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px 14px 48px;
  color: #fff;
  font-size: 14px;
  transition: all 0.2s ease;
}

.fp-search-box input:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 20px rgba(33, 230, 237, 0.1);
}

.fp-search-box svg {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: #555;
  pointer-events: none;
  transition: color 0.2s;
}

.fp-search-box input:focus+svg {
  color: var(--accent);
}

.fp-filter-box select {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 20px;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  outline: none;
  transition: all 0.2s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23555' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 4.5l3 3 3-3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.fp-filter-box select:focus {
  border-color: var(--accent);
  background-color: rgba(255, 255, 255, 0.06);
}

@media (max-width: 768px) {
  .fp-header-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .fp-header-right,
  .fp-search-box {
    width: 100%;
  }
}

/* GRID */

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

/* TEBEX PACKAGE CARD FIX */

.featured-grid .store-package {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: 0.25s;
}

.featured-grid .store-package:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.featured-grid .store-package .image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.featured-grid .store-package .details {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.featured-grid .store-package .name {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
}

.featured-grid .store-package .price {
  font-weight: 700;
  color: #aaa;
}

.featured-grid .store-package .btn-primary {
  margin-top: auto;
  width: 100%;
}

/* FEATURED CAROUSEL */

.featured-carousel {
  overflow: hidden;
  width: 100%;
  margin-top: 40px;
}

.featured-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: featuredScroll 25s linear infinite;
}

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

@keyframes featuredScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* PRODUCT CARD */

.featured-track .store-package {
  width: 320px;
  flex-shrink: 0;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: 0.25s;
}

.featured-track .store-package:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.featured-track .image {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.featured-track .details {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.featured-track .name {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
}

.featured-track .price {
  font-weight: 700;
  color: #aaa;
}

.featured-track .btn-primary {
  margin-top: auto;
  width: 100%;
}

/* =========================
   TOP SELLING PRODUCTS
   ========================= */

.fp-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 90px 40px 40px;
  overflow: hidden;
}

.fp-header-centered {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 34px;
}

.fp-header-centered::before,
.fp-header-centered::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, #2a2a2a, transparent);
}

.fp-header-centered::before {
  margin-right: 18px;
}

.fp-header-centered::after {
  margin-left: 18px;
}

.fp-title {
  margin: 0;
  font-size: 2.1rem;
  line-height: 1;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.fp-accent {
  color: var(--accent);
}

.featured-carousel-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.featured-carousel-track {
  display: flex;
  align-items: stretch;
  gap: 18px;
  width: max-content;
  animation: featuredProductsScroll 30s linear infinite;
}

.featured-carousel-track:hover {
  animation-play-state: paused;
}

/* render_category çıktısı içindeki kapsayıcıları yatay akışa zorla */
.featured-carousel-track>.store-products-list,
.featured-carousel-track>.store-products-images {
  display: flex !important;
  flex-direction: row !important;
  gap: 18px !important;
  width: max-content !important;
  flex: none !important;
}

/* gerçek kart */
.featured-carousel-track .store-product {
  width: 360px;
  min-width: 360px;
  max-width: 360px;
  background: #101010;
  border: 1px solid #1d1d1d;
  border-radius: 18px;
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.featured-carousel-track .store-product:hover {
  transform: translateY(-4px);
  border-color: rgba(33, 230, 237, 0.22);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.featured-carousel-track .store-product .image-link {
  display: block;
  width: 100%;
  margin: 0;
}

.featured-carousel-track .store-product .image,
.featured-carousel-track .store-product .image-default {
  width: 100%;
  height: 210px;
  aspect-ratio: auto;
  object-fit: cover;
  border-radius: 0;
  margin: 0;
}

.featured-carousel-track .store-product .image-default {
  background: #171717;
}

.featured-carousel-track .store-product .product-title {
  padding: 18px 18px 10px;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.45;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 76px;
}

.featured-carousel-track .store-product .product-title a {
  color: #fff;
}

.featured-carousel-track .store-product .product-title a:hover {
  color: var(--accent);
}

.featured-carousel-track .store-product .product-title .countdown {
  display: none;
}

.featured-carousel-track .store-product .actions {
  padding: 0 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: auto;
}

.featured-carousel-track .store-product .price {
  width: 100%;
  font-size: 1.55rem;
  font-weight: 900;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.featured-carousel-track .store-product .price strong {
  font-size: 1.55rem;
  font-weight: 900;
}

.featured-carousel-track .store-product .price .discount {
  font-size: .95rem;
  color: #5a5a5a;
  text-decoration: line-through;
  margin-right: 0;
}

.featured-carousel-track .store-product .add,
.featured-carousel-track .store-product .subscribe,
.featured-carousel-track .store-product .open-basket-cta,
.featured-carousel-track .store-product .quantity-field {
  width: 100%;
  max-width: 100%;
}

.featured-carousel-track .store-product .btn-primary,
.featured-carousel-track .store-product .btn-secondary {
  width: 100%;
  height: 48px;
  border-radius: 10px;
  justify-content: center;
  font-size: .95rem;
  font-weight: 900;
}

.featured-carousel-track .store-product .gift {
  display: none !important;
}

@keyframes featuredProductsScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 9px));
  }
}

@media (max-width: 1200px) {
  .featured-carousel-track .store-product {
    width: 320px;
    min-width: 320px;
    max-width: 320px;
  }
}

@media (max-width: 768px) {
  .fp-section {
    padding: 70px 20px 30px;
  }

  .fp-title {
    font-size: 1.5rem;
  }

  .featured-carousel-track .store-product {
    width: 280px;
    min-width: 280px;
    max-width: 280px;
  }

  .featured-carousel-track .store-product .image,
  .featured-carousel-track .store-product .image-default {
    height: 170px;
  }
}

/* =========================
   WHY CHOOSE US
   ========================= */

.why-choose-section {
  max-width: 1400px;
  margin: 250px auto 0 auto;
  padding: 80px 40px 40px;
  position: relative;
}

.why-choose-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle at center, black 45%, transparent 100%);
  -webkit-mask-image: radial-gradient(circle at center, black 45%, transparent 100%);
  opacity: .45;
}

.why-choose-head {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  margin: 0 auto 46px;
}

.why-choose-title {
  margin: 0 0 18px;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  line-height: .95;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.18);
}

.why-choose-title span {
  color: #41C4C3;
  text-shadow: 0 0 30px rgba(65, 196, 195, 0.28);
}

.why-choose-subtitle {
  margin: 0;
  color: #7b7b7b;
  font-size: 1.05rem;
  line-height: 1.8;
  font-weight: 600;
}

.why-choose-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.why-card {
  position: relative;
  min-height: 230px;
  padding: 24px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(18, 18, 18, 0.92);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.30);
}

.why-card-light::before,
.why-card-red::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .55;
}

.why-card-light::before {
  background:
    radial-gradient(circle at 45% 40%, rgba(255, 255, 255, 0.09), transparent 45%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent 55%);
}

.why-card-red {
  border-color: rgba(65, 196, 195, 0.12);
}

.why-card-red::before {
  background:
    radial-gradient(circle at 50% 50%, rgba(65, 196, 195, 0.08), transparent 55%),
    linear-gradient(135deg, rgba(65, 196, 195, 0.05), transparent 60%);
}

.why-icon-box {
  position: relative;
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.why-card-red .why-icon-box {
  background: rgba(65, 196, 195, 0.12);
  color: #41C4C3;
}

.why-icon-box svg {
  width: 24px;
  height: 24px;
}

.why-card-content {
  position: relative;
  z-index: 2;
}

.why-card-content h3 {
  margin: 0 0 18px;
  font-size: 1.15rem;
  line-height: 1.2;
  font-weight: 900;
  color: #fff;
}

.why-card-red .why-card-content h3 {
  color: #41C4C3;
}

.why-card-content p {
  margin: 0;
  color: #8a8a8a;
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 600;
  max-width: 92%;
}

.why-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  transition: color .2s ease;
}

.why-link::after {
  content: "↪";
  font-size: 1rem;
  color: #41C4C3;
}

.why-link:hover {
  color: #41C4C3;
}

@media (max-width: 900px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .why-choose-section {
    padding: 70px 20px 90px;
  }

  .why-card {
    min-height: auto;
    padding: 22px 18px;
    border-radius: 18px;
  }

  .why-card-content p {
    max-width: 100%;
    font-size: .95rem;
  }
}

.fp-section {
  margin-top: -300px;
}

.why-choose-section {
  margin-top: 10px;
}

/*POWER GAMİNG*/
/* =========================
   RECENT PAYMENTS
   ========================= */

/* =========================
   RECENT PAYMENTS
   ========================= */

.recent-payments-widget {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 40px 40px !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  overflow: visible !important;
}

.recent-payments-head {
  text-align: center;
  margin-bottom: 54px;
}

.recent-payments-title {
  margin: 0 0 16px;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  line-height: .95;
  font-weight: 900;
  letter-spacing: -0.045em;
  color: #fff;
  text-shadow: 0 0 28px rgba(255, 255, 255, .22);
}

.recent-payments-title span {
  color: var(--accent);
  text-shadow: 0 0 28px rgba(33, 230, 237, .28);
}

.recent-payments-subtitle {
  margin: 0;
  color: #6e6e6e;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 700;
}

.recent-payments-widget .widget-content {
  padding: 0 !important;
  background: transparent !important;
}

.recent-payments-widget .purchases {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.recent-payments-widget .purchase {
  position: relative;
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  min-height: 96px;
  padding: 20px 22px !important;
  background: linear-gradient(180deg, rgba(14, 14, 14, .92) 0%, rgba(10, 10, 10, .96) 100%) !important;
  border: 1px solid rgba(255, 255, 255, .07) !important;
  border-radius: 20px !important;
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.recent-payments-widget .purchase::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .02), transparent 28%, transparent 72%, rgba(255, 255, 255, .02)),
    radial-gradient(circle at 50% 50%, rgba(33, 230, 237, .05), transparent 70%);
  opacity: .7;
}

.recent-payments-widget .purchase:hover {
  transform: translateY(-3px);
  border-color: rgba(33, 230, 237, .18) !important;
  box-shadow: 0 14px 36px rgba(0, 0, 0, .28);
}

.recent-payments-widget .avatar,
.recent-payments-widget .avatar-fallback {
  position: relative;
  z-index: 2;
  width: 56px !important;
  height: 56px !important;
  min-width: 56px;
  border-radius: 12px !important;
  object-fit: cover !important;
  border: 1px solid rgba(255, 255, 255, .08) !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .18);
}

.recent-payments-widget .avatar-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(33, 230, 237, .22), rgba(33, 230, 237, .08));
  color: #fff;
  font-size: 1.45rem;
  font-weight: 900;
}

.recent-payments-widget .info {
  position: relative;
  z-index: 2;
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.recent-payments-widget .username {
  margin: 0 !important;
  color: #f4f4f4 !important;
  font-size: 1rem !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.recent-payments-widget .payment-time {
  display: block;
  color: #5d5d5d !important;
  font-size: .92rem !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  white-space: nowrap;
}

.recent-payments-widget .payment-price {
  position: relative;
  z-index: 2;
  margin-left: auto;
  flex: 0 0 auto;
  text-align: right;
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  white-space: nowrap;
}

.recent-payments-widget .payment-price strong {
  color: #fff !important;
  font-size: 1rem !important;
  font-weight: 900 !important;
}

.recent-payments-widget .empty {
  text-align: center;
  color: #666;
  font-size: 1rem;
  font-weight: 700;
  padding: 30px 0;
}

@media (max-width: 1200px) {
  .recent-payments-widget .purchases {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .recent-payments-widget {
    padding: 70px 20px 30px !important;
  }

  .recent-payments-widget .purchases {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .recent-payments-widget .purchases {
    grid-template-columns: 1fr;
  }

  .recent-payments-widget .purchase {
    min-height: 88px;
    padding: 18px !important;
    border-radius: 16px !important;
  }

  .recent-payments-title {
    font-size: 2.4rem;
  }
}

.top-customer-label {
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 8px;
  opacity: 0.8;
}

.widget-top-donator {
  text-align: center;
}

.top-avatar {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  margin-bottom: 6px;
}

.top-username {
  margin: 0;
  font-size: 15px;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.main-logo {
  height: 38px;
}

.tebex-logo {
  height: 20px;
  opacity: .8;
}

.brand-combo {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

.brand-main-logo {
  height: 42px !important;
  width: auto !important;
  display: block !important;
  object-fit: contain !important;
}

.brand-tebex-logo {
  height: 20px !important;
  width: auto !important;
  display: block !important;
  object-fit: contain !important;
  opacity: 0.9 !important;
}

.site-title-link {
  display: flex !important;
  align-items: center !important;
}

.site-title {
  margin: 0 !important;
}

.site-title .menu-link {
  padding: 0 !important;
}

.site-title-link {
  display: flex !important;
  align-items: center !important;
}

.site-title {
  margin: 0 !important;
}

.site-title .logo-wrap {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 0 !important;
  width: auto !important;
  max-width: none !important;
}

.site-title .main-store-logo {
  display: block !important;
  height: 42px !important;
  width: auto !important;
  max-width: none !important;
  object-fit: contain !important;
}

.site-title .tebex-side-logo {
  display: block !important;
  height: 20px !important;
  width: auto !important;
  max-width: none !important;
  object-fit: contain !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.site-title img+img {
  display: block !important;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ana logo */
.main-store-logo {
  height: 70px;
  width: auto;
}

/* ortadaki çizgi */
.logo-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
}

/* tebex logosu */
.tebex-side-logo {
  height: 40px;
  width: auto;
  opacity: 0.9;
}

/* mobil */
.mobile-brand .main-store-logo {
  height: 50px;
}

.mobile-brand .tebex-side-logo {
  height: 28px;
}

.mobile-brand .logo-divider {
  height: 28px;
}

.widget-top-donator {
  width: 100%;
  text-align: left !important;
}

.widget-top-donator .widget-content {
  padding: 0 !important;
  background: transparent !important;
}

.widget-top-donator .purchases {
  display: block;
}

.widget-top-donator .purchase.top-customer {
  position: relative;
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  min-height: 96px;
  padding: 20px 22px !important;
  background: linear-gradient(180deg, rgba(14, 14, 14, .92) 0%, rgba(10, 10, 10, .96) 100%) !important;
  border: 1px solid rgba(255, 255, 255, .07) !important;
  border-radius: 20px !important;
  overflow: hidden;
}

.widget-top-donator .purchase.top-customer .avatar,
.widget-top-donator .purchase.top-customer .avatar-fallback {
  width: 56px !important;
  height: 56px !important;
  min-width: 56px !important;
  max-width: 56px !important;
  margin: 0 !important;
  border-radius: 12px !important;
  object-fit: cover !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.widget-top-donator .purchase.top-customer .avatar-fallback {
  background: linear-gradient(135deg, rgba(33, 230, 237, .22), rgba(33, 230, 237, .08));
  color: #fff;
  font-size: 1.45rem;
  font-weight: 900;
}

.widget-top-donator .purchase.top-customer .info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.widget-top-donator .purchase.top-customer .username {
  margin: 0 !important;
  color: #f4f4f4 !important;
  font-size: 1rem !important;
  font-weight: 800 !important;
}

.widget-top-donator .purchase.top-customer .price {
  color: #fff !important;
  font-weight: 900 !important;
}

.widget-top-donator .purchase.top-customer time {
  color: #5d5d5d !important;
  font-size: .92rem !important;
  font-weight: 700 !important;
}

/*31*/
@media (min-width: 961px) {
  .site-content.site-content-widgets {
    display: block !important;
  }

  .site-content.site-content-widgets .store-home {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 70px !important;
  }

  .site-content.site-content-widgets .store-sidebar {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 100% !important;
    padding-top: 0 !important;
    margin-top: 260px !important;
    gap: 40px !important;
  }
}
}


/*TEST*/
/* =========================
   NORMAL PACKAGE CARDS
   ========================= */

.store-products-images {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 26px !important;
  align-items: stretch !important;
}

.store-products-images .store-product {
  background: linear-gradient(180deg, #101010 0%, #0b0b0b 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.07) !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
  min-height: 100% !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .22) !important;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease !important;
}

.store-products-images .store-product:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(65, 196, 195, 0.28) !important;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .34) !important;
}

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

.store-products-images .store-product .image,
.store-products-images .store-product .image-default {
  width: 100% !important;
  height: 240px !important;
  min-height: 240px !important;
  max-height: 240px !important;
  object-fit: cover !important;
  border-radius: 0 !important;
  margin: 0 !important;
  background: #151515 !important;
}

.store-products-images .store-product .product-title {
  padding: 18px 18px 10px !important;
  margin: 0 !important;
  font-size: 1.05rem !important;
  line-height: 1.35 !important;
  font-weight: 800 !important;
  color: #fff !important;
  min-height: 82px !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

.store-products-images .store-product .product-title a {
  color: #fff !important;
}

.store-products-images .store-product .product-title a:hover {
  color: #41C4C3 !important;
}

.store-products-images .store-product .product-title .countdown {
  display: none !important;
}

.store-products-images .store-product .descr {
  padding: 0 18px !important;
  margin-bottom: 14px !important;
  color: #7c7c7c !important;
  font-size: .88rem !important;
  line-height: 1.55 !important;
  min-height: 68px !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

.store-products-images .store-product .actions {
  padding: 0 18px 18px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 14px !important;
  margin-top: auto !important;
  overflow: visible !important;
}

.store-products-images .store-product .actions>* {
  flex: unset !important;
}

.store-products-images .store-product .price {
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 1.8rem !important;
  font-weight: 900 !important;
  color: #fff !important;
  line-height: 1 !important;
  margin: 0 !important;
}

.store-products-images .store-product .price strong {
  font-size: 1.8rem !important;
  font-weight: 900 !important;
  color: #fff !important;
}

.store-products-images .store-product .price .discount {
  margin-right: 0 !important;
  color: #666 !important;
  font-size: .95rem !important;
  font-weight: 700 !important;
  text-decoration: line-through !important;
}

.store-products-images .store-product .add,
.store-products-images .store-product .subscribe,
.store-products-images .store-product .open-basket-cta,
.store-products-images .store-product .quantity-field {
  width: 100% !important;
  max-width: 100% !important;
}

.store-products-images .store-product .btn-primary,
.store-products-images .store-product .btn-secondary {
  width: 100% !important;
  height: 48px !important;
  border-radius: 10px !important;
  justify-content: center !important;
  text-align: center !important;
  font-size: .95rem !important;
  font-weight: 900 !important;
}

.store-products-images .store-product .add.btn-primary,
.store-products-images .store-product .add.btn-secondary,
.store-products-images .store-product a.add {
  background: #f1f1f1 !important;
  color: #111 !important;
}

.store-products-images .store-product .add.btn-primary:hover,
.store-products-images .store-product .add.btn-secondary:hover,
.store-products-images .store-product a.add:hover {
  background: #41C4C3 !important;
  color: #000 !important;
}

.store-products-images .store-product .gift {
  display: none !important;
}

@media (max-width: 1200px) {
  .store-products-images {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 700px) {
  .store-products-images {
    grid-template-columns: 1fr !important;
  }

  .store-products-images .store-product .image,
  .store-products-images .store-product .image-default {
    height: 210px !important;
    min-height: 210px !important;
    max-height: 210px !important;
  }
}

/*31 2*/
.custom-category-page {
  position: relative;
  width: 100%;
}

.custom-category-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: .12;
  pointer-events: none;
}

.custom-category-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 120px 24px 90px;
}

.custom-category-head {
  max-width: 780px;
  margin-bottom: 42px;
}

.custom-category-kicker {
  color: rgba(255, 255, 255, .45);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 900;
  line-height: 1;
  margin: 0;
}

.custom-category-kicker span {
  color: #fff;
}

.custom-category-title {
  margin: 12px 0 0;
  color: #fff;
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 900;
  line-height: 1;
}

.custom-category-desc {
  margin-top: 20px;
  max-width: 620px;
  color: rgba(255, 255, 255, .58);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 600;
}

.custom-category-desc .accent {
  color: #21e6ed;
  font-weight: 700;
}

.custom-search-wrap {
  max-width: 760px;
  margin-bottom: 26px;
}

.custom-search-box {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 60px;
  padding: 0 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, .25);
}

.custom-search-box svg {
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, .35);
  flex: none;
}

.custom-search-box input {
  width: 100%;
  color: rgba(255, 255, 255, .72);
  font-size: 16px;
  font-weight: 700;
  background: transparent;
  border: none;
  outline: none;
}

.custom-search-box input::placeholder {
  color: rgba(255, 255, 255, .25);
}

.custom-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.custom-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .10);
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  user-select: none;
}

.custom-chip img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.custom-search-empty {
  display: none;
  margin-top: 14px;
  color: #21e6ed;
  font-weight: 700;
}

.custom-search-empty.show {
  display: block;
}

.custom-products {
  margin-top: 50px;
}

.custom-products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.custom-product-card {
  background: rgba(16, 16, 16, .92);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 18px;
  overflow: hidden;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.custom-product-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, .16);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
}

.custom-product-thumb {
  display: block;
  width: 100%;
  height: 210px;
  background: #0b0b0b;
  overflow: hidden;
}

.custom-product-thumb img,
.custom-product-thumb .image-default {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.custom-product-thumb img {
  transform: scale(1.02);
  transition: transform .35s ease;
}

.custom-product-card:hover .custom-product-thumb img {
  transform: scale(1.06);
}

.custom-product-thumb .image-default {
  position: relative;
  background: #111;
}

.custom-product-thumb .image-default::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 72px;
  height: 72px;
  margin: auto;
  background-color: rgba(255, 255, 255, .35);
  mask: url("https://template-assets.tebex.io/images/package-default.svg") center center / contain no-repeat;
  -webkit-mask: url("https://template-assets.tebex.io/images/package-default.svg") center center / contain no-repeat;
}

.custom-product-body {
  padding: 20px;
}

.custom-product-title {
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 50px;
}

.custom-product-title a {
  color: inherit;
  text-decoration: none;
}

.custom-product-title a:hover {
  color: #21e6ed;
}

.custom-product-text {
  margin-top: 10px;
  color: rgba(255, 255, 255, .45);
  font-size: 14px;
  line-height: 1.6;
  min-height: 44px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.custom-product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.custom-product-price-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.custom-product-price {
  color: #fff;
  font-size: 22px;
  font-weight: 900;
}

.custom-product-price strong {
  color: #fff;
  font-size: 22px;
  font-weight: 900;
}

.custom-old-price {
  color: rgba(255, 255, 255, .35);
  font-size: 13px;
  font-weight: 800;
  text-decoration: line-through;
}

.custom-discount-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 10px;
  background: #ff2f4a;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.custom-product-actions {
  margin-top: 16px;
}

.custom-add-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 46px;
  border-radius: 10px;
  background: #fff;
  color: #000;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  transition: opacity .15s ease, transform .15s ease;
}

.custom-add-btn:hover {
  opacity: .92;
  transform: translateY(-1px);
}

.custom-no-products {
  color: rgba(255, 255, 255, .60);
  font-size: 18px;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .custom-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .custom-category-wrap {
    padding: 90px 16px 70px;
  }

  .custom-products-grid {
    grid-template-columns: 1fr;
  }

  .custom-product-thumb {
    height: 190px;
  }

  .custom-search-box {
    height: 54px;
    border-radius: 16px;
  }
}

/* paket container */
.custom-products-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px;
}

/* kartlar */
.package-item {
  width: 100%;
}

@media (max-width:1100px) {
  .custom-products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width:700px) {
  .custom-products-grid {
    grid-template-columns: 1fr !important;
  }
}

#packages-container {
  display: grid !important;
}

/* container genişliği */
.custom-category-wrap {
  max-width: 1600px !important;
  width: 100% !important;
}

/* grid zorla */
.custom-products-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 24px !important;
  width: 100%;
}

/* kart genişliği */
.custom-product-card {
  width: 100% !important;
}

/* CATEGORY PACKAGE WRAPPER FIX */
#packages-container,
.custom-products-grid,
.store-products-images,
.store-products-list {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 24px !important;
  width: 100% !important;
  align-items: stretch !important;
}

/* Her kart grid item gibi davransın */
#packages-container>*,
.custom-products-grid>*,
.store-products-images>*,
.store-products-list>* {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
}

/* Kartın kendisi */
.package-item,
.custom-product-card,
.store-product {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  display: flex !important;
  flex-direction: column !important;
}

/* Tablet */
@media (max-width: 1100px) {

  #packages-container,
  .custom-products-grid,
  .store-products-images,
  .store-products-list {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* Mobil */
@media (max-width: 700px) {

  #packages-container,
  .custom-products-grid,
  .store-products-images,
  .store-products-list {
    grid-template-columns: 1fr !important;
  }
}

/*31*/
/* ── DISCORD CTA ── */
.discord-section {
  padding: 0 40px 100px;
  max-width: 1400px;
  margin: 0 auto;
}

.discord-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  position: relative;
  min-height: 320px;
  align-items: center;
}

.discord-card::before {
  display: none;
}

.discord-icon {
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
}

.discord-content {
  position: relative;
  z-index: 2;
  padding: 60px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.discord-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.discord-title .highlight {
  color: #5865F2;
}

.discord-desc {
  font-size: 1.05rem;
  color: #555;
  max-width: 500px;
  line-height: 1.7;
  font-family: 'Georgia', 'Times New Roman', serif;
  font-style: italic;
}

.btn-discord {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: #5865F2;
  color: #fff;
  font-weight: 900;
  font-size: 0.95rem;
  border-radius: 10px;
  width: fit-content;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 30px rgba(88, 101, 242, 0.2);
}

.btn-discord:hover {
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 0 50px rgba(88, 101, 242, 0.4);
}

.discord-img {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 55%;
  object-fit: cover;
  object-position: right;
  mask-image: linear-gradient(to left, black 50%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, black 50%, transparent 100%);
  opacity: 0.4;
}

/*sonradan ekleme 08.05.2026*/
/* ===== Recent Payments Widget ===== */

.recent-payments-widget .recent-payments-head {
  text-align: center;
  margin-bottom: 1.5rem;
}

.recent-payments-widget .recent-payments-title {
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.18);
  line-height: 0.95;
  margin: 0 0 18px;
}

.recent-payments-widget .recent-payments-title span {
  color: #41C4C3;
  text-shadow: 0 0 30px rgba(65, 196, 195, 0.28);
}

.recent-payments-widget .recent-payments-subtitle {
  margin: 0;
  color: #7b7b7b;
  font-size: 1.05rem;
  line-height: 1.8;
  font-weight: 600;
  font-family: "Urbanist", sans-serif;
  font-style: normal;
}

.recent-payments-widget .recent-payments-subtitle strong {
  color: #7b7b7b;
  font-weight: 600;
}

.discord-desc {
  font-size: 1.05rem;
  color: #555;
  max-width: 500px;
  line-height: 1.7;
  font-family: "Urbanist", sans-serif;
  font-style: normal;
}

/* Featured card */
.rp-featured {
  background: rgba(255, 255, 255, 0.04);
  border: none;
  border-radius: 18px;
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  position: relative;
  overflow: hidden;
}

.rp-featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(74, 158, 255, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.rp-avatar-lg {
  width: 76px;
  height: 76px;
  border-radius: 16px;
  border: 2px solid rgba(74, 158, 255, 0.3);
  object-fit: cover;
  flex-shrink: 0;
}

.rp-avatar-fallback {
  background: linear-gradient(135deg, #1a3a5c, #0f2a46);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  color: #4a9eff;
}

.rp-avatar-img {
  display: block;
}

.rp-feat-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary, #fff);
}

.rp-feat-price {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--accent, #4a9eff);
}

/* Carousel */
.rp-carousel {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.rp-carousel::-webkit-scrollbar {
  display: none;
}

/* Carousel cards */
.rp-card {
  flex: 0 0 260px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(74, 158, 255, 0.15);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
  display: flex;
  align-items: center;
  gap: 12px;
}

.rp-card:hover {
  border-color: rgba(74, 158, 255, 0.45);
  transform: translateY(-2px);
}

.rp-card.active {
  border-color: #4a9eff;
  background: rgba(74, 158, 255, 0.07);
}

.rp-card .avatar,
.rp-card .avatar-fallback {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex-shrink: 0;
  object-fit: cover;
}

.rp-card .avatar-fallback {
  background: #0f2a46;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: #4a9eff;
}

.rp-card .info {
  overflow: hidden;
  flex: 1;
  min-width: 0;
}

.rp-card .username {
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text-primary, #fff);
  margin: 0 0 2px;
}

.rp-card .payment-time {
  font-size: 0.72rem;
  color: var(--text-secondary, #8b9cb6);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 120px;
}

.rp-card .payment-price {
  font-size: 0.9rem;
  font-weight: 900;
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: auto;
}



.basket-btn-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Tebex logosu - küçült */
.why-card-light .why-icon-box img[alt="Tebex Security"] {
  width: 38px !important;
  height: 38px !important;
  object-fit: contain;
}

/* Store logo - büyüt */
.main-store-logo {
  height: 80px !important;
}

.mobile-brand .main-store-logo {
  height: 70px !important;
}

/*08 yeni*/
@keyframes floatImg {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes glowPulse {

  0%,
  100% {
    opacity: 0.7;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.12);
  }
}

/*31 test yorumları*/
/* ── REVIEWS MARQUEE ── */
/* ── REVIEWS MARQUEE ── */
.reviews-marquee-section {
  padding: 0 40px 90px;
  max-width: 1400px;
  margin: 30px auto 0 auto;
  overflow: hidden;
  position: relative;
}

.reviews-head {
  text-align: center;
  margin-bottom: 54px;
}

.reviews-title {
  margin: 0 0 16px;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  line-height: .95;
  font-weight: 900;
  letter-spacing: -0.045em;
  color: #fff;
  text-shadow: 0 0 28px rgba(255, 255, 255, .22);
}

.reviews-accent {
  color: var(--accent);
  text-shadow: 0 0 28px rgba(33, 230, 237, .28);
}

.reviews-sub {
  margin: 0;
  color: #6e6e6e;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 700;
}

.reviews-sub strong {
  color: #6e6e6e;
  font-weight: 700;
}

.reviews-marquee-outer {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.reviews-marquee-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: reviewsScroll 32s linear infinite;
}

.reviews-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes reviewsScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.review-card {
  flex-shrink: 0;
  width: 300px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: linear-gradient(180deg, rgba(14, 14, 14, .92) 0%, rgba(10, 10, 10, .96) 100%);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 20px;
  padding: 22px 22px;
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.review-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .02), transparent 28%, transparent 72%, rgba(255, 255, 255, .02)),
    radial-gradient(circle at 50% 50%, rgba(33, 230, 237, .05), transparent 70%);
  opacity: .7;
}

.review-card:hover {
  transform: translateY(-3px);
  border-color: rgba(33, 230, 237, .18);
  box-shadow: 0 14px 36px rgba(0, 0, 0, .28);
}

.review-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.review-avatar {
  position: relative;
  z-index: 2;
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(33, 230, 237, .22), rgba(33, 230, 237, .08));
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .18);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.review-meta {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.review-name {
  color: #f4f4f4;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-date {
  color: #5d5d5d;
  font-size: .82rem;
  font-weight: 700;
  line-height: 1.2;
}

.review-stars {
  position: relative;
  z-index: 2;
  color: var(--accent);
  font-size: 1.25rem;
  /* eskiden .95rem */
  letter-spacing: 3px;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 6px rgba(33, 230, 237, .4));
}

.review-text {
  position: relative;
  z-index: 2;
  color: #8a8a8a;
  font-size: .9rem;
  line-height: 1.65;
  font-weight: 600;
  margin: 0;
}

@media (max-width: 768px) {
  .reviews-marquee-section {
    padding: 0 20px 70px;
  }
}

/*test login*/
body {
  background: #000;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 40px 20px;
}

.login-card {
  width: 100%;
  max-width: 460px;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 32px 32px 48px;
  position: relative;
  /* box-shadow kaldırıldı */
}

.close-btn {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  z-index: 10;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.close-btn:hover {
  opacity: 1;
  color: #3b82f6;
}

.login-top {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 0 0 20px;
}

.server-logo {
  width: 90px;
  height: auto;
  object-fit: contain;
  display: block;
}

.fivem-logo {
  width: 64px;
  height: auto;
  object-fit: contain;
  display: block;
}

.cross {
  color: rgba(255, 255, 255, 0.4);
  font-size: 16px;
  font-weight: 300;
  user-select: none;
  margin-top: 4px;
}

.divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 0 0 24px;
}

.login-content {
  text-align: center;
  padding: 0 0 4px;
}

.login-content h1 {
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 10px;
  letter-spacing: 0.5px;
}

.login-content p {
  color: #888;
  font-size: 14px;
  margin: 0 0 24px;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.login-input {
  width: 100%;
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 14px 16px;
  color: #fff;
  font-size: 14px;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s;
}

.login-input:focus {
  border-color: rgba(255, 255, 255, 0.2);
}

.login-input::placeholder {
  color: #555;
}

.login-btn {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px;
  border-radius: 8px;
  background: #1a1a1f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #3b82f6;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.2s ease;
  cursor: pointer;
  box-sizing: border-box;
}

.login-btn:hover {
  background: #25252a;
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.15);
}

@media (max-width: 520px) {
  .login-card {
    padding: 24px 20px 44px;
  }

  .server-logo {
    width: 80px;
  }

  .fivem-logo {
    width: 56px;
  }

  .login-content h1 {
    font-size: 18px;
  }

  .login-content p {
    font-size: 13px;
  }
}

/* EMPTY CATEGORY */
.empty-category-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px;
  background: transparent;
  border: none;
  margin: 0;
}

.empty-category-icon {
  display: none;
}

.empty-category-title {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}

.empty-category-text {
  display: none;
}

.empty-category-btn {
  display: inline-flex;
  align-items: center;
  padding: 16px 40px;
  background: var(--accent);
  color: #000;
  border-radius: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: transform 0.2s, box-shadow 0.2s;
}

.empty-category-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(33, 230, 237, 0.2);
}

/* Modern Basket Redesign */
.basket-modern-header {
  padding: 30px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.store-brand-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 16px;
  border-radius: 14px;
}

.store-brand-card .store-logo {
  height: 32px;
  width: auto;
  border-radius: 6px;
}

.store-brand-card .store-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
}

.basket-popup-content {
  background: #000000 !important;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.basket-popup-content .popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #ff4d4d;
  /* Red button */
  border: none;
  border-radius: 12px;
  mask: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  /* Hide the "Close" text */
  width: 40px;
  height: 40px;
  z-index: 10;
  transition: transform 0.2s, background 0.2s;
}

.basket-popup-content .popup-close:hover {
  background: #ff3333;
  transform: scale(1.05);
}

.basket-popup-content .popup-close::before {
  content: "✕";
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1;
}

.basket-modern-content {
  flex: 1;
  overflow-y: auto;
  padding: 0 24px;
  margin-top: 20px;
}

.basket-modern-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.basket-modern-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 16px;
  display: flex;
  gap: 16px;
  transition: transform 0.2s, background 0.2s;
}

.basket-modern-card:hover {
  background: rgba(255, 255, 255, 0.05);
}

.basket-modern-card .card-image {
  width: 120px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  background: #111;
  flex-shrink: 0;
}

.basket-modern-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.basket-modern-card .card-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}

.card-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.card-header-row .package-name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.remove-item-btn {
  color: #888;
  transition: color 0.2s;
  flex-shrink: 0;
}

.remove-item-btn:hover {
  color: #ff4d4d;
}

.remove-item-btn svg {
  width: 18px;
  height: 18px;
}

.card-footer-row {
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
  gap: 10px;
}

.package-price strong {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
}

.basket-modern-footer {
  padding: 32px 24px;
  background: #060a08;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 24px;
}

.summary-row .label {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
}

.summary-row .value strong {
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
}

.modern-checkout-btn {
  width: 100%;
  background: #3b82f6;
  /* Blue button */
  color: #fff;
  border-radius: 16px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.1rem;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.modern-checkout-btn:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.modern-checkout-btn svg {
  width: 20px;
  height: 20px;
}

/* Hide old elements if they still appear */
.basket-header,
.basket-second-header {
  display: none !important;
}

/* Ensure right alignment for basket drawer */
.basket-popup .popup-scroll-cont {
  justify-content: flex-end !important;
  align-items: stretch !important;
}

.basket-popup-content {
  background: #000000 !important;
  height: 100vh !important;
  margin: 0 !important;
  border-radius: 0 !important;
  max-width: 520px !important;
  border-left: none !important;
  animation: slideInRightModern 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  display: flex !important;
  flex-direction: column !important;
}

@keyframes slideInRightModern {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleInModern {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(10px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.quantity-controls {
  display: flex;
}

/* Modern Login Redesign */
.login-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 200px);
  padding: 40px 20px;
}

.login-card-modern {
  background: #000000;
  border: none;
  border-radius: 0;
  width: 100%;
  max-width: 440px;
  padding: 50px 40px;
  /* Increased top padding */
  text-align: center;
  position: relative;
  box-shadow: none;
  box-sizing: border-box;
}

.login-top-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: nowrap;
}

.server-logo-modern {
  height: 32px !important;
  width: auto !important;
  max-width: 120px;
  flex-shrink: 0;
  object-fit: contain;
}

.cross-modern {
  color: #333;
  font-size: 18px;
  font-weight: 500;
  flex-shrink: 0;
}

.cfx-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 22px;
  white-space: nowrap;
  flex-shrink: 0;
}

.cfx-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.login-text-modern h1 {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 12px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.login-text-modern p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 50px;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.connect-fivem-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #fff;
  color: #000;
  padding: 20px 32px;
  border-radius: 18px;
  text-decoration: none;
  font-weight: 800;
  font-size: 19px;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
  width: 100%;
  box-sizing: border-box;
}

.connect-fivem-btn:hover {
  background: #f8f8f8;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.05);
}

.connect-fivem-btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}


/* Fallback form styles */
.login-form-modern {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.login-input-modern {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 14px 18px;
  color: #fff;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}

.login-btn-modern {
  background: var(--accent);
  color: #000;
  border: none;
  border-radius: 12px;
  padding: 14px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
}

/* Close button style for popups */
.login-container[data-popup] .popup-close {
  position: fixed !important;
  top: 25px !important;
  right: 25px !important;
  width: 44px !important;
  height: 44px !important;
  background-color: #ffffff !important;
  mask: url(https://template-assets.tebex.io/images/close.svg) center center no-repeat !important;
  mask-size: 24px !important;
  border-radius: 0 10px 0 10px !important;
  line-height: 0 !important;
  font-size: 0 !important;
  color: transparent !important;
  transition: all 0.15s ease-in-out !important;
  border: none !important;
  opacity: 0.8 !important;
  z-index: 200002 !important;
}

@media (min-width: 700px) {
  .login-container[data-popup] .popup-close {
    right: calc(50% - 280px) !important;
    top: 40px !important;
  }
}

.login-container[data-popup] .popup-close:hover {
  opacity: 1 !important;
  background-color: #ff4d4d !important;
  /* Premium red hover */
}

.login-container[data-popup] .popup-close:after {
  content: none !important;
}

/* Hide original text if any */
.login-container[data-popup] .popup-close span {
  display: none;
}

/* Drawer Login Styles (for popups) */
.login-popup-container {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  padding: 0 !important;
  background: #000000 !important;
  /* Solid black background */
  z-index: 200001 !important;
}

.login-card-drawer {
  width: 100% !important;
  max-width: 600px !important;
  height: auto !important;
  margin: auto !important;
  border-radius: 0 !important;
  border: none !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  padding: 80px 60px !important;
  animation: scaleInModern 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-sizing: border-box !important;
  background: #000000 !important;
}

@media (max-width: 600px) {
  .login-card-drawer {
    max-width: 100% !important;
  }
}

.login-card-drawer .login-top-row {
  margin-top: 0;
}

.connect-fivem-btn {
  white-space: nowrap;
}

/* ==========================================
   SMOKE PARTICLE EFFECT
========================================= */
.smoke-particle {
  position: fixed;
  background: radial-gradient(circle, rgba(64, 156, 255, 0.9) 0%, rgba(0, 102, 255, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  animation: smokeFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  mix-blend-mode: screen;
}

@keyframes smokeFade {
  0% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(0.5);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, calc(-50% - 40px)) scale(3.5);
  }
}