:root {
  --color-text: #fff;
  --color-text-darker: #e5e5e5;
  --color-text-secondary: #ccc;
  --color-text-dark: #0D0D0D;
  --color-bg: #000;
  --color-brighter-bg: #1e1e1e;
  --color-primary: #a0a0a0;
  --color-primary-hover: #c8c8c8;
  --color-primary-text: var(--color-text-dark);
  --color-primary-text-hover: var(--color-primary-text);
  --color-secondary: #ccc;
  --color-secondary-hover: #e5e5e5;
  --color-secondary-text: var(--color-text-dark);
  --color-secondary-text-hover: var(--color-secondary-text);
  --color-tertiary: transparent;
  --color-tertiary-hover: rgb(255 255 255 / 15%);
  --color-tertiary-text: var(--color-text);
  --color-tertiary-text-hover: var(--color-tertiary-text);
  --color-removed: #C12E2E;
  --color-sale-banner-bg: var(--color-primary);
  --color-sale-banner-text: var(--color-primary-text);
  --tebex-footer-height: 35px;
  --widget-padding: 24px;
  --content-padding: var(--widget-padding);
  --content-inner-width: 1280px;
  --content-width: calc((var(--content-padding) * 2) + var(--content-inner-width));
  --sidebar-width: 287px;
  --tebex-legal-footer-max-width: min(
    var(--content-inner-width),
    calc(100vw - (var(--content-padding) * 2))
  );
  --tebex-legal-footer-background-color: var(--color-brighter-bg);
  --tebex-legal-footer-border-color: var(--color-brighter-bg);
  --tebex-legal-footer-text-color: var(--color-text-secondary);
}
@media (width > 960px) {
  :root {
    --content-padding: calc(var(--widget-padding) * 2);
  }
}
@media (max-width: 900px) {
  :root {
    --tebex-footer-height: 70px;
  }
}
@media (max-width: 600px) {
  :root {
    --tebex-footer-height: 80px;
  }
}

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

strong,
b {
  font-weight: 700;
}

em,
i {
  font-style: italic;
}

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

textarea {
  resize: none;
}

symbol,
use,
svg {
  overflow: visible;
}

svg,
img {
  display: block;
}

li {
  display: block;
}

button {
  display: block;
}

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

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

:focus {
  outline: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

h1:not(.hero-headline), h2, h3, h4, h5, h6 {
  font-weight: 700;
}

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

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

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

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

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

.btn-icon {
  position: relative;
  flex: none;
  width: 46px;
  height: 46px;
  padding: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 18px;
}
:root .btn-icon {
  line-height: 0;
  font-size: 0;
  color: transparent;
}

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

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

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

.btn-glyph-text {
  display: flex;
  align-items: center;
  min-width: 46px;
}
.btn-glyph-text::before {
  margin-right: 8px;
}
@media (width <= 960px) {
  :root .btn-glyph-text {
    justify-content: center;
    font-size: 0;
    color: transparent;
  }
  :root .btn-glyph-text::before {
    margin-right: 0;
  }
}

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

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

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

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

.site {
  grid-auto-rows: auto 1fr auto;
  grid-template-columns: 100%;
  align-items: start;
  gap: var(--widget-padding);
  min-height: calc(100vh - var(--tebex-footer-height));
  font-size: 14px;
  view-transition-name: site;
}
.page-index.home-categories-enabled .site {
  grid-auto-rows: auto auto 1fr auto;
}

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

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

.site-header-inner .user-name {
  contain: paint;
}
.site-header-inner .user-name .text,
.site-header-inner .user-name .text-hover {
  transition: opacity 0.15s ease-in-out, font-size 0.15s ease-in-out, visibility 0.15s ease-in-out;
}
.site-header-inner .user-name:not(:hover):not(:focus-within) .text-hover {
  visibility: hidden;
  color: transparent;
  font-size: 0;
}
.site-header-inner .user-name:hover .text, .site-header-inner .user-name:focus-within .text {
  visibility: hidden;
  opacity: 0;
  font-size: 0;
}
@media (width <= 960px) {
  .site-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--widget-padding) 0;
    position: relative;
    padding: 110px 0 calc(50px - var(--widget-padding));
    flex-wrap: wrap;
  }
  .site-header-inner .actions {
    position: absolute;
    top: var(--widget-padding);
    left: 0;
    display: flex;
    gap: 6px;
  }
  .site-header-inner .toggle-navigation {
    background-image: url("https://webstore-template-assets.tebex.io/images/burger.svg");
  }
  .site-header-inner .log-in,
  .site-header-inner .user-actions {
    position: absolute;
    top: var(--widget-padding);
    right: 0;
  }
  .site-header-inner .user-actions {
    display: flex;
    gap: 12px;
  }
  .site-header-inner .open-basket::before {
    mask-image: url("https://webstore-template-assets.tebex.io/images/checkout.svg");
  }
  .site-header-inner .user-name {
    display: none;
  }
  .site-header-inner .site-title {
    position: absolute;
    top: var(--widget-padding);
    left: 70px;
    width: auto;
    line-height: 1;
    font-size: 0;
    text-align: left;
    z-index: 1000;
  }
  .site-header-inner .site-title img {
    max-width: 140px;
    height: auto;
    object-fit: contain;
  }

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

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

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

/* Tebex-injected theme promo: hidden so no faint “Like this store design?” strip */
.theme-promo-strip {
  display: none !important;
}

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

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

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

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

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

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

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

.store-products-images {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.store-product .product-title {
  font-size: 20px;
  font-weight: 600;
}
.store-product .product-title a {
  color: inherit;
  transition: color 0.15s ease-in-out;
}
.store-product .product-title a:hover {
  color: var(--color-primary);
}
.store-product .product-title .countdown {
  display: block;
  margin-top: 4px;
  color: var(--color-removed);
  font-size: 0.75em;
  font-variant-numeric: tabular-nums;
}
.store-product .product-title .countdown::before {
  content: "";
  display: inline-block;
  vertical-align: -0.15em;
  margin-right: 0.25em;
  width: 1em;
  height: 1em;
  background-color: currentColor;
  mask: url("https://webstore-template-assets.tebex.io/images/countdown.svg") center center/contain no-repeat;
}
.store-product .image-link {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  width: fit-content;
}
.store-product .image-link:hover ~ .product-title a {
  color: var(--color-primary);
}

.store-product .descr {
  color: var(--color-text-secondary);
}
.store-product .actions {
  display: flex;
  gap: 12px;
  position: relative;
  overflow: hidden;
}
.store-product .actions.updating {
  pointer-events: none;
}
.store-product .actions.updating > * {
  opacity: 0.3;
  filter: grayscale(100%);
}
.store-product .actions.updating::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: 10;
  margin: auto;
  width: 30px;
  height: 30px;
  background: url("https://webstore-template-assets.tebex.io/images/loading.svg") center center no-repeat;
  background-size: contain;
}
.store-product:not(.store-product-full) .actions {
  flex-wrap: wrap;
}
.store-products-images .store-product:not(.store-product-full) .actions {
  flex: 1 1 auto;
  align-content: flex-end;
}
.store-product .price {
  font-size: 14px;
}
.store-product .price .discount {
  margin-right: 1ch;
  color: var(--color-removed);
  font-weight: 400;
  text-decoration-line: line-through;
}
.store-product .price strong {
  font-size: 20px;
  font-weight: inherit;
}
.store-product:not(.store-product-full) .price {
  width: 100%;
}
.store-products-images .store-product:not(.store-product-full) .price {
  margin-bottom: auto;
}
.store-product .quantity-field {
  height: 46px;
}
.store-product .half {
  flex: 0 1 calc(50% - 6px);
}
.store-product .wide {
  flex: 1 1 auto;
}
.store-product .gift {
  flex: none;
  background-image: url("https://webstore-template-assets.tebex.io/images/gift.svg");
}
.store-product .remove {
  flex: none;
  background-image: url("https://webstore-template-assets.tebex.io/images/delete.svg");
}

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


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

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

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

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

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

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

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

/* Featured Package modules: config lives in Tebex sidebar; UI only on homepage */
.store-sidebar .widget-featured-package,
.store-sidebar .widget-featured,
.store-sidebar .nl-sidebar-featured-suppressed {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  visibility: hidden !important;
}

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

.widget-gift-card {
  text-align: center;
}
.widget-gift-card .gift-card-input {
  margin-bottom: 12px;
  width: 100%;
  padding: 14px 12px;
  color: var(--color-text-secondary);
  background: var(--color-bg);
  font-size: 14px;
}
.popup .widget-gift-card .gift-card-input {
  background: #242424;
}
.widget-gift-card .check {
  width: 100%;
}

/* Gift card balance — SaaS layout (module.giftcardbalance.html + /gift-card-balance) */
.nl-module-giftcard#gift-card-balance {
  scroll-margin-top: 100px;
  font-family: var(--nl-font-family, 'Satoshi', sans-serif);
}
.nl-module-giftcard .giftcard-balance-cms-hint {
  margin: 0 0 2px;
  font-size: 11px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.42);
  font-weight: 400;
}
.nl-module-giftcard .giftcard-balance-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.nl-module-giftcard .giftcard-balance-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}
.nl-module-giftcard .giftcard-balance-input {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.38);
  color: #f4f4f5;
  font-size: 14px;
  font-weight: 500;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.nl-module-giftcard .giftcard-balance-input::placeholder {
  color: rgba(255, 255, 255, 0.28);
  font-size: 12px;
  font-weight: 400;
}
.nl-module-giftcard .giftcard-balance-input:focus {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 2px rgb(from var(--theme-accent, #4fd1c5) r g b / 0.45);
}
.nl-module-giftcard .giftcard-balance-submit {
  width: 100%;
  margin-top: 6px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 1.25;
  cursor: pointer;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2a2a2e;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0) 42%);
  color: #fafafa;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset;
  transition:
    background-color 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.nl-module-giftcard .giftcard-balance-submit:hover {
  background-color: #323238;
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 10px 28px rgba(0, 0, 0, 0.35);
}
.nl-module-giftcard .giftcard-balance-submit:active {
  transform: translateY(0);
  background-color: #26262a;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
}
.nl-module-giftcard .giftcard-balance-submit:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 2px rgb(from var(--theme-accent, #4fd1c5) r g b / 0.45),
    0 1px 0 rgba(255, 255, 255, 0.06) inset;
}
/* Legacy copy removed from template; hide if CDN/store still serves old HTML */
.nl-module-giftcard .giftcard-balance-hint {
  display: none !important;
}
.nl-module-giftcard .giftcard-balance-result {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 13px;
  line-height: 1.55;
}
.nl-module-giftcard .giftcard-balance-msg--ok strong {
  color: var(--theme-accent, #ff995b);
}
.nl-module-giftcard .giftcard-balance-msg--void,
.nl-module-giftcard .giftcard-balance-msg--err {
  color: rgba(255, 160, 160, 0.95);
}
.nl-module-giftcard .giftcard-balance-meta {
  margin: 8px 0 0;
  font-size: 12px;
  opacity: 0.65;
}

/* Dedicated page: /gift-card-balance — sidebar slot required for Tebex gift card POST */
.gc-balance-page {
  margin: 0 auto;
  padding: 48px var(--content-padding, 24px) 88px;
  font-family: var(--nl-font-family, 'Satoshi', sans-serif);
}
.page-gift-card-balance .site-content-widgets.gc-balance-page {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  max-width: 640px;
  gap: 8px;
  grid-template-columns: none !important;
}
.page-gift-card-balance .site-content-widgets.gc-balance-page .gc-balance-main {
  width: 100%;
  max-width: 520px;
}
.page-gift-card-balance .site-content-widgets.gc-balance-page .store-sidebar {
  width: 100%;
  max-width: 440px;
  margin-top: 0;
}
.page-gift-card-balance .site-content-widgets.gc-balance-page .store-sidebar .widget:not(.nl-module-giftcard) {
  display: none !important;
}
.gc-balance-hero {
  text-align: center;
  margin-bottom: 28px;
}
.gc-balance-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--theme-accent, #4fd1c5);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.02) inset,
    0 0 32px rgb(from var(--theme-accent, #4fd1c5) r g b / 0.18);
  filter: drop-shadow(0 0 14px rgb(from var(--theme-accent, #4fd1c5) r g b / 0.32));
}
.gc-balance-icon-svg {
  width: 20px;
  height: 20px;
}
.gc-balance-title {
  margin: 0 0 12px;
  font-family: var(--nl-font-family, 'Satoshi', sans-serif);
  font-size: clamp(1.75rem, 4.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1.08;
  background: linear-gradient(180deg, #ffffff 0%, #a0a0a0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gc-balance-lede {
  margin: 0 auto;
  max-width: 400px;
  font-size: 13px;
  line-height: 1.6;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
}
.page-gift-card-balance .store-sidebar .nl-module-giftcard.widget {
  position: relative;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}
.page-gift-card-balance .store-sidebar .nl-module-giftcard.widget::before {
  content: '';
  position: absolute;
  left: 50%;
  top: -20px;
  transform: translateX(-50%);
  width: min(100%, 360px);
  height: 100px;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 55% at 50% 0%, rgba(255, 255, 255, 0.04) 0%, transparent 72%);
  opacity: 0.85;
  z-index: 0;
}
.page-gift-card-balance .store-sidebar .nl-module-giftcard .widget-content {
  position: relative;
  z-index: 1;
}
.page-gift-card-balance .nl-module-giftcard .widget-title {
  display: none !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.basket {
  position: relative;
  z-index: 1001;
}
.site-content .basket {
  display: none;
}
.basket .basket-empty {
  margin: auto;
  text-align: center;
  font-size: 18px;
}
.basket .basket-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 50px var(--content-padding) 30px;
  font-size: 22px;
  font-weight: 600;
  background: rgba(40, 40, 40, 0.5);
}
@media (width > 960px) {
  .basket .basket-header {
    padding-top: 70px;
  }
}
.basket .basket-title {
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
}
.basket .basket-title::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background-color: var(--color-text);
  mask: url("https://webstore-template-assets.tebex.io/images/user.svg") center center no-repeat;
  mask-size: contain;
}
.basket .basket-second-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px var(--content-padding);
  background: var(--color-brighter-bg);
  background: rgb(from var(--color-brighter-bg) r g b/0.9);
  font-size: 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://webstore-template-assets.tebex.io/images/dropdown-arrow.svg") center center no-repeat;
}
.basket .basket-content {
  flex: 1;
  overflow-x: hidden;
  overflow-y: auto;
}
.basket .basket-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: var(--widget-padding);
}
.basket .basket-item {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 12px;
  padding: var(--widget-padding);
  background: var(--color-brighter-bg);
}
.basket .basket-item .info {
  margin-right: auto;
}
.basket .basket-item .options {
  list-style-position: inside;
}
.basket .basket-item .options:has(li) {
  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 {
  height: 40px;
}
.basket .basket-item .remove {
  width: 40px;
  height: 40px;
}
.basket .basket-item .remove::before {
  mask-image: url("https://webstore-template-assets.tebex.io/images/delete.svg");
}
.basket .basket-checkout {
  margin-top: auto;
  padding: 0 var(--content-padding) 50px;
}
@media (width > 960px) {
  .basket .basket-checkout {
    padding-bottom: 100px;
  }
}
.basket .basket-checkout h3 {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: var(--widget-padding);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}
.basket .basket-checkout .total {
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 400;
}
.basket .basket-checkout .total strong {
  font-size: 24px;
  font-weight: inherit;
}
.basket .basket-checkout .checkout {
  width: 100%;
}

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

.basket-popup-content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 520px;
  height: 100vh;
  height: 100dvh;
  padding: 0;
  background: var(--color-bg);
  transition: translate var(--fade-duration) ease-in-out;
}
@starting-style {
  .basket-popup-content {
    translate: 100% 0;
  }
}
:root .basket-popup[hidden] .basket-popup-content {
  translate: 100% 0;
}
.basket-popup-content.updating {
  pointer-events: none;
}
.basket-popup-content.updating::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: 10;
  margin: auto;
  width: 38px;
  height: 38px;
  background: url("https://webstore-template-assets.tebex.io/images/loading.svg") center center no-repeat;
  background-size: contain;
}
.basket-popup-content.updating > * {
  filter: grayscale(100%);
}

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

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

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

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

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

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

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

.store-quote {
  padding: var(--widget-padding);
}
.store-quote .wide {
  flex: 1 1 50%;
}:root {
  --color-text: #fff;
  --color-text-darker: #e5e5e5;
  --color-text-secondary: #ccc;
  --color-text-dark: #0D0D0D;
  --color-bg: #000;
  --color-brighter-bg: #1e1e1e;
  --color-primary: #a0a0a0;
  --color-primary-hover: #c8c8c8;
  --color-primary-text: var(--color-text-dark);
  --color-primary-text-hover: var(--color-primary-text);
  --color-secondary: #ccc;
  --color-secondary-hover: #e5e5e5;
  --color-secondary-text: var(--color-text-dark);
  --color-secondary-text-hover: var(--color-secondary-text);
  --color-tertiary: transparent;
  --color-tertiary-hover: rgb(255 255 255 / 15%);
  --color-tertiary-text: var(--color-text);
  --color-tertiary-text-hover: var(--color-tertiary-text);
  --color-removed: #C12E2E;
  --color-sale-banner-bg: var(--color-primary);
  --color-sale-banner-text: var(--color-primary-text);
  --tebex-footer-height: 35px;
  --widget-padding: 24px;
  --content-padding: var(--widget-padding);
  --content-inner-width: 1280px;
  --content-width: calc((var(--content-padding) * 2) + var(--content-inner-width));
  --sidebar-width: 287px;
  --tebex-legal-footer-max-width: min(
    var(--content-inner-width),
    calc(100vw - (var(--content-padding) * 2))
  );
  --tebex-legal-footer-background-color: var(--color-brighter-bg);
  --tebex-legal-footer-border-color: var(--color-brighter-bg);
  --tebex-legal-footer-text-color: var(--color-text-secondary);
}
@media (width > 960px) {
  :root {
    --content-padding: calc(var(--widget-padding) * 2);
  }
}
@media (max-width: 900px) {
  :root {
    --tebex-footer-height: 70px;
  }
}
@media (max-width: 600px) {
  :root {
    --tebex-footer-height: 80px;
  }
}

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

strong,
b {
  font-weight: 700;
}

em,
i {
  font-style: italic;
}

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

textarea {
  resize: none;
}

symbol,
use,
svg {
  overflow: visible;
}

svg,
img {
  display: block;
}

li {
  display: block;
}

button {
  display: block;
}

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

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

:focus {
  outline: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

h1:not(.hero-headline), h2, h3, h4, h5, h6 {
  font-weight: 700;
}

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

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

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

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

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

.btn-icon {
  position: relative;
  flex: none;
  width: 46px;
  height: 46px;
  padding: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 18px;
}
:root .btn-icon {
  line-height: 0;
  font-size: 0;
  color: transparent;
}

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

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

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

.btn-glyph-text {
  display: flex;
  align-items: center;
  min-width: 46px;
}
.btn-glyph-text::before {
  margin-right: 8px;
}
@media (width <= 960px) {
  :root .btn-glyph-text {
    justify-content: center;
    font-size: 0;
    color: transparent;
  }
  :root .btn-glyph-text::before {
    margin-right: 0;
  }
}

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

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

/* Hero Section */
.hero-section {
  padding: 72px 0;
  margin: 0;
  position: relative;
}

.hero-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* Custom grid image: tile at native size so it doesn’t look glitched.
   Must beat generic.css .hero-bg-grid (loads after shared). */
.hero-bg-grid.hero-bg-grid-image {
  background-size: auto !important;
  background-repeat: repeat !important;
  background-position: -140px -80px !important;
}

.hero-container {
  margin: 0 auto;
  padding: 0 var(--content-padding);
  max-width: var(--content-width);
  position: relative;
  z-index: 1;
}

.hero-content {
  text-align: center;
  margin-bottom: 48px;
}

.hero-section h1.hero-headline,
.hero-headline {
  font-family: var(--nl-hero-font) !important;
  font-size: var(--nl-hero-size, clamp(2.25rem, 5.25vw, 3.375rem));
  font-weight: var(--nl-hero-weight, 700) !important;
  font-synthesis: none;
  margin-bottom: 24px;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
}

.hero-headline-line {
  display: block;
}

.hero-headline-line--muted {
  color: rgba(255, 255, 255, 0.82);
  font-weight: var(--nl-hero-weight-muted, 600) !important;
  letter-spacing: -0.028em;
}

@media (width <= 600px) {
  .hero-headline {
    font-size: clamp(2rem, 7vw, 2.5rem);
  }
}

.hero-accent {
  color: rgba(255, 255, 255, 0.52);
  display: block;
}

.hero-subcopy {
  font-family: var(--nl-hero-font) !important;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.44);
  margin: 0 auto 28px;
  max-width: 460px;
  line-height: 1.75;
  letter-spacing: 0.005em;
  font-weight: 400 !important;
  font-synthesis: none;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 16px;
  background: #eceae7;
  color: #1f1f22;
  font-weight: 500;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  font-family: var(--nl-nav-font);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.hero-cta:hover {
  background: #f5f4f2;
  border-color: rgba(255, 255, 255, 0.55);
  color: #1f1f22;
  transform: none;
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.hero-visual {
  text-align: center;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(160, 160, 160, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-logo {
  max-width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}

/* Features Section */
.features-section {
  --features-padding-top: 72px;
  --features-padding-bottom: 80px;
  padding: var(--features-padding-top) 0 var(--features-padding-bottom);
  margin-bottom: 0;
  background: transparent;
  position: relative;
}

.features-container {
  margin: 0 auto;
  padding: 0 var(--content-padding);
  max-width: var(--content-width);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: start;
}

@media (width <= 960px) {
  .features-section {
    --features-padding-top: 32px;
    --features-padding-bottom: 48px;
  }
  .features-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (width <= 600px) {
  .features-section {
    --features-padding-top: 28px;
    --features-padding-bottom: 40px;
  }
  .features-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Feature Card - Clean Flexbox Layout */
.feature-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 14px;
  padding: 0;
  background: transparent;
  border: none;
}

.feature-card:hover {
  transform: none;
}

/* Feature Icon - Fixed Size */
.feature-icon {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  color: #ffffff;
  stroke: #ffffff;
  flex-shrink: 0;
}

.features-section .feature-icon svg {
  color: #ffffff !important;
  stroke: #ffffff !important;
}

/* Feature Content - Proper Text Alignment */
.feature-content {
  flex: 1 1 0%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.feature-title {
  font-family: var(--nl-font-family);
  font-size: 14px;
  font-weight: 700;
  margin: 0;
  padding: 0;
  color: #fff;
  line-height: 1.35;
  letter-spacing: -0.1px;
}

.feature-description {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
  margin: 0;
  padding: 0;
}

/* Premium Fonts Import */
/* Satoshi loaded via nl-fonts.css in head.twig */

/* ============================================
   FEATURED SCRIPTS SECTION - AAA PREMIUM
   ============================================ */
.featured-scripts-section {
  --section-spacing-top: 72px;
  --section-spacing-bottom: 80px;
  --separator-spacing: 48px;
  padding: var(--section-spacing-top) 0 var(--section-spacing-bottom);
  background: transparent;
  position: relative;
  overflow: hidden;
}

/* Ambient glow behind section */
.featured-scripts-section::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.012) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.featured-scripts-container {
  margin: 0 auto;
  padding: 0 var(--content-padding);
  width: 100%;
  max-width: var(--content-width);
  position: relative;
  z-index: 1;
}

/* Section Separator - Centered with balanced spacing */
.featured-scripts-container::before {
  content: none;
}

/* Section Header - Clean Centered */
.section-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
}

/* Micro label above title */
.section-header::before {
  content: 'FEATURED';
  display: block;
  margin-bottom: 12px;
  font-size: 10px;
  font-weight: 700;
  color: #383838;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--nl-font-family, 'Satoshi', sans-serif);
  font-size: 40px;
  font-weight: 800;
  margin: 0 0 12px;
  color: #fff;
  letter-spacing: -1.5px;
  line-height: 1.05;
  background: linear-gradient(180deg, #ffffff 0%, #a0a0a0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Scripts Grid - Premium Layout */
.featured-scripts-loading {
  grid-column: 1 / -1;
  margin: 0;
  padding: 2rem 0;
  text-align: center;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.45);
}

.featured-scripts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

@media (width <= 1100px) {
  .featured-scripts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (width <= 700px) {
  .featured-scripts-section {
    --separator-spacing: 32px;
  }
  .featured-scripts-container::before {
    width: 48px;
  }
  .section-header::before {
    font-size: 9px;
    letter-spacing: 2.5px;
    margin-bottom: 10px;
  }
  .section-title {
    font-size: 30px;
  }
  .section-header {
    margin-bottom: 28px;
  }
  .featured-scripts-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 24px;
  }
}

/* Featured Card - Luxury Product Box */
.featured-script-card {
  --card-radius: 12px;
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(255,255,255,0.01) 0%, rgba(0,0,0,0.6) 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.5);
  transition: transform 0.22s cubic-bezier(0.2,0.9,0.3,1), box-shadow 0.22s ease;
  cursor: pointer;
  height: 100%;
  min-height: 380px;
}

/* Card glow effect */
.featured-script-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--card-radius) + 1px);
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
}

/* Card shine sweep on hover */
.featured-script-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.02) 50%, transparent 100%);
  transform: skewX(-20deg);
  transition: left 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 10;
}

.featured-script-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(0,0,0,0.65);
}

.featured-script-card:hover::before {
  opacity: 1;
}

.featured-script-card:hover::after {
  left: 150%;
}

/* Focus state for accessibility */
.featured-script-link:focus .featured-script-card,
.featured-script-card:focus {
  outline: 3px solid rgba(255,255,255,0.08);
  outline-offset: 4px;
}

/* Card Image - Cinematic */
.featured-script-image {
  position: relative;
  width: 100%;
  height: 200px;
  flex-shrink: 0;
  overflow: hidden;
  background: #050505;
}

/* Vignette overlay */
.featured-script-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
  z-index: 2;
}

/* Bottom gradient fade */
.featured-script-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
  z-index: 2;
}

.featured-script-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.92) saturate(0.95);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.featured-script-card:hover .featured-script-image img {
  transform: scale(1.06);
  filter: brightness(1) saturate(1);
}

/* Premium Badge System */
.featured-script-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.5);
  transition: all 0.3s ease;
}

.featured-script-tag i {
  font-size: 10px;
  color: rgba(255,255,255,0.7);
}

.featured-script-card:hover .featured-script-tag {
  background: rgba(0,0,0,0.7);
  color: #fff;
}

/* Card Content - Refined */
.featured-script-content {
  position: relative;
  z-index: 3;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  background: transparent;
}

.featured-script-name {
  font-family: var(--nl-font-family);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin: 0;
  letter-spacing: -0.2px;
}

.featured-script-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Price - Bold & Premium */
.featured-script-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
}

.featured-script-price-current {
  font-family: var(--nl-font-family);
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.3px;
}

.featured-script-price-old {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  text-decoration: line-through;
  font-weight: 500;
}

/* CTA Arrow - Elegant Reveal */
.featured-script-cta {
  position: absolute;
  bottom: 18px;
  right: 18px;
  z-index: 5;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  opacity: 0;
  transform: translateX(-6px) scale(0.9);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.featured-script-cta svg {
  width: 14px;
  height: 14px;
  color: #fff;
  transition: transform 0.25s ease;
}

.featured-script-card:hover .featured-script-cta {
  opacity: 1;
  transform: translateX(0) scale(1);
  background: rgba(255,255,255,0.1);
}

.featured-script-cta:hover {
  background: rgba(255,255,255,0.15);
}

.featured-script-cta:hover svg {
  transform: translateX(2px);
}

/* View All CTA - Premium Button */
.featured-scripts-cta {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

.featured-scripts-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 170px;
  justify-content: center;
  padding: 10px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.03);
  border-radius: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.18s ease;
}

.featured-scripts-cta a:hover {
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.04);
  transform: translateY(-4px);
}

.featured-scripts-cta a:focus {
  outline: 3px solid rgba(255,255,255,0.06);
  outline-offset: 4px;
}

.featured-scripts-cta a i {
  font-size: 11px;
  transition: transform 0.2s ease;
}

.featured-scripts-cta a:hover i {
  transform: translateX(3px);
}

/* Legacy link support */
.featured-script-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* ============================================
   LIVE STATS + SUPPORT - AAA PREMIUM DASHBOARD
   ============================================ */
.community-impact-section {
  --section-spacing-top: 64px;
  --section-spacing-bottom: 72px;
  padding: var(--section-spacing-top) 0 var(--section-spacing-bottom);
  position: relative;
  overflow: hidden;
}

/* Ambient background glow */
.community-impact-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 450px;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.015) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.community-impact-container {
  margin: 0 auto;
  padding: 0 var(--content-padding);
  max-width: var(--content-width);
  position: relative;
  z-index: 1;
}

/* ============================================
   IMPACT HEADER - APPLE-STYLE PREMIUM
   ============================================ */
.impact-header {
  text-align: center;
  margin-bottom: 56px;
  opacity: 0;
  transform: translateY(80px) scale(0.95);
  filter: blur(10px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
              filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.impact-header.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.impact-header-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.impact-header.is-visible .impact-header-label {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.impact-header-dot {
  width: 6px;
  height: 6px;
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(74, 222, 128, 0.5);
  animation: impactDotPulse 2s ease-in-out infinite;
}

@keyframes impactDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 12px rgba(74, 222, 128, 0.5); }
  50% { opacity: 0.6; transform: scale(0.85); box-shadow: 0 0 20px rgba(74, 222, 128, 0.8); }
}

.impact-header-title {
  font-family: var(--nl-font-family, 'Satoshi', sans-serif);
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
  margin: 0 0 20px;
  overflow: hidden;
}

.impact-title-line {
  display: block;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.impact-header.is-visible .impact-title-line {
  opacity: 1;
  transform: translateY(0);
}

.impact-header.is-visible .impact-title-line:nth-child(1) {
  transition-delay: 0.35s;
}

.impact-header.is-visible .impact-title-line:nth-child(2) {
  transition-delay: 0.5s;
}

.impact-title-line:first-child {
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.impact-title-accent {
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 50%, #16a34a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.impact-header-subtitle {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.impact-header.is-visible .impact-header-subtitle {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.7s;
}

/* Mobile Responsive - Impact Header */
@media (max-width: 800px) {
  .impact-header {
    margin-bottom: 40px;
  }
  
  .impact-header-title {
    letter-spacing: -1.5px;
  }
  
  .impact-header-subtitle {
    font-size: 14px;
    padding: 0 20px;
  }
}

@media (max-width: 500px) {
  .impact-header {
    margin-bottom: 32px;
  }
  
  .impact-header-label {
    font-size: 10px;
    letter-spacing: 2px;
  }
  
  .impact-header-title {
    letter-spacing: -1px;
  }
  
  .impact-header-subtitle {
    font-size: 13px;
  }
}

/* Premium Glass Panel */
.impact-panel {
  --panel-radius: 18px;
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: 40px 48px;
  background: linear-gradient(180deg, rgba(255,255,255,0.015) 0%, rgba(0,0,0,0.45) 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--panel-radius);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  overflow: hidden;
}

/* Top shine line */
.impact-panel::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 40px;
  right: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
}

/* Inner glow */
.impact-panel::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 350px;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.035) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* Left Side - Stats Dashboard */
.impact-stats-side {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* Live Stats Header */
.stats-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  color: #505050;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.stats-header-dot {
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  animation: livePulse 2s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
}

@keyframes livePulse {
  0%, 100% { 
    opacity: 1; 
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
  }
  50% { 
    opacity: 0.4; 
    box-shadow: 0 0 4px rgba(34, 197, 94, 0.3);
  }
}

/* Stats Numbers */
.stats-numbers {
  display: flex;
  align-items: center;
  gap: 44px;
}

.impact-stat {
  text-align: center;
}

.impact-number {
  font-family: var(--nl-font-family);
  font-size: 52px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -2.5px;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(180deg, #ffffff 20%, #808080 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.impact-label {
  margin-top: 8px;
  font-size: 10px;
  font-weight: 700;
  color: #505050;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

/* Center Divider - Elegant */
.impact-divider {
  position: relative;
  z-index: 1;
  width: 1px;
  height: 90px;
  background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
}

/* Right Side - Premium Support */
.impact-support-side {
  position: relative;
  z-index: 1;
  padding-left: 8px;
}

/* Online Badge - Premium */
.support-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.12);
  border-radius: 16px;
  font-size: 9px;
  font-weight: 800;
  color: #22c55e;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.support-label-dot {
  width: 5px;
  height: 5px;
  background: #22c55e;
  border-radius: 50%;
  animation: supportPulse 2s ease-in-out infinite;
}

@keyframes supportPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

/* Support Title */
.support-title {
  font-family: var(--nl-font-family, 'Satoshi', sans-serif);
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: -0.4px;
  line-height: 1.2;
}

/* Support Description */
.support-desc {
  font-size: 13px;
  color: #606060;
  line-height: 1.55;
  margin: 0 0 20px;
  max-width: 260px;
}

/* Support CTA Button - Premium White */
.impact-support-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #fff;
  border: none;
  border-radius: 10px;
  color: #0a0a0a;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

/* Button shine effect */
.impact-support-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.4) 50%, transparent 100%);
  transition: left 0.6s ease;
}

.impact-support-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 
    0 16px 40px rgba(255,255,255,0.15),
    0 0 0 1px rgba(255,255,255,0.1);
}

.impact-support-btn:hover::before {
  left: 100%;
}

.impact-support-btn svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.impact-support-btn:hover svg {
  transform: translateX(4px);
}

/* Mobile Responsive */
@media (width <= 800px) {
  .community-impact-section {
    --section-spacing-top: 48px;
    --section-spacing-bottom: 56px;
  }
  .impact-panel {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 24px;
    text-align: center;
  }
  .impact-panel::before {
    left: 24px;
    right: 24px;
  }
  .impact-stats-side {
    gap: 12px;
  }
  .stats-numbers {
    gap: 32px;
  }
  .impact-number {
    font-size: 44px;
    letter-spacing: -2px;
  }
  .impact-divider {
    width: 48px;
    height: 1px;
    margin: 0 auto;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.06) 50%, transparent 100%);
  }
  .impact-support-side {
    padding-left: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .support-desc {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (width <= 500px) {
  .community-impact-section {
    --section-spacing-top: 36px;
    --section-spacing-bottom: 48px;
  }
  .impact-panel {
    padding: 24px 16px;
    gap: 20px;
    border-radius: 14px;
  }
  .impact-stats-side {
    gap: 14px;
  }
  .stats-numbers {
    gap: 24px;
  }
  .impact-number {
    font-size: 40px;
    letter-spacing: -1.5px;
  }
  .support-title {
    font-size: 20px;
  }
  .support-desc {
    font-size: 12px;
  }
  .impact-support-btn {
    padding: 11px 20px;
    font-size: 12px;
  }
}

/* ============================================
   LIVE STATS CARD - PACKAGE PAGE
   ============================================ */
.live-stats-card {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 24px;
  margin-top: 20px;
}

.live-stats-title {
  font-family: var(--nl-font-family);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 18px;
}

.live-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.live-stat-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 16px;
}

.live-stat-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
}

.live-stat-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.live-stat-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.01em;
}

.live-stat-value {
  font-family: var(--nl-font-family);
  font-size: 24px;
  font-weight: 700;
  color: #f5c542;
  line-height: 1;
  letter-spacing: -0.5px;
}

.live-stats-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 0 16px;
  font-size: 13px;
  font-weight: 500;
  color: #c8a84e;
}

.live-stats-badge svg {
  color: #c8a84e;
  flex-shrink: 0;
}

.live-stats-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
}

.live-stats-powered {
  display: flex;
  align-items: center;
  gap: 4px;
}

.live-stats-5metrics {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}

.live-stats-live-dot {
  display: flex;
  align-items: center;
  gap: 6px;
}

.live-dot-indicator {
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.6);
  animation: liveStatsDotPulse 2s ease-in-out infinite;
}

@keyframes liveStatsDotPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@media (max-width: 500px) {
  .live-stats-grid {
    grid-template-columns: 1fr;
  }
  .live-stats-card {
    padding: 18px;
  }
  .live-stat-value {
    font-size: 20px;
  }
}

/* Hide legacy elements */
.impact-title, .impact-subtitle, .impact-footer,
.impact-badge, .impact-stats-area, .impact-stats-divider, .impact-tagline,
.impact-icon, .impact-title-wrapper, .impact-stats-grid, .impact-trust,
.impact-support, .support-status, .support-features, .impact-stat-icon { 
  display: none !important; 
}



/* Performance icon — static white; flicker animation in generic.css */
.features-section .feature-card .feature-icon svg.lucide-zap {
  color: #ffffff !important;
  stroke: #ffffff !important;
  transition: stroke 0.1s ease, filter 0.1s ease;
}

@keyframes lightFlicker {
  0% {
    stroke: currentColor;
    filter: drop-shadow(0 0 0px transparent);
  }
  10% {
    stroke: #FFD700;
    filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.6));
  }
  20% {
    stroke: currentColor;
    filter: drop-shadow(0 0 0px transparent);
  }
  30% {
    stroke: #FFD700;
    filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.6));
  }
  40% {
    stroke: currentColor;
    filter: drop-shadow(0 0 0px transparent);
  }
  50%, 100% {
    stroke: #FFD700;
    filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.6));
  }
}

/* Reviews Heart Icon Hover Effect - Flickering Red */
.store-statistics-subheader-kicker i.fa-heart {
  display: inline-block;
  color: #ffffff;
  transition: color 0.1s ease;
}

.store-statistics-subheader-kicker:hover i.fa-heart {
  animation: heartFlicker 0.6s ease-out forwards;
}

@keyframes heartFlicker {
  0% {
    color: #ffffff;
    filter: drop-shadow(0 0 0px transparent);
  }
  10% {
    color: #ff2d2d;
    filter: drop-shadow(0 0 6px rgba(255, 45, 45, 0.6));
  }
  20% {
    color: #ffffff;
    filter: drop-shadow(0 0 0px transparent);
  }
  30% {
    color: #ff2d2d;
    filter: drop-shadow(0 0 6px rgba(255, 45, 45, 0.6));
  }
  40% {
    color: #ffffff;
    filter: drop-shadow(0 0 0px transparent);
  }
  50%, 100% {
    color: #ff2d2d;
    filter: drop-shadow(0 0 8px rgba(255, 45, 45, 0.7));
  }
}

/* Hero Section Logo Fix */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

/* ============================================
   MOBILE HEADER - Clean Compact Layout
   ============================================ */

/* Hide mobile basket button on desktop */
.mobile-basket-btn {
  display: none !important;
}

@media (width <= 960px) {
  /* Header container - single row flex layout */
  .site-header-inner {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 12px 15px !important;
    min-height: 60px !important;
    position: relative !important;
  }

  /* Logo - left side */
  .site-header-inner .site-title {
    position: static !important;
    display: flex !important;
    align-items: center !important;
    height: 36px !important;
    margin: 0 !important;
    padding: 0 !important;
    order: 1 !important;
  }

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

  /* Actions container - right side, horizontal layout */
  .site-header-inner .actions {
    position: static !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    order: 2 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Basket button - 44x44 touch target */
  .mobile-basket-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    cursor: pointer !important;
  }

  .mobile-basket-btn svg {
    width: 22px !important;
    height: 22px !important;
    color: #ffffff !important;
    fill: #ffffff !important;
  }

  /* Hide basket count badge on mobile */
  .mobile-basket-btn .basket-count {
    display: none !important;
  }

  /* Hamburger button - 44x44 touch target */
  .site-header-inner .actions .toggle-navigation {
    position: static !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
  }

  /* Hide server/discord info on mobile */
  .site-header-inner .info {
    display: none !important;
  }
}

/* Very small screens - compact spacing */
@media (width <= 375px) {
  .site-header-inner {
    padding: 10px 12px !important;
  }

  .site-header-inner .site-title img {
    max-height: 28px !important;
  }

  .site-header-inner .actions {
    gap: 8px !important;
  }
}

/* ============================================
   DESIGNER CREDIT PROTECTION
   ============================================ */

/* Protect designer credit from removal */
.designer-credit {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  margin-top: 20px !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.designer-credit::before {
  content: '' !important;
  display: block !important;
}

.credit-text {
  font-size: 12px !important;
  font-weight: 400 !important;
  color: rgba(255, 255, 255, 0.30) !important;
  letter-spacing: 0.2px !important;
}

.designer-credit a {
  display: inline-flex !important;
  opacity: 1 !important;
  visibility: visible !important;
  transition: opacity 0.3s ease !important;
}

.designer-credit a:hover {
  opacity: 0.7 !important;
}

/* Layered logo: background survives removal/replacement of <img> src alone */
.designer-credit-link {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  min-width: 72px !important;
  min-height: 28px !important;
}

.designer-credit-img-wrap {
  position: relative !important;
  display: inline-block !important;
  line-height: 0 !important;
}

.designer-credit-img-wrap::after {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  background: url('https://i.ibb.co/B5H1Cnw8/Nolimitswithtextimage.png') center center / contain no-repeat !important;
  opacity: 0.45 !important;
  pointer-events: none !important;
}

.credit-logo-img {
  position: relative !important;
  z-index: 1 !important;
  height: 28px !important;
  width: auto !important;
  display: block !important;
  opacity: 0.45 !important;
  transition: opacity 0.3s ease !important;
}

.designer-credit a:hover .credit-logo-img {
  opacity: 0.75 !important;
}

.designer-credit a:hover .designer-credit-img-wrap::after {
  opacity: 0.75 !important;
}

/* Prevent hiding via common methods */
.designer-credit,
.designer-credit * {
  visibility: visible !important;
  position: relative !important;
  overflow: visible !important;
  clip: auto !important;
  clip-path: none !important;
}

/* Add watermark in console */
.designer-credit::after {
  content: 'Template by NoLimits - Removing credit violates license' !important;
  position: absolute !important;
  left: -9999px !important;
}

/* License bind hook (must stay “visible” per main.js nlCreditHidden); credit UI is #nl-designer-credit only */
.theme-signature.nl-theme-bound {
  display: block !important;
  width: 4px !important;
  height: 4px !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  position: relative !important;
  opacity: 0.06 !important;
  pointer-events: none !important;
}

.nl-theme-bound.nl-auth-sig::after {
  content: none !important;
  display: none !important;
}

/* Twig gate: empty storefront shell when nl-store-bind include is broken */
.nl-license-error.nl-twig-gate {
  min-height: 60vh !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 48px 24px !important;
  background: #0f0f10 !important;
  color: #e8e8e8 !important;
}

.nl-license-error-inner {
  max-width: 520px !important;
  text-align: center !important;
}

.nl-license-error-title {
  margin: 0 0 12px !important;
  font-size: 1.15rem !important;
  font-weight: 700 !important;
}

.nl-license-error-text {
  margin: 0 0 16px !important;
  font-size: 14px !important;
  line-height: 1.55 !important;
  color: rgba(255, 255, 255, 0.72) !important;
}

.nl-license-error-text code {
  font-size: 12px !important;
  padding: 2px 6px !important;
  border-radius: 4px !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

.nl-license-error-brand {
  margin: 0 !important;
  font-size: 11px !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: rgba(255, 255, 255, 0.35) !important;
}

/* Client-side lock: blur storefront shell when credits are tampered */
html.nl-attribution-lock .site {
  filter: blur(10px) !important;
  pointer-events: none !important;
  user-select: none !important;
}

#nl-attribution-shield {
  position: fixed !important;
  inset: 0 !important;
  z-index: 2147483000 !important;
  pointer-events: auto !important;
  cursor: not-allowed !important;
  background: transparent !important;
}

html.nl-attribution-lock .cookie-consent.is-visible {
  z-index: 2147483646 !important;
  filter: none !important;
  pointer-events: auto !important;
}

html.nl-attribution-lock .cookie-consent.is-visible button {
  pointer-events: auto !important;
}

/* ============================================
   CINEMATIC ENTRANCE ANIMATIONS
   ============================================ */

/* Hide elements initially */
.hero-section .hero-content,
.hero-section .hero-visual,
.features-section .feature-card,
.featured-scripts-section .section-header,
.featured-scripts-section .featured-script-link {
  opacity: 0;
  transform: translateY(40px);
}

/* Impact Panel - Premium Scroll Animation */
.community-impact-section .impact-panel {
  opacity: 0;
  transform: translateY(60px) scale(0.96);
  filter: blur(8px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
              filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.community-impact-section .impact-panel.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Impact Panel Inner Elements - Staggered Animation */
.impact-panel .impact-stats-side,
.impact-panel .impact-divider,
.impact-panel .impact-support-side {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.impact-panel.is-visible .impact-stats-side {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.impact-panel.is-visible .impact-divider {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.45s;
}

.impact-panel.is-visible .impact-support-side {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

/* Cinematic keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Hero content animation */
.hero-section .hero-content {
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

/* Hero visual animation */
.hero-section .hero-visual {
  animation: fadeInRight 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

/* Feature cards staggered animation */
.features-section .feature-card:nth-child(1) {
  animation: fadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

.features-section .feature-card:nth-child(2) {
  animation: fadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.75s forwards;
}

.features-section .feature-card:nth-child(3) {
  animation: fadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
}

.features-section .feature-card:nth-child(4) {
  animation: fadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 1.05s forwards;
}

/* Featured Scripts Section Animations */
.featured-scripts-section .section-header {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.featured-scripts-section .featured-script-link:nth-child(1) {
  animation: scaleIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.featured-scripts-section .featured-script-link:nth-child(2) {
  animation: scaleIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.35s forwards;
}

.featured-scripts-section .featured-script-link:nth-child(3) {
  animation: scaleIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

/* Smooth page fade-in */
body {
  animation: fadeIn 0.4s ease-out;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================
   HERO SECTION - REDESIGNED FOR BALANCE
   ============================================ */

/* Hero container layout */
.hero-section {
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: 60px 0;
  position: relative;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Hero content - left side */
.hero-content {
  text-align: left;
  z-index: 2;
}

/* Headline — bold display */
.hero-section h1.hero-headline,
.hero-headline {
  font-family: var(--nl-hero-font) !important;
  font-size: var(--nl-hero-size, clamp(2.25rem, 5.25vw, 3.375rem));
  font-weight: var(--nl-hero-weight, 700) !important;
  font-synthesis: none;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: #ffffff;
  max-width: 580px;
  -webkit-font-smoothing: antialiased;
}

.hero-headline-line {
  display: block;
}

.hero-headline-line--muted {
  color: rgba(255, 255, 255, 0.82);
  font-weight: var(--nl-hero-weight-muted, 600) !important;
  letter-spacing: -0.028em;
}

.hero-accent {
  color: rgba(255, 255, 255, 0.52);
  display: block;
}

/* Subcopy — quiet, technical */
.hero-subcopy {
  font-family: var(--nl-hero-font) !important;
  font-size: 15px;
  line-height: 1.75;
  letter-spacing: 0.005em;
  color: rgba(255, 255, 255, 0.44);
  margin-bottom: 28px;
  max-width: 460px;
  font-weight: 400 !important;
  font-synthesis: none;
}

/* CTA — milky calm white */
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  height: 40px;
  padding: 0 16px;
  background: #eceae7;
  color: #1f1f22;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.hero-cta:hover {
  transform: none;
  background: #f5f4f2;
  border-color: rgba(255, 255, 255, 0.55);
  color: #1f1f22;
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.hero-cta i {
  transition: transform 0.2s ease, opacity 0.2s ease;
  font-size: 12px;
  opacity: 0.75;
}

.hero-cta:hover i {
  transform: translateX(3px);
  opacity: 1;
}

/* Hero visual - right side, better positioned */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.hero-logo {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.3));
}

/* Tablet adjustments */
@media (max-width: 960px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    padding: 0 30px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-headline {
    font-size: clamp(2rem, 6vw, 2.5rem);
    max-width: 100%;
    margin: 0 auto 20px;
  }

  .hero-subcopy {
    font-size: 14px;
    max-width: 100%;
    margin: 0 auto 22px;
  }

  .hero-visual {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .hero-section {
    min-height: auto;
    padding: 40px 0;
  }

  .hero-container {
    padding: 0 20px;
    gap: 30px;
  }

  .hero-headline {
    font-size: 1.875rem;
    margin-bottom: 18px;
  }

  .hero-subcopy {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.46);
  }

  .hero-cta {
    width: auto;
    max-width: none;
    justify-content: center;
    min-height: 40px;
    height: 40px;
    padding: 0 16px;
    font-size: 14px;
  }

  .hero-visual {
    max-width: 280px;
  }
}

/* ============================================
   STORE STATISTICS SECTION
   ============================================ */

.store-statistics-container {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto 96px;
  padding: 24px var(--content-padding) 24px;
  position: relative;
  text-align: center;
}

.store-statistics-container::before {
  content: none;
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 620px;
  height: 280px;
  background: radial-gradient(ellipse at center, rgba(115, 167, 255, 0.13) 0%, transparent 68%);
  pointer-events: none;
}

.store-statistics-container .section-header {
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.store-statistics-container .section-header::before {
  content: 'STATISTICS';
}

.store-statistics-top-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.store-statistics-bottom-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.store-stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 0;
}

.store-stat-number {
  margin: 0;
  font-family: var(--nl-font-family, 'Satoshi', sans-serif);
  font-size: clamp(64px, 7vw, 88px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1.2px;
  color: transparent;
  background: linear-gradient(180deg, #f2f2f2 0%, #8a8a8a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.store-stat-card-small .store-stat-number {
  font-size: clamp(40px, 4.5vw, 64px);
}

.store-stat-label {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.1px;
  color: rgba(255, 255, 255, 0.46);
}

.store-stat-card-small .store-stat-label {
  font-size: 12px;
  text-transform: none;
  letter-spacing: 0.4px;
  color: rgba(255, 255, 255, 0.5);
}

.store-stat-divider {
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.18) 30%, rgba(255, 255, 255, 0.18) 70%, transparent 100%);
}

.store-statistics-divider {
  width: 60%;
  height: 1px;
  margin: 24px auto 0;
  background: rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 1;
}

.store-statistics-footer {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 14px;
  position: relative;
  z-index: 1;
}

.store-statistics-subheader {
  margin-top: 78px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.store-statistics-subheader-kicker {
  display: block;
  margin-bottom: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #383838;
}

.store-statistics-subheader-kicker i {
  color: #ffffff;
  margin-right: 6px;
}

.store-statistics-subheader-title {
  margin: 0 0 56px;
  font-family: var(--nl-font-family, 'Satoshi', sans-serif);
  font-size: 40px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: #fff;
  background: linear-gradient(180deg, #ffffff 0%, #a0a0a0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.reviews-section-divider {
  display: none;
}

/* ============================================
   REVIEWS CAROUSEL
   ============================================ */

.reviews-carousel {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  --reviews-gap: 24px;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 6%,
    black 94%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 6%,
    black 94%,
    transparent 100%
  );
}

/* Track — infinite scroll */
.reviews-track {
  display: flex;
  align-items: stretch;
  width: max-content;
  gap: var(--reviews-gap);
  will-change: transform;
  animation: reviews-slide 40s linear infinite;
}

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

@keyframes reviews-slide {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - (var(--reviews-gap) / 2))); }
}

/* ---- Card ---- */

.review-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  padding: 28px 26px 24px;
  min-height: 210px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  background: #1a1a1a;
  text-align: left;
  transition: border-color 0.3s ease, background-color 0.3s ease;
  flex: 0 0 clamp(260px, 28vw, 360px);
}

.review-card::before {
  content: none;
}

.review-card:hover {
  border-color: rgba(255, 255, 255, 0.10);
  background: #1e1e1e;
}

/* ---- Stars ---- */

.review-stars {
  margin: 0 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.review-star-icon {
  width: 13px;
  height: 13px;
  display: inline-block;
  fill: rgba(255, 200, 100, 0.65);
}

/* ---- Review Body ---- */

.review-text {
  margin: 0;
  flex: 1;
  max-width: 340px;
  font-size: 13.5px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.50);
  letter-spacing: 0.1px;
}

/* index.html review placeholders — small label before editable hint text */
.review-text .index-custom-tag,
.review-author-name .index-custom-tag {
  display: inline-block;
  margin-right: 4px;
  padding: 1px 6px;
  font-size: 9px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  vertical-align: 0.08em;
  color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
}

/* ---- Divider ---- */

.review-content-divider {
  width: 100%;
  height: 1px;
  margin: 18px 0 14px;
  background: rgba(255, 255, 255, 0.05);
}

/* ---- Author ---- */

.review-identity {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-author-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-author-name {
  margin: 0;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: rgba(255, 255, 255, 0.85);
}

.review-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
}

.review-avatar-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: rgba(255, 255, 255, 0.40);
  background: rgba(255, 255, 255, 0.04);
}

.review-verified {
  margin: 0;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2px;
  color: rgba(255, 255, 255, 0.30);
}

/* ============================================
   STORE STATISTICS — Source
   ============================================ */

.store-statistics-source {
  margin: 0;
  padding-top: 15px;
  position: relative;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.15px;
  text-transform: none;
  color: rgba(255, 255, 255, 0.4);
  opacity: 0.4;
}

.store-statistics-source a {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.store-statistics-source a:hover {
  color: rgba(255, 255, 255, 0.82);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1200px) {
  .store-stat-label { font-size: 14px; }
}

@media (max-width: 900px) {
  .store-statistics-container {
    margin-bottom: 64px;
    padding: 12px 20px 10px;
  }

  .store-statistics-container .section-header {
    margin-bottom: 28px;
  }

  .store-statistics-top-row {
    gap: 20px;
    margin-bottom: 0;
  }

  .store-statistics-divider {
    width: 68%;
    margin-top: 20px;
  }

  .store-stat-label {
    font-size: 13px;
  }

  .store-statistics-footer {
    margin-top: 12px;
  }

  .store-statistics-subheader {
    margin-top: 66px;
  }

  .store-statistics-subheader-title {
    font-size: 30px;
    margin-bottom: 36px;
  }

  .reviews-carousel {
    --reviews-gap: 20px;
  }

  .reviews-section-divider {
    width: 72%;
    margin-top: 34px;
  }

  .review-card {
    padding: 22px 20px 18px;
  }

  .review-text {
    font-size: 13px;
  }
}

@media (max-width: 640px) {
  .store-statistics-section {
    padding-bottom: 44px;
  }

  .store-statistics-container {
    margin-bottom: 48px;
  }

  .store-statistics-top-row {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .store-statistics-divider {
    width: 76%;
    margin-top: 16px;
  }

  .store-stat-label {
    font-size: 12px;
  }

  .store-statistics-footer {
    margin-top: 10px;
  }

  .store-statistics-subheader {
    margin-top: 56px;
  }

  .store-statistics-subheader-kicker {
    font-size: 9px;
    letter-spacing: 2.4px;
  }

  .store-statistics-subheader-title {
    font-size: 24px;
    margin-bottom: 32px;
  }

  .reviews-carousel {
    --reviews-gap: 16px;
  }

  .review-card {
    padding: 18px 16px 16px;
    flex-basis: min(84vw, 300px);
  }

  .review-text {
    font-size: 12.5px;
    line-height: 1.65;
  }

  .review-author-name {
    font-size: 13px;
  }

  .review-verified {
    font-size: 9px;
  }

  .review-stars {
    margin-bottom: 14px;
  }

  .review-avatar {
    width: 30px;
    height: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reviews-track {
    animation: none;
  }
}
/* ============================================
   CATEGORY HERO HEADER
   ============================================ */

.category-hero {
  text-align: center;
  padding: 48px 24px 40px;
  max-width: 800px;
  margin: 0 auto;
}

.category-hero-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 0 16px;
  font-family: var(--nl-font-family, 'Satoshi', sans-serif);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.2px;
  color: #fff;
}

.category-hero-star {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--theme-accent, #ff995b) !important;
  fill: var(--theme-accent, #ff995b) !important;
  filter: drop-shadow(0 0 10px rgb(from var(--theme-accent, #ff995b) r g b / 0.35));
}

.category-hero-subtitle {
  margin: 0 auto 32px;
  max-width: 640px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.1px;
}

/* ---- Search Bar ---- */

.category-search-wrapper {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.category-search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 17px;
  height: 17px;
  color: rgba(255, 255, 255, 0.20);
  pointer-events: none;
  transition: color 0.2s ease;
}

.category-search-input {
  width: 100%;
  padding: 14px 20px 14px 48px;
  background: #151515;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.80);
  font-size: 14px;
  font-weight: 400;
  font-family: inherit;
  letter-spacing: 0.2px;
  outline: none;
  transition: border-color 0.3s ease, background-color 0.3s ease;
  box-sizing: border-box;
}

.category-search-input::placeholder {
  color: rgba(255, 255, 255, 0.18);
  font-weight: 400;
}

.category-search-input:hover {
  border-color: rgba(255, 255, 255, 0.10);
}

.category-search-input:focus {
  border-color: rgba(255, 255, 255, 0.14);
  background: #1a1a1a;
}

.category-search-wrapper:focus-within .category-search-icon {
  color: rgba(255, 255, 255, 0.40);
}

/* ---- Category Hero Responsive ---- */

@media (max-width: 640px) {
  .category-hero {
    padding: 28px 16px 24px;
  }

  .category-hero-title {
    font-size: 24px;
    gap: 10px;
  }

  .category-hero-star {
    width: 22px;
    height: 22px;
  }

  .category-hero-subtitle {
    font-size: 12.5px;
    margin-bottom: 24px;
    line-height: 1.6;
  }

  .category-search-input {
    padding: 12px 16px 12px 42px;
    font-size: 13px;
  }
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
  position: relative;
  padding: 0 24px 80px;
  margin-top: -30px;
}

.faq-container {
  max-width: 720px;
  margin: 0 auto;
}

/* ---- Header (kicker + title) ---- */

.faq-header {
  text-align: center;
  margin-bottom: 48px;
}

.faq-kicker {
  display: block;
  margin-bottom: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #383838;
}

.faq-kicker i {
  color: #ffffff;
  margin-right: 6px;
}

.faq-title {
  margin: 0;
  font-family: var(--nl-font-family, 'Satoshi', sans-serif);
  font-size: 40px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: #fff;
  background: linear-gradient(180deg, #ffffff 0%, #a0a0a0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Accordion list ---- */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  background: #1a1a1a;
  transition: border-color 0.3s ease, background-color 0.3s ease;
  overflow: hidden;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.10);
}

.faq-item[open] {
  background: #1c1c1c;
  border-color: rgba(255, 255, 255, 0.08);
}

/* ---- Question (summary) ---- */

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  user-select: none;
  -webkit-user-select: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::marker {
  display: none;
  content: '';
}

.faq-question span {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1px;
  color: rgba(255, 255, 255, 0.80);
  transition: color 0.2s ease;
}

.faq-item:hover .faq-question span,
.faq-item[open] .faq-question span {
  color: rgba(255, 255, 255, 0.95);
}

/* ---- Chevron ---- */

.faq-chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.25);
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
  color: rgba(255, 255, 255, 0.50);
}

/* ---- Answer ---- */

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-item[open] .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-closing .faq-answer {
  grid-template-rows: 0fr;
}

.faq-item.is-closing .faq-chevron {
  transform: rotate(0deg);
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer-inner p {
  margin: 0;
  padding: 0 24px 20px;
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.1px;
}

/* ============================================
   FAQ — RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
  .faq-section {
    padding: 0 20px 64px;
  }

  .faq-title {
    font-size: 30px;
  }

  .faq-header {
    margin-bottom: 36px;
  }
}

@media (max-width: 640px) {
  .faq-section {
    padding: 0 16px 48px;
  }

  .faq-title {
    font-size: 24px;
  }

  .faq-header {
    margin-bottom: 28px;
  }

  .faq-question {
    padding: 16px 18px;
  }

  .faq-question span {
    font-size: 13px;
  }

  .faq-answer-inner p {
    padding: 0 18px 16px;
    font-size: 12.5px;
    line-height: 1.65;
  }

  .faq-kicker {
    font-size: 9px;
    letter-spacing: 2.4px;
  }
}

/* ============================================
   HOME PAGE - SMOOTH SCROLL & REVEAL ANIMATIONS
   ============================================ */

/* Silky native smooth scroll for the home page only */
.page-index {
  scroll-behavior: smooth;
}

/* Base reveal state: hidden + slightly shifted. JS toggles .is-visible */
.page-index .home-reveal {
  opacity: 0;
  transform: translate3d(0, 36px, 0);
  will-change: opacity, transform;
  transition:
    opacity 0.9s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.page-index .home-reveal--scale {
  transform: translate3d(0, 28px, 0) scale(0.96);
}

.page-index .home-reveal--left {
  transform: translate3d(-48px, 0, 0);
}

.page-index .home-reveal--right {
  transform: translate3d(48px, 0, 0);
}

.page-index .home-reveal--fade {
  transform: none;
}

.page-index .home-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

/* Staggered children: each child fades + rises with an incremental delay */
.page-index .home-reveal-stagger > * {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 0.85s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.page-index .home-reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.page-index .home-reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.page-index .home-reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.14s; }
.page-index .home-reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.23s; }
.page-index .home-reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.32s; }
.page-index .home-reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.41s; }
.page-index .home-reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.50s; }

/* Subtle hero parallax: background layers drift slower than scroll.
   JS writes --scroll-y on <html>. */
.page-index .hero-bg-grid,
.page-index .hero-bg-gradient,
.page-index .hero-bg-particles {
  transform: translate3d(0, calc(var(--scroll-y, 0px) * 0.18), 0);
  will-change: transform;
}

.page-index .hero-glow {
  transform: translate3d(0, calc(var(--scroll-y, 0px) * -0.08), 0);
  will-change: transform;
}

/* Section titles get a soft blur-clear as they enter */
.page-index .home-reveal--blur {
  filter: blur(6px);
  transition:
    opacity 1s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 1s cubic-bezier(0.22, 0.61, 0.36, 1),
    filter 1s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.page-index .home-reveal--blur.is-visible {
  filter: blur(0);
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .page-index {
    scroll-behavior: auto;
  }
  .page-index .home-reveal,
  .page-index .home-reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
  .page-index .hero-bg-grid,
  .page-index .hero-bg-gradient,
  .page-index .hero-bg-particles,
  .page-index .hero-glow {
    transform: none !important;
  }
}

/* ============================================
   PROMO BAR ENHANCEMENTS (icons + sheen)
   ============================================ */

.promo-bar {
  background: linear-gradient(90deg, #0a0a0c 0%, #101014 50%, #0a0a0c 100%);
}

.promo-bar__icon {
  width: 13px;
  height: 13px;
  color: var(--color-primary, var(--theme-accent, #ff995b));
  opacity: 0.85;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}

.promo-bar__item strong {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.promo-bar__sheen {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    transparent 20%,
    rgba(255, 255, 255, 0.045) 50%,
    transparent 80%
  );
  background-size: 220% 100%;
  animation: promoSheen 8s linear infinite;
  mix-blend-mode: screen;
}

/* WELCOME20 clickable code badge — override button user-agent defaults
   so it sits inline with the surrounding text and feels tappable. */
.promo-bar .promo-bar__code {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  vertical-align: baseline;
  margin: 0 2px;
  font-family: inherit;
  position: relative;
  z-index: 1;
}

.promo-bar .promo-bar__code:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgb(from var(--theme-accent, #ff995b) r g b / 0.35);
}

@keyframes promoSheen {
  0%   { background-position: 220% 0; }
  100% { background-position: -220% 0; }
}

@media (prefers-reduced-motion: reduce) {
  .promo-bar__sheen { display: none; }
}

/* ============================================
   SCROLL PROGRESS BAR (site-wide)
   ============================================ */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  z-index: 1002;
  pointer-events: none;
  background: transparent;
}

.scroll-progress__fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(
    90deg,
    var(--color-primary, var(--theme-accent, #ff995b)) 0%,
    var(--color-primary-hover, #6fe1d5) 50%,
    var(--color-primary, var(--theme-accent, #ff995b)) 100%
  );
  background-size: 200% 100%;
  animation: progressShimmer 3s linear infinite;
  box-shadow: 0 0 10px rgb(from var(--theme-accent, #ff995b) r g b / 0.35), 0 0 18px rgb(from var(--theme-accent, #ff995b) r g b / 0.35);
  transform-origin: left center;
  transition: width 0.08s linear;
}

@keyframes progressShimmer {
  0%   { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}

/* ============================================
   SKELETON LOADERS (stats section)
   ============================================ */

.store-stat-card.is-loading .store-stat-number {
  position: relative;
  color: transparent !important;
  text-shadow: none !important;
  background: transparent !important;
  -webkit-text-fill-color: transparent !important;
  min-height: 1em;
  user-select: none;
}

.store-stat-card.is-loading .store-stat-number::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 72%;
  max-width: 160px;
  height: 0.62em;
  border-radius: 8px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(255, 255, 255, 0.11) 40%,
    rgb(from var(--theme-accent, #ff995b) r g b / 0.35) 55%,
    rgba(255, 255, 255, 0.11) 70%,
    rgba(255, 255, 255, 0.04) 100%
  );
  background-size: 220% 100%;
  animation: skeletonShimmer 1.6s ease-in-out infinite;
}

.store-stat-card.is-loading .store-stat-label {
  opacity: 0.55;
}

@keyframes skeletonShimmer {
  0%   { background-position: 220% 0; }
  100% { background-position: -220% 0; }
}

@media (prefers-reduced-motion: reduce) {
  .store-stat-card.is-loading .store-stat-number::before {
    animation: none;
  }
}

/* ============================================
   LIVE PURCHASE TOASTS (bottom-left)
   ============================================ */

.purchase-toasts {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
  pointer-events: none;
}

.purchase-toast {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 260px;
  max-width: 340px;
  padding: 12px 14px 12px 12px;
  background: linear-gradient(180deg, rgba(18, 18, 22, 0.96) 0%, rgba(12, 12, 15, 0.96) 100%);
  border: 1px solid rgb(from var(--theme-accent, #ff995b) r g b / 0.35);
  border-radius: 12px;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.02) inset,
    0 0 24px rgb(from var(--theme-accent, #ff995b) r g b / 0.35);
  color: #e5e7eb;
  font-family: var(--nl-font-family);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  transform: translate3d(-24px, 10px, 0) scale(0.96);
  transition:
    opacity 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
  position: relative;
  overflow: hidden;
}

.purchase-toast.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.purchase-toast.is-leaving {
  opacity: 0;
  transform: translate3d(-24px, 6px, 0) scale(0.96);
}

.purchase-toast__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 30%, rgb(from var(--theme-accent, #ff995b) r g b / 0.35) 0%, rgb(from var(--theme-accent, #ff995b) r g b / 0.35) 70%);
  border: 1px solid rgb(from var(--theme-accent, #ff995b) r g b / 0.35);
  color: var(--color-primary, var(--theme-accent, #ff995b));
  position: relative;
}

.purchase-toast__icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.purchase-toast__icon::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid rgb(from var(--theme-accent, #ff995b) r g b / 0.35);
  animation: toastPulse 1.6s ease-out infinite;
  opacity: 0;
}

.purchase-toast.is-visible .purchase-toast__icon::after {
  animation-play-state: running;
}

@keyframes toastPulse {
  0%   { transform: scale(0.85); opacity: 0.65; }
  100% { transform: scale(1.35); opacity: 0; }
}

.purchase-toast__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.purchase-toast__text {
  font-size: 12.5px;
  line-height: 1.4;
  color: #d1d5db;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 260px;
}

.purchase-toast__text strong {
  color: #fff;
  font-weight: 700;
}

.purchase-toast__meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.purchase-toast__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: toastLiveDot 1.8s ease-out infinite;
}

@keyframes toastLiveDot {
  0%   { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55); }
  70%  { box-shadow: 0 0 0 7px rgba(34, 197, 94, 0);   }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);     }
}

.purchase-toast__close {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 18px;
  height: 18px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  border-radius: 4px;
  font-size: 12px;
  line-height: 1;
  transition: color 0.2s ease, background 0.2s ease;
}

.purchase-toast__close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 600px) {
  .purchase-toasts {
    left: 10px;
    right: 10px;
    bottom: 10px;
    align-items: stretch;
  }
  .purchase-toast {
    min-width: 0;
    max-width: none;
  }
}

/* Shift toasts up when the cookie banner is showing so they don't overlap. */
body.has-cookie-banner .purchase-toasts {
  bottom: 120px;
}

@media (max-width: 700px) {
  body.has-cookie-banner .purchase-toasts {
    bottom: 220px;
  }
}


@media (prefers-reduced-motion: reduce) {
  .purchase-toast__icon::after,
  .purchase-toast__dot { animation: none; }
}

/* ============================================
   MAGNETIC CTA (hero)
   ============================================ */

.magnetic-cta {
  transition:
    transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1),
    background 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
  will-change: transform;
}

.magnetic-cta.is-magnetic {
  transition: transform 0.12s ease-out, background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

/* ============================================
   COOKIE CONSENT BANNER (site-wide)
   ============================================ */

.cookie-consent {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1003;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 18px;
  max-width: 760px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(16, 16, 20, 0.96) 0%, rgba(10, 10, 12, 0.96) 100%);
  border: 1px solid rgb(from var(--theme-accent, #ff995b) r g b / 0.35);
  border-radius: 14px;
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.02) inset;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: #e5e7eb;
  font-family: var(--nl-font-family);
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.5s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
  pointer-events: none;
}

.cookie-consent.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-consent.is-leaving {
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
}

.cookie-consent__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 30%, rgb(from var(--theme-accent, #ff995b) r g b / 0.35) 0%, rgb(from var(--theme-accent, #ff995b) r g b / 0.35) 70%);
  border: 1px solid rgb(from var(--theme-accent, #ff995b) r g b / 0.35);
  color: var(--color-primary, var(--theme-accent, #ff995b));
}

.cookie-consent__icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cookie-consent__body {
  flex: 1;
  min-width: 0;
}

.cookie-consent__title {
  margin: 0 0 3px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.2px;
}

.cookie-consent__text {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(229, 231, 235, 0.72);
}

.cookie-consent__text a {
  color: var(--color-primary, var(--theme-accent, #ff995b));
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-consent__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-consent__btn {
  padding: 9px 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  font-family: inherit;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cookie-consent__btn--decline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
}

.cookie-consent__btn--decline:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.cookie-consent__btn--accept {
  background: var(--color-primary, var(--theme-accent, #ff995b));
  color: #0a0a0c;
}

.cookie-consent__btn--accept:hover {
  background: var(--color-primary-hover, #6fe1d5);
  transform: translateY(-1px);
}

@media (max-width: 700px) {
  .cookie-consent {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 14px;
  }
  .cookie-consent__actions {
    width: 100%;
    justify-content: flex-end;
  }
  .cookie-consent__icon { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-consent { transition: opacity 0.2s ease; transform: none !important; }
}


/* ========== nl-product-card (merged) ========== */
/**
 * NoLimits â€” isolated product card system (.nl-pkg)
 * Independent from legacy Tebex article.product / .product-card styles.
 */

/* â”€â”€ Grid (category listings) â€” fixed 3 columns on desktop â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.site-content .store-products-images,
.store-products-images {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  padding: 28px 0 36px;
  align-items: stretch;
}

.store-products-images > div {
  display: flex;
  width: 100%;
  margin: 0;
}

/* â”€â”€ Design tokens â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.nl-pkg {
  --nl-pkg-bg: linear-gradient(180deg, rgba(14, 14, 18, 0.96) 0%, rgba(9, 9, 12, 1) 100%);
  --nl-pkg-border: rgba(255, 255, 255, 0.06);
  --nl-pkg-border-hover: rgba(255, 255, 255, 0.08);
  --nl-pkg-radius: 14px;
  --nl-pkg-shadow:
    0 10px 36px rgba(0, 0, 0, 0.38),
    0 1px 0 rgba(255, 255, 255, 0.04) inset;
  --nl-pkg-shadow-hover:
    0 14px 40px rgba(0, 0, 0, 0.48),
    0 6px 16px rgba(0, 0, 0, 0.28);
  --nl-pkg-uplight: rgba(0, 190, 215, 0.055);
  --nl-pkg-uplight-mid: rgba(0, 165, 195, 0.028);
  --nl-pkg-edge-bottom: rgba(0, 200, 220, 0.11);
  --nl-pkg-lift: -4px;
  --nl-pkg-glow-ease: 0.58s cubic-bezier(0.22, 1, 0.36, 1);
  --nl-pkg-text: #f3f4f6;
  --nl-pkg-text-soft: #9ca3af;
  --nl-pkg-text-muted: #6b7280;
  --nl-pkg-accent: var(--theme-accent, #4db8a8);
  --nl-pkg-price: #f8fafc;
  --nl-pkg-price-was: #9ca3af;
  --nl-pkg-btn-border-hover: rgba(255, 255, 255, 0.32);
  --nl-pkg-btn-text: #141416;
  /* Full-width hero banner ratio (unified across grid) */
  --nl-pkg-media-ratio: 16 / 9;
  --nl-pkg-pad: 22px 20px 20px;
  --nl-pkg-gap: 18px;
  --nl-pkg-meta-gap: 12px;
  --nl-pkg-btn-bg: #eceef1;
  --nl-pkg-btn-bg-hover: #fafbfc;
  --nl-pkg-font: var(--nl-font-family, 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif);
}

/* â”€â”€ Card shell â€” bottom uplight, directional (not full-card RGB) â”€ */
.nl-pkg {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  isolation: isolate;
  border: 1px solid var(--nl-pkg-border);
  border-radius: var(--nl-pkg-radius);
  background: var(--nl-pkg-bg);
  box-shadow: var(--nl-pkg-shadow);
  overflow: hidden;
  font-family: var(--nl-pkg-font);
  color: var(--nl-pkg-text);
  transition:
    transform var(--nl-pkg-glow-ease),
    box-shadow var(--nl-pkg-glow-ease),
    border-color var(--nl-pkg-glow-ease) !important;
}

/* Secondary uplight â€” tight ellipse from bottom center */
.nl-pkg::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 52%;
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  background: radial-gradient(
    ellipse 88% 70% at 50% 100%,
    var(--nl-pkg-uplight) 0%,
    var(--nl-pkg-uplight-mid) 28%,
    transparent 68%
  );
  transition: opacity var(--nl-pkg-glow-ease);
}

/* Bottom edge catch-light only (no top/side cyan ring) */
.nl-pkg::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 28%;
  border-radius: inherit;
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  background: linear-gradient(
    to top,
    var(--nl-pkg-edge-bottom) 0%,
    rgba(0, 190, 210, 0.04) 14%,
    transparent 42%
  );
  transition: opacity var(--nl-pkg-glow-ease);
}

/* Primary uplight â€” rises from bottom, fades toward top */
.nl-pkg__glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  filter: blur(10px);
  transition: opacity var(--nl-pkg-glow-ease);
  background: linear-gradient(
    to top,
    rgba(0, 185, 210, 0.07) 0%,
    rgba(0, 160, 190, 0.03) 16%,
    rgba(0, 140, 170, 0.012) 32%,
    transparent 52%
  );
}

.nl-pkg__media,
.nl-pkg__body {
  position: relative;
  z-index: 2;
}

.nl-pkg:hover {
  border-color: var(--nl-pkg-border-hover);
  box-shadow:
    var(--nl-pkg-shadow-hover),
    inset 0 -1px 0 rgba(0, 195, 215, 0.09);
}

.nl-pkg:hover::before {
  opacity: 0.55;
}

.nl-pkg:hover::after {
  opacity: 0.45;
}

.nl-pkg:hover .nl-pkg__glow {
  opacity: 0.62;
}

.nl-pkg:not(.nl-product-enter):hover,
.nl-pkg.nl-product-enter.is-entered:hover {
  transform: translate3d(0, var(--nl-pkg-lift), 0);
}

.nl-pkg:focus-within {
  outline: 1px solid rgba(255, 255, 255, 0.14);
  outline-offset: 2px;
}

/* â”€â”€ Entrance â€” one-shot fade-up (main.js), no scale / no scroll IO â”€ */
@keyframes nl-pkg-enter {
  from {
    opacity: 0;
    transform: translate3d(0, 10px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.site-content-widgets.nl-shop-enter .nl-pkg.nl-product-enter:not(.is-entered),
.site-content-widgets.nl-shop-enter .nl-pkg.nl-product-enter.is-entered {
  opacity: 1;
  transform: none;
  pointer-events: auto;
  animation: none !important;
}

.nl-pkg.nl-product-enter:not(.is-entered) {
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  pointer-events: none;
}

.nl-pkg.nl-product-enter.is-entered {
  pointer-events: auto;
  animation: nl-pkg-enter 0.48s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--nl-product-enter-delay, 0ms);
}

article.product.nl-product-enter:not(.is-entered),
.product-card.nl-product-enter:not(.is-entered) {
  opacity: 0;
  transform: translate3d(0, 10px, 0);
}

article.product.nl-product-enter.is-entered,
.product-card.nl-product-enter.is-entered {
  animation: nl-pkg-enter 0.48s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--nl-product-enter-delay, 0ms);
}

/* â”€â”€ Hero banner â€” full width, edge-to-edge, top of card â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.nl-pkg .nl-pkg__media,
.nl-pkg .nl-pkg__media-link,
.nl-pkg .nl-pkg__img {
  box-sizing: border-box;
}

.nl-pkg .nl-pkg__media a,
.nl-pkg .nl-pkg__media img {
  margin: 0;
  padding: 0;
  border: 0;
  line-height: 0;
}

.nl-pkg__media {
  position: relative;
  flex: 0 0 auto;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  /* Top corners follow card; bottom edge is square into content */
  border-radius: var(--nl-pkg-radius) var(--nl-pkg-radius) 0 0;
  background: #0c0c0e;
}

.nl-pkg__media-link {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: var(--nl-pkg-media-ratio);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  outline: none;
  line-height: 0;
}

.nl-pkg__media-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.4);
  outline-offset: -2px;
}

/* Thumbnail â†’ content blend (long cinematic fade into body) */
.nl-pkg__media-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 55%;
  min-height: 100px;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(10, 10, 13, 0.18) 38%,
    rgba(9, 9, 12, 0.62) 68%,
    rgba(11, 13, 19, 0.94) 88%,
    rgba(10, 12, 18, 1) 100%
  );
}

.nl-pkg__media::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.04) 50%,
    transparent
  );
}

.nl-pkg__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none !important;
  max-height: none !important;
  min-height: 0 !important;
  aspect-ratio: unset !important;
  border-radius: 0 !important;
  object-fit: cover;
  object-position: center center;
  display: block;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 0.58s cubic-bezier(0.22, 1, 0.36, 1);
}

.nl-pkg__media-link:hover .nl-pkg__img {
  transform: scale(1.008);
}

/* â”€â”€ Ribbons (discount / tags) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.nl-pkg__ribbons {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  pointer-events: none;
}

.nl-pkg__ribbon {
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nl-pkg__ribbon--featured {
  background: rgba(16, 16, 20, 0.78);
  color: #e2e8f0;
}

.nl-pkg__ribbon--new {
  background: rgba(14, 18, 16, 0.78);
  color: #b8e8dc;
  border-color: rgba(77, 184, 168, 0.25);
}

/* â”€â”€ Body / content â€” darker depth, overlaps image fade â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.nl-pkg__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  gap: var(--nl-pkg-gap);
  margin-top: -18px;
  padding: var(--nl-pkg-pad);
  padding-top: 26px;
  min-height: 0;
  background: linear-gradient(
    180deg,
    rgba(12, 14, 20, 0.78) 0%,
    rgba(11, 13, 19, 0.96) 18%,
    rgba(10, 12, 18, 1) 100%
  );
}

.nl-pkg__meta {
  display: flex;
  flex-direction: column;
  gap: var(--nl-pkg-meta-gap);
  flex: 1 1 auto;
}

.nl-pkg__title-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.nl-pkg__title {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--nl-pkg-text);
}

.nl-pkg__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease;
}

.nl-pkg__title a:hover {
  color: #fff;
}

.nl-pkg__title a:focus-visible {
  outline: 2px solid var(--nl-pkg-accent);
  outline-offset: 2px;
  border-radius: 2px;
}

.nl-pkg__desc {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--nl-pkg-text-soft);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.nl-pkg__countdown {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f0a8a0;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(240, 100, 90, 0.12);
  border: 1px solid rgba(240, 100, 90, 0.2);
}

/* â”€â”€ Commerce row (price + CTA) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.nl-pkg__commerce {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: auto;
  padding-top: 12px;
}

.nl-pkg__pricing {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 10px;
}

.nl-pkg__price-was {
  font-size: 11px;
  font-weight: 500;
  color: var(--nl-pkg-price-was);
  text-decoration: line-through;
  text-decoration-color: rgba(156, 163, 175, 0.65);
  opacity: 0.85;
}

.nl-pkg__price-now {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--nl-pkg-price);
  line-height: 1.1;
}

.nl-pkg__cta {
  width: 100%;
}

/* â”€â”€ Actions: reset legacy Tebex inside card â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.nl-pkg .nl-pkg__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  box-shadow: none;
}

.nl-pkg .nl-pkg__actions .price,
.nl-pkg .nl-pkg__actions .payment-info {
  display: none !important;
}

.nl-pkg .nl-pkg__btn-row {
  display: flex;
  align-items: stretch;
  gap: 8px;
  width: 100%;
  margin: 0;
  padding: 0;
}

/* â”€â”€ Basket button only (not whole card) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.nl-pkg .nl-pkg__btn,
.nl-pkg a.nl-pkg__btn--primary.basket-toggle-button,
.nl-pkg button.nl-pkg__btn--primary.basket-toggle-button {
  all: unset;
  box-sizing: border-box;
  cursor: pointer;
  pointer-events: auto;
  font-family: var(--nl-pkg-font);
  -webkit-tap-highlight-color: transparent;
}

.nl-pkg .nl-pkg__btn-row.button-group {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
}

.nl-pkg .nl-pkg__btn--primary,
.nl-pkg a.nl-pkg__btn.nl-pkg__btn--primary.basket-toggle-button,
.nl-pkg button.nl-pkg__btn.nl-pkg__btn--primary.wide.basket-toggle-button {
  flex: 1 1 0;
  min-width: 0;
  width: auto;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 32px;
  height: 32px;
  padding: 0 14px;
  border-radius: 8px;
  background: var(--nl-pkg-btn-bg) !important;
  color: var(--nl-pkg-btn-text) !important;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.45) !important;
  filter: none !important;
  transform: none !important;
  transition: opacity 0.18s ease !important;
}

.nl-pkg a.nl-pkg__btn.nl-pkg__btn--primary.basket-toggle-button:hover:not(:disabled):not(.remove-state):not([data-action="remove"]),
.nl-pkg button.nl-pkg__btn.nl-pkg__btn--primary.basket-toggle-button:hover:not(:disabled):not(.remove-state):not([data-action="remove"]),
.nl-pkg .nl-pkg__btn.nl-pkg__btn--primary.basket-toggle-button:hover:not(:disabled):not(.remove-state):not([data-action="remove"]),
.nl-pkg a.nl-pkg__btn.nl-pkg__btn--primary.basket-toggle-button.btn.btn-primary:hover:not(:disabled):not(.remove-state):not([data-action="remove"]) {
  background: var(--nl-pkg-btn-bg) !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
  color: var(--nl-pkg-btn-text) !important;
  transform: none !important;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.45) !important;
  filter: none !important;
  opacity: 0.82;
}

.nl-pkg .nl-pkg__btn--primary.remove-state,
.nl-pkg .nl-pkg__btn--primary[data-action="remove"],
.nl-pkg a.nl-pkg__btn--primary.basket-toggle-button.remove-state,
.nl-pkg a.nl-pkg__btn--primary.basket-toggle-button[data-action="remove"] {
  background: #2a2a2e !important;
  color: #f4f4f5 !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: none !important;
}

.nl-pkg a.nl-pkg__btn.nl-pkg__btn--primary.basket-toggle-button.remove-state:hover,
.nl-pkg a.nl-pkg__btn.nl-pkg__btn--primary.basket-toggle-button[data-action="remove"]:hover {
  background: #2a2a2e !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  transform: none !important;
  box-shadow: none !important;
  filter: none !important;
  opacity: 0.82;
}

/* Allow controlled button lift; block global Tebex overrides only when not primary CTA */
.nl-pkg .button-group .basket-toggle-button:not(.nl-pkg__btn--primary):hover {
  transform: none !important;
  box-shadow: none !important;
}

.nl-pkg .nl-pkg__btn--primary:disabled {
  opacity: 0.45;
  pointer-events: none;
}

/* Basket toggle loading — circular spinner (matches btn-fivem-login) */
.basket-toggle-button.is-loading,
.nl-pkg__btn--primary.basket-toggle-button.is-loading,
.actions .button-group .btn.add.btn-primary.wide.basket-toggle-button.is-loading {
  opacity: 0.85 !important;
  pointer-events: none !important;
  cursor: wait !important;
  transform: none !important;
}

.basket-toggle-button.is-loading .button-icon-wrapper,
.basket-toggle-button.is-loading .nl-pkg__btn-icon {
  visibility: hidden !important;
  width: 0 !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

.basket-toggle-button.is-loading::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid #111;
  border-top-color: transparent;
  border-radius: 50%;
  animation: nl-basket-spin 0.8s linear infinite;
  flex-shrink: 0;
  margin-right: 7px;
}

@keyframes nl-basket-spin {
  to {
    transform: rotate(360deg);
  }
}

.basket-toggle-button.is-loading.remove-state::before,
.basket-toggle-button.is-loading[data-action="remove"]::before {
  border-color: rgba(255, 255, 255, 0.92);
  border-top-color: transparent;
}

.basket-toggle-button.is-loading .nl-pkg__btn-label,
.basket-toggle-button.is-loading .button-text {
  opacity: 0.88;
}

@media (prefers-reduced-motion: reduce) {
  .basket-toggle-button.is-loading::before {
    animation: none;
    border-top-color: #111;
    opacity: 0.65;
  }

  .basket-toggle-button.is-loading.remove-state::before,
  .basket-toggle-button.is-loading[data-action="remove"]::before {
    border-top-color: rgba(255, 255, 255, 0.92);
  }
}

.nl-pkg .nl-pkg__btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 0;
}

.nl-pkg .nl-pkg__svg-cart,
.nl-pkg .nl-pkg__svg-trash {
  width: 14px;
  height: 14px;
  display: block;
}

.nl-pkg .button-icon.hidden {
  display: none !important;
}

.nl-pkg .nl-pkg__btn-label {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Gift icon button */
.nl-pkg .nl-pkg__btn--icon {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  min-height: 32px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.06) !important;
  color: rgba(255, 255, 255, 0.75) !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  transition: background 0.15s ease;
}

.nl-pkg .nl-pkg__btn--icon:hover {
  background: rgba(255, 255, 255, 0.1) !important;
}

/* Subscribe (non-single packages) */
.nl-pkg .nl-pkg__btn--ghost {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 9px;
  font-size: 11px;
  font-weight: 600;
  color: var(--nl-pkg-text-soft);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.nl-pkg .nl-pkg__btn--ghost:hover {
  color: var(--nl-pkg-text);
  background: rgba(255, 255, 255, 0.07);
}

/* Block inherited Tebex / critical product image rules */
.store-products-images .nl-pkg .nl-pkg__img {
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: unset !important;
  min-height: 0 !important;
  max-height: none !important;
  object-fit: cover !important;
  border-radius: 0 !important;
}

/* Kill global .actions button overrides inside nl-pkg */
.nl-pkg .actions .button-group .btn::before,
.nl-pkg .actions .button-group .btn::after {
  display: none !important;
  content: none !important;
}

/* Lock 3 columns on desktop/tablet â€” survives browser zoom-out */
@media (min-width: 769px) {
  .site-content .store-products-images,
  .store-products-images {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

/* â”€â”€ Responsive (mobile-fixes.css uses 1 column â‰¤768px) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 480px) {
  .site-content .store-products-images,
  .store-products-images {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 16px;
  }

  .nl-pkg {
    --nl-pkg-pad: 18px 16px 18px;
    --nl-pkg-radius: 12px;
    --nl-pkg-lift: -3px;
  }

  .nl-pkg__body {
    margin-top: -14px;
    padding-top: 22px;
  }

  .nl-pkg__media-link::after {
    min-height: 80px;
  }

  .nl-pkg__ribbons {
    top: 10px;
    left: 10px;
  }

  .nl-pkg__title {
    font-size: 14px;
  }

  .nl-pkg__price-now {
    font-size: 17px;
  }

  .nl-pkg .nl-pkg__btn--primary {
    min-height: 30px;
    height: 30px;
    font-size: 11px;
  }
}

/* â”€â”€ Framework compatibility tags (category + featured + package page) â”€ */
.nl-fw {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nl-fw[hidden] {
  display: none !important;
}

.nl-fw__pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 9px 4px 7px;
  border-radius: 6px;
  border: none;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.46);
  font-family: var(--nl-pkg-font);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.2;
  white-space: nowrap;
  transition:
    background 0.3s ease,
    color 0.3s ease;
}

/* Replace tiny inline SVG with a clearer check */
.nl-fw__pill::before {
  content: '';
  flex-shrink: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23ffffff' fill-opacity='0.72' d='M6.6 11.1 3.8 8.3l1-1 1.8 1.8 4.1-4.1 1 1z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 9px 9px;
}

.nl-fw__icon {
  display: none;
  width: 0;
  height: 0;
  overflow: hidden;
}

.nl-fw__label {
  display: inline-block;
}

.nl-pkg__meta .nl-fw {
  margin-top: 6px;
}

.featured-script-content .nl-fw {
  margin-top: 6px;
}

.product-header .nl-fw {
  margin: 8px 0 2px;
}

.nl-pkg:hover .nl-fw__pill,
.featured-script-card:hover .nl-fw__pill {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.56);
}

.nl-pkg:hover .nl-fw__pill::before,
.featured-script-card:hover .nl-fw__pill::before {
  background-color: rgba(255, 255, 255, 0.16);
}

@media (prefers-reduced-motion: reduce) {
  .nl-pkg,
  .nl-pkg__img,
  .nl-pkg .nl-pkg__btn--primary {
    transition: none !important;
    animation: none !important;
  }

  .nl-pkg:hover,
  .nl-pkg.nl-product-enter.is-entered:hover {
    transform: none !important;
  }

  .nl-pkg::before,
  .nl-pkg::after,
  .nl-pkg__glow {
    opacity: 0 !important;
    transition: none !important;
  }

  .nl-pkg.nl-product-enter,
  .nl-pkg.nl-product-enter.is-entered,
  article.product.nl-product-enter,
  article.product.nl-product-enter.is-entered,
  .product-card.nl-product-enter,
  .product-card.nl-product-enter.is-entered {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    pointer-events: auto !important;
  }

  .nl-pkg__media-link:hover .nl-pkg__img {
    transform: none;
  }
}

/* ========== mobile-fixes (merged) ========== */
/* ================================================
   MOBILE RESPONSIVE FIXES
   Enhanced mobile compatibility and touch support
   ================================================ */

/* ============================================
   1. HAMBURGER MENU FIX - Make it always visible and working on mobile
   ============================================ */

/* Ultra-simple hamburger menu on mobile */
@media (max-width: 960px) {
  .site-header .actions .toggle-navigation {
    position: absolute !important;
    top: 20px !important;
    right: 15px !important;
    z-index: 100 !important;
    width: 40px !important;
    height: 40px !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  /* Hamburger icon lines - clean and simple */
  .toggle-navigation .hamburger-icon {
    width: 24px !important;
    height: 16px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
  }

  .toggle-navigation .hamburger-icon .line {
    display: block !important;
    height: 2px !important;
    width: 100% !important;
    background: #fff !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    filter: none !important;
  }
}

/* ============================================
   2. MOBILE NAVIGATION MENU - CLEAN & LIGHTWEIGHT
   ============================================ */

@media (max-width: 960px) {
  /* Make navigation full screen on mobile */
  .site-navigation {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    background: #1c1c1c !important;
    z-index: 9998 !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    transform: translateX(-100%) !important;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    padding: 20px 16px !important;
    display: flex !important;
    flex-direction: column !important;
  }

  /* Show navigation when open */
  body.show-navigation .site-navigation {
    transform: translateX(0) !important;
  }

  /* Hide logo in mobile menu */
  .site-navigation .nav-logo-container {
    display: none !important;
  }

  /* Navigation list styling - centered and user-friendly */
  .site-navigation .navigation-list {
    flex-direction: column !important;
    gap: 8px !important;
    width: 100% !important;
    max-width: 400px !important;
    padding: 80px 0 40px !important;
    margin: 0 auto !important;
    list-style: none !important;
    /* Donâ€™t clip profile / currency dropdowns that extend outside the list box */
    overflow-x: visible !important;
    overflow-y: visible !important;
  }

  /* Navigation items */
  .site-navigation .navigation-list > li {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Main menu links - simple, clean, text-only */
  .site-navigation .navigation-list > li > a {
    display: block !important;
    text-align: center !important;
    padding: 18px 20px !important;
    background: transparent !important;
    border-radius: 0 !important;
    transition: none !important;
    text-decoration: none !important;
    color: #ffffff !important;
    position: relative !important;
    font-family: var(--nl-nav-font) !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    letter-spacing: -0.02em !important;
    line-height: 1.35 !important;
    min-height: 56px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  /* Remove all hover effects */
  .site-navigation .navigation-list > li > a:hover,
  .site-navigation .navigation-list > li > a:active,
  .site-navigation .navigation-list > li > a:focus {
    background: transparent !important;
    color: #ffffff !important;
    transform: none !important;
  }

  /* Active state - simple underline */
  .site-navigation .navigation-list > li.active > a,
  .site-navigation .navigation-list > li > a.link-active {
    color: #ffffff !important;
    background: transparent !important;
    font-weight: 500 !important;
  }

  /* Hide all icons in mobile navigation */
  .site-navigation .navigation-list > li > a svg,
  .site-navigation .navigation-list > li > a i:not(.fa-chevron-down) {
    display: none !important;
  }

  .site-navigation .navigation-list > li.active > a i:not(.fa-chevron-down) {
    color: #ffffff !important;
  }

  /* Rail spacer + divider are desktop-only (horizontal row layout) */
  .site-navigation.navigation-horizontal .nav-list-spacer,
  .site-navigation.navigation-horizontal .nav-rail-divider {
    display: none !important;
    height: 0 !important;
    min-height: 0 !important;
    flex: 0 0 auto !important;
    width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
  }

  /* Mobile Brand Divider */
  .site-navigation .mobile-brand-divider {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 16px 0 !important;
    padding: 16px 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  }

  .site-navigation .mobile-brand-content {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
  }

  .site-navigation .mobile-brand-logo {
    width: 28px !important;
    height: 28px !important;
    border-radius: 6px !important;
    object-fit: contain !important;
  }

  .site-navigation .mobile-brand-name {
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    letter-spacing: 0.3px !important;
  }

  /* Hide on desktop */
  @media (min-width: 961px) {
    .mobile-brand-divider {
      display: none !important;
    }
  }

  /* User section â€” flat list only while hamburger drawer is open.
     When the drawer is closed, profile / bottom-sheet menus must keep flex row (icon + text). */
  body.show-navigation .site-navigation .user-nav-item {
    position: static !important;
    display: block !important;
    padding-top: 20px !important;
    margin-top: 20px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  }

  /* Hide the dropdown toggle button (drawer context only) */
  body.show-navigation .site-navigation .user-nav-item .user-profile-nav {
    display: none !important;
  }

  /* Show dropdown items as always-visible flat list */
  body.show-navigation .site-navigation .user-nav-item .user-dropdown-menu {
    position: static !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    margin: 0 !important;
  }

  /* Clean, simple dropdown items - matching main nav style */
  body.show-navigation .site-navigation .user-dropdown-item {
    display: block !important;
    text-align: center !important;
    padding: 18px 20px !important;
    background: transparent !important;
    border-radius: 0 !important;
    transition: none !important;
    text-decoration: none !important;
    color: #ffffff !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    line-height: 1.4 !important;
    min-height: 56px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
  }

  /* Remove hover effects */
  body.show-navigation .site-navigation .user-dropdown-item:hover,
  body.show-navigation .site-navigation .user-dropdown-item:active,
  body.show-navigation .site-navigation .user-dropdown-item:focus {
    background: transparent !important;
    color: #ffffff !important;
  }

  /* Hide all icons */
  body.show-navigation .site-navigation .user-dropdown-item i {
    display: none !important;
  }

  /* Hide subtitle */
  body.show-navigation .site-navigation .user-dropdown-item-subtitle {
    display: none !important;
  }

  body.show-navigation .site-navigation .user-dropdown-item-title {
    font-size: 18px !important;
    font-weight: 400 !important;
    color: #ffffff !important;
  }

  /* Logout - just text, no special styling */
  body.show-navigation .site-navigation .user-dropdown-item.logout {
    color: #ffffff !important;
  }

  /* Hide subcategories toggle in mobile */
  .site-navigation .toggle {
    display: none !important;
  }

  /* Hide subcategories in mobile */
  .site-navigation .navigation-list > li > ul {
    display: none !important;
  }

  /* Basket button - hide from menu, show as floating */
  .site-navigation .basket-nav-item {
    display: none !important;
  }

  /* Close button */
  .site-navigation .close-navigation {
    display: none !important;
  }

  /* Smooth scrolling for mobile menu */
  .site-navigation {
    scroll-behavior: smooth !important;
  }

  /* Better touch feedback */
  .site-navigation .navigation-list > li > a,
  .site-navigation .user-dropdown-item {
    -webkit-tap-highlight-color: transparent !important;
    cursor: pointer !important;
    user-select: none !important;
    -webkit-user-select: none !important;
  }

  /* Active touch state */
  .site-navigation .navigation-list > li > a:active,
  .site-navigation .user-dropdown-item:active {
    transform: scale(0.98) !important;
  }

  /* Login button - clean style matching navigation */
  .site-navigation .login-nav-item {
    margin-top: 20px !important;
    padding-top: 20px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  }

  .site-navigation .btn-fivem-login {
    display: block !important;
    text-align: center !important;
    padding: 18px 20px !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    color: #ffffff !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    transition: none !important;
    width: 100% !important;
    min-height: 56px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
  }

  /* Remove hover effects */
  .site-navigation .btn-fivem-login:hover,
  .site-navigation .btn-fivem-login:active,
  .site-navigation .btn-fivem-login:focus {
    background: transparent !important;
    color: #ffffff !important;
  }

  /* Hide FiveM logo icon */
  .site-navigation .btn-fivem-login .fivem-logo,
  .site-navigation .btn-fivem-login .fivem-logo svg {
    display: none !important;
  }

  /* Show only login text */
  .site-navigation .btn-fivem-login .login-text {
    display: block !important;
    width: 100% !important;
    color: #ffffff !important;
    font-size: 18px !important;
    font-weight: 400 !important;
  }
}

/* Prevent body scroll when menu is open */
body.show-navigation {
  overflow: hidden !important;
  position: fixed !important;
  width: 100% !important;
}

/* ============================================
   3. HEADER MOBILE FIX
   ============================================ */

@media (max-width: 960px) {
  .site-header {
    padding: 10px 15px !important;
  }

  .site-header-inner {
    flex-wrap: wrap !important;
    gap: 10px !important;
  }

  .site-header-inner .actions {
    order: 3 !important;
    position: static !important;
  }

  .site-title {
    order: 1 !important;
    flex: 1 !important;
  }

  .site-title img {
    max-height: 40px !important;
  }

  /* Hide server/discord info on very small screens */
  .site-header-inner .info {
    display: none !important;
  }
}

@media (min-width: 480px) and (max-width: 960px) {
  .site-header-inner .info {
    display: flex !important;
    font-size: 12px !important;
    padding: 8px 12px !important;
  }
}

/* ============================================
   4. PRODUCT CARDS MOBILE
   ============================================ */

@media (max-width: 768px) {
  /* Product grid */
  .store-products-images,
  .store-products-list {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
    padding: 15px !important;
  }

  /* Product cards */
  .store-product {
    padding: 15px !important;
  }

  .store-product .product-title {
    font-size: 18px !important;
  }

  .store-product .product-actions {
    flex-wrap: wrap !important;
  }

  .store-product .product-actions button,
  .store-product .product-actions a {
    width: 100% !important;
    justify-content: center !important;
  }
}

/* ============================================
   5. BASKET/CART BUTTON MOBILE - TOP RIGHT
   ============================================ */

@media (max-width: 960px) {
  /* Cart/Basket button styling */
  .site-header-inner .user-actions .open-basket,
  .site-header-inner .open-basket {
    width: 50px !important;
    height: 50px !important;
    position: static !important;
    border-radius: 10px !important;
    background: rgba(30, 30, 30, 0.98) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
  }

  .basket-nav-item .basket-count {
    position: absolute !important;
    top: -5px !important;
    right: -5px !important;
    min-width: 22px !important;
    height: 22px !important;
    padding: 0 6px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    border-radius: 11px !important;
    background: #ff4444 !important;
    color: #fff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  /* Hide basket in navigation menu */
  .site-navigation .basket-nav-item {
    display: none !important;
  }
}

/* ============================================
   6. USER DROPDOWN MOBILE
   ============================================ */

@media (max-width: 960px) {
  .user-profile-nav .user-dropdown-menu {
    position: fixed !important;
    top: auto !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-height: 70vh !important;
    border-radius: 20px 20px 0 0 !important;
    transform: translateY(100%) !important;
    transition: transform 0.3s ease !important;
  }

  .user-profile-nav.open .user-dropdown-menu {
    transform: translateY(0) !important;
  }

  .user-dropdown-item {
    padding: 16px 20px !important;
    font-size: 16px !important;
  }
}

/* ============================================
   7. FORMS & INPUTS MOBILE
   ============================================ */

@media (max-width: 768px) {
  input[type="text"],
  input[type="email"],
  input[type="number"],
  textarea,
  select {
    font-size: 16px !important; /* Prevents iOS zoom on focus */
    padding: 12px 16px !important;
  }

  button,
  .btn-primary,
  .btn-secondary {
    min-height: 44px !important; /* Touch-friendly size */
    padding: 12px 20px !important;
    font-size: 16px !important;
  }
}

/* ============================================
   8. DISCOUNT TOAST MOBILE (our new banner)
   ============================================ */

@media (max-width: 768px) {
  .discount-toast {
    bottom: 80px !important; /* Above floating cart button */
    left: 10px !important;
    right: 10px !important;
    width: auto !important;
    transform: translateX(0) translateY(150%) !important;
    padding: 12px 14px !important;
  }

  .discount-toast.is-visible {
    transform: translateX(0) translateY(0) !important;
  }
}

/* ============================================
   9. MODAL/POPUP MOBILE
   ============================================ */

@media (max-width: 768px) {
  .popup {
    padding: 0 !important;
  }

  .popup-content {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 100vh !important;
    border-radius: 0 !important;
    margin: 0 !important;
  }

  .basket-popup .popup-content {
    padding: 80px 20px 20px !important;
  }
}

/* ============================================
   10. TOUCH IMPROVEMENTS
   ============================================ */

@media (pointer: coarse) {
  /* Increase tap target sizes */
  a, button, [role="button"] {
    min-width: 44px !important;
    min-height: 44px !important;
  }

  /* Better hover states for touch */
  a:active, button:active, [role="button"]:active {
    opacity: 0.7 !important;
  }

  /* Remove hover effects on touch devices */
  @media (hover: none) {
    *:hover {
      /* Disable hover on touch devices */
    }
  }
}

/* ============================================
   11. LANDSCAPE ORIENTATION FIX
   ============================================ */

@media (max-width: 960px) and (orientation: landscape) {
  .site-navigation {
    padding: 60px 20px 20px !important;
  }

  .discount-toast {
    bottom: 10px !important;
  }
}

/* ============================================
   12. SAFE AREA FOR NOTCH DEVICES (iPhone X+)
   ============================================ */

@supports (padding: max(0px)) {
  @media (max-width: 960px) {
    .site-header {
      padding-left: max(15px, env(safe-area-inset-left)) !important;
      padding-right: max(15px, env(safe-area-inset-right)) !important;
      padding-top: max(10px, env(safe-area-inset-top)) !important;
    }

    .site-navigation {
      padding-left: max(20px, env(safe-area-inset-left)) !important;
      padding-right: max(20px, env(safe-area-inset-right)) !important;
      padding-bottom: max(40px, env(safe-area-inset-bottom)) !important;
    }

    .basket-nav-item .nav-basket-btn {
      bottom: max(20px, env(safe-area-inset-bottom)) !important;
      right: max(20px, env(safe-area-inset-right)) !important;
    }
  }
}

/* ============================================
   13. LOADING STATES (prevent layout shift)
   ============================================ */

@media (max-width: 768px) {
  .store-product,
  .widget {
    contain: layout style !important;
  }
}

/* ============================================
   14. PERFORMANCE OPTIMIZATIONS
   ============================================ */

@media (max-width: 960px) {
  /* Enable GPU acceleration for smooth animations */
  .toggle-navigation,
  .site-navigation,
  .discount-toast,
  .user-dropdown-menu {
    will-change: transform !important;
    transform: translateZ(0) !important;
    -webkit-transform: translateZ(0) !important;
  }

  /* Reduce motion for users who prefer it */
  @media (prefers-reduced-motion: reduce) {
    * {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
  }
}


/* ============================================
   15. HERO SECTION MOBILE FIX
   ============================================ */

@media (max-width: 960px) {
  .hero-section {
    padding: 40px 20px !important;
    min-height: auto !important;
  }

  .hero-container {
    flex-direction: column !important;
    gap: 30px !important;
  }

  .hero-content {
    text-align: center !important;
    padding: 0 !important;
  }

  .hero-section h1.hero-headline,
  .hero-headline {
    font-family: var(--nl-hero-font) !important;
    font-size: clamp(2rem, 7vw, 2.5rem) !important;
    font-weight: 700 !important;
    line-height: 1.08 !important;
    letter-spacing: -0.03em !important;
    margin-bottom: 20px !important;
    color: #ffffff !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
  }

  .hero-headline br {
    display: none !important;
  }

  .hero-subcopy {
    font-family: var(--nl-hero-font) !important;
    font-size: 14px !important;
    line-height: 1.7 !important;
    font-weight: 400 !important;
    margin-bottom: 22px !important;
    padding: 0 8px !important;
    max-width: 340px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-cta {
    width: auto !important;
    max-width: none !important;
    margin: 0 auto !important;
    min-height: 40px !important;
    height: 40px !important;
    padding: 0 16px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    background: #eceae7 !important;
    border: 1px solid rgba(255, 255, 255, 0.42) !important;
    color: #1f1f22 !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.55) !important;
  }

  .hero-visual {
    order: -1 !important;
    width: 100% !important;
    max-width: 200px !important;
    margin: 0 auto !important;
    aspect-ratio: 1 / 1 !important;
  }

  .hero-logo {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 1.875rem !important;
    font-weight: 700 !important;
  }

  .hero-headline-line--muted {
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.82) !important;
  }

  .hero-subcopy {
    font-size: 13px !important;
  }
}

/* ============================================
   16. CLEAN MOBILE HEADER - INSPIRED LAYOUT
   Logo left, Cart + Menu right
   ============================================ */

@media (max-width: 960px) {
  /* Logo positioning - top left, perfectly aligned with hamburger */
  .site-header-inner .site-title {
    position: absolute !important;
    top: 22px !important;
    left: 15px !important;
    right: auto !important;
    width: auto !important;
    height: 36px !important;
    line-height: 36px !important;
    font-size: 0 !important;
    text-align: left !important;
    z-index: 100 !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
    display: flex !important;
    align-items: center !important;
  }

  .site-header-inner .site-title img {
    display: block !important;
    max-width: 100px !important;
    max-height: 32px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    margin: 0 !important;
  }

  /* Right side container - align all buttons horizontally */
  .site-header-inner .actions,
  .site-header-inner .log-in,
  .site-header-inner .user-actions {
    position: fixed !important;
    top: 15px !important;
    right: 15px !important;
    left: auto !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    z-index: 9999 !important;
  }

  /* Adjust positions so they stack horizontally */
  .site-header-inner .log-in {
    right: 77px !important; /* 50px button + 12px gap + 15px margin */
  }

  .site-header-inner .user-actions {
    right: 77px !important; /* 50px button + 12px gap + 15px margin */
  }

  /* Hamburger menu button */
  .site-header .actions .toggle-navigation {
    position: static !important;
    width: 50px !important;
    height: 50px !important;
    background: rgba(30, 30, 30, 0.98) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 10px !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
  }

  /* Hide the header inner padding to make room */
  .site-header-inner {
    padding: 80px 0 20px !important;
  }
}

/* Hide logo on desktop */
@media (min-width: 961px) {
  .site-header-inner .site-title {
    display: none !important;
  }
  
  .site-header-inner .site-title img {
    display: none !important;
  }
}

/* Override ALL hamburger button styles - force clean look and static position */
@media (max-width: 960px) {
  .site-header .actions {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    left: auto !important;
  }

  .toggle-navigation,
  .btn-tertiary.btn-icon.toggle-navigation,
  button.toggle-navigation,
  .site-header .actions .toggle-navigation {
    all: unset !important;
    position: absolute !important;
    top: 22px !important;
    right: 15px !important;
    z-index: 100 !important;
    width: 40px !important;
    height: 36px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
  }

  .toggle-navigation *,
  .toggle-navigation::before,
  .toggle-navigation::after {
    box-shadow: none !important;
    text-shadow: none !important;
    filter: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background-image: none !important;
  }
}

/* Force fix login button - nuclear override */
@media (max-width: 960px) {
  .site-navigation .login-nav-item,
  .site-navigation .login-nav-item .btn-fivem-login,
  .site-navigation a.btn-fivem-login,
  .site-navigation button.btn-fivem-login {
    all: unset !important;
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    padding: 18px 20px !important;
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    color: #ffffff !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    min-height: 56px !important;
    cursor: pointer !important;
    box-sizing: border-box !important;
  }

  .site-navigation .login-nav-item {
    margin-top: 20px !important;
    padding-top: 20px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-bottom: none !important;
  }

  /* Force hide all child elements except text */
  .site-navigation .btn-fivem-login * {
    display: none !important;
  }

  .site-navigation .btn-fivem-login .login-text {
    display: block !important;
    color: #ffffff !important;
    font-size: 18px !important;
  }

  /* Remove any box styling */
  .site-navigation .btn-fivem-login::before,
  .site-navigation .btn-fivem-login::after {
    display: none !important;
  }
}

/* ============================================
   BASKET BUTTON - Next to Hamburger on Mobile
   ============================================ */

@media (max-width: 960px) {
  /* Show and position user actions container */
  .site-header-inner .user-actions {
    position: absolute !important;
    top: 22px !important;
    right: 65px !important;
    left: auto !important;
    display: flex !important;
    align-items: center !important;
    gap: 0 !important;
    z-index: 100 !important;
  }

  /* Position basket button next to hamburger - all possible selectors */
  .site-header-inner .user-actions .open-basket,
  .site-header-inner .open-basket,
  .open-basket,
  .nav-basket-btn,
  .btn-primary.btn-icon.open-basket,
  .btn-icon.open-basket,
  button.open-basket,
  a.open-basket {
    position: static !important;
    width: 40px !important;
    height: 36px !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    color: #ffffff !important;
  }

  /* Basket icon styling */
  .open-basket::before,
  .nav-basket-btn::before {
    color: #ffffff !important;
    font-size: 20px !important;
    background-color: #ffffff !important;
  }

  /* Basket count badge */
  .basket-count,
  .open-basket .basket-count {
    position: absolute !important;
    top: -4px !important;
    right: -4px !important;
    min-width: 18px !important;
    height: 18px !important;
    padding: 0 4px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    border-radius: 9px !important;
    background: #ff4444 !important;
    color: #fff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
  }

  /* Hide basket from navigation menu */
  .site-navigation .basket-nav-item {
    display: none !important;
  }

  /* Make sure log-in button doesn't interfere */
  .site-header-inner .log-in {
    display: none !important;
  }
}

/* ============================================
   FINAL HEADER FIX - Override Everything
   ============================================ */

@media (max-width: 960px) {
  /* Force header to be single-row flex */
  .site-header {
    padding: 0 !important;
  }

  .site-header-inner {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    padding: 12px 15px !important;
    min-height: 60px !important;
    position: relative !important;
    gap: 12px !important;
  }

  /* Logo - left side, always visible */
  .site-header-inner .site-title {
    position: static !important;
    display: flex !important;
    align-items: center !important;
    height: auto !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    order: 1 !important;
    flex: 0 0 auto !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
  }

  .site-header-inner .site-title a {
    display: flex !important;
    align-items: center !important;
  }

  .site-header-inner .site-title img {
    display: block !important;
    max-height: 32px !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
  }

  /* Actions - right side, horizontal */
  .site-header-inner .actions {
    position: static !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 12px !important;
    order: 2 !important;
    margin: 0 !important;
    padding: 0 !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    flex: 0 0 auto !important;
  }

  /* Basket button */
  .site-header-inner .actions .mobile-basket-btn {
    position: static !important;
    display: flex !important;
    width: 44px !important;
    height: 44px !important;
    top: auto !important;
    right: auto !important;
  }

  /* Hamburger button */
  .site-header-inner .actions .toggle-navigation {
    position: static !important;
    display: flex !important;
    width: 44px !important;
    height: 44px !important;
    top: auto !important;
    right: auto !important;
  }

  /* Hide info sections */
  .site-header-inner .info {
    display: none !important;
  }

  /* Hide user actions if they exist */
  .site-header-inner .user-actions {
    display: none !important;
  }

  .site-header-inner .log-in {
    display: none !important;
  }
}

/* Hide basket button when navigation menu is open */
@media (max-width: 960px) {
  body.show-navigation .mobile-basket-btn,
  body.show-navigation .site-header-inner .actions .mobile-basket-btn,
  body.show-navigation .site-header .actions .mobile-basket-btn {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
  
  /* Also hide from header actions container */
  body.show-navigation .site-header-inner .actions {
    gap: 0 !important;
  }
}

/* ========== generic.css (merged) — Font Awesome loaded in head.twig ========== */
   /* =========================
         CSS VARIABLES
         ========================= */
   :root {
     --nl-font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
     --color-primary: #a0a0a0;
     --color-brighter-bg: #1E1E1E;
     --bg-image: url("https://webstore-template-assets.tebex.io/images/page-header-bg-fivem.jpg");
     --widget-padding: 24px;
     --content-padding: 20px;
     --background-dark: #121212;
     --card-dark: #1e1e1e;
     --text-light: #fff;
     --accent-color: #6a1b9a;
     --tooltip-background: #2a2a2a;
     --fade-duration: 280ms;
     --page-transition-duration: 560ms;
     --transition-base: 180ms cubic-bezier(0.22, 0.61, 0.36, 1);
   }
   
   @media (min-width:960px) {
     :root {
       --content-padding: 40px
     }
   }
   
   body {
     font-family: var(--nl-font-family);
     background-color: #0f0f10;
     color: #fff
   }
   
   body::before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     width: 100%;
     height: 100%;
     max-height: 400px;
     z-index: -1;
     background: var(--bg-image) center center/cover no-repeat;
     mask-image: linear-gradient(rgba(0, 0, 0, 0.5) 60%, transparent);
     pointer-events: none
   }
   
   h1:not(.hero-headline),
   h2,
   h3,
   h4,
   h5,
   h6 {
     font-family: var(--nl-font-family);
     font-weight: 700
   }
   
   .btn-primary,
   .btn-secondary,
   .btn-tertiary {
     border-radius: 4px;
     cursor: pointer;
     transition: all 0.3s ease
   }
   
   .btn-primary:hover,
   .btn-primary:focus,
   .btn-secondary:hover,
   .btn-secondary:focus {
     filter: brightness(1.1)
   }
   
   .quantity-field {
     border-radius: 4px;
     overflow: hidden
   }
   
   .site-header-inner {
     font-family: var(--nl-font-family)
   }
   
   .site-header-inner .info .image {
     border-radius: 5px
   }
   
   .site-header-inner .user-name ul li {
     overflow: hidden
   }
   
   .site-header-inner .user-name ul li:first-child {
     border-top-left-radius: 2px;
     border-top-right-radius: 2px
   }
   
   .site-header-inner .user-name ul li:last-child {
     border-bottom-left-radius: 2px;
     border-bottom-right-radius: 2px
   }
   
   .site-sale-banner {
     border-radius: 4px
   }
   
   .site-home-categories {
     position: relative;
     z-index: 1
   }
   
   .site-home-categories .category {
     display: flex;
     flex-direction: column;
     justify-content: flex-end;
     position: relative;
     padding: 32px;
     min-height: 215px;
     border-radius: 8px;
     overflow: hidden;
     background: var(--color-brighter-bg);
     transition: transform 0.3s ease
   }
   
   .site-home-categories .category:hover {
     color: var(--color-primary);
     transform: translateY(-5px)
   }
   
   .site-home-categories .category img {
     position: relative;
     width: 100%;
     height: auto;
     border-radius: 8px;
     transition: transform 0.3s ease
   }
   
   .site-home-categories .category:hover img {
     transform: scale(1.05)
   }
   
   .store-text,
   .category-description,
   .store-product,
   .no-products {
     border-radius: 8px;
     border: 1px solid #2D2D2D;
     padding: calc(var(--widget-padding) - 1px);
     background: var(--color-brighter-bg)
   }
   
   .store-text h1,
   .store-text h2,
   .store-text h3,
   .store-text h4,
   .store-text h5,
   .store-text h6,
   .category-description h1,
   .category-description h2,
   .category-description h3,
   .category-description h4,
   .category-description h5,
   .category-description h6,
   .store-product .descr h1,
   .store-product .descr h2,
   .store-product .descr h3,
   .store-product .descr h4,
   .store-product .descr h5,
   .store-product .descr h6 {
     color: #fff
   }
   
   .widget {
     padding: 0
   }
   
   .widget-title {
     margin-bottom: 18px;
     font-size: 22px;
     font-weight: 700;
     text-align: center
   }
   
   .widget-content {
     border-radius: 8px;
     border: 1px solid #2D2D2D;
     padding: calc(var(--widget-padding) - 1px);
     background: var(--color-brighter-bg)
   }
   
   .widget .store-product {
     text-align: center
   }
   
   .popup .popup-close {
     border-radius: 0 8px 0 0
   }
   
   .store-product-tiered {
     border-radius: 8px;
     border: 1px solid #2D2D2D;
     background: rgba(0, 0, 0, 0.5)
   }
   
   .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 {
     text-align: center
   }
   
   .store-products-list .store-product,
   .store-products-images .store-product {
     border-radius: 5px;
     background: var(--color-brighter-bg)
   }
   
   .store-products-images .store-product {
     text-align: center
   }
   
   .store-product-full {
     border-radius: 5px;
     background: var(--color-brighter-bg)
   }
   
   .store-product .quantity-field {
     border-radius: 5px;
     background: var(--color-brighter-bg)
   }
   
   .store-product .quantity-field input[type=number] {
     border: none
   }
   
   .widget-gift-card .gift-card-input {
     border-radius: 2px
   }
   
   .widget-top-donator .avatar {
     border-radius: 50%
   }
   
   .widget-community-goal .progress,
   .widget-goal .progress {
     border-radius: 2px
   }
   
   .widget-community-goal .progress-bar,
   .widget-goal .progress-bar {
     border-radius: 2px
   }
   
   .popup-content {
     border-radius: 5px
   }
   
   .popup-close {
     border-radius: 0 5px 0 5px
   }
   
   .basket-popup-content,
   .basket-popup-content .popup-close {
     border-radius: 0
   }
   
   .basket-items {
     padding: var(--widget-padding) calc(var(--content-padding) - var(--widget-padding))
   }
   
   .basket-item {
     border-radius: 5px
   }
   
   .basket-item .quantity {
     border-radius: 2px
   }
   
   .toast {
     border-radius: 6px
   }
   
   .toast-close {
     border-radius: 2px
   }
   
   .store-category-tiered {
     border-radius: 5px;
     background: var(--color-brighter-bg)
   }
   
   /* Old widget-recent avatar styles removed - see consolidated section */
   
   .widget-top-donator .widget-title {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
     font-size: 0;
     margin: 0;
     padding: 10px 0;
     text-align: center
   }
   
   .widget-top-donator .widget-title i.fa-solid.fa-crown {
     display: none
   }
   
   .widget-top-donator .widget-title::before {
     content: "\f521";
     font-family: "Font Awesome 6 Free";
     font-weight: 900;
     font-size: 22px;
     background: linear-gradient(135deg, #FFD700, #FA0);
     -webkit-background-clip: text;
     background-clip: text;
     -webkit-text-fill-color: transparent;
     text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
     transition: all 0.3s ease
   }
   
   .widget-top-donator .widget-title::after {
     content: "Top Customer";
     font-family: var(--nl-font-family);
     font-weight: 700;
     font-size: 22px;
     background: linear-gradient(135deg, #FFD700, #FA0);
     -webkit-background-clip: text;
     background-clip: text;
     -webkit-text-fill-color: transparent;
     text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
     letter-spacing: 0.5px;
     transition: all 0.3s ease
   }
   
   .widget-top-donator .widget-title:hover::before,
   .widget-top-donator .widget-title:hover::after {
     text-shadow: 2px 2px 5px rgba(255, 215, 0, 0.6);
     filter: brightness(1.1)
   }
   
   .add i {
     margin-right: 8px
   }
   
   .store-product .image-link {
     display: block;
     width: 100%;
     text-decoration: none
   }
   
   .store-product .image {
     width: 100%;
     height: auto;
     display: block;
     border-radius: 0;
     box-shadow: none
   }
   
   /* Top-level nav links only â€” do not match .user-dropdown-item inside profile menu */
   .site-navigation .menu a:not(.user-dropdown-item) {
     font-family: var(--nl-nav-font);
     font-size: var(--nl-nav-font-size);
     font-weight: 500;
     font-synthesis: none;
     letter-spacing: var(--nl-nav-letter-spacing);
     line-height: var(--nl-nav-line-height);
     color: var(--nl-nav-link-color);
     cursor: pointer;
     border: none;
     background: none;
     transition: color 0.3s ease;
     text-decoration: none !important;
     display: inline-flex;
     align-items: center;
     -webkit-font-smoothing: antialiased;
     -moz-osx-font-smoothing: grayscale;
   }
   
   .site-navigation .menu a:not(.user-dropdown-item):focus,
   .site-navigation .menu a:not(.user-dropdown-item):hover {
     color: inherit;
   }
   
   .site-navigation .menu a:not(.user-dropdown-item) i {
     transition: color 400ms cubic-bezier(0.25, 0.8, 0.25, 1);
     margin-right: 8px;
   }
   
   .site-navigation .menu ul a {
     position: relative;
   }
   
   @media (max-width: 960px) {
     .site-navigation .menu a:not(.user-dropdown-item) {
       font-size: 14px;
       font-weight: 500;
     }
   }
   
   .site-navigation {
     pointer-events: auto
   }
   
   .user-actions .btn-secondary.btn-glyph-text.user-name:hover {
     color: red
   }
   
   .user-actions .btn-secondary.btn-glyph-text.user-name:hover i {
     color: red
   }
   
   /* Old widget-recent base styles removed - see consolidated section below */
   
   .store-content {
     opacity: 0;
     transform: translateY(20px);
     transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out
   }
   
   .store-content.loaded {
     opacity: 1;
     transform: translateY(0)
   }
   
   .loader {
     display: flex;
     align-items: center;
     justify-content: center
   }
   
   .bar {
     display: inline-block;
     width: 3px;
     height: 20px;
     background-color: rgba(255, 255, 255, 0.5);
     border-radius: 10px;
     animation: scale-up4 1s linear infinite
   }
   
   .bar:nth-child(2) {
     height: 35px;
     margin: 0 5px;
     animation-delay: 0.25s
   }
   
   .bar:nth-child(3) {
     animation-delay: 0.5s
   }
   
   @keyframes scale-up4 {
     20% {
       background-color: #fff;
       transform: scaleY(1.5)
     }
   
     40% {
       transform: scaleY(1)
     }
   }
   
   .loading-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(18, 18, 18, 0.8);
     display: flex;
     align-items: center;
     justify-content: center;
     z-index: 9999;
     opacity: 1;
     transition: opacity 0.5s ease
   }
   
   .loading-overlay.hidden {
     opacity: 0;
     pointer-events: none
   }
   
   @media (min-width:960px) {
     .bar {
       width: 4px;
       height: 30px
     }
   
     .bar:nth-child(2) {
       height: 50px
     }
   }
   
   @keyframes spin {
     0% {
       transform: rotate(0deg)
     }
   
     100% {
       transform: rotate(360deg)
     }
   }
   
   body.home-entry .site-home-categories .category {
     border: 2px solid var(--color-primary);
     background: linear-gradient(to bottom, #1e1e1e, #121212)
   }
   
   body.category-escrow .store-product {
     border-color: #4a90e2;
     background: linear-gradient(to bottom, #1e1e1e, #2a3a4a)
   }
   
   body.category-open-source .store-product {
     border-color: #2ecc71;
     background: linear-gradient(to bottom, #1e1e1e, #2a4a3a)
   }
   
   body.category-1 .store-product {
     border-color: #e94e77;
     background: linear-gradient(to bottom, #1e1e1e, #4a2a3a)
   }
   
   .store-products:not(main.store-products),
   .site-home-categories {
     transition: all 0.5s ease
   }

   body.page-store-category main.store-products,
   body.page-store-category .store-products-images {
     transition: none !important;
   }
   
   .loading-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100vh;
     background: rgba(18, 18, 18, 0.8);
     display: flex;
     align-items: center;
     justify-content: center;
     z-index: 10000;
     opacity: 1;
     transition: opacity 0.5s ease
   }
   
   .loading-overlay.hidden {
     opacity: 0;
     pointer-events: none
   }
   
   .loader {
     display: flex;
     align-items: center
   }
   
   .bar {
     display: inline-block;
     width: 3px;
     height: 20px;
     background-color: rgba(255, 255, 255, 0.5);
     border-radius: 10px;
     animation: scale-up4 1s linear infinite
   }
   
   .bar:nth-child(2) {
     height: 35px;
     margin: 0 5px;
     animation-delay: 0.25s
   }
   
   .bar:nth-child(3) {
     animation-delay: 0.5s
   }
   
   @keyframes scale-up4 {
     20% {
       background-color: #fff;
       transform: scaleY(1.5)
     }
   
     40% {
       transform: scaleY(1)
     }
   }
   
   @media (min-width:960px) {
     .bar {
       width: 4px;
       height: 30px
     }
   
     .bar:nth-child(2) {
       height: 50px
     }
   }
   
   .store-text {
     text-align: center;
     font-family: var(--nl-font-family)
   }
   
   .store-header-title {
     margin-bottom: 20px
   }
   
   .store-welcome-text {
     font-family: var(--nl-font-family);
     font-size: 16px;
     font-weight: 500;
     color: #a0a0a0;
     letter-spacing: 2px;
     text-transform: uppercase;
     display: block;
     margin-bottom: 5px
   }
   
   .store-main-title-container {
     display: flex;
     justify-content: center;
     align-items: center;
     gap: 15px
   }
   
   .store-main-title {
     font-family: var(--nl-font-family);
     font-size: 38px;
     font-weight: 800;
     color: #fff;
     margin: 0;
     line-height: 1.2
   }
   
   .store-main-logo {
     width: 52px;
     height: 52px;
     object-fit: contain
   }
   
   .store-text p {
     color: #a0a0a0;
     line-height: 1.6;
     margin-bottom: 15px
   }
   
   .title-divider {
     border: 0;
     height: 1px;
     background: #2D2D2D;
     margin: 20px auto;
     width: 60%
   }
   
   .store-product .image-link {
     position: relative;
     display: block;
     text-decoration: none;
     overflow: hidden;
     border-radius: 12px
   }
   
   .store-product .image-link .image {
     width: 100%;
     height: auto;
     display: block;
     border-radius: 12px
   }
   
   /* Disable hover overlay for store-product */
   .store-product .image-link .hover-overlay {
     display: none !important;
     opacity: 0 !important;
     visibility: hidden !important;
     pointer-events: none !important
   }
   
   .store-product .image-link .hover-overlay .fa-eye,
   .store-product .image-link .hover-overlay .hover-text {
     display: none !important
   }
   
   /* No hover effects for store-product - only product-card gets premium hover */
   
   .product-tag {
     position: absolute;
     top: 15px;
     right: -5px;
     font-family: var(--nl-font-family);
     font-size: 12px;
     font-weight: 700;
     padding: 5px 10px;
     border-radius: 4px;
     text-transform: uppercase;
     letter-spacing: 1px;
     z-index: 10;
     transform: rotate(5deg);
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
     display: flex;
     align-items: center;
     gap: 5px
   }
   
   .product-tag-bestseller {
     background-color: #ffc107;
     color: #212529
   }
   
   .product-tag-bestseller i.fa-trophy {
     font-size: 14px
   }
   
   .log-in.btn-tertiary {
     display: flex;
     align-items: center;
     gap: 10px;
     background: linear-gradient(135deg, #5a3a1a, #4a2c0f);
     padding: 8px 14px;
     border-radius: 8px;
     text-decoration: none;
     color: #d36a20;
     font-weight: bold;
     font-size: 16px;
     font-family: var(--nl-font-family)
   }
   
   .log-in.btn-tertiary:hover {
     filter: saturate(1.2)
   }
   
   .log-in.btn-tertiary .logo {
     width: 24px;
     height: 24px
   }
   
   .log-in.btn-tertiary .login-text,
   .log-in.btn-tertiary .provider-text {
     color: #d36a20
   }
   
   /* ============================================
      NAVIGATION CSS - CLEAN SLATE
      Add your custom navigation styles here
      ============================================ */
   
   .logout-btn {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 24px;
     height: 24px;
     background: transparent;
     border: none;
     border-radius: 0;
     color: #f44336;
     text-decoration: none;
     transition: all 0.2s ease
   }
   
   .logout-btn:hover {
     background: rgba(244, 67, 54, 0.2);
     border: none;
     color: #fff;
     transform: none
   }
   
   .logout-btn i {
     font-size: 12px
   }
   
   .fivem-logo {
     width: 24px;
     height: 24px;
     flex-shrink: 0;
     display: flex;
     align-items: center;
     justify-content: center
   }
   
   .fivem-logo svg {
     width: 100%;
     height: 100%
   }
   
   .btn-fivem-login .login-text {
     color: #000;
     font-family: inherit;
     font-weight: inherit;
     font-size: inherit;
     letter-spacing: inherit;
     line-height: inherit;
   }
   
   .site-navigation .menu li {
     position: relative;
     transition: all 0.2s ease
   }
   
   .site-navigation .menu li:hover {
     transform: none
   }
   
   .site-navigation .menu li > a {
     transition: none;
     border-radius: 0;
     position: relative
   }
   
   .site-navigation .menu li > a:hover {
     background: transparent;
     backdrop-filter: none;
     box-shadow: none
   }
   
   .site-navigation .menu li.active {
     background: rgba(255, 255, 255, 0);
     backdrop-filter: none;
     border: none;
     border-radius: 0;
     box-shadow: none
   }
   
   /* Horizontal nav rail: primary links | spacer | divider | currency | account | cart (see navigation.twig) */
   @media (min-width: 960px) {
     .site-navigation.navigation-horizontal .navigation-list {
       justify-content: flex-start;
       gap: 0;
     }

     /* Primary links — equal horizontal rhythm */
     .site-navigation.navigation-horizontal .navigation-list > li:not(.nav-list-spacer):not(.nav-rail-divider):not(.currency-nav-item):not(.user-nav-item):not(.login-nav-item):not(.basket-nav-item) + li:not(.nav-list-spacer):not(.nav-rail-divider):not(.currency-nav-item):not(.user-nav-item):not(.login-nav-item):not(.basket-nav-item) {
       margin-left: var(--nl-nav-link-gap, 28px);
     }

     /* Utility cluster — tight, even spacing */
     .site-navigation.navigation-horizontal .nav-rail-divider + .currency-nav-item,
     .site-navigation.navigation-horizontal .nav-rail-divider + .user-nav-item,
     .site-navigation.navigation-horizontal .nav-rail-divider + .login-nav-item,
     .site-navigation.navigation-horizontal .nav-rail-divider + .basket-nav-item,
     .site-navigation.navigation-horizontal .currency-nav-item + .user-nav-item,
     .site-navigation.navigation-horizontal .currency-nav-item + .login-nav-item,
     .site-navigation.navigation-horizontal .currency-nav-item + .basket-nav-item,
     .site-navigation.navigation-horizontal .user-nav-item + .basket-nav-item,
     .site-navigation.navigation-horizontal .login-nav-item + .basket-nav-item {
       margin-left: var(--nl-nav-util-gap, 6px);
     }
   
     .site-navigation.navigation-horizontal .nav-list-spacer {
       flex: 1 1 auto;
       min-width: 40px;
       list-style: none;
       margin: 0;
       padding: 0;
       align-self: stretch;
     }
   
     .site-navigation.navigation-horizontal .nav-rail-divider {
       display: flex;
       align-items: center;
       justify-content: center;
       flex-shrink: 0;
       list-style: none;
       margin: 0;
       padding: 0 10px 0 8px;
       align-self: stretch;
     }
   
     .site-navigation.navigation-horizontal .nav-rail-divider__line {
       display: block;
       width: 1px;
       height: 18px;
       background: rgba(255, 255, 255, 0.04);
       border-radius: 1px;
     }

     /* Beat shared.css `.navigation-horizontal .menu { font-weight: 700 }` */
     .site-navigation.navigation-horizontal .navigation-list.menu {
       padding: 0 !important;
       line-height: var(--nl-nav-line-height) !important;
       font-size: var(--nl-nav-font-size) !important;
       font-weight: var(--nl-nav-font-weight) !important;
     }

     .site-navigation.navigation-horizontal .navigation-list.menu > li > a:not(.user-dropdown-item) {
       padding: 6px 10px !important;
       font-size: 14px !important;
       font-weight: 500 !important;
     }
   }

   @media (min-width: 1280px) {
     .site-navigation {
       padding-inline: clamp(32px, 4.5vw, 88px);
     }
   }

   @media (min-width: 1600px) {
     .site-navigation {
       padding-inline: clamp(48px, 5.5vw, 120px);
     }
   }
   
   /* Nav + header utilities: premium SaaS tokens */
   :root {
     --nl-font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
     --nl-nav-font: var(--nl-font-family);
     --nl-hero-font: var(--nl-font-family);
     --nl-hero-size: clamp(2.25rem, 5.25vw, 3.375rem);
     --nl-hero-weight: 700;
     --nl-hero-weight-muted: 600;
     --nl-nav-font-size: 14px;
     --nl-nav-font-weight: 500;
     --nl-nav-letter-spacing: -0.02em;
     --nl-nav-line-height: 1.3;
     --nl-nav-link-color: rgba(255, 255, 255, 0.5);
     --nl-nav-link-color-hover: rgba(255, 255, 255, 0.78);
     --nl-nav-link-color-active: rgba(255, 255, 255, 0.88);
     --nav-bar-height: 64px;
     --nav-util-text: rgba(255, 255, 255, 0.5);
     --nav-util-text-hover: rgba(255, 255, 255, 0.78);
     --nav-util-radius: 9px;
     --nav-util-height: 38px;
     --nav-util-pad-x: 11px;
     --nav-util-surface-bg: rgba(255, 255, 255, 0.04);
     --nav-util-border: rgba(255, 255, 255, 0.07);
     --nav-util-surface-hover-bg: rgba(255, 255, 255, 0.07);
     --nav-util-inner-glow: none;
     --nl-nav-link-gap: 34px;
     --nl-nav-util-gap: 10px;
     --nl-nav-logo-gap: 44px;
     --nl-nav-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
     --nl-nav-motion: color 0.22s var(--nl-nav-ease), background 0.22s var(--nl-nav-ease), border-color 0.22s var(--nl-nav-ease), opacity 0.22s var(--nl-nav-ease);
   }
   
   .user-profile-nav::before {
     display: none
   }
   
   .nav-tooltip {
     display: none !important
   }
   
   @keyframes pulse-glow {
   
     0%,
     100% {
       transform: scale(1);
       box-shadow: none
     }
   
     50% {
       transform: scale(1);
       box-shadow: none
     }
   }
   
   @keyframes pulse-online {
   
     0%,
     100% {
       opacity: 1;
       transform: scale(1)
     }
   
     50% {
       opacity: 1;
       transform: scale(1)
     }
   }
   
   .site-navigation .menu li > a:focus {
     outline: none !important;
     border: none !important;
   }
   
   .site-navigation .nav-basket-btn:focus {
     outline: none;
   }
   
   .logout-btn:focus,
   .login-btn-nav:focus {
     outline: 1px solid rgba(255, 255, 255, 0.3);
     outline-offset: -1px
   }
   
   @media (max-width:960px) {
     .site-navigation .menu li {
       opacity: 0;
       transform: translateY(-30px);
       transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1)
     }
   
     .show-navigation .site-navigation .menu li {
       opacity: 1;
       transform: translateY(0)
     }
   
     .show-navigation .site-navigation .menu li:nth-child(1) {
       transition-delay: 0.1s
     }
   
     .show-navigation .site-navigation .menu li:nth-child(2) {
       transition-delay: 0.15s
     }
   
     .show-navigation .site-navigation .menu li:nth-child(3) {
       transition-delay: 0.2s
     }
   
     .show-navigation .site-navigation .menu li:nth-child(4) {
       transition-delay: 0.25s
     }
   
     .show-navigation .site-navigation .menu li:nth-child(5) {
       transition-delay: 0.3s
     }
   
     .show-navigation .site-navigation .menu li:nth-child(6) {
       transition-delay: 0.35s
     }
   
     .show-navigation .site-navigation .menu li:nth-child(7) {
       transition-delay: 0.4s
     }
   
     .show-navigation .site-navigation .menu li:nth-child(8) {
       transition-delay: 0.45s
     }
   
     .show-navigation .site-navigation .menu li:nth-child(9) {
       transition-delay: 0.5s
     }
   
     .show-navigation .site-navigation .menu li:nth-child(10) {
       transition-delay: 0.55s
     }
   
     .show-navigation .site-navigation .menu li {
       animation: slideInFromTop 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) forwards
     }
   
     @keyframes slideInFromTop {
       0% {
         opacity: 0;
         transform: translateY(-30px)
       }
   
       100% {
         opacity: 1;
         transform: translateY(0)
       }
     }
   
     .show-navigation .site-navigation .menu li:nth-child(1) {
       animation-delay: 0.1s
     }
   
     .show-navigation .site-navigation .menu li:nth-child(2) {
       animation-delay: 0.15s
     }
   
     .show-navigation .site-navigation .menu li:nth-child(3) {
       animation-delay: 0.2s
     }
   
     .show-navigation .site-navigation .menu li:nth-child(4) {
       animation-delay: 0.25s
     }
   
     .show-navigation .site-navigation .menu li:nth-child(5) {
       animation-delay: 0.3s
     }
   
     .show-navigation .site-navigation .menu li:nth-child(6) {
       animation-delay: 0.35s
     }
   
     .show-navigation .site-navigation .menu li:nth-child(7) {
       animation-delay: 0.4s
     }
   
     .show-navigation .site-navigation .menu li:nth-child(8) {
       animation-delay: 0.45s
     }
   
     .show-navigation .site-navigation .menu li:nth-child(9) {
       animation-delay: 0.5s
     }
   
     .show-navigation .site-navigation .menu li:nth-child(10) {
       animation-delay: 0.55s
     }
   }
   
   @media (max-width:960px) {
     .toggle-navigation {
       position: fixed;
       top: 20px;
       right: 20px;
       left: auto;
       z-index: 1002
     }
   
     @media (max-width:480px) {
       .toggle-navigation {
         right: 15px;
         left: auto
       }
     }
   }
   
   .site-header {
     margin-top: 0
   }
   
   .hero-info-container {
     max-width: 100%;
     margin: 0 auto;
     position: relative;
     z-index: 2
   }
   
   .hero-info-content {
     text-align: center
   }
   
   .welcome-badge {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     background: rgba(160, 160, 160, 0.1);
     border: 1px solid #2D2D2D;
     border-radius: 6px;
     padding: 8px 16px;
     margin-bottom: 20px;
     font-size: 12px;
     font-weight: 500;
     color: var(--color-primary);
     text-transform: uppercase;
     letter-spacing: 1px
   }
   
   .welcome-badge i {
     color: var(--color-primary);
     font-size: 14px
   }
   
   .main-title-container {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 15px;
     margin-bottom: 20px;
     flex-wrap: wrap
   }
   
   .main-title {
     font-family: var(--nl-font-family);
     font-size: 2.5rem;
     font-weight: 700;
     color: #fff;
     margin: 0;
     line-height: 1.1
   }
   
   .title-logo {
     height: 50px;
     background: var(--color-primary);
     border-radius: 8px;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.3s ease
   }
   
   .title-logo:hover {
     transform: scale(1.05)
   }
   
   .title-logo img {
     width: 32px;
     height: 32px;
     object-fit: contain
   }
   
   .title-logo i {
     font-size: 24px;
     color: #fff
   }
   
   .hero-description {
     font-size: 1rem;
     color: #a0a0a0;
     line-height: 1.6;
     margin: 0 0 30px 0;
     max-width: 500px;
     margin-left: auto;
     margin-right: auto;
     font-weight: 400
   }
   
   .hero-stats {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 20px;
     max-width: 600px;
     margin: 0 auto
   }
   
   .stat-item {
     text-align: center;
     padding: 20px 15px;
     background: rgba(160, 160, 160, 0.05);
     border: 1px solid #2D2D2D;
     border-radius: 8px;
     transition: all 0.3s ease
   }
   
   .stat-item:hover {
     background: rgba(160, 160, 160, 0.1);
     transform: translateY(-2px)
   }
   
   .stat-number {
     font-family: var(--nl-font-family);
     font-size: 2rem;
     font-weight: 700;
     color: #fff;
     margin-bottom: 5px;
     display: block
   }
   
   .stat-label {
     font-size: 0.85rem;
     color: var(--color-primary);
     text-transform: uppercase;
     letter-spacing: 1px;
     font-weight: 500
   }
   
   .customer-reviews-section {
     text-align: center;
     margin-top: 0rem;
     padding: 2rem 1rem;
     color: #fff
   }
   
   .customer-reviews-section h2 {
     font-family: var(--nl-font-family);
     font-size: 1.8rem;
     font-weight: 700;
     color: #fff;
     margin-bottom: 0.5rem
   }
   
   .customer-reviews-section>p {
     font-size: 1rem;
     margin-bottom: 2rem;
     color: #a0a0a0;
     font-weight: 400
   }
   
   /* Reviews carousel and card styles are defined in shared.css.
      Removed conflicting generic.css overrides (mask-image, opacity, wrong gradients)
      that were causing pixelated/glitchy rendering. */
   
   .carousel-dots {
     display: flex;
     justify-content: center;
     gap: 0.5rem;
     margin-top: 1.5rem
   }
   
   .dot {
     width: 8px;
     height: 8px;
     border-radius: 50%;
     background-color: #2D2D2D;
     cursor: pointer;
     transition: all 0.3s ease
   }
   
   .dot.active,
   .dot:hover {
     background-color: var(--color-primary);
     transform: scale(1.2)
   }
   
   .extra-section {
     text-align: center;
     margin-top: 2rem;
     padding: 1.5rem;
     background: var(--color-brighter-bg);
     border: 1px solid #2D2D2D;
     color: white;
     border-radius: 8px
   }
   
   .extra-section h3 {
     font-family: var(--nl-font-family);
     font-weight: 600;
     margin-bottom: 0.5rem;
     color: #fff
   }
   
   .extra-section p {
     color: #a0a0a0;
     margin-bottom: 1rem
   }
   
   .extra-section .btn {
     display: inline-block;
     padding: 0.6rem 1.5rem;
     background: var(--color-primary);
     color: #000;
     border-radius: 4px;
     text-decoration: none;
     font-weight: 500;
     transition: all 0.3s ease;
     font-size: 0.9rem
   }
   
   .extra-section .btn:hover {
     filter: brightness(1.1);
     transform: translateY(-1px)
   }
   
   /* Removed conflicting responsive review overrides and inset box-shadow.
      Responsive review styles are handled in shared.css. */
   
   .dot:focus {
     outline: 2px solid var(--color-primary);
     outline-offset: 2px
   }
   
   .help-support-section {
     position: relative;
     padding: 3rem 1rem;
     margin-top: 0rem;
     text-align: center;
     background: var(--background-dark);
     overflow: hidden
   }
   
   .help-support-section::before {
     content: '';
     position: absolute;
     top: 50%;
     left: 50%;
     width: 800px;
     height: 600px;
     transform: translate(-50%, -50%) scale(0);
     background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.015) 30%, rgba(255, 255, 255, 0.005) 60%, transparent 100%);
     pointer-events: none;
     z-index: 1;
     opacity: 0;
     transition: all 1.2s cubic-bezier(0.25, 0.8, 0.25, 1)
   }
   
   .help-support-section.animate::before {
     transform: translate(-50%, -50%) scale(1);
     opacity: 1
   }
   
   .help-support-container {
     position: relative;
     z-index: 2;
     max-width: 600px;
     margin: 0 auto
   }
   
   .help-support-content h2 {
     font-family: var(--nl-font-family);
     font-size: 2.5rem;
     font-weight: 700;
     color: #fff;
     margin-bottom: 1.5rem;
     line-height: 1.2;
     overflow: hidden
   }
   
   .help-support-content h2 .letter {
     display: inline-block;
     opacity: 0;
     transform: translateY(50px) rotateX(90deg);
     transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1)
   }
   
   .help-support-section.animate .help-support-content h2 .letter {
     opacity: 1;
     transform: translateY(0) rotateX(0deg)
   }
   
   .help-support-content p {
     font-size: 1.1rem;
     color: #ccc;
     line-height: 1.6;
     margin-bottom: 2rem;
     overflow: hidden
   }
   
   .help-support-content p .word {
     display: inline-block;
     opacity: 0;
     transform: translateY(30px);
     transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
     margin-right: 0.3em
   }
   
   .help-support-section.animate .help-support-content p .word {
     opacity: 0.9;
     transform: translateY(0)
   }
   
   .discord-cta-btn {
     display: inline-flex;
     align-items: center;
     gap: 12px;
     background-color: #f5f5f5;
     color: #333;
     padding: 14px 28px;
     border-radius: 10px;
     text-decoration: none;
     font-family: var(--nl-font-family);
     font-weight: 600;
     font-size: 1rem;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
     opacity: 0;
     transform: translateY(30px) scale(0.9);
     transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
     overflow: hidden;
     position: relative
   }
   
   .discord-cta-btn::before {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
     transition: left 0.6s ease
   }
   
   .help-support-section.animate .discord-cta-btn {
     opacity: 1;
     transform: translateY(0) scale(1);
     transition-delay: 0.7s
   }
   
   .help-support-section.animate .discord-cta-btn::before {
     left: 100%;
     transition-delay: 1.2s
   }
   
   .discord-cta-btn .btn-text {
     display: inline-block;
     opacity: 0;
     transform: translateX(-10px);
     transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1)
   }
   
   .help-support-section.animate .discord-cta-btn .btn-text {
     opacity: 1;
     transform: translateX(0);
     transition-delay: 0.9s
   }
   
   .help-support-section.animate .discord-cta-btn:hover {
     background-color: #e8e8e8;
     transform: translateY(-2px) scale(1.02);
     box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
     text-decoration: none;
     color: #333;
     transition: all 0.3s ease
   }
   
   .discord-cta-btn i {
     font-size: 1.2rem;
     color: #5865f2;
     opacity: 0;
     transform: rotate(-180deg) scale(0.5);
     transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1)
   }
   
   .help-support-section.animate .discord-cta-btn i {
     opacity: 1;
     transform: rotate(0deg) scale(1);
     transition-delay: 0.8s
   }
   
   @media (max-width:768px) {
     .help-support-section {
       padding: 3rem 1rem
     }
   
     .help-support-section::before {
       width: 600px;
       height: 450px
     }
   
     .help-support-content h2 {
       font-size: 2rem;
       margin-bottom: 1.25rem
     }
   
     .help-support-content p {
       font-size: 1rem;
       margin-bottom: 1.75rem
     }
   
     .discord-cta-btn {
       padding: 12px 24px;
       font-size: 0.95rem;
       gap: 10px
     }
   }
   
   @media (max-width:480px) {
     .help-support-section {
       padding: 2.5rem 0.75rem
     }
   
     .help-support-section::before {
       width: 400px;
       height: 350px
     }
   
     .help-support-content h2 {
       font-size: 1.75rem
     }
   
     .help-support-content p {
       font-size: 0.95rem
     }
   
     .discord-cta-btn {
       width: 100%;
       justify-content: center;
       max-width: 280px
     }
   }
   
   .discord-cta-btn:focus {
     outline: 2px solid #5865f2;
     outline-offset: 2px
   }
   
   @media (prefers-reduced-motion:reduce) {
   
     .help-support-section::before,
     .help-support-content h2 .letter,
     .help-support-content p .word,
     .discord-cta-btn,
     .discord-cta-btn i,
     .discord-cta-btn .btn-text,
     .discord-cta-btn::before {
       transition: none;
       transform: none;
       opacity: 1
     }
   
     .help-support-section.animate .discord-cta-btn:hover {
       transform: none
     }
   }
   
   .site-footer {
     font-family: var(--nl-font-family);
     font-size: 12px;
     color: #fff
   }
   
   .site-footer-inner {
     display: flex;
     justify-content: space-between;
     align-items: center;
     max-width: 1200px;
     margin: 0 auto
   }
   
   .site-footer .copyright {
     margin: 0;
     color: #fff
   }
   
   .site-footer .copyright span {
     color: #00c3ff
   }
   
   .site-footer .designed-by {
     display: flex;
     align-items: center;
     text-decoration: none;
     color: #888;
     font-size: 11px
   }
   
   .site-footer .designed-by:hover {
     color: #00c3ff
   }
   
   .site-footer .designed-text {
     margin-right: 6px;
     font-size: 10px
   }
   
   .site-footer .designed-by img {
     height: 16px;
     display: inline-block
   }
   
   .site-footer a {
     text-decoration: none
   }
   
   body {
     overflow: hidden
   }
   
   .page-content {
     opacity: 0;
     transform: translateY(20px);
     transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out
   }
   
   .page-content.loaded {
     opacity: 1;
     transform: translateY(0)
   }
   
   .browse-btn {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     padding: 14px 28px;
     font-family: var(--nl-font-family);
     font-size: 16px;
     font-weight: bold;
     color: #000;
     background: linear-gradient(to right, #e5e5e5, #cfcfcf, #bfbfbf);
     border: none;
     border-radius: 12px;
     cursor: pointer;
     text-decoration: none;
     line-height: 1
   }
   
   .browse-btn svg {
     width: 18px;
     height: 18px;
     stroke: #000;
     stroke-width: 2;
     fill: none
   }
   
   /* Reset and fix the hamburger button with higher specificity */
   .site-header .actions .toggle-navigation {
     position: fixed !important;
     top: 20px !important;
     right: 20px !important;
     left: auto !important;
     z-index: 1002 !important;
     width: 48px !important;
     height: 48px !important;
     padding: 0 !important;
     margin: 0 !important;
     background: rgba(30, 30, 30, 0.95) !important;
     backdrop-filter: blur(10px) !important;
     -webkit-backdrop-filter: blur(10px) !important;
     border: 1px solid rgba(255, 255, 255, 0.1) !important;
     border-radius: 8px !important;
     cursor: pointer !important;
     transition: all 0.3s ease !important;
     display: none !important;
     /* Hidden by default */
     align-items: center !important;
     justify-content: center !important;
     overflow: visible !important;
     box-sizing: border-box !important;
   }
   
   /* Show only on mobile with important */
   @media (max-width: 960px) {
     .site-header .actions .toggle-navigation {
       display: flex !important;
     }
   }
   
   /* Reset any inherited styles on the hamburger icon */
   .toggle-navigation .hamburger-icon {
     position: relative !important;
     width: 24px !important;
     height: 20px !important;
     display: flex !important;
     flex-direction: column !important;
     justify-content: space-between !important;
     pointer-events: none !important;
     margin: 0 !important;
     padding: 0 !important;
     background: transparent !important;
     border: none !important;
   }
   
   /* Hamburger Lines with important to override conflicts */
   .toggle-navigation .hamburger-icon .line {
     display: block !important;
     width: 100% !important;
     height: 2px !important;
     background-color: #ffffff !important;
     border-radius: 2px !important;
     transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
     transform-origin: center !important;
     margin: 0 !important;
     padding: 0 !important;
     border: none !important;
     position: relative !important;
     opacity: 1 !important;
   }
   
   /* Specific line positioning */
   .toggle-navigation .hamburger-icon .line-1 {
     top: 0 !important;
   }
   
   .toggle-navigation .hamburger-icon .line-2 {
     top: auto !important;
     bottom: auto !important;
   }
   
   .toggle-navigation .hamburger-icon .line-3 {
     bottom: 0 !important;
   }
   
   /* Transform to X when navigation is open - with important */
   body.show-navigation .toggle-navigation .hamburger-icon .line-1 {
     transform: translateY(9px) rotate(45deg) !important;
     background-color: #ff4444 !important;
     /* Red color when X */
   }
   
   body.show-navigation .toggle-navigation .hamburger-icon .line-2 {
     opacity: 0 !important;
     transform: scaleX(0) !important;
   }
   
   body.show-navigation .toggle-navigation .hamburger-icon .line-3 {
     transform: translateY(-9px) rotate(-45deg) !important;
     background-color: #ff4444 !important;
     /* Red color when X */
   }
   
   /* Button hover effect with important */
   .toggle-navigation:hover {
     background: inherit !important;
     transform: none !important;
     border-color: inherit !important;
   }
   
   /* Active state with important */
   body.show-navigation .toggle-navigation {
     background: rgba(244, 67, 54, 0.1) !important;
     border-color: rgba(244, 67, 54, 0.3) !important;
   }
   
   /* Remove any ::before or ::after that might interfere */
   .toggle-navigation::before,
   .toggle-navigation::after,
   .hamburger-icon::before,
   .hamburger-icon::after,
   .line::before,
   .line::after {
     display: none !important;
   }
   
   /* Ensure button text is hidden */
   .toggle-navigation span:not(.hamburger-icon):not(.line) {
     display: none !important;
   }
   
   /* Fix z-index stacking */
   .site-header {
     position: relative;
     z-index: 100;
   }
   
   .site-header .actions {
     position: static;
   }
   
   
   /* Accessibility focus state */
   .toggle-navigation:focus {
     outline: 2px solid var(--color-primary) !important;
     outline-offset: 2px !important;
   }
   
   /* Ensure button is clickable */
   .toggle-navigation {
     pointer-events: auto !important;
     user-select: none !important;
     -webkit-tap-highlight-color: transparent !important;
   }
   
   /* Animation for attention on first load */
   @keyframes pulse-attention {
     0% {
       box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
     }
   
     70% {
       box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
     }
   
     100% {
       box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
     }
   }
   
   .toggle-navigation.pulse {
     animation: pulse-attention 2s !important;
   }
   
   .user-avatar {
     width: 20px;
     height: 20px;
     border-radius: 50%;
     display: inline-block;
     vertical-align: middle;
   }
   
   /* ===========================================
      END OF NAVIGATION CSS CLEANUP
      Add your fresh navigation styles below
      =========================================== */
   
   /* ====== NAVIGATION â€” Transparent Clean Layout ====== */
   
   :root {
     --nav-text-default: #ffffff;
     --nav-text-hover: #ffffff;
     --nav-accent: #3b82f6;
   }
   
   /* Navigation Container — base; desktop glass in nl-nav.css */
   .site-navigation {
     background: transparent;
     display: flex;
     align-items: center;
     justify-content: flex-start;
     padding: 0 clamp(20px, 3vw, 48px);
     height: var(--nav-bar-height, 64px);
     gap: 0;
     width: 100%;
     max-width: none;
     box-sizing: border-box;
     border-bottom: none;
   }
   
   /* Logo */
   .nav-logo-container {
     display: flex;
     align-items: center;
     flex-shrink: 0;
     height: 100%;
     margin-right: var(--nl-nav-logo-gap, 14px);
   }

   .nav-logo-link {
     display: inline-flex;
     align-items: center;
     line-height: 0;
   }
   
   .nav-logo {
     height: clamp(44px, 4.25vw, 52px);
     width: auto;
     display: block;
   }
   
   /* Navbar typography — Satoshi; layout unchanged */
   .site-navigation,
   .site-navigation .menu,
   .site-navigation .navigation-list {
     font-family: var(--nl-nav-font);
     -webkit-font-smoothing: antialiased;
     -moz-osx-font-smoothing: grayscale;
     text-rendering: optimizeLegibility;
   }

   .site-navigation.navigation-horizontal .menu {
     font-size: var(--nl-nav-font-size);
     font-weight: 500;
     font-synthesis: none;
     line-height: var(--nl-nav-line-height);
     letter-spacing: var(--nl-nav-letter-spacing);
   }

   /* Navigation list (horizontal: flex-start + spacer pushes utilities right; vertical unchanged) */
   .navigation-list {
     list-style: none;
     margin: 0;
     padding: 0;
     display: flex;
     align-items: center;
     gap: 0;
     flex: 1;
     justify-content: flex-start;
     min-width: 0;
     height: 100%;
   }

   .site-navigation .currency-nav-item,
   .site-navigation .user-nav-item,
   .site-navigation .login-nav-item,
   .site-navigation .basket-nav-item {
     display: flex;
     align-items: center;
     margin-left: 0;
   }
   
   .navigation-vertical .navigation-list {
     flex-direction: column;
     align-items: stretch;
   }
   
   .navigation-vertical .nav-list-spacer,
   .navigation-vertical .nav-rail-divider {
     display: none;
   }
   
   /* Navigation Items */
   .navigation-list>li {
     position: relative;
   }
   
   .navigation-list>li>a {
     display: inline-flex;
     align-items: center;
     gap: 0;
     color: var(--nl-nav-link-color);
     text-decoration: none;
     padding: 6px 10px;
     min-height: 34px;
     box-sizing: border-box;
     font-family: var(--nl-nav-font);
     font-size: var(--nl-nav-font-size);
     font-weight: 500;
     font-synthesis: none;
     letter-spacing: var(--nl-nav-letter-spacing);
     line-height: var(--nl-nav-line-height);
     transition: var(--nl-nav-motion);
     white-space: nowrap;
     background: transparent;
     border-radius: 6px;
     border: 1px solid transparent;
     -webkit-font-smoothing: antialiased;
     -moz-osx-font-smoothing: grayscale;
   }
   
   .navigation-list>li>a svg,
   .navigation-list>li>a .home-icon,
   .navigation-list>li>a .escrow-icon,
   .navigation-list>li>a .opensource-icon,
   .navigation-list>li>a .templates-icon,
   .navigation-list>li>a .bundel-icon {
     width: 14px;
     height: 14px;
     min-width: 14px;
     flex-shrink: 0;
     margin-right: 6px;
     color: inherit;
     opacity: 0.72;
     transition: var(--nl-nav-motion);
   }

   .navigation-list>li>a svg path,
   .navigation-list>li>a svg [stroke] {
     stroke-width: 1;
   }
   
   .navigation-list>li>a > i.fa-solid,
   .navigation-list>li>a i {
     font-size: 12px;
     width: 14px;
     min-width: 14px;
     height: 14px;
     margin-right: 6px;
     color: inherit;
     opacity: 0.72;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     line-height: 1;
     transition: var(--nl-nav-motion);
   }
   
   .navigation-list>li>a:not(.btn-fivem-login):hover {
     color: var(--nl-nav-link-color-hover);
     background: rgba(255, 255, 255, 0.03);
     border-color: transparent;
   }

   .navigation-list>li>a:hover svg,
   .navigation-list>li>a:hover > i.fa-solid,
   .navigation-list>li>a:hover i {
     opacity: 0.92;
   }
   
   /* Active link */
   .navigation-list .link-active {
     color: var(--nl-nav-link-color-active);
     background: rgba(255, 255, 255, 0.035);
     border-color: transparent;
     font-weight: 500;
   }

   .navigation-list .link-active svg,
   .navigation-list .link-active > i.fa-solid,
   .navigation-list .link-active i {
     opacity: 0.95;
   }

   .navigation-list .link-active:hover {
     background: rgba(255, 255, 255, 0.045);
     color: var(--nl-nav-link-color-active);
   }

   /* Override shared.css horizontal nav hover/active primary color */
   .site-navigation.navigation-horizontal .navigation-list > li > a:not(.user-dropdown-item):hover {
     color: var(--nl-nav-link-color-hover) !important;
   }

   .site-navigation.navigation-horizontal .navigation-list > li > a:not(.user-dropdown-item).link-active {
     color: var(--nl-nav-link-color-active) !important;
   }
   
   /* Focus State */
   .navigation-list>li>a:focus,
   .navigation-list>li>a:focus-visible,
   .navigation-list .link-active:focus,
   .navigation-list .link-active:focus-visible,
   .site-navigation .menu li > a:focus,
   .site-navigation .menu li > a:focus-visible {
     outline: none !important;
     outline-offset: 0;
     border: none !important;
     box-shadow: none !important;
   }
   
   /* Right Side Actions Container */
   .navigation-list .push-right {
     margin-left: auto;
     display: flex;
     align-items: center;
     gap: 12px;
   }
   
   /* User / login / basket: DOM order = â€¦ currency, account, cart (cart rightmost) */
   .user-nav-item,
   .login-nav-item {
     flex-shrink: 0;
     position: relative;
     z-index: 10001;
     overflow: visible;
   }
   
   .site-navigation.navigation-horizontal .user-nav-item,
   .site-navigation.navigation-horizontal .login-nav-item {
     margin-left: 0;
   }
   
   .basket-nav-item {
     flex-shrink: 0;
   }
   
   .site-navigation.navigation-horizontal .basket-nav-item {
     margin-left: 0;
   }
   
   /* Header row (currency + mobile cart on small viewports): align with nav utility spacing */
   @media (min-width: 961px) {
     .site-header-inner .actions {
       gap: 12px;
     }
   }
   
   /* ---- Currency selector (nav + header) ---- */
   .currency-nav-item {
     list-style: none;
     flex-shrink: 0;
     position: relative;
   }
   
   .site-navigation.navigation-horizontal .currency-nav-item {
     margin-left: 0;
   }
   
   .currency-selector {
     position: relative;
     z-index: 10002;
   }
   
   .currency-selector__toggle {
     box-sizing: border-box;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 4px;
     height: var(--nav-util-height, 40px);
     min-height: var(--nav-util-height, 40px);
     padding: 0 10px;
     border-radius: var(--nav-util-radius, 8px);
     border: 1px solid var(--nav-util-border);
     background: var(--nav-util-surface-bg);
     box-shadow: none;
     color: var(--nav-util-text);
     font-family: var(--nl-nav-font);
     font-size: 12px;
     font-weight: 500;
     letter-spacing: var(--nl-nav-letter-spacing);
     line-height: var(--nl-nav-line-height);
     cursor: pointer;
     transition: var(--nl-nav-motion);
     -webkit-font-smoothing: antialiased;
     -moz-osx-font-smoothing: grayscale;
   }
   
   .currency-selector__toggle:hover {
     background: var(--nav-util-surface-hover-bg);
     border-color: rgba(255, 255, 255, 0.055);
     color: var(--nav-util-text-hover);
   }
   
   .currency-selector__toggle:focus-visible {
     outline: 1px solid rgba(255, 255, 255, 0.28);
     outline-offset: 2px;
   }
   
   .currency-selector__toggle .currency-icon {
     width: 14px;
     height: 14px;
     color: inherit;
     stroke: currentColor;
     flex-shrink: 0;
   }
   
   .currency-selector__toggle .currency-selector__caret {
     width: 9px;
     height: 9px;
     color: inherit;
     opacity: 0.7;
     stroke: currentColor;
   }
   
   .currency-selector__toggle:hover .currency-selector__caret {
     opacity: 1;
   }
   
   .currency-selector.open .currency-selector__toggle {
     background: var(--nav-util-surface-hover-bg);
     border-color: rgba(255, 255, 255, 0.055);
     color: var(--nav-util-text-hover);
   }
   
   .currency-selector.open .currency-selector__toggle .currency-selector__caret {
     opacity: 1;
   }
   
   .currency-selector__code {
     letter-spacing: 0.04em;
     color: inherit;
   }
   
   .currency-selector__caret {
     flex-shrink: 0;
     transition: transform 0.2s ease;
   }
   
   .currency-selector.open .currency-selector__caret {
     transform: rotate(180deg);
   }
   
   /* Currency dropdown â€” compact panel (narrow list, small type) */
   .currency-dropdown {
     display: none;
     position: absolute;
     top: calc(100% + 5px);
     right: 0;
     width: max-content;
     min-width: 148px;
     max-width: min(220px, calc(100vw - 24px));
     padding: 3px;
     border-radius: 7px;
     background: #141416;
     border: 1px solid rgba(255, 255, 255, 0.07);
     box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
     z-index: 10002;
   }
   
   .currency-selector.open .currency-dropdown {
     display: flex;
     flex-direction: column;
     gap: 1px;
   }
   
   .currency-dropdown__item {
     display: flex;
     align-items: center;
     gap: 6px;
     width: 100%;
     padding: 4px 7px;
     border: none;
     border-radius: 4px;
     background: transparent;
     color: rgba(255, 255, 255, 0.78);
     font-family: var(--nl-nav-font);
     font-size: 11px;
     font-weight: 500;
     text-align: left;
     cursor: pointer;
     font-family: inherit;
     transition: background 0.15s ease, color 0.15s ease;
   }
   
   .currency-dropdown__item:hover {
     background: rgba(255, 255, 255, 0.08);
     color: #fff;
   }
   
   .currency-dropdown__item:focus {
     outline: none;
   }
   
   .currency-dropdown__item:focus-visible {
     background: rgba(255, 255, 255, 0.08);
     box-shadow: 0 0 0 2px rgba(96, 165, 250, 0.35);
   }
   
   .currency-dropdown__item--active {
     background: rgba(59, 130, 246, 0.15);
     color: #fff;
   }
   
   .currency-dropdown__item--active:hover {
     background: rgba(59, 130, 246, 0.22);
     color: #fff;
   }
   
   .currency-dropdown__code {
     flex-shrink: 0;
     font-size: 12px;
     font-weight: 700;
     letter-spacing: 0.03em;
     color: #fff;
     line-height: 1.25;
   }
   
   .currency-dropdown__name {
     font-size: 10px;
     color: #9ca3af;
     font-weight: 400;
     line-height: 1.25;
     flex: 1;
     min-width: 0;
   }
   
   .currency-dropdown__item--active .currency-dropdown__name {
     color: #9ca3af;
   }
   
   .currency-dropdown__check {
     margin-left: auto;
     flex-shrink: 0;
     width: 12px;
     height: 12px;
     color: #60a5fa;
     stroke: currentColor;
   }
   
   /* Header strip: show when sidebar nav (no top nav) or mobile horizontal */
   .site-header-currency {
     display: none;
     align-items: center;
     flex-shrink: 0;
   }
   
   body.is-navigation-vertical .site-header-currency {
     display: flex;
   }
   
   @media (max-width: 960px) {
     body.is-navigation-horizontal .site-header-currency {
       display: flex;
     }
   
     body.is-navigation-horizontal .site-navigation.navigation-horizontal .currency-nav-item {
       display: none !important;
     }
   }
   
   body.is-navigation-vertical .site-navigation.navigation-vertical .currency-nav-item {
     display: none !important;
   }
   
   /* Home Icon Styling */
   .home-icon {
     width: 16px;
     height: 16px;
     display: inline-block;
     margin-right: 12px;
     color: inherit;
     transition: color 0.2s ease;
   }
   
   /* Escrow Icon Styling */
   .escrow-icon {
     width: 16px;
     height: 16px;
     display: inline-block;
     margin-right: 12px;
     color: inherit;
     transition: color 0.2s ease;
   }
   
   /* Open Source Icon Styling */
   .opensource-icon {
     width: 16px;
     height: 16px;
     display: inline-block;
     margin-right: 12px;
     color: inherit;
     transition: color 0.2s ease;
   }
   
   .navigation-list>li>a .home-icon,
   .navigation-list>li>a .escrow-icon,
   .navigation-list>li>a .opensource-icon,
   .navigation-list>li>a .templates-icon {
     margin-right: 8px;
   }
   
   /* Cart â€” same surface as currency / profile */
   .site-navigation .nav-basket-btn {
     position: relative;
     box-sizing: border-box;
     width: var(--nav-util-height, 40px);
     height: var(--nav-util-height, 40px);
     min-width: var(--nav-util-height, 40px);
     min-height: var(--nav-util-height, 40px);
     padding: 0;
     margin: 0;
     border-radius: var(--nav-util-radius, 8px);
     border: 1px solid var(--nav-util-border);
     background: var(--nav-util-surface-bg);
     box-shadow: none;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     line-height: 0;
     cursor: pointer;
     transition: var(--nl-nav-motion);
     color: var(--nav-util-text);
   }
   
   .site-navigation .nav-basket-btn .cart-icon {
     width: 18px;
     height: 18px;
     display: block;
     margin: 0;
     flex-shrink: 0;
     color: inherit;
     fill: currentColor;
   }
   
   .site-navigation .nav-basket-btn:hover {
     background: var(--nav-util-surface-hover-bg);
     border-color: rgba(255, 255, 255, 0.055);
     color: var(--nav-util-text-hover);
   }
   
   .site-navigation .nav-basket-btn:focus-visible {
     outline: 1px solid rgba(255, 255, 255, 0.28);
     outline-offset: 2px;
   }
   
   /* Tebex cart uses .btn-primary â€” neutralize to match utility rail */
   .site-navigation .nav-basket-btn.btn-primary {
     display: inline-flex !important;
     width: var(--nav-util-height, 40px) !important;
     min-width: var(--nav-util-height, 40px) !important;
     height: var(--nav-util-height, 40px) !important;
     line-height: 0 !important;
     padding: 0 !important;
     --btn-color-text: var(--nav-util-text) !important;
     --btn-color-bg: var(--nav-util-surface-bg) !important;
     --btn-color-text-hover: var(--nav-util-text-hover) !important;
     --btn-color-bg-hover: var(--nav-util-surface-hover-bg) !important;
     background-color: var(--nav-util-surface-bg) !important;
     color: var(--nav-util-text) !important;
     border: 1px solid var(--nav-util-border) !important;
     box-shadow: none !important;
     filter: none !important;
   }
   
   .site-navigation .nav-basket-btn.btn-primary:hover,
   .site-navigation .nav-basket-btn.btn-primary:focus {
     background-color: var(--nav-util-surface-hover-bg) !important;
     border-color: rgba(255, 255, 255, 0.08) !important;
     color: var(--nav-util-text-hover) !important;
     box-shadow: none !important;
   }
   
   /* Basket Count Badge - Small number badge */
   #nav-basket-count {
     position: absolute;
     top: 4px;
     right: 4px;
     min-width: 16px;
     height: 16px;
     padding: 0 4px;
     border-radius: 8px;
     background: #ef4444;
     color: #fff;
     font-family: var(--nl-nav-font);
     font-size: 10px;
     font-weight: 600;
     letter-spacing: -0.01em;
     display: flex;
     align-items: center;
     justify-content: center;
     line-height: 1;
   }
   
   /* Login Button - Premium Light Design */
   .btn-fivem-login {
     display: inline-flex !important;
     align-items: center !important;
     gap: 8px !important;
     height: var(--nav-util-height, 36px) !important;
     min-width: 168px !important;
     padding: 0 14px !important;
     background: #E9E9EA !important;
     color: #111 !important;
     border: 1px solid #D6D6D8 !important;
     border-radius: 12px !important;
     box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06) !important;
     cursor: pointer !important;
     text-decoration: none !important;
     font-family: var(--nl-nav-font) !important;
     font-size: var(--nl-nav-font-size) !important;
     font-weight: var(--nl-nav-font-weight) !important;
     line-height: var(--nl-nav-line-height) !important;
     letter-spacing: var(--nl-nav-letter-spacing) !important;
     -webkit-font-smoothing: antialiased;
     -moz-osx-font-smoothing: grayscale;
     white-space: nowrap !important;
     transition: opacity 0.18s ease !important;
     min-height: var(--nav-util-height, 36px) !important;
     flex-shrink: 0 !important;
   }

   .btn-fivem-login:hover,
   .btn-fivem-login:focus-visible {
     background: #E9E9EA !important;
     color: #111 !important;
     border-color: #D6D6D8 !important;
     box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06) !important;
     opacity: 0.82;
     transform: none !important;
     filter: none !important;
   }

   .btn-fivem-login:hover .login-text,
   .btn-fivem-login:focus-visible .login-text,
   .btn-fivem-login:hover .fivem-logo,
   .btn-fivem-login:focus-visible .fivem-logo {
     color: #111 !important;
     opacity: 1;
   }

   .site-navigation .btn-fivem-login:hover,
   .site-navigation .btn-fivem-login:focus,
   .site-navigation .btn-fivem-login:active {
     background: #E9E9EA !important;
     color: #111 !important;
     opacity: 0.82;
     transform: none !important;
   }
   
   .btn-fivem-login:focus-visible {
     outline: 2px solid #111;
     outline-offset: 3px;
   }
   
   .btn-fivem-login[disabled],
   .btn-fivem-login.is-disabled {
     opacity: 0.55;
     cursor: not-allowed;
     pointer-events: none;
   }
   
   /* Loading State */
   .btn-fivem-login.is-loading {
     opacity: 0.7;
     pointer-events: none;
   }
   
   .btn-fivem-login.is-loading .fivem-logo {
     display: none;
   }
   
   .btn-fivem-login.is-loading::before {
     content: "";
     width: 16px;
     height: 16px;
     border: 2px solid #111;
     border-top: 2px solid transparent;
     border-radius: 50%;
     animation: spin 1s linear infinite;
     margin-right: 8px;
     flex-shrink: 0;
   }
   
   .btn-fivem-login.is-loading .login-text {
     opacity: 0.8;
   }
   
   @keyframes spin {
     0% {
       transform: rotate(0deg);
     }
   
     100% {
       transform: rotate(360deg);
     }
   }
   
   /* FiveM Logo */
   .fivem-logo {
     display: flex !important;
     align-items: center !important;
     justify-content: center !important;
   }
   
   .fivem-logo svg {
     width: 16px !important;
     height: 16px !important;
     display: block !important;
     flex-shrink: 0 !important;
     overflow: visible !important;
   }
   
   .fivem-logo svg path {
     fill: currentColor !important;
   }
   
   .login-text {
     font-size: 13px !important;
     font-weight: 500 !important;
     line-height: 1 !important;
     color: #111 !important;
     white-space: nowrap !important;
     flex-shrink: 0 !important;
   }
   
   /* RTL Support */
   [dir="rtl"] .btn-fivem-login {
     flex-direction: row-reverse;
   }
   
   /* User profile pill â€” same surface + radius as currency toggle */
   .user-profile-nav {
     position: relative;
     box-sizing: border-box;
     height: var(--nav-util-height, 40px);
     min-height: var(--nav-util-height, 40px);
     padding: 0 var(--nav-util-pad-x, 12px);
     border-radius: var(--nav-util-radius, 8px);
     background: var(--nav-util-surface-bg);
     border: 1px solid var(--nav-util-border);
     box-shadow: none;
     display: inline-flex;
     align-items: center;
     gap: 6px;
     cursor: pointer;
     transition: var(--nl-nav-motion);
     text-decoration: none;
     color: var(--nav-util-text);
     font-family: var(--nl-nav-font);
     font-size: 12px;
     font-weight: 500;
     letter-spacing: var(--nl-nav-letter-spacing);
     line-height: var(--nl-nav-line-height);
     white-space: nowrap;
     -webkit-font-smoothing: antialiased;
     -moz-osx-font-smoothing: grayscale;
   }
   
   .user-profile-nav:hover {
     background: var(--nav-util-surface-hover-bg);
     border-color: rgba(255, 255, 255, 0.055);
     color: var(--nav-util-text-hover);
   }
   
   .user-profile-nav:focus-visible {
     outline: 1px solid rgba(255, 255, 255, 0.28);
     outline-offset: 2px;
   }
   
   .user-icon {
     font-size: 14px;
     width: 14px;
     height: 14px;
     color: inherit;
   }
   
   .user-name-nav {
     font-family: inherit;
     font-size: inherit;
     font-weight: inherit;
     letter-spacing: inherit;
     line-height: inherit;
     color: inherit;
   }
   
   .brand-caret {
     font-size: 12px;
     width: 12px;
     height: 12px;
     color: inherit;
     opacity: 0.7;
     transition: transform 0.2s ease, opacity 0.2s ease;
   }
   
   .user-profile-nav:hover .brand-caret {
     opacity: 1;
   }
   
   .user-profile-nav.open {
     background: var(--nav-util-surface-hover-bg);
     border-color: rgba(255, 255, 255, 0.055);
     color: var(--nav-util-text-hover);
   }
   
   .user-profile-nav.open .brand-caret {
     opacity: 1;
     transform: rotate(180deg);
   }
   
   /* User dropdown â€” same panel + row hover treatment as .currency-dropdown */
   .user-dropdown-menu {
     position: absolute;
     right: 0;
     top: calc(100% + 5px);
     min-width: 176px;
     padding: 3px;
     border-radius: 7px;
     background: #141416;
     border: 1px solid rgba(255, 255, 255, 0.07);
     box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
     display: none;
     flex-direction: column;
     gap: 1px;
     z-index: 10000;
   }
   
   /* Pointer bridge above menu (still part of menu â†’ outside-click / toggle logic stay correct) */
   .user-profile-nav.open .user-dropdown-menu::before {
     content: '';
     position: absolute;
     left: 0;
     right: 0;
     bottom: 100%;
     height: 12px;
   }
   
   .user-profile-nav.open .user-dropdown-menu {
     display: flex;
   }
   
   /* Higher specificity than shared.css `.navigation-horizontal a { display:block }` */
   .site-navigation .user-dropdown-menu .user-dropdown-item,
   .user-dropdown-item {
     display: flex;
     /* DOM order is icon then copy; reverse main axis so icon sits on the right */
     flex-direction: row-reverse;
     flex-wrap: nowrap;
     align-items: center;
     gap: 10px;
     padding: 5px 8px;
     border-radius: 4px;
     color: #e5e7eb;
     text-decoration: none;
     font-size: 12px;
     font-weight: 500;
     font-family: var(--nl-font-family);
     transition: background 0.15s ease, color 0.15s ease;
   }
   
   .user-dropdown-item i {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     font-size: 12px;
     color: #9ca3af;
     width: 18px;
     min-width: 18px;
     flex-shrink: 0;
     text-align: center;
     transition: color 0.15s ease;
   }
   
   .user-dropdown-item-content {
     display: flex;
     flex-direction: column;
     gap: 0;
     flex: 1;
     min-width: 0;
   }
   
   .user-dropdown-item-title {
     font-size: 12px;
     font-weight: 700;
     color: #fff;
     line-height: 1.25;
     letter-spacing: 0.02em;
   }
   
   .user-dropdown-item-subtitle {
     font-size: 10px;
     font-weight: 400;
     color: #9ca3af;
     line-height: 1.25;
   }
   
   /* Same row hover as .currency-dropdown__item */
   .user-dropdown-item:hover {
     background: rgba(255, 255, 255, 0.08);
     color: #fff;
   }
   
   .user-dropdown-item:hover i {
     color: #d1d5db;
   }
   
   .user-dropdown-item:hover .user-dropdown-item-title {
     color: #fff;
   }
   
   .user-dropdown-item:hover .user-dropdown-item-subtitle {
     color: #9ca3af;
   }
   
   .user-dropdown-item:focus {
     outline: none;
   }
   
   .user-dropdown-item:focus-visible {
     background: rgba(255, 255, 255, 0.08);
     box-shadow: 0 0 0 2px rgba(96, 165, 250, 0.35);
   }
   
   .user-dropdown-item.logout:hover i {
     color: #ef4444;
   }
   
   .user-dropdown-item.logout {
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     margin-top: 3px;
     padding-top: 6px;
   }
   
   .user-dropdown-item.logout i {
     color: #ef4444;
   }
   
   /* Hide subcategory toggles and submenus in horizontal nav */
   .navigation-list .has-children .toggle {
     display: none;
   }
   
   .navigation-list .has-children>ul {
     display: none;
   }
   
   /* Hide Discord link */
   .navigation-list .discord-link {
     display: none;
   }
   
   /* Close navigation button (mobile) */
   .close-navigation {
     display: none;
   }
   
   /* Responsive */
   @media (max-width: 1024px) {
     .site-navigation {
       padding: 0 16px;
       gap: 16px;
     }
   
     .navigation-list {
       gap: 16px;
     }
   
     .navigation-list>li>a {
       padding: 6px 10px;
       font-size: 14px;
       font-weight: 500;
       letter-spacing: var(--nl-nav-letter-spacing);
     }
   }
   
   @media (max-width: 768px) {
     /* Horizontal strip: keep scroll for many links but donâ€™t clip account/currency dropdowns */
     .site-navigation.navigation-horizontal .navigation-list {
       overflow-x: auto;
       overflow-y: visible;
       justify-content: flex-start;
       scrollbar-width: none;
       -ms-overflow-style: none;
       gap: 12px;
     }
   
     .site-navigation.navigation-horizontal .navigation-list::-webkit-scrollbar {
       display: none;
     }
   
     .site-navigation.navigation-horizontal .user-nav-item,
     .site-navigation.navigation-horizontal .currency-nav-item {
       position: relative;
       z-index: 10002;
     }
   
     .site-navigation {
       height: 48px;
     }
   
     .site-navigation .nav-basket-btn {
       width: var(--nav-util-height, 40px);
       height: var(--nav-util-height, 40px);
       min-width: var(--nav-util-height, 40px);
       min-height: var(--nav-util-height, 40px);
     }
   
     .site-navigation .nav-basket-btn .cart-icon {
       width: 20px;
       height: 20px;
     }
   
     /* Login Button Mobile */
     .btn-fivem-login {
       height: 52px;
       padding: 0 19px;
       font-size: 15px;
       gap: 10px;
     }
   
     .fivem-logo svg {
       width: 20px;
       height: 20px;
     }
   
     .login-text {
       font-size: 15px;
     }
   
     /* User profile: keep same rail height as currency / cart */
     .user-profile-nav {
       height: var(--nav-util-height, 40px);
       min-height: var(--nav-util-height, 40px);
       padding: 0 12px;
       font-size: 13px;
     }
   }
   
   /* ============================================
      BASKET DRAWER â€” LOGIN STATE
      When user is logged out, Tebex renders username.html
      content inside the basket-popup drawer. Style it to
      match the site's premium dark-glass + teal vibe.
      ============================================ */
   
   /* Drawer background + layout when it contains login content */
   .basket-popup-content:has(.btn-fivem-login),
   .basket-popup-content.store-form,
   .basket-popup-content.text-content,
   .basket-popup-content .store-form,
   .basket-popup-content .text-content {
     color: #f5f5f7 !important;
   }
   
   /* Drawer itself: center the login card vertically + horizontally */
   .basket-popup-content:has(.btn-fivem-login) {
     background:
       radial-gradient(120% 60% at 50% 20%, rgb(from var(--theme-accent, #4db8a8) r g b / 0.35) 0%, transparent 55%),
       linear-gradient(180deg, #141618 0%, #0f1012 100%) !important;
     color: #f5f5f7 !important;
     justify-content: center !important;
     align-items: center !important;
     padding: 24px !important;
   }
   
   /* The inner <main data-popup> from username.html â€” centered card */
   .basket-popup-content:has(.btn-fivem-login) > main,
   .basket-popup-content:has(.btn-fivem-login) .store-text,
   .basket-popup-content:has(.btn-fivem-login) .store-form.text-content {
     display: flex !important;
     flex-direction: column !important;
     align-items: center !important;
     justify-content: center !important;
     flex: 0 0 auto !important;
     width: 100% !important;
     max-width: 380px !important;
     margin: 0 auto !important;
     padding: 36px 28px !important;
     text-align: center !important;
     background: rgba(255, 255, 255, 0.03) !important;
     border: 1px solid rgba(255, 255, 255, 0.06) !important;
     border-radius: 18px !important;
     box-shadow:
       0 24px 60px rgba(0, 0, 0, 0.45),
       inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
     -webkit-backdrop-filter: blur(6px);
     backdrop-filter: blur(6px);
     min-height: 0 !important;
   }
   
   /* Heading */
   .basket-popup-content h1,
   .basket-popup-content h2,
   .basket-popup-content h3,
   .basket-popup-content .store-text h2 {
     color: #ffffff !important;
     font-family: var(--nl-font-family) !important;
     font-size: 24px !important;
     font-weight: 700 !important;
     line-height: 1.2 !important;
     letter-spacing: -0.2px !important;
     margin: 0 0 10px 0 !important;
     text-align: center !important;
     width: 100%;
   }
   
   /* Auto subtitle under the heading */
   .basket-popup-content .store-form h2::after,
   .basket-popup-content main > h2::after {
     content: "Sign in with your FiveM account to continue";
     display: block;
     margin-top: 8px;
     color: rgba(245, 245, 247, 0.6);
     font-size: 13px;
     font-weight: 400;
     letter-spacing: 0;
     line-height: 1.5;
   }
   
   /* Teal lock-icon badge above the heading */
   .basket-popup-content:has(.btn-fivem-login) > main::before,
   .basket-popup-content:has(.btn-fivem-login) .store-form::before {
     content: "";
     display: block;
     width: 56px;
     height: 56px;
     margin: 0 auto 18px;
     border-radius: 16px;
     background-color: var(--theme-accent, #4db8a8);
     background-image:
       url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><rect x='4' y='11' width='16' height='10' rx='2' ry='2'/><path d='M8 11V8a4 4 0 0 1 8 0v3'/></svg>"),
       linear-gradient(135deg, var(--theme-accent, #4db8a8) 0%, var(--theme-accent-hover, #3a9486) 100%);
     background-size: 28px 28px, 100% 100%;
     background-position: center, center;
     background-repeat: no-repeat, no-repeat;
     border: 1px solid rgba(255, 255, 255, 0.18);
     box-shadow:
       0 12px 32px rgb(from var(--theme-accent, #4db8a8) r g b / 0.35),
       inset 0 1px 0 rgba(255, 255, 255, 0.22);
     flex-shrink: 0;
   }
   
   /* Field wrapper around the login button */
   .basket-popup-content:has(.btn-fivem-login) p.field,
   .basket-popup-content:has(.btn-fivem-login) .field {
     width: 100% !important;
     max-width: 100% !important;
     margin: 22px auto 0 !important;
     padding: 0 !important;
     text-align: center !important;
     display: flex !important;
     justify-content: center !important;
   }
   
   /* The FiveM login button â€” teal gradient premium */
   .basket-popup-content .btn-fivem-login,
   .basket-popup-content a.btn-primary.btn-fivem-login,
   .basket-popup-content a.btn-fivem-login {
     display: inline-flex !important;
     align-items: center !important;
     justify-content: center !important;
     gap: 10px !important;
     width: 100% !important;
     max-width: 320px !important;
     min-width: 0 !important;
     height: 52px !important;
     padding: 0 22px !important;
     margin: 0 auto !important;
     background: linear-gradient(135deg, var(--theme-accent, #4db8a8) 0%, var(--theme-accent-hover, #3a9486) 100%) !important;
     color: #ffffff !important;
     border: 1px solid rgba(255, 255, 255, 0.14) !important;
     border-radius: 12px !important;
     box-shadow:
       0 10px 24px rgb(from var(--theme-accent, #4db8a8) r g b / 0.35),
       inset 0 1px 0 rgba(255, 255, 255, 0.18) !important;
     font-family: var(--nl-font-family) !important;
     font-size: 14px !important;
     font-weight: 600 !important;
     line-height: 1 !important;
     letter-spacing: 0.2px !important;
     white-space: nowrap !important;
     text-decoration: none !important;
     cursor: pointer !important;
     transition: transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1),
                 box-shadow 0.25s ease,
                 background 0.25s ease !important;
   }
   
   .basket-popup-content .btn-fivem-login:hover,
   .basket-popup-content a.btn-primary.btn-fivem-login:hover {
     background: linear-gradient(135deg, #5ac9b8 0%, #43a698 100%) !important;
     transform: translateY(-1px) !important;
     box-shadow:
       0 14px 30px rgb(from var(--theme-accent, #4db8a8) r g b / 0.35),
       inset 0 1px 0 rgba(255, 255, 255, 0.22) !important;
   }
   
   .basket-popup-content .btn-fivem-login:active,
   .basket-popup-content a.btn-primary.btn-fivem-login:active {
     transform: translateY(0) !important;
     box-shadow:
       0 6px 16px rgb(from var(--theme-accent, #4db8a8) r g b / 0.35),
       inset 0 1px 0 rgba(255, 255, 255, 0.12) !important;
   }
   
   .basket-popup-content .btn-fivem-login .login-text,
   .basket-popup-content .btn-fivem-login .provider-text,
   .basket-popup-content a.btn-primary.btn-fivem-login .login-text,
   .basket-popup-content a.btn-primary.btn-fivem-login .provider-text {
     color: #ffffff !important;
     font-size: 14px !important;
     font-weight: 600 !important;
     letter-spacing: 0.1px !important;
   }
   
   .basket-popup-content .btn-fivem-login .provider-text,
   .basket-popup-content a.btn-primary.btn-fivem-login .provider-text {
     font-weight: 700 !important;
   }
   
   .basket-popup-content .btn-fivem-login svg,
   .basket-popup-content .btn-fivem-login .logo,
   .basket-popup-content .btn-fivem-login .fivem-logo svg,
   .basket-popup-content a.btn-primary.btn-fivem-login svg {
     width: 18px !important;
     height: 18px !important;
     fill: #ffffff !important;
     color: #ffffff !important;
     flex-shrink: 0 !important;
   }
   
   .basket-popup-content .btn-fivem-login svg path,
   .basket-popup-content a.btn-primary.btn-fivem-login svg path {
     fill: #ffffff !important;
   }
   
   /* Close button inside basket drawer login view */
   .basket-popup-content .popup-close {
     position: absolute !important;
     top: 18px !important;
     right: 18px !important;
     width: 38px !important;
     height: 38px !important;
     padding: 0 !important;
     background-color: rgba(22, 22, 25, 0.72) !important;
     background-image:
       url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><line x1='17' y1='7' x2='7' y2='17'/><line x1='7' y1='7' x2='17' y2='17'/></svg>") !important;
     background-size: 16px 16px !important;
     background-position: center !important;
     background-repeat: no-repeat !important;
     border: 1px solid rgba(255, 255, 255, 0.1) !important;
     border-radius: 10px !important;
     color: transparent !important;
     font-size: 0 !important;
     line-height: 0 !important;
     opacity: 1 !important;
     cursor: pointer !important;
     -webkit-backdrop-filter: blur(14px) saturate(140%) !important;
     backdrop-filter: blur(14px) saturate(140%) !important;
     box-shadow:
       0 6px 18px rgba(0, 0, 0, 0.35),
       inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
     transition: background-color 0.2s ease,
                 border-color 0.2s ease,
                 transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1),
                 box-shadow 0.25s ease !important;
     z-index: 10 !important;
   }
   
   .basket-popup-content .popup-close::before,
   .basket-popup-content .popup-close::after {
     content: none !important;
     display: none !important;
   }
   
   .basket-popup-content .popup-close:hover {
     background-color: rgba(32, 32, 36, 0.88) !important;
     border-color: rgba(255, 255, 255, 0.22) !important;
     transform: scale(1.06) !important;
     box-shadow:
       0 8px 22px rgba(0, 0, 0, 0.45),
       inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
   }
   
   .basket-popup-content .popup-close:active {
     transform: scale(0.94) !important;
   }
   
   .basket-popup-content .popup-close:focus-visible {
     outline: 2px solid rgb(from var(--theme-accent, #4db8a8) r g b / 0.35) !important;
     outline-offset: 2px !important;
   }
   /* Fallback IGN login form inside basket drawer */
   .basket-popup-content .ign-login-form {
     display: flex !important;
     flex-direction: column !important;
     gap: 10px !important;
     margin: 24px auto 0 !important;
     width: 100% !important;
     max-width: 320px !important;
   }
   
   .basket-popup-content .ign-login-form input {
     width: 100% !important;
     height: 48px !important;
     padding: 0 16px !important;
     background: rgba(255, 255, 255, 0.05) !important;
     border: 1px solid rgba(255, 255, 255, 0.12) !important;
     border-radius: 10px !important;
     color: #f5f5f7 !important;
     font-size: 14px !important;
     transition: border-color 0.2s ease, background 0.2s ease !important;
   }
   
   .basket-popup-content .ign-login-form input::placeholder {
     color: rgba(245, 245, 247, 0.4);
   }
   
   .basket-popup-content .ign-login-form input:focus {
     outline: none !important;
     border-color: rgb(from var(--theme-accent, #4db8a8) r g b / 0.35) !important;
     background: rgba(255, 255, 255, 0.08) !important;
   }
   
   .basket-popup-content .ign-login-form button {
     width: 100% !important;
     height: 48px !important;
     background: linear-gradient(135deg, var(--theme-accent, #4db8a8) 0%, var(--theme-accent-hover, #3a9486) 100%) !important;
     color: #fff !important;
     border: none !important;
     border-radius: 10px !important;
     font-weight: 600 !important;
     cursor: pointer !important;
   }
   
   /* Small screens */
   @media (max-width: 520px) {
     .basket-popup-content > main,
     .basket-popup-content .store-text,
     .basket-popup-content .store-form.text-content {
       padding: 40px 20px !important;
     }
   
     .basket-popup-content h1,
     .basket-popup-content h2,
     .basket-popup-content h3 {
       font-size: 20px !important;
     }
   }
   
   /* ============================================
      LOGIN POPUP â€” Premium dark-glass redesign
      (Modal variant â€” rarely used, but kept consistent)
      ============================================ */
   
   .login-popup-content {
     position: relative;
     width: 100% !important;
     max-width: 440px !important;
     margin: auto !important;
     padding: 40px 32px 32px !important;
     background:
       radial-gradient(120% 80% at 50% 0%, rgb(from var(--theme-accent, #4db8a8) r g b / 0.35) 0%, transparent 60%),
       linear-gradient(180deg, #141618 0%, #0f1012 100%) !important;
     border: 1px solid rgba(255, 255, 255, 0.08) !important;
     border-radius: 18px !important;
     box-shadow:
       0 30px 80px rgba(0, 0, 0, 0.55),
       0 8px 24px rgba(0, 0, 0, 0.35),
       inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
     color: #f5f5f7 !important;
     overflow: hidden;
   }
   
   /* Subtle top glow accent line */
   .login-popup-content::before {
     content: "";
     position: absolute;
     top: 0;
     left: 50%;
     transform: translateX(-50%);
     width: 60%;
     height: 1px;
     background: linear-gradient(90deg, transparent 0%, rgb(from var(--theme-accent, #4db8a8) r g b / 0.35) 50%, transparent 100%);
     pointer-events: none;
   }
   
   .login-popup-content h1,
   .login-popup-content h2,
   .login-popup-content h3 {
     color: #ffffff !important;
     font-family: var(--nl-font-family) !important;
     font-size: 22px !important;
     font-weight: 700 !important;
     line-height: 1.2 !important;
     letter-spacing: -0.2px !important;
     margin: 0 0 8px 0 !important;
     text-align: center !important;
     display: block !important;
   }
   
   /* Friendly subtitle under the title */
   .login-popup-content h2::after {
     content: "Sign in with your FiveM account to continue";
     display: block;
     margin-top: 10px;
     color: rgba(245, 245, 247, 0.6);
     font-size: 13px;
     font-weight: 400;
     letter-spacing: 0;
     line-height: 1.5;
   }
   
   .login-popup-content p,
   .login-popup-content .field {
     margin: 0 !important;
     padding: 0 !important;
     text-align: center !important;
   }
   
   .login-popup-content p.field {
     margin-top: 28px !important;
   }
   
   .login-popup-content .login-description {
     display: none !important;
   }
   
   /* Close button â€” clean dark-glass circle */
   .login-popup-content .popup-close {
     position: absolute !important;
     top: 14px !important;
     right: 14px !important;
     width: 34px !important;
     height: 34px !important;
     padding: 0 !important;
     background: rgba(255, 255, 255, 0.06) !important;
     border: 1px solid rgba(255, 255, 255, 0.08) !important;
     border-radius: 999px !important;
     color: rgba(245, 245, 247, 0.8) !important;
     font-size: 0 !important;
     cursor: pointer !important;
     display: flex !important;
     align-items: center !important;
     justify-content: center !important;
     transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease !important;
     opacity: 1 !important;
     background-image: none !important;
   }
   
   /* Hide the default Tebex Ã— image since we draw our own */
   .login-popup-content .popup-close::before {
     content: "";
     width: 12px;
     height: 12px;
     background: none;
     background-image:
       linear-gradient(currentColor, currentColor),
       linear-gradient(currentColor, currentColor);
     background-size: 100% 1.5px, 1.5px 100%;
     background-position: center;
     background-repeat: no-repeat;
     transform: rotate(45deg);
   }
   
   .login-popup-content .popup-close:hover {
     background: rgba(255, 255, 255, 0.1) !important;
     border-color: rgba(255, 255, 255, 0.18) !important;
     transform: scale(1.05);
   }
   
   .login-popup-content .popup-close:active {
     transform: scale(0.95);
   }
   
   /* Premium teal FiveM login button inside the popup */
   .login-popup-content .btn-fivem-login,
   .login-popup-content a.btn-primary.btn-fivem-login {
     display: inline-flex !important;
     align-items: center !important;
     justify-content: center !important;
     gap: 10px !important;
     width: 100% !important;
     max-width: 320px !important;
     height: 52px !important;
     padding: 0 22px !important;
     margin: 0 auto !important;
     background: linear-gradient(135deg, var(--theme-accent, #4db8a8) 0%, var(--theme-accent-hover, #3a9486) 100%) !important;
     color: #ffffff !important;
     border: 1px solid rgba(255, 255, 255, 0.14) !important;
     border-radius: 12px !important;
     box-shadow:
       0 10px 24px rgb(from var(--theme-accent, #4db8a8) r g b / 0.35),
       inset 0 1px 0 rgba(255, 255, 255, 0.18) !important;
     font-family: var(--nl-font-family) !important;
     font-size: 14px !important;
     font-weight: 600 !important;
     line-height: 1 !important;
     letter-spacing: 0.2px !important;
     white-space: nowrap !important;
     text-decoration: none !important;
     cursor: pointer !important;
     transition: transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1),
                 box-shadow 0.25s ease,
                 background 0.25s ease !important;
   }
   
   .login-popup-content .btn-fivem-login:hover,
   .login-popup-content a.btn-primary.btn-fivem-login:hover {
     background: linear-gradient(135deg, #5ac9b8 0%, #43a698 100%) !important;
     transform: translateY(-1px) !important;
     box-shadow:
       0 14px 30px rgb(from var(--theme-accent, #4db8a8) r g b / 0.35),
       inset 0 1px 0 rgba(255, 255, 255, 0.22) !important;
   }
   
   .login-popup-content .btn-fivem-login:active,
   .login-popup-content a.btn-primary.btn-fivem-login:active {
     transform: translateY(0) !important;
     box-shadow:
       0 6px 16px rgb(from var(--theme-accent, #4db8a8) r g b / 0.35),
       inset 0 1px 0 rgba(255, 255, 255, 0.12) !important;
   }
   
   .login-popup-content .btn-fivem-login .login-text,
   .login-popup-content a.btn-primary.btn-fivem-login .login-text {
     color: #ffffff !important;
     font-size: 14px !important;
     font-weight: 600 !important;
   }
   
   .login-popup-content .btn-fivem-login .provider-text,
   .login-popup-content a.btn-primary.btn-fivem-login .provider-text {
     color: #ffffff !important;
     font-weight: 700 !important;
     text-transform: capitalize;
   }
   
   .login-popup-content .btn-fivem-login svg,
   .login-popup-content .btn-fivem-login .logo,
   .login-popup-content .btn-fivem-login .fivem-logo svg,
   .login-popup-content a.btn-primary.btn-fivem-login svg {
     width: 18px !important;
     height: 18px !important;
     fill: #ffffff !important;
     color: #ffffff !important;
     flex-shrink: 0 !important;
   }
   
   .login-popup-content .btn-fivem-login svg path,
   .login-popup-content a.btn-primary.btn-fivem-login svg path {
     fill: #ffffff !important;
   }
   
   /* IGN form fallback (when external is false) */
   .login-popup-content .ign-login-form {
     display: flex !important;
     flex-direction: column !important;
     gap: 10px !important;
     margin-top: 24px !important;
     max-width: 320px !important;
     margin-left: auto !important;
     margin-right: auto !important;
   }
   
   .login-popup-content .ign-login-form input {
     width: 100% !important;
     height: 48px !important;
     padding: 0 16px !important;
     background: rgba(255, 255, 255, 0.05) !important;
     border: 1px solid rgba(255, 255, 255, 0.12) !important;
     border-radius: 10px !important;
     color: #f5f5f7 !important;
     font-size: 14px !important;
     transition: border-color 0.2s ease, background 0.2s ease !important;
   }
   
   .login-popup-content .ign-login-form input::placeholder {
     color: rgba(245, 245, 247, 0.4);
   }
   
   .login-popup-content .ign-login-form input:focus {
     outline: none !important;
     border-color: rgb(from var(--theme-accent, #4db8a8) r g b / 0.35) !important;
     background: rgba(255, 255, 255, 0.08) !important;
   }
   
   .login-popup-content .ign-login-form button {
     width: 100% !important;
     height: 48px !important;
     background: linear-gradient(135deg, var(--theme-accent, #4db8a8) 0%, var(--theme-accent-hover, #3a9486) 100%) !important;
     color: #fff !important;
     border: none !important;
     border-radius: 10px !important;
     font-weight: 600 !important;
     cursor: pointer !important;
     transition: transform 0.2s ease, box-shadow 0.25s ease !important;
   }
   
   .login-popup-content .ign-login-form button:hover {
     transform: translateY(-1px);
     box-shadow: 0 10px 24px rgb(from var(--theme-accent, #4db8a8) r g b / 0.35);
   }
   
   /* Responsive */
   @media (max-width: 520px) {
     .login-popup-content {
       max-width: calc(100% - 24px) !important;
       padding: 32px 22px 24px !important;
       border-radius: 16px !important;
     }
   
     .login-popup-content h1,
     .login-popup-content h2,
     .login-popup-content h3 {
       font-size: 19px !important;
     }
   
     .login-popup-content h2::after {
       font-size: 12px;
     }
   
     .login-popup-content .btn-fivem-login,
     .login-popup-content a.btn-primary.btn-fivem-login {
       height: 48px !important;
       max-width: 100% !important;
     }
   }
   
   /* Reduced Motion Support */
   @media (prefers-reduced-motion: reduce) {
     .btn-fivem-login {
       transition: none;
     }
   }
   
   
   
   /* ============================================
      RECENT CUSTOMERS WIDGET - DARK PREMIUM
      ============================================ */
   
   /* Sidebar reset on product pages */
   .site-content-widgets .store-sidebar {
     grid-column: 1 / -1 !important;
     background: transparent !important;
     border: none !important;
     box-shadow: none !important;
     padding: 0 !important;
     margin: 0 !important;
   }
   
   /* Container */
   .widget.widget-recent {
     background: rgba(255, 255, 255, 0.02) !important;
     border: 1px solid rgba(255, 255, 255, 0.06) !important;
     border-radius: 50px !important;
     padding: 10px 20px 10px 16px !important;
     box-shadow: none !important;
     display: flex !important;
     align-items: center !important;
     gap: 12px !important;
     font-family: var(--nl-font-family) !important;
     width: fit-content !important;
     max-width: 100% !important;
     margin: 16px auto 0 !important;
     overflow: visible !important;
     flex-wrap: nowrap !important;
   }
   
   /* Widget content - flatten into single row */
   .widget.widget-recent .widget-content {
     padding: 0 !important;
     background: transparent !important;
     border: none !important;
     box-shadow: none !important;
     display: contents !important;
   }
   
   /* Label */
   .widget.widget-recent .widget-title {
     font-size: 10px !important;
     font-weight: 700 !important;
     letter-spacing: 1px !important;
     text-transform: uppercase !important;
     margin: 0 !important;
     padding: 0 !important;
     display: flex !important;
     align-items: center !important;
     gap: 6px !important;
     color: rgba(255, 255, 255, 0.35) !important;
     white-space: nowrap !important;
     flex-shrink: 0 !important;
     background: transparent !important;
     border: none !important;
   }
   
   .widget.widget-recent .widget-title i,
   .widget.widget-recent .user-icon {
     display: none !important;
   }
   
   .widget.widget-recent .widget-title::before {
     content: "" !important;
     display: inline-block !important;
     width: 14px !important;
     height: 14px !important;
     background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.35)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolyline points='12 6 12 12 16 14'/%3E%3C/svg%3E") !important;
     background-size: contain !important;
     background-repeat: no-repeat !important;
     flex-shrink: 0 !important;
   }
   
   .widget.widget-recent .widget-title::after {
     display: none !important;
   }
   
   /* First purchase card - becomes part of the avatar row */
   .widget.widget-recent .first-purchase-card {
     display: contents !important;
   }
   
   .widget.widget-recent .purchase-card-info {
     display: none !important;
   }
   
   /* Purchases grid - horizontal overlapping row */
   .widget.widget-recent .purchases-grid {
     display: contents !important;
   }
   
   /* All avatars - overlapping stack */
   .widget.widget-recent .purchase-card-avatar,
   .widget.widget-recent .purchase-item {
     position: relative !important;
     margin: 0 0 0 -7px !important;
     flex-shrink: 0 !important;
     overflow: visible !important;
   }
   
   .widget.widget-recent .purchase-card-avatar {
     margin-left: 0 !important;
   }
   
   .widget.widget-recent .purchase-card-avatar img,
   .widget.widget-recent .purchase-item img,
   .widget.widget-recent .avatar {
     width: 30px !important;
     height: 30px !important;
     border-radius: 50% !important;
     object-fit: cover !important;
     border: 2px solid #121212 !important;
     transition: transform 0.2s ease, border-color 0.2s ease !important;
     cursor: pointer !important;
     display: block !important;
     filter: none !important;
     box-shadow: none !important;
   }
   
   .widget.widget-recent .purchase-card-avatar img:hover,
   .widget.widget-recent .purchase-item img:hover,
   .widget.widget-recent .avatar:hover {
     transform: scale(1.1) !important;
     z-index: 10 !important;
     position: relative !important;
     border-color: rgba(255, 255, 255, 0.25) !important;
   }
   
   /* Tooltip */
   .widget.widget-recent .tooltip {
     visibility: hidden !important;
     opacity: 0 !important;
     position: absolute !important;
     bottom: 42px !important;
     left: 50% !important;
     transform: translateX(-50%) translateY(4px) !important;
     background: rgba(15, 15, 15, 0.96) !important;
     backdrop-filter: blur(12px) !important;
     color: #fff !important;
     padding: 10px 14px !important;
     font-family: var(--nl-font-family) !important;
     font-size: 12px !important;
     border-radius: 10px !important;
     white-space: normal !important;
     z-index: 1000 !important;
     box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5) !important;
     pointer-events: none !important;
     transition: all 0.15s ease !important;
     display: flex !important;
     flex-direction: column !important;
     align-items: center !important;
     gap: 2px !important;
     min-width: 120px !important;
     max-width: 180px !important;
     text-align: center !important;
     border: 1px solid rgba(255, 255, 255, 0.08) !important;
   }
   
   .widget.widget-recent .purchase-item:hover .tooltip,
   .widget.widget-recent .purchase-card-avatar:hover .tooltip {
     visibility: visible !important;
     opacity: 1 !important;
     transform: translateX(-50%) translateY(0) !important;
   }
   
   .widget.widget-recent .purchase-item:hover,
   .widget.widget-recent .purchase-card-avatar:hover {
     z-index: 1001 !important;
   }
   
   .widget.widget-recent .tooltip .ign {
     font-weight: 600 !important;
     font-size: 12px !important;
     color: #fff !important;
     margin: 0 !important;
     display: block !important;
   }
   
   .widget.widget-recent .tooltip .purchase-action {
     display: none !important;
   }
   
   .widget.widget-recent .tooltip .package-details {
     display: block !important;
     color: rgba(255, 255, 255, 0.4) !important;
     font-size: 11px !important;
     margin: 0 !important;
   }
   
   .widget.widget-recent .tooltip .tooltip-price {
     display: none !important;
   }
   
   .widget.widget-recent .tooltip small {
     display: block !important;
     color: rgba(255, 255, 255, 0.25) !important;
     font-size: 10px !important;
     margin-top: 2px !important;
     padding-top: 3px !important;
     border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
   }
   
   .widget.widget-recent .tooltip::after {
     content: "" !important;
     position: absolute !important;
     top: 100% !important;
     left: 50% !important;
     margin-left: -5px !important;
     border: 5px solid transparent !important;
     border-top-color: rgba(15, 15, 15, 0.96) !important;
   }
   
   .widget.widget-recent .tooltip::before {
     display: none !important;
   }
   
   .widget.widget-recent .empty {
     display: none !important;
   }
   
   /* Responsive */
   @media (max-width: 768px) {
     .widget.widget-recent {
       padding: 8px 14px 8px 12px !important;
       gap: 10px !important;
       margin: 12px auto 0 !important;
     }
   
     .widget.widget-recent .widget-title {
       font-size: 9px !important;
     }
   
     .widget.widget-recent .purchase-card-avatar img,
     .widget.widget-recent .purchase-item img,
     .widget.widget-recent .avatar {
       width: 26px !important;
       height: 26px !important;
     }
   
     .widget.widget-recent .purchase-card-avatar,
     .widget.widget-recent .purchase-item {
       margin-left: -6px !important;
     }
   }
   
   @media (max-width: 480px) {
     .widget.widget-recent {
       padding: 7px 10px 7px 10px !important;
       gap: 8px !important;
     }
   
     .widget.widget-recent .purchase-card-avatar img,
     .widget.widget-recent .purchase-item img,
     .widget.widget-recent .avatar {
       width: 24px !important;
       height: 24px !important;
     }
   }
   
   /* Product cards: isolated .nl-pkg — nl-product-card.css */

   .featured-packages-section {
     padding: 40px 20px;
     background: var(--background-dark);
   }
   
   .featured-packages-title {
     text-align: center;
     font-size: 2rem;
     margin-bottom: 2rem;
     color: var(--text-light);
   }
   
   .featured-packages-container {
     display: flex;
     justify-content: center;
     gap: 20px;
     /* Space between packages */
     max-width: 1200px;
     margin: 0 auto;
     flex-wrap: wrap;
     /* Allow wrapping on smaller screens */
   }
   
   .featured-packages-container .product {
     flex: 0 0 320px;
     /* Increased from 280px to 320px */
     max-width: 320px;
     /* Increased from 280px to 320px */
     background: var(--card-dark);
     border-radius: 12px;
     overflow: hidden;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
   }
   
   .featured-packages-container .product:hover {
     transform: translateY(-5px);
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
   }
   
   .featured-packages-container .image-link {
     position: relative;
     display: block;
   }
   
   .featured-packages-container .image {
     width: 100%;
     height: 180px;
     /* Increased from 160px to 180px to maintain proportions */
     object-fit: cover;
   }
   
   .featured-packages-container .hover-overlay {
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: rgba(0, 0, 0, 0.6);
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     opacity: 0;
     transition: opacity 0.3s ease;
     color: white;
   }
   
   .featured-packages-container .image-link:hover .hover-overlay {
     opacity: 1;
   }
   
   .featured-packages-container .product-tag-bestseller {
     position: absolute;
     top: 10px;
     right: 10px;
     background: #ff6b35;
     color: white;
     padding: 4px 8px;
     border-radius: 4px;
     font-size: 0.75rem;
     font-weight: bold;
     z-index: 2;
   }
   
   .featured-packages-container .product-info {
     padding: 1.2rem;
     /* Slightly increased padding */
   }
   
   .featured-packages-container .custom-price {
     font-size: 1.2rem;
     font-weight: bold;
     color: var(--accent-color);
     margin-bottom: 0.5rem;
   }
   
   .featured-packages-container .product-title {
     margin: 0;
     font-size: 1rem;
     color: var(--text-light);
   }
   
   .featured-packages-container .product-title a {
     color: inherit;
     text-decoration: none;
   }
   
   .featured-packages-container .product-title a:hover {
     color: var(--accent-color);
   }
   
   .featured-packages-container .actions {
     padding: 0 1.2rem 1.2rem;
     /* Increased padding to match */
   }
   
   .featured-packages-container .btn-primary {
     width: 100%;
     padding: 10px;
     text-align: center;
     text-decoration: none;
     border-radius: 6px;
     font-weight: 600;
     font-size: 0.9rem;
     transition: all 0.3s ease;
     background: var(--accent-color);
     color: white;
     border: none;
     cursor: pointer;
   }
   
   .featured-packages-container .btn-primary:hover {
     background: var(--color-primary);
   }
   
   /* Responsive design */
   @media (max-width: 768px) {
     .featured-packages-container {
       flex-direction: column;
       align-items: center;
     }
   
     .featured-packages-container .product {
       flex: 0 0 100%;
       /* Full width on mobile */
       max-width: 100%;
       /* Full width on mobile */
     }
   }
   
   @media (min-width: 769px) and (max-width: 1024px) {
     .featured-packages-container .product {
       flex: 0 0 300px;
       /* Slightly smaller on tablets */
       max-width: 300px;
     }
   }
   
   /* Video Embed Styling */
   .store-product.store-product-full .product-media .media-viewport .video-embed {
     width: 100% !important;
     height: 100% !important;
     border: none !important;
     border-radius: 12px !important;
     object-fit: cover !important;
     display: block !important;
     position: absolute !important;
     top: 0 !important;
     left: 0 !important;
   }
   
   .store-product.store-product-full .product-media .media-viewport .video-wrapper {
     position: relative;
     width: 100%;
     height: 100%;
     padding-bottom: 0;
   }
   
   .store-product.store-product-full .product-media .media-viewport .video-wrapper .video-embed {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     border: none;
     border-radius: 12px;
   }
   
   /* Payment info - hidden on product pages */
   .site-content.site-content-widgets .payment-info,
   .store-product.store-product-full .payment-info {
     display: none;
   }
   
   /* Gift Button Styles */
   .btn.btn-secondary.btn-icon.gift {
     width: 40px;
     /* Fixed width for square shape */
     height: 40px;
     /* Fixed height for square shape */
     display: flex;
     /* Flexbox for centering */
     align-items: center;
     /* Center icon vertically */
     justify-content: center;
     /* Center icon horizontally */
     background-color: #6c757d;
     /* Gray background */
     border: none;
     /* No border */
     border-radius: 8px;
     /* Rounded corners */
     color: white;
     /* White icon color */
     transition: background-color 0.3s;
     /* Smooth transition */
   }
   
   .btn.btn-secondary.btn-icon.gift:hover {
     background-color: #5a6268;
     /* Darker gray on hover */
   }
   
   /* Container for the button group */
   .actions .button-group {
     display: flex !important;
     align-items: stretch !important;
     gap: 0 !important;
     width: calc(100% - 20px) !important;
     max-width: 100%;
     margin: 4px auto 6px !important;
     padding: 0 !important;
   }
   
   article.product .package-actions .actions .button-group,
   .product-card__footer .actions .button-group {
     width: calc(100% - 16px) !important;
     margin-top: 6px !important;
     margin-bottom: 8px !important;
   }
   
   /* If gift button is not present, make the main button fully rounded */
   .actions .button-group:not(:has(.btn.btn-secondary.btn-icon.gift)) .btn.add.btn-primary.wide {
     border-right: none !important;
     border-radius: 10px !important;
   }
   
   /* ============================================
      ADD TO BASKET BUTTON - CLEAN VERSION
      Overrides shared.css with higher specificity
      ============================================ */
   
   .actions .button-group .btn.add.btn-primary.wide,
   .actions .button-group .btn.add.btn-primary.wide.basket-toggle-button {
     /* Reset to override shared.css */
     all: unset;
     box-sizing: border-box;
   
     /* Layout */
     flex: 1;
     display: inline-flex !important;
     align-items: center !important;
     justify-content: center !important;
     gap: 7px;
   
     /* Dimensions â€” compact premium strip (~17% slimmer than prior) */
     width: 100% !important;
     min-height: 30px !important;
     height: 30px !important;
     line-height: 1 !important;
   
     /* Soft off-white surface */
     background: #e9eaec !important;
     color: #1a1a1a !important;
     border: 1px solid rgba(0, 0, 0, 0.05) !important;
     border-right: none !important;
     border-radius: 10px 0 0 10px !important;
   
     /* Typography */
     font-family: var(--nl-font-family) !important;
     font-size: 12.5px !important;
     font-weight: 500 !important;
     letter-spacing: -0.01em !important;
     text-decoration: none !important;
     text-align: center !important;
     white-space: nowrap !important;
     -webkit-font-smoothing: antialiased;
     -moz-osx-font-smoothing: grayscale;
     text-rendering: optimizeLegibility;
   
     /* Spacing */
     padding: 0 12px !important;
     margin: 0 !important;
   
     /* Minimal interaction â€” no pointer hand */
     cursor: pointer !important;
     transition: opacity 0.18s ease !important;
     box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04) !important;
     filter: none !important;
   
     /* Positioning */
     position: relative !important;
     overflow: hidden !important;
   }
   
   /* Button icon wrapper for smooth transitions */
   .actions .button-group .btn.add.btn-primary.wide .button-icon-wrapper {
     position: relative;
     width: 15px;
     height: 15px;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
     min-width: 15px;
     align-self: center;
   }
   
   /* Button icons - smooth transitions */
   .actions .button-group .btn.add.btn-primary.wide .button-icon {
     width: 15px;
     height: 15px;
     display: block;
     flex-shrink: 0;
     color: rgba(26, 26, 26, 0.82);
     opacity: 0.88;
     transition: opacity var(--transition-base), transform var(--transition-base);
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     shape-rendering: geometricPrecision;
   }
   
   /* Hidden class for icons - still rendered but invisible */
   .actions .button-group .btn.add.btn-primary.wide .button-icon.hidden {
     opacity: 0 !important;
     pointer-events: none !important;
   }
   
   /* Cart icon - visible when adding */
   .actions .button-group .btn.add.btn-primary.wide .cart-icon:not(.hidden) {
     opacity: 1;
     transform: translate(-50%, -50%) scale(1) rotate(0deg);
     pointer-events: auto;
   }
   
   /* Cart icon - hidden when removing */
   .actions .button-group .btn.add.btn-primary.wide .cart-icon.hidden,
   .actions .button-group .btn.add.btn-primary.wide[data-action="remove"] .cart-icon:not(.hidden),
   .actions .button-group .btn.add.btn-primary.wide.remove-state .cart-icon:not(.hidden) {
     opacity: 0;
     transform: translate(-50%, -50%) scale(0.8) rotate(90deg);
     pointer-events: none;
   }
   
   /* Trash icon - hidden when adding */
   .actions .button-group .btn.add.btn-primary.wide .trash-icon.hidden,
   .actions .button-group .btn.add.btn-primary.wide[data-action="add"] .trash-icon:not(.hidden) {
     opacity: 0;
     transform: translate(-50%, -50%) scale(0.8) rotate(-90deg);
     pointer-events: none;
   }
   
   /* Trash icon - visible when removing */
   .actions .button-group .btn.add.btn-primary.wide .trash-icon:not(.hidden),
   .actions .button-group .btn.add.btn-primary.wide[data-action="remove"] .trash-icon:not(.hidden),
   .actions .button-group .btn.add.btn-primary.wide.remove-state .trash-icon:not(.hidden) {
     opacity: 1;
     transform: translate(-50%, -50%) scale(1) rotate(0deg);
     pointer-events: auto;
   }
   
   /* Legacy transitioning class — same as is-loading */
   .actions .button-group .btn.add.btn-primary.wide.transitioning,
   .actions .button-group .btn.add.btn-primary.wide.basket-toggle-button.transitioning {
     opacity: 0.85 !important;
     pointer-events: none !important;
   }
   
   /* Remove state â€” flat, minimal */
   .actions .button-group .btn.add.btn-primary.wide.remove-state,
   .actions .button-group .btn.add.btn-primary.wide[data-action="remove"] {
     background: #e85d52 !important;
     border: none !important;
     border-right: none !important;
     box-shadow: none !important;
     color: #ffffff !important;
     opacity: 1;
   }
   
   .actions .button-group .btn.add.btn-primary.wide.remove-state:hover,
   .actions .button-group .btn.add.btn-primary.wide[data-action="remove"]:hover {
     background: #e85d52 !important;
     color: #ffffff !important;
     border: none !important;
     border-right: none !important;
     box-shadow: none !important;
     transform: none !important;
     filter: none !important;
     opacity: 0.82;
     cursor: pointer !important;
   }
   
   .actions .button-group .btn.add.btn-primary.wide.remove-state:active,
   .actions .button-group .btn.add.btn-primary.wide[data-action="remove"]:active {
     background: #e85d52 !important;
     transform: none !important;
     box-shadow: none !important;
     filter: none !important;
     opacity: 0.72;
   }
   
   /* Button text - smooth transition */
   .actions .button-group .btn.add.btn-primary.wide .button-text {
     color: inherit;
     font-size: inherit;
     font-weight: inherit;
     font-family: inherit;
     letter-spacing: inherit;
     transition: opacity var(--transition-base);
     display: inline-flex;
     align-items: center;
     align-self: center;
     line-height: 1;
     padding: 0;
     margin: 0;
   }
   
   /* Hover — opacity fade only (add state) */
   .actions .button-group .btn.add.btn-primary.wide:hover:not(.remove-state):not([data-action="remove"]),
   .actions .button-group .btn.add.btn-primary.wide.basket-toggle-button:hover:not(.remove-state):not([data-action="remove"]) {
     background: #e9eaec !important;
     color: #1a1a1a !important;
     box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04) !important;
     transform: none !important;
     filter: none !important;
     opacity: 0.82;
     cursor: pointer !important;
   }
   
   /* Active state (only for add state) */
   .actions .button-group .btn.add.btn-primary.wide:active:not(.remove-state):not([data-action="remove"]),
   .actions .button-group .btn.add.btn-primary.wide.basket-toggle-button:active:not(.remove-state):not([data-action="remove"]) {
     background: #e9eaec !important;
     transform: none !important;
     box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04) !important;
     filter: none !important;
     opacity: 0.72;
   }
   
   /* Focus — keyboard only */
   .actions .button-group .btn.add.btn-primary.wide:focus-visible:not(.remove-state):not([data-action="remove"]) {
     outline: 2px solid rgba(0, 0, 0, 0.2);
     outline-offset: 2px;
     background: #e9eaec !important;
     box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04) !important;
     filter: none !important;
     opacity: 0.82;
   }
   
   .actions .button-group .btn.add.btn-primary.wide:focus-visible.remove-state,
   .actions .button-group .btn.add.btn-primary.wide:focus-visible[data-action="remove"] {
     outline: 2px solid rgba(232, 93, 82, 0.65);
     outline-offset: 2px;
     background: #ef6a60 !important;
     box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) !important;
     filter: none !important;
   }
   
   /* Disabled state - Dark theme */
   .actions .button-group .btn.add.btn-primary.wide:disabled {
     background: #2a2a2a !important;
     color: #666666 !important;
     border-color: rgba(255, 255, 255, 0.06) !important;
     cursor: not-allowed;
     opacity: 0.5;
     pointer-events: none;
     box-shadow: none !important;
     filter: none !important;
   }
   
   /* Gift Button - Square on the right */
   .actions .button-group .btn.btn-secondary.btn-icon.gift {
     all: unset !important;
     /* Reset all styles */
   
     width: 30px !important;
     /* Fixed square size */
     height: 30px !important;
     /* Fixed height */
     min-width: 30px !important;
     /* Minimum width */
     min-height: 30px !important;
     /* Minimum height */
     max-width: 30px !important;
     /* Maximum width */
     max-height: 30px !important;
     /* Maximum height */
     flex-shrink: 0 !important;
     /* Don't shrink */
   
     background-color: #3a3a3a !important;
     /* Dark gray background */
     border: 1px solid rgba(255, 255, 255, 0.15) !important;
     /* Subtle border */
     border-left: none !important;
     /* No left border (connects to main button) */
     border-radius: 0 10px 10px 0 !important;
     /* Rounded right corners only */
     box-sizing: border-box !important;
     line-height: 1 !important;
   
     display: flex !important;
     /* Flexbox for centering */
     align-items: center !important;
     /* Center icon vertically */
     justify-content: center !important;
     /* Center icon horizontally */
   
     cursor: pointer !important;
     /* Pointer cursor */
     transition: background-color 0.3s ease !important;
     /* Smooth transition */
   
     box-sizing: border-box !important;
     /* Box model */
     margin: 0 !important;
     /* Reset margin */
     padding: 0 !important;
     /* Reset padding */
   
     font-size: 0 !important;
     /* Hide text */
     color: transparent !important;
     /* Hide color */
     text-indent: -9999px !important;
     /* Hide text */
     overflow: hidden !important;
     /* Prevent overflow */
   }
   
   /* Gift icon styling */
   .actions .button-group .btn.btn-secondary.btn-icon.gift i.fa-gift,
   .actions .button-group .btn.btn-secondary.btn-icon.gift .fa-gift {
     all: unset !important;
     /* Reset and set icon styles */
   
     display: inline-block !important;
     /* Inline block for icon */
     font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", FontAwesome !important;
     /* Font Awesome */
     font-weight: 900 !important;
     /* Bold icon */
   
     color: #ffffff !important;
     /* White icon color */
     font-size: 14px !important;
     /* Icon size */
     line-height: 1 !important;
     /* Line height */
   
     position: relative !important;
     /* Positioning */
     margin: 0 !important;
     /* Reset margin */
     padding: 0 !important;
     /* Reset padding */
     text-indent: 0 !important;
     /* Reset text indent */
   
     overflow: visible !important;
     /* Ensure visibility */
     z-index: 2 !important;
     /* Ensure icon is on top */
   }
   
   /* Force gift icon content */
   .actions .button-group .btn.btn-secondary.btn-icon.gift i.fa-gift::before {
     content: "\f06b" !important;
     /* Gift icon unicode */
   }
   
   /* Hover states - handled above */
   
   .actions .button-group .btn.btn-secondary.btn-icon.gift:hover {
     background-color: #4a4a4a !important;
     /* Lighter gray on hover */
     border-color: rgba(255, 255, 255, 0.25) !important;
   }
   
   .actions .button-group .btn.btn-secondary.btn-icon.gift:hover i {
     color: #ffffff !important;
     /* White icon color on hover */
     transform: none !important;
   }
   
   /* Active states - handled above */
   
   .actions .button-group .btn.btn-secondary.btn-icon.gift:active {
     background-color: #2a2a2a !important;
     /* Darker gray on active */
     transform: none !important;
   }
   
   /* Focus states - handled above for add button */
   .actions .button-group .btn.btn-secondary.btn-icon.gift:focus {
     outline: 2px solid #ffffff !important;
     outline-offset: 2px !important;
   }
   
   /* Mobile responsiveness */
   @media (max-width: 768px) {
     .actions .button-group .btn.add.btn-primary.wide {
       min-height: 28px;
       height: 28px;
       font-size: 12px;
       padding: 0 11px;
       gap: 6px;
     }
   
     .actions .button-group .btn.btn-secondary.btn-icon.gift {
       width: 28px !important;
       height: 28px !important;
       min-width: 28px !important;
       min-height: 28px !important;
       max-width: 28px !important;
       max-height: 28px !important;
     }
   }
   
   /* Small mobile */
   @media (max-width: 480px) {
     .actions .button-group .btn.add.btn-primary.wide {
       min-height: 26px;
       height: 26px;
       font-size: 11.5px;
       padding: 0 10px;
     }
   
     .actions .button-group .btn.btn-secondary.btn-icon.gift {
       width: 26px !important;
       height: 26px !important;
       min-width: 26px !important;
       min-height: 26px !important;
       max-width: 26px !important;
       max-height: 26px !important;
     }
   }
   
   /* Kill legacy product-card CTA glow/size on basket toggle */
   article.product .actions .button-group .btn.add.btn-primary.wide,
   .product-card__footer .actions .button-group .btn.add.btn-primary.wide {
     min-height: 30px !important;
     height: 30px !important;
     background: #e9eaec !important;
     color: #1a1a1a !important;
     box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04) !important;
     filter: none !important;
     transform: none;
   }
   
   article.product .actions .button-group .btn.add.btn-primary.wide:hover:not(.remove-state):not([data-action="remove"]),
   .product-card__footer .actions .button-group .btn.add.btn-primary.wide:hover:not(.remove-state):not([data-action="remove"]),
   article.product .actions .button-group .btn.add.btn-primary.wide.basket-toggle-button:hover:not(.remove-state):not([data-action="remove"]),
   .product-card__footer .actions .button-group .btn.add.btn-primary.wide.basket-toggle-button:hover:not(.remove-state):not([data-action="remove"]) {
     background: #e9eaec !important;
     box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04) !important;
     transform: none !important;
     filter: none !important;
     opacity: 0.82;
   }
   
   .product-actions .payment-info {
     margin-top: 10px;
     padding-top: 0;
   }
   
   /* Remove any conflicting pseudo-elements */
   .actions .button-group .btn::before,
   .actions .button-group .btn::after,
   .actions .button-group .btn.add::before,
   .actions .button-group .btn.add::after,
   .actions .button-group .btn.add.btn-primary::before,
   .actions .button-group .btn.add.btn-primary::after {
     display: none !important;
     /* Hide pseudo-elements */
     content: none !important;
     /* Remove content */
     background: none !important;
   }
   
   /* Ensure button group buttons don't inherit unwanted shared.css styles */
   .actions .button-group .btn.add.btn-primary.wide,
   .actions .button-group .btn.btn-secondary.btn-icon.gift {
     vertical-align: baseline !important;
     text-overflow: clip !important;
   }
   
   /* Ensure proper stacking */
   .actions .button-group {
     position: relative !important;
     /* Relative positioning */
     z-index: 1 !important;
     /* Ensure stacking order */
   }
   
   /* Hide any other text in gift button */
   .actions .button-group .btn.btn-secondary.btn-icon.gift span:not(.fa):not([class*="fa-"]),
   .actions .button-group .btn.btn-secondary.btn-icon.gift .sr-only {
     display: none !important;
     /* Hide unwanted text */
     visibility: hidden !important;
     /* Ensure hidden */
   }
   
   /* Removed old shopping cart icon styles - using SVG now */
   
   /* ===== FOOTER â€” flat compact strip (no card; blends with page) ===== */
   
   :root {
     --bg: #0f0f10;
     --elev-1: #151517;
     --text: #EDEDED;
     --muted: #A0A0A5;
     --link-idle: #CFCFD3;
     --link-hover: #FFFFFF;
     --accent: #ff0f56;
     --accent-2: #e00078;
   }
   
   .site-footer {
     margin-top: clamp(24px, 3.5vw, 36px);
     padding: 20px clamp(16px, 3.5vw, 36px) 16px clamp(12px, 2.4vw, 26px);
     font-family: var(--nl-font-family);
     position: relative;
     background: transparent;
     color: var(--muted);
     isolation: isolate;
   }
   
   .site-footer::before {
     content: "";
     position: absolute;
     left: 0;
     right: 0;
     top: 0;
     height: 2px;
     background: linear-gradient(90deg,
         transparent 4%,
         rgba(255, 255, 255, 0.075) 50%,
         transparent 96%);
     pointer-events: none;
     z-index: 1;
   }
   
   .footer-container {
     position: relative;
     z-index: 0;
     max-width: 1280px;
     margin: 0 auto;
     width: 100%;
     display: grid;
     grid-template-columns: minmax(228px, 1.58fr) repeat(3, minmax(0, 1fr));
     column-gap: clamp(18px, 2.8vw, 34px);
     row-gap: 0;
     align-items: start;
     justify-items: start;
     padding: 0;
     border: none;
     border-radius: 0;
     background: none;
     box-shadow: none;
     backdrop-filter: none;
     -webkit-backdrop-filter: none;
   }
   
   .footer-col {
     display: flex;
     flex-direction: column;
     align-items: flex-start;
     justify-self: stretch;
     min-width: 0;
   }
   
   .site-footer p,
   .site-footer small,
   .site-footer li {
     color: inherit;
   }
   
   /* Nav links: muted; Legal column lighter still */
   .site-footer .footer-link {
     color: rgba(148, 152, 160, 0.72);
   }
   
   .site-footer h4.footer-title {
     color: rgba(232, 233, 236, 0.93);
   }
   
   .brand-name {
     color: rgba(226, 227, 230, 0.82);
     font-size: 0.8125rem;
     font-weight: 500;
     letter-spacing: -0.015em;
     line-height: 1.18;
   }
   
   .footer-brand {
     grid-column: auto;
     padding-right: clamp(4px, 1vw, 14px);
   }
   
   .brand-header {
     display: flex;
     align-items: center;
     gap: 10px;
     margin-bottom: 8px;
   }
   
   .brand-logo {
     width: 22px;
     height: 22px;
     object-fit: contain;
     flex-shrink: 0;
     display: block;
   }
   
   .brand-copyright {
     margin: 0 0 5px;
     font-size: 0.625rem;
     line-height: 1.34;
     font-weight: 400;
     letter-spacing: 0.03em;
     color: rgba(118, 122, 132, 0.62);
     max-width: 56ch;
   }
   
   .brand-disclaimer-text {
     margin: 0;
     font-size: 0.625rem;
     line-height: 1.32;
     font-weight: 300;
     letter-spacing: 0.01em;
     color: rgba(106, 110, 120, 0.54);
     max-width: 60ch;
   }
   
   .footer-title {
     font-size: 0.625rem;
     font-weight: 700;
     letter-spacing: 0.08em;
     text-transform: uppercase;
     margin: 3px 0 8px;
     line-height: 1.2;
     color: rgba(232, 233, 236, 0.93);
   }
   
   .footer-links {
     list-style: none;
     padding: 0;
     margin: 0;
     display: flex;
     flex-direction: column;
     align-items: flex-start;
     gap: 5px;
     width: 100%;
   }
   
   .footer-links li {
     margin: 0;
   }
   
   .footer-link {
     font-size: 0.6875rem;
     font-weight: 400;
     text-decoration: none;
     display: inline-block;
     transition: color 0.15s ease;
   }
   
   .footer-link:hover {
     color: rgba(198, 200, 208, 0.82);
   }
   
   .footer-legal .footer-link {
     color: rgba(124, 128, 138, 0.58);
     font-weight: 400;
   }
   
   .footer-legal .footer-link:hover {
     color: rgba(172, 176, 186, 0.74);
   }
   
   .footer-link:focus-visible {
     outline: 1px solid rgba(255, 255, 255, 0.28);
     outline-offset: 2px;
     border-radius: 2px;
   }
   
   .footer-pages {
     grid-column: 2;
     justify-self: stretch;
   }
   
   .footer-legal {
     grid-column: 3;
     justify-self: stretch;
   }
   
   .footer-socials {
     grid-column: 4;
     justify-self: stretch;
   }
   
   @media (min-width: 901px) {
     .footer-legal {
       padding-left: clamp(14px, 2.2vw, 26px);
       margin-left: clamp(6px, 1vw, 12px);
     }
   
     .footer-socials {
       padding-left: clamp(6px, 1vw, 12px);
     }
   }
   
   /* Designer credit (+ shared.css parity for logo / license checks) */
   .designer-credit {
     display: flex;
     align-items: center;
     gap: 6px;
     margin-top: 12px;
     padding-top: 12px;
     border-top: 1px solid rgba(255, 255, 255, 0.038);
     justify-content: flex-start;
     opacity: 1;
     visibility: visible;
     pointer-events: auto;
   }

   .designer-credit::before {
     content: '';
     display: block;
   }
   
   /* Hide dynamically generated duplicate credit */
   #tmpl-attr {
     display: none !important;
     visibility: hidden !important;
     height: 0 !important;
     overflow: hidden !important;
     position: absolute !important;
     left: -9999px !important;
   }
   
   #tmpl-attr .t-credit,
   #tmpl-attr .t-label,
   #tmpl-attr .t-name {
     display: none !important;
     visibility: hidden !important;
   }
   
   .credit-text {
     font-size: 10px;
     font-weight: 400;
     color: rgba(118, 122, 132, 0.58);
   }
   
   .credit-logo {
     font-size: 11px;
     font-weight: 500;
     color: var(--text);
     letter-spacing: .5px;
   }

   .designer-credit a {
     display: inline-flex;
     opacity: 1;
     visibility: visible;
     transition: opacity 0.3s ease;
   }

   .designer-credit a:hover {
     opacity: 0.7;
   }

   .designer-credit-link {
     position: relative;
     display: inline-flex;
     align-items: center;
     min-width: 64px;
     min-height: 22px;
   }

   .designer-credit-img-wrap {
     position: relative;
     display: inline-block;
     line-height: 0;
   }

   .designer-credit-img-wrap::after {
     content: '';
     position: absolute;
     inset: 0;
     z-index: 0;
     background: url('https://i.ibb.co/B5H1Cnw8/Nolimitswithtextimage.png') center center / contain no-repeat;
     opacity: 0.45;
     pointer-events: none;
   }

   .credit-logo-img {
     position: relative;
     z-index: 1;
     height: 22px;
     width: auto;
     display: block;
     opacity: 0.45;
     transition: opacity 0.3s ease;
   }

   .designer-credit a:hover .credit-logo-img {
     opacity: 0.75;
   }

   .designer-credit a:hover .designer-credit-img-wrap::after {
     opacity: 0.75;
   }

   .designer-credit,
   .designer-credit * {
     visibility: visible;
     position: relative;
     overflow: visible;
     clip: auto;
     clip-path: none;
   }

   .designer-credit::after {
     content: 'Template by NoLimits - Removing credit violates license';
     position: absolute;
     left: -9999px;
   }

   /* License bind hook (must pass main.js nlCreditHidden); visible credit is #nl-designer-credit only */
   .theme-signature.nl-theme-bound {
     display: block;
     width: 4px;
     height: 4px;
     margin: 0;
     padding: 0;
     overflow: hidden;
     position: relative;
     opacity: 0.06;
     pointer-events: none;
   }

   .nl-theme-bound.nl-auth-sig::after {
     content: none;
     display: none;
   }
   
   /* Responsive */
   @media (max-width: 900px) {
     .footer-container {
       grid-template-columns: repeat(3, minmax(0, 1fr));
       column-gap: clamp(18px, 3vw, 28px);
       row-gap: 14px;
     }
   
     .footer-brand {
       grid-column: 1 / -1;
       max-width: 62ch;
       padding-right: 0;
     }
   
     .footer-pages {
       grid-column: 1;
     }
   
     .footer-legal {
       grid-column: 2;
     }
   
     .footer-socials {
       grid-column: 3;
     }
   }
   
   @media (max-width: 620px) {
     .site-footer {
       padding: 18px clamp(14px, 4vw, 22px) 14px clamp(12px, 3vw, 18px);
     }
   
     .footer-container {
       grid-template-columns: 1fr 1fr;
       column-gap: 24px;
       row-gap: 16px;
     }
   
     .footer-brand {
       grid-column: 1 / -1;
     }
   
     .footer-pages {
       grid-column: 1;
     }
   
     .footer-legal {
       grid-column: 2;
     }
   
     .footer-socials {
       grid-column: 1 / -1;
       padding-top: 12px;
       border-top: 1px solid rgba(255, 255, 255, 0.038);
     }
   
     .designer-credit {
       justify-content: flex-start;
       flex-wrap: wrap;
     }
   }
   
   @media (max-width: 420px) {
     .footer-container {
       grid-template-columns: 1fr;
       row-gap: 14px;
     }
   
     .footer-pages,
     .footer-legal,
     .footer-socials {
       grid-column: 1;
       padding-top: 12px;
       border-top: 1px solid rgba(255, 255, 255, 0.038);
     }
   
     .footer-pages {
       padding-top: 14px;
     }
   
     .footer-socials {
       border-top: 1px solid rgba(255, 255, 255, 0.038);
     }
   }
   
   /* Reduced motion */
   @media (prefers-reduced-motion: reduce) {
   
     .footer-link {
       transition: none;
     }
   }
   
   /* Tebex strip â€” flush with page; sits directly under custom footer */
   .site-footer-credit {
     color: rgba(132, 138, 146, 0.62);
     background: var(--bg);
     border-top: 1px solid rgba(255, 255, 255, 0.038);
     font-size: 10px;
     letter-spacing: 0.01em;
     line-height: 1.36;
   }
   
   .site-footer-credit .site-footer-credit-inner {
     max-width: 1280px;
     margin-left: auto;
     margin-right: auto;
     padding: 10px clamp(16px, 3.5vw, 36px) 12px clamp(12px, 2.4vw, 26px);
     gap: 12px;
     min-height: 0;
   }
   
   .site-footer-credit .copyright {
     gap: 12px;
   }
   
   .site-footer-credit .legal a {
     color: rgba(136, 140, 148, 0.62);
     text-decoration: none;
     text-underline-offset: 0;
     transition: color 0.15s ease;
   }
   
   .site-footer-credit .legal a:hover {
     color: rgba(196, 198, 206, 0.78);
   }
   
   /* ===== HOMEPAGE REDESIGN - NEON/PINK BRAND ===== */
   
   /* Global Page Styles */
   body {
     background: #0f0f10;
     color: #EDEDED;
     font-family: var(--nl-font-family);
     font-weight: 400;
     font-size: 16px;
     line-height: 1.6;
     margin: 0;
     padding: 0;
   }
   
   html {
     margin: 0;
     padding: 0;
   }
   
   /* Hero Section */
   .hero-section {
     padding: clamp(64px, 8vw, 96px) 0 clamp(72px, 9vw, 104px);
     position: relative;
   }
   
   .hero-container {
     max-width: 1240px;
     margin: 0 auto;
     padding: 0 clamp(20px, 3vw, 40px);
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: clamp(40px, 5vw, 72px);
     align-items: center;
   }
   
   .hero-content {
     z-index: 2;
     position: relative;
     max-width: 580px;
   }
   
   .hero-section h1.hero-headline,
   .hero-headline {
     font-family: var(--nl-hero-font) !important;
     font-size: var(--nl-hero-size);
     font-weight: var(--nl-hero-weight) !important;
     font-synthesis: none;
     letter-spacing: -0.03em;
     line-height: 1.08;
     margin: 0 0 24px;
     color: #ffffff;
     text-transform: none;
     -webkit-font-smoothing: antialiased;
     -moz-osx-font-smoothing: grayscale;
     text-rendering: optimizeLegibility;
   }

   .hero-headline-line {
     display: block;
   }

   .hero-headline-line--muted {
     color: rgba(255, 255, 255, 0.82);
     font-weight: var(--nl-hero-weight-muted) !important;
     letter-spacing: -0.028em;
   }
   
   .hero-accent {
     background: none;
     -webkit-text-fill-color: inherit;
     color: inherit;
     display: block;
   }
   
   .hero-subcopy {
     font-family: var(--nl-hero-font) !important;
     font-size: 15px;
     font-weight: 400 !important;
     color: rgba(255, 255, 255, 0.44);
     max-width: 460px;
     margin: 0 0 28px;
     line-height: 1.75;
     letter-spacing: 0.005em;
     font-synthesis: none;
     -webkit-font-smoothing: antialiased;
   }

   .page-index .hero-section h1.hero-headline,
   .page-index .hero-headline {
     font-family: var(--nl-hero-font) !important;
     font-size: var(--nl-hero-size) !important;
     font-weight: var(--nl-hero-weight) !important;
     line-height: 1.08 !important;
     letter-spacing: -0.03em !important;
     margin-bottom: 24px !important;
     color: #ffffff !important;
   }

   .page-index .hero-headline-line--muted {
     font-weight: var(--nl-hero-weight-muted) !important;
     color: rgba(255, 255, 255, 0.82) !important;
     letter-spacing: -0.028em !important;
   }

   .page-index .hero-subcopy {
     font-family: var(--nl-hero-font) !important;
     font-size: 15px !important;
     font-weight: 400 !important;
     line-height: 1.75 !important;
     letter-spacing: 0.005em !important;
     color: rgba(255, 255, 255, 0.44) !important;
     max-width: 460px !important;
     margin-bottom: 28px !important;
   }
   
   .hero-cta {
     --hero-cta-bg: #eceae7;
     --hero-cta-bg-hover: #f5f4f2;
     --hero-cta-text: #1f1f22;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
     min-height: 40px;
     height: 40px;
     padding: 0 16px;
     font-family: var(--nl-nav-font);
     font-size: 14px;
     font-weight: 500;
     letter-spacing: -0.01em;
     line-height: 1;
     text-decoration: none;
     color: var(--hero-cta-text);
     background: var(--hero-cta-bg);
     border: 1px solid rgba(255, 255, 255, 0.42);
     border-radius: 8px;
     box-shadow:
       0 1px 2px rgba(0, 0, 0, 0.14),
       inset 0 1px 0 rgba(255, 255, 255, 0.55);
     transition:
       background 0.22s cubic-bezier(0.4, 0, 0.2, 1),
       border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1),
       box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1);
     -webkit-font-smoothing: antialiased;
   }
   
   .hero-cta i {
     font-size: 12px;
     color: inherit;
     opacity: 0.55;
     transition: transform 0.2s ease, opacity 0.2s ease;
   }
   
   .hero-cta:hover {
     color: var(--hero-cta-text);
     background: var(--hero-cta-bg-hover);
     border-color: rgba(255, 255, 255, 0.55);
     transform: none;
     box-shadow:
       0 2px 8px rgba(0, 0, 0, 0.12),
       inset 0 1px 0 rgba(255, 255, 255, 0.65);
   }

   .hero-cta:hover i {
     opacity: 0.72;
     transform: translateX(3px);
   }
   
   .hero-cta:focus-visible {
     outline: 1px solid rgba(255, 255, 255, 0.45);
     outline-offset: 2px;
   }

   /* Beat shared.css theme primary on index hero */
   .page-index .hero-content .hero-cta,
   .page-index a.hero-cta.magnetic-cta {
     min-height: 40px !important;
     height: 40px !important;
     padding: 0 16px !important;
     font-family: var(--nl-nav-font) !important;
     font-size: 14px !important;
     font-weight: 500 !important;
     color: #1f1f22 !important;
     background: #eceae7 !important;
     border: 1px solid rgba(255, 255, 255, 0.42) !important;
     border-radius: 8px !important;
     box-shadow:
       0 1px 2px rgba(0, 0, 0, 0.14),
       inset 0 1px 0 rgba(255, 255, 255, 0.55) !important;
   }

   .page-index .hero-content .hero-cta:hover,
   .page-index a.hero-cta.magnetic-cta:hover {
     color: #1f1f22 !important;
     background: #f5f4f2 !important;
     border-color: rgba(255, 255, 255, 0.55) !important;
     transform: none !important;
     box-shadow:
       0 2px 8px rgba(0, 0, 0, 0.12),
       inset 0 1px 0 rgba(255, 255, 255, 0.65) !important;
   }
   
   .hero-visual {
     position: relative;
     height: 400px;
   }
   
   .hero-glow {
     position: absolute;
     right: -20%;
     top: 30%;
     transform: translateY(-30%);
     width: 700px;
     height: 700px;
     background: radial-gradient(circle at center,
         rgba(255, 255, 255, 0.08) 0%,
         rgba(200, 200, 210, 0.06) 35%,
         rgba(180, 180, 190, 0.04) 55%,
         transparent 75%);
     filter: blur(80px);
     opacity: 0.6;
     pointer-events: none;
   }
   
   .hero-logo {
     position: absolute;
     right: -10%;
     top: 38%;
     transform: translate(0, -50%);
     width: 600px;
     height: auto;
     z-index: 2;
     opacity: 0.9;
     filter: drop-shadow(0 8px 32px rgba(255, 255, 255, 0.15));
   }
   
   @keyframes float {
   
     0%,
     100% {
       transform: translate(0, -50%) translateY(0px);
     }
   
     50% {
       transform: translate(0, -50%) translateY(-20px);
     }
   }
   
   /* Hero Background Animation */
   .hero-bg-animation {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     overflow: hidden;
     z-index: 1;
     pointer-events: none;
   }
   
   .hero-bg-grid {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-image:
       /* Dots at grid intersections */
       radial-gradient(circle at center, rgba(255, 255, 255, 0.15) 0.5px, transparent 0.5px),
       /* Vertical lines */
       linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
       /* Horizontal lines */
       linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
     background-size:
       50px 50px,
       /* Dot spacing */
       50px 50px,
       /* Vertical line spacing */
       50px 50px;
     /* Horizontal line spacing */
     background-position: 0 0, 0 0, 0 0;
     /* Remove mask to show grid everywhere */
     opacity: 0.4;
   }
   
   .hero-bg-orb {
     position: absolute;
     top: 20%;
     left: 10%;
     width: 600px;
     height: 600px;
     background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
     filter: blur(60px);
     animation: heroOrbMove 15s infinite alternate ease-in-out;
     opacity: 0.8;
   }
   
   @keyframes heroOrbMove {
     0% {
       transform: translate(0, 0) scale(1);
     }
   
     100% {
       transform: translate(50px, -30px) scale(1.1);
     }
   }
   
   /* ===== FEATURES STRIP (MERGED BAR) ===== */
   
   /* Design tokens */
   :root {
     --panel: #121214;
     --panel-2: #0E0E10;
     --divider: rgba(255, 255, 255, 0.08);
     --ring: rgba(255, 255, 255, 0.10);
     --glow: rgba(255, 255, 255, 0.06);
   }
   
   /* Features section wrapper */
   .features {
     padding: 48px 0;
     margin-top: -20px;
   }
   
   /* The merged panel (single bar) */
   .features__panel {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 32px;
   }
   
   /* Grid container */
   .features__grid {
     list-style: none;
     margin: 0;
     padding: 28px;
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 0;
     background: linear-gradient(180deg, var(--panel), var(--panel-2));
     border: 1px solid var(--ring);
     box-shadow: inset 0 1px 0 var(--glow), 0 10px 30px rgba(0, 0, 0, 0.35);
     border-radius: 0;
   }
   
   /* Individual feature column */
   .feature {
     position: relative;
     padding: 0 28px;
   }
   
   /* Vertical separators between columns */
   .feature:not(:first-child)::before {
     content: '';
     position: absolute;
     left: 0;
     top: 0;
     bottom: 0;
     width: 1px;
     background: var(--divider);
   }
   
   /* Icon container */
   .feature__icon {
     width: 40px;
     height: 40px;
     display: flex;
     align-items: center;
     justify-content: center;
     background: rgba(255, 255, 255, 0.03);
     margin-bottom: 16px;
   }
   
   .feature__icon svg {
     width: 24px;
     height: 24px;
     stroke: var(--text);
     opacity: 0.95;
   }
   
   /* Feature title */
   .feature__title {
     font-weight: 700;
     font-size: 18px;
     line-height: 1.2;
     color: var(--text);
     margin: 0 0 10px 0;
     letter-spacing: -0.01em;
   }
   
   /* Feature body text */
   .feature__body {
     font-size: 14px;
     line-height: 1.55;
     color: var(--muted);
     margin: 0;
     max-width: 56ch;
   }
   
   /* Responsive: Tablet (2x2 grid) */
   @media (max-width: 900px) {
     .features__grid {
       grid-template-columns: repeat(2, 1fr);
       padding: 24px;
     }
   
     .feature {
       padding: 20px 24px;
     }
   
     /* Remove left separator on 3rd item (new row) */
     .feature:nth-child(3)::before {
       display: none;
     }
   
     /* Add horizontal separator for bottom row */
     .feature:nth-child(n+3) {
       border-top: 1px solid var(--divider);
       padding-top: 24px;
       margin-top: 24px;
     }
   }
   
   /* Responsive: Mobile (stacked 1 column) */
   @media (max-width: 520px) {
     .features {
       padding: 32px 0;
     }
   
     .features__panel {
       padding: 0 20px;
     }
   
     .features__grid {
       grid-template-columns: 1fr;
       padding: 20px;
     }
   
     .feature {
       padding: 20px 16px;
     }
   
     /* Remove all vertical separators */
     .feature::before {
       display: none !important;
     }
   
     /* Add horizontal separators between all items */
     .feature:not(:last-child) {
       border-bottom: 1px solid var(--divider);
       padding-bottom: 24px;
       margin-bottom: 24px;
     }
   
     .feature:nth-child(n+3) {
       border-top: none;
       padding-top: 0;
       margin-top: 0;
     }
   }
   
   /* ============================================
      CINEMATIC HERO - PREMIUM GAMING BRAND
      Bold â€¢ Cinematic â€¢ Conversion-Focused
      ============================================ */
   
   .cinematic-hero {
     position: relative;
     min-height: 580px;
     display: flex;
     flex-direction: column;
     overflow: hidden;
     background: #000;
   }
   
   /* Background Effects */
   .cinematic-hero__bg {
     position: absolute;
     inset: 0;
     z-index: 0;
     overflow: hidden;
   }
   
   .cinematic-hero__glow {
     position: absolute;
     top: 50%;
     right: 15%;
     transform: translateY(-50%);
     width: 600px;
     height: 600px;
     background: radial-gradient(circle, rgba(80, 80, 120, 0.15) 0%, transparent 60%);
     pointer-events: none;
   }
   
   .cinematic-hero__particles {
     position: absolute;
     inset: 0;
     background-image:
       radial-gradient(1px 1px at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 100%),
       radial-gradient(1px 1px at 40% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 100%),
       radial-gradient(1px 1px at 60% 20%, rgba(255, 255, 255, 0.12) 0%, transparent 100%),
       radial-gradient(1px 1px at 80% 60%, rgba(255, 255, 255, 0.08) 0%, transparent 100%);
     opacity: 0.6;
   }
   
   /* Main Container - Split Layout */
   .cinematic-hero__container {
     position: relative;
     z-index: 1;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 48px;
     align-items: center;
     max-width: 1280px;
     margin: 0 auto;
     padding: 60px 48px 40px;
     flex: 1;
   }
   
   /* Left: Content */
   .cinematic-hero__content {
     max-width: 560px;
   }
   
   /* Badge */
   .cinematic-hero__badge {
     display: inline-flex;
     align-items: center;
     padding: 8px 16px;
     background: rgba(255, 255, 255, 0.05);
     border: 1px solid rgba(255, 255, 255, 0.1);
     border-radius: 100px;
     font-size: 12px;
     font-weight: 600;
     color: #888;
     letter-spacing: 0.5px;
     text-transform: uppercase;
     margin-bottom: 24px;
   }
   
   /* Headline */
   .cinematic-hero__headline {
     font-family: var(--nl-font-family);
     font-size: 52px;
     font-weight: 800;
     line-height: 1.1;
     letter-spacing: -2px;
     color: #fff;
     margin: 0 0 20px;
   }
   
   .cinematic-hero__accent {
     background: linear-gradient(135deg, #fff 0%, #666 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
   }
   
   /* Subheadline */
   .cinematic-hero__subheadline {
     font-size: 18px;
     font-weight: 500;
     color: #888;
     line-height: 1.5;
     margin: 0 0 16px;
     letter-spacing: -0.2px;
   }
   
   /* Description */
   .cinematic-hero__description {
     font-size: 15px;
     color: #555;
     line-height: 1.6;
     margin: 0 0 32px;
     max-width: 440px;
   }
   
   /* CTA Buttons */
   .cinematic-hero__cta {
     display: flex;
     align-items: center;
     gap: 16px;
   }
   
   .cinematic-btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
     padding: 14px 28px;
     font-size: 15px;
     font-weight: 700;
     border-radius: 10px;
     text-decoration: none;
     transition: all 0.25s cubic-bezier(0.2, 0.9, 0.3, 1);
     cursor: pointer;
   }
   
   .cinematic-btn--primary {
     background: #fff;
     color: #000;
     box-shadow: 0 4px 24px rgba(255, 255, 255, 0.12);
   }
   
   .cinematic-btn--primary:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 32px rgba(255, 255, 255, 0.18);
   }
   
   .cinematic-btn--primary svg {
     transition: transform 0.2s ease;
   }
   
   .cinematic-btn--primary:hover svg {
     transform: translateX(3px);
   }
   
   .cinematic-btn--secondary {
     background: transparent;
     color: #777;
     border: 1px solid rgba(255, 255, 255, 0.15);
   }
   
   .cinematic-btn--secondary:hover {
     color: #aaa;
     border-color: rgba(255, 255, 255, 0.25);
     background: rgba(255, 255, 255, 0.03);
   }
   
   /* Right: Visual */
   .cinematic-hero__visual {
     position: relative;
     display: flex;
     align-items: center;
     justify-content: center;
     height: 100%;
     min-height: 400px;
   }
   
   .cinematic-hero__spotlight {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     width: 450px;
     height: 450px;
     background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 60%);
     pointer-events: none;
   }
   
   .cinematic-hero__image {
     position: relative;
     z-index: 1;
     max-width: 100%;
     max-height: 420px;
     width: auto;
     height: auto;
     object-fit: contain;
     filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5));
   }
   
   /* Benefits Strip */
   .cinematic-benefits {
     position: relative;
     z-index: 2;
     background: rgba(255, 255, 255, 0.02);
     border-top: 1px solid rgba(255, 255, 255, 0.06);
     border-bottom: 1px solid rgba(255, 255, 255, 0.06);
   }
   
   .cinematic-benefits__container {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 48px;
     max-width: 1280px;
     margin: 0 auto;
     padding: 20px 48px;
   }
   
   .cinematic-benefit {
     display: flex;
     align-items: center;
     gap: 10px;
     font-size: 13px;
     font-weight: 500;
     color: #666;
   }
   
   .cinematic-benefit svg {
     color: #555;
     flex-shrink: 0;
   }
   
   /* Transition Fade */
   .cinematic-hero__fade {
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     height: 80px;
     background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
     pointer-events: none;
     z-index: 1;
   }
   
   /* Products Section Header */
   .products-section-header {
     text-align: center;
     margin-bottom: 32px;
     padding-top: 16px;
   }
   
   .products-section-title {
     font-family: var(--nl-font-family);
     font-size: 26px;
     font-weight: 700;
     color: #fff;
     margin: 0 0 6px;
     letter-spacing: -0.5px;
   }
   
   .products-section-subtitle {
     font-size: 14px;
     color: #555;
     margin: 0;
     font-weight: 400;
   }
   
   /* Spacing */
   .cinematic-hero+.site-content {
     margin-top: 0;
   }
   
   /* Responsive - Tablet */
   @media (max-width: 1024px) {
     .cinematic-hero__container {
       grid-template-columns: 1fr;
       gap: 32px;
       padding: 48px 32px 32px;
       text-align: center;
     }
   
     .cinematic-hero__content {
       max-width: 100%;
       order: 1;
     }
   
     .cinematic-hero__visual {
       order: 0;
       min-height: 280px;
     }
   
     .cinematic-hero__headline {
       font-size: 42px;
     }
   
     .cinematic-hero__description {
       max-width: 100%;
       margin-left: auto;
       margin-right: auto;
     }
   
     .cinematic-hero__cta {
       justify-content: center;
     }
   
     .cinematic-hero__image {
       max-height: 300px;
     }
   
     .cinematic-benefits__container {
       flex-wrap: wrap;
       gap: 24px 40px;
       padding: 16px 24px;
     }
   }
   
   /* Responsive - Mobile */
   @media (max-width: 640px) {
     .cinematic-hero {
       min-height: auto;
     }
   
     .cinematic-hero__container {
       padding: 36px 20px 24px;
       gap: 24px;
     }
   
     .cinematic-hero__badge {
       font-size: 11px;
       padding: 6px 12px;
       margin-bottom: 20px;
     }
   
     .cinematic-hero__headline {
       font-size: 32px;
       letter-spacing: -1px;
     }
   
     .cinematic-hero__subheadline {
       font-size: 16px;
     }
   
     .cinematic-hero__description {
       font-size: 14px;
       margin-bottom: 24px;
     }
   
     .cinematic-hero__cta {
       flex-direction: column;
       gap: 12px;
       width: 100%;
     }
   
     .cinematic-btn {
       width: 100%;
       max-width: 280px;
       padding: 12px 24px;
       font-size: 14px;
     }
   
     .cinematic-hero__visual {
       min-height: 200px;
     }
   
     .cinematic-hero__image {
       max-height: 220px;
     }
   
     .cinematic-benefits__container {
       flex-direction: column;
       gap: 16px;
       padding: 16px 20px;
     }
   
     .cinematic-benefit {
       font-size: 12px;
     }
   
     .products-section-header {
       margin-bottom: 24px;
     }
   
     .products-section-title {
       font-size: 22px;
     }
   }
   
   /* Responsive Design */
   @media (max-width: 1024px) {
     .hero-container {
       gap: 48px;
     }
   
     .hero-section {
       padding: 56px 0;
     }
   }
   
   @media (max-width: 768px) {
     .hero-container {
       grid-template-columns: 1fr;
       gap: 32px;
     }
   
     .hero-visual {
       height: 300px;
       order: 2;
     }
   
     .hero-content {
       order: 1;
     }
   
     .hero-headline {
       font-size: clamp(2rem, 7vw, 2.5rem);
     }
   
     .hero-section {
       padding: 40px 0;
     }
   
     .hero-glow {
       width: 80vw;
       height: 80vw;
     }
   
     .hero-logo {
       width: 200px;
       right: 10%;
     }
   }
   
   @media (max-width: 480px) {
     .hero-container {
       padding: 0 16px;
     }
   
     .hero-cta {
       width: 100%;
       justify-content: center;
     }
   
     .hero-logo {
       width: 150px;
       right: 5%;
     }
   }
   
   /* ===== FEATURES â€” ultra-clean row (no cards, no borders) ===== */
   
   /* tokens */
   :root {
     --fx-text: #EFEFEF;
     --fx-muted: #B4BAC3;
     --fx-icon-tile: rgba(255, 255, 255, 0.07);
     --fx-icon-tile-hover: rgba(255, 255, 255, 0.12);
   }
   
   /* section spacing */
   .features-section {
     background: transparent !important;
     padding: 28px 0 12px !important;
     /* slim like your ref */
   }
   
   /* Home: unified section headers + template buyer hints (index.html) */
   .section-header:has(.section-kicker)::before {
     content: none !important;
     display: none !important;
   }
   
   .section-kicker {
     display: inline-block;
     margin: 0 auto 10px;
     padding: 5px 12px;
     border-radius: 999px;
     font-size: 10px;
     font-weight: 700;
     letter-spacing: 0.2em;
     text-transform: uppercase;
     color: rgb(from var(--theme-accent, #4db8a8) r g b / 0.35);
     background: rgb(from var(--theme-accent, #4db8a8) r g b / 0.35);
     border: 1px solid rgb(from var(--theme-accent, #4db8a8) r g b / 0.35);
   }
   
   .features-section__header {
     text-align: center;
     max-width: 720px;
     margin: 0 auto 28px;
     padding: 0 20px;
   }
   
   .features-section__header .section-title {
     font-size: clamp(26px, 4vw, 36px);
     margin-bottom: 10px;
   }
   
   .section-template-hint {
     font-size: 12px !important;
     line-height: 1.65 !important;
     color: rgba(255, 255, 255, 0.42) !important;
     max-width: 640px;
     margin: 12px auto 0 !important;
     text-align: center;
   }
   
   .section-template-hint--narrow {
     max-width: 520px;
     margin-left: auto !important;
     margin-right: auto !important;
   }
   
   .store-statistics-subheader .section-template-hint {
     margin-top: 10px !important;
   }
   
   .section-template-code {
     font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
     font-size: 0.9em;
     color: rgb(from var(--theme-accent, #4db8a8) r g b / 0.35);
     background: rgba(0, 0, 0, 0.35);
     padding: 1px 6px;
     border-radius: 4px;
     border: 1px solid rgba(255, 255, 255, 0.08);
   }
   
   /* one row, evenly spaced, transparent */
   .features-section .features-container {
     max-width: 1450px;
     margin: 0 auto;
     padding: 0 00px;
     display: flex !important;
     align-items: flex-start;
     justify-content: space-between;
     gap: 72px;
     /* distance between items */
     flex-wrap: nowrap;
   }
   
   /* kill any previous "card" styling */
   .features-section .feature-card {
     background: transparent !important;
     border: 0 !important;
     box-shadow: none !important;
     outline: 0 !important;
     padding: 0 !important;
     margin: 0 !important;
   
     display: flex;
     align-items: center;
     gap: 14px;
     min-width: 250px;
     /* keeps lines nice */
   }
   
   /* soft icon square */
   .features-section .feature-icon {
     width: 40px;
     height: 40px;
     min-width: 40px;
     display: grid;
     place-items: center;
     border-radius: 10px;
     background: var(--fx-icon-tile) !important;
     /* subtle, no border */
     color: #ffffff;
     box-shadow: none !important;
     transition: background .15s ease;
   }
   
   .features-section .feature-card:hover .feature-icon {
     background: var(--fx-icon-tile-hover);
   }
   
   .features-section .feature-icon i,
   .features-section .feature-icon svg {
     font-size: 16px;
     line-height: 1;
     color: #ffffff !important;
     stroke: #ffffff !important;
     transition: filter 0.3s ease, stroke 0.1s ease;
   }
   
   /* Static white icons + hover glow (no theme primary color) */
   .features-section .feature-card:hover .feature-icon i,
   .features-section .feature-card:hover .feature-icon svg,
   .features-section .feature-card:focus-within .feature-icon i,
   .features-section .feature-card:focus-within .feature-icon svg {
     color: #ffffff !important;
     stroke: #ffffff !important;
     filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6)) drop-shadow(0 0 12px rgba(255, 255, 255, 0.4));
     transform: none;
   }

   /* Performance zap — white flicker on hover */
   .features-section .feature-card:has(.lucide-zap):hover .feature-icon svg.lucide-zap {
     animation: featureIconWhiteFlicker 0.6s ease-out forwards;
   }

   @keyframes featureIconWhiteFlicker {
     0% {
       stroke: #ffffff;
       filter: drop-shadow(0 0 0 transparent);
     }
     10% {
       stroke: #ffffff;
       filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.7));
     }
     20% {
       stroke: #ffffff;
       filter: drop-shadow(0 0 0 transparent);
     }
     30% {
       stroke: #ffffff;
       filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.7));
     }
     40% {
       stroke: #ffffff;
       filter: drop-shadow(0 0 0 transparent);
     }
     50%,
     100% {
       stroke: #ffffff;
       filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.65)) drop-shadow(0 0 12px rgba(255, 255, 255, 0.4));
     }
   }
   
   /* text */
   .features-section .feature-content {
     max-width: 260px;
   }
   
   .features-section .feature-title {
     margin: 0 0 6px;
     font-weight: 800;
     font-size: 16px;
     letter-spacing: .2px;
     color: var(--fx-text);
   }
   
   .features-section .feature-description {
     margin: 0;
     font-size: 11px;
     line-height: 1.55;
     color: var(--fx-muted);
   }
   
   /* accessibility without outlines/borders */
   .features-section .feature-card:focus-within .feature-icon {
     background: var(--fx-icon-tile-hover);
   }
   
   /* responsive: wrap to two columns then one */
   @media (max-width: 1200px) {
     .features-section .features-container {
       justify-content: center;
       gap: 40px 64px;
       flex-wrap: wrap;
     }
   }
   
   @media (max-width: 640px) {
     .features-section .features-container {
       gap: 18px 24px;
     }
   
     .features-section .feature-card {
       min-width: 0;
     }
   
     .features-section .feature-content {
       max-width: none;
     }
   }
   
   .templates-icon {
     width: 16px;
     height: 16px;
     display: inline-block;
     margin-right: 12px;
     color: inherit;
     transition: color 0.2s ease;
   }
   
   /* ============================================
      GLOBAL WIREFRAME GRID BACKGROUND
      ============================================ */
   
   body::before {
     content: '';
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 0;
     pointer-events: none;
     background-image:
       radial-gradient(circle at center, rgba(120, 120, 140, 0.4) 1.5px, transparent 1.5px),
       repeating-linear-gradient(90deg, transparent, transparent 3px, rgba(80, 80, 100, 0.25) 3px, rgba(80, 80, 100, 0.25) 4px, transparent 4px, transparent 8px),
       repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(80, 80, 100, 0.25) 3px, rgba(80, 80, 100, 0.25) 4px, transparent 4px, transparent 8px);
     background-size: 80px 80px, 80px 8px, 8px 80px;
     background-position: 0 0, 0 0, 0 0;
     opacity: 0.5;
   }
   
   body::after {
     content: '';
     position: fixed;
     bottom: 0;
     left: 50%;
     transform: translateX(-50%);
     width: 100%;
     height: 60%;
     z-index: 0;
     pointer-events: none;
     background: radial-gradient(ellipse at center bottom, rgba(100, 100, 140, 0.08) 0%, rgba(80, 80, 120, 0.04) 30%, transparent 60%);
     opacity: 0.8;
   }
   
   .site,
   .site-header,
   .site-navigation {
     position: relative;
     z-index: 100;
   }
   
   
   /* ============================================
      BREADCRUMB NAVIGATION
      ============================================ */
   
   .breadcrumb {
     display: flex;
     align-items: center;
     gap: 8px;
     padding: 12px 0;
     margin-bottom: 8px;
     font-size: 13px;
     color: rgba(255, 255, 255, 0.4);
     font-family: var(--nl-font-family);
   }
   
   .breadcrumb-list {
     display: flex;
     align-items: center;
     gap: 8px;
     list-style: none;
     margin: 0;
     padding: 0;
     flex-wrap: wrap;
   }
   
   .breadcrumb-item {
     display: flex;
     align-items: center;
     gap: 8px;
   }
   
   .breadcrumb-link {
     color: rgba(255, 255, 255, 0.4);
     text-decoration: none;
     transition: color 0.2s ease;
     font-weight: 500;
   }
   
   .breadcrumb-link:hover {
     color: #ffffff;
   }
   
   .breadcrumb-page {
     color: #ffffff;
     font-weight: 600;
   }
   
   .breadcrumb-separator {
     color: rgba(255, 255, 255, 0.15);
     font-size: 12px;
     user-select: none;
   }
   
   .breadcrumb-separator::before {
     content: "/";
   }
   
   @media (max-width: 768px) {
     .breadcrumb-item.hide-mobile {
       display: none;
     }
   }
   
   
   /* ============================================
      PACKAGE DETAIL PAGE - CLEAN CONSOLIDATED
      One single source of truth for product pages
      ============================================ */
   
   /* Base reset - override shared.css grid template */
   .store-product.store-product-full {
     display: block !important;
     grid-template: none !important;
     padding: 0;
     background: transparent;
     border: none;
     max-width: 100%;
     margin: 0;
     animation: pkgFadeIn 0.5s ease-out;
   }
   
   @keyframes pkgFadeIn {
     from {
       opacity: 0;
       transform: translateY(20px);
     }
   
     to {
       opacity: 1;
       transform: translateY(0);
     }
   }
   
   .site-content-widgets {
     padding-top: 16px;
   }
   
   /* Two-column grid */
   .store-product-full .product-main {
     display: grid !important;
     grid-template-columns: 1.55fr 1fr;
     gap: 28px;
     align-items: start;
   }
   
   /* Left column: Media */
   .store-product-full .product-media {
     grid-column: 1;
     grid-row: 1;
     width: 100% !important;
     max-width: 100% !important;
   }
   
   .store-product-full .product-media .media-viewport {
     position: relative !important;
     width: 100%;
     aspect-ratio: 16 / 9;
     overflow: hidden;
     border-radius: 12px;
     background: #0e0e0e;
     border: 1px solid rgba(255, 255, 255, 0.06);
   }
   
   .store-product-full .media-thumbs {
     gap: 10px;
     margin-top: 12px;
     overflow-x: auto;
     padding-bottom: 4px;
     scrollbar-width: thin;
     scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
   }
   
   .store-product-full .media-thumbs .thumb {
     width: 80px;
     height: 54px;
     overflow: hidden;
     border-radius: 8px;
     flex: 0 0 auto;
     border: 2px solid transparent;
     cursor: pointer;
     transition: border-color 0.2s ease;
   }
   
   .store-product-full .media-thumbs .thumb:hover,
   .store-product-full .media-thumbs .thumb.is-active {
     border-color: var(--theme-accent, #4db8a8);
   }
   
   .store-product-full .media-thumbs .thumb img {
     width: 100%;
     height: 100%;
     object-fit: cover;
   }
   
   /* Right column: Summary card */
   .store-product-full .product-summary {
     grid-column: 2;
     grid-row: 1 / -1;
     width: 100% !important;
     max-width: 100% !important;
     background: #161616;
     border: 1px solid rgba(255, 255, 255, 0.07);
     border-radius: 14px;
     padding: 28px;
   }
   
   /* Title */
   .store-product-full .product-title {
     font-family: var(--nl-font-family) !important;
     font-size: 28px !important;
     font-weight: 700 !important;
     color: #ffffff !important;
     margin: 0 0 10px 0 !important;
     line-height: 1.2 !important;
     letter-spacing: -0.02em !important;
     padding: 0 !important;
   }
   
   /* Price */
   .store-product-full .product-actions .price {
     font-family: var(--nl-font-family) !important;
     font-size: 22px !important;
     font-weight: 600 !important;
     color: var(--theme-accent, #4db8a8) !important;
     margin: 0 0 12px 0 !important;
     padding: 0 !important;
     line-height: 1.25 !important;
     order: -1 !important;
   }
   
   .store-product-full .product-actions .price strong {
     font-family: var(--nl-font-family) !important;
     font-weight: 600 !important;
     color: var(--theme-accent, #4db8a8) !important;
     font-size: inherit !important;
   }
   
   .store-product-full .product-actions .price .discount {
     color: rgba(255, 255, 255, 0.35) !important;
     font-size: 16px !important;
     font-weight: 400 !important;
   }
   
   /* Product actions container */
   .store-product-full .product-actions {
     display: flex !important;
     flex-direction: column !important;
     gap: 0 !important;
     align-items: flex-start !important;
     padding: 0 !important;
     background: transparent !important;
     border: none !important;
     box-shadow: none !important;
     position: static !important;
   }
   
   /* Override shared.css sticky actions bar */
   .store-product.store-product-full .actions {
     position: static !important;
     margin: 0 !important;
     padding: 0 !important;
     background: transparent !important;
     backdrop-filter: none !important;
   }
   
   /* Button group row */
   .store-product-full .actions .button-group {
     display: flex !important;
     gap: 10px !important;
     width: auto !important;
     justify-content: flex-start !important;
     margin-bottom: 0 !important;
   }
   
   /* Primary button â€” compact off-white (product page) */
   .store-product-full .actions .button-group .btn.add.btn-primary.wide {
     flex: 0 1 auto !important;
     width: auto !important;
     min-width: 168px !important;
     max-width: 260px !important;
     min-height: 30px !important;
     height: 30px !important;
     border-radius: 10px !important;
     background: #e9eaec !important;
     color: #1a1a1a !important;
     border: 1px solid rgba(0, 0, 0, 0.05) !important;
     box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04) !important;
     font-family: var(--nl-font-family) !important;
     font-size: 12.5px !important;
     font-weight: 500 !important;
     letter-spacing: -0.01em !important;
     -webkit-font-smoothing: antialiased;
     text-rendering: optimizeLegibility;
     transition: background-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease !important;
     padding: 0 14px !important;
     cursor: pointer !important;
     display: inline-flex !important;
     align-items: center !important;
     justify-content: center !important;
     gap: 7px !important;
     text-decoration: none !important;
   }

   .store-product-full .actions .button-group .btn.add.btn-primary.wide .button-icon-wrapper {
     position: relative !important;
     width: 15px !important;
     height: 15px !important;
     min-width: 15px !important;
     display: inline-flex !important;
     align-items: center !important;
     justify-content: center !important;
     flex-shrink: 0 !important;
   }

   .store-product-full .actions .button-group .btn.add.btn-primary.wide .button-icon {
     width: 15px !important;
     height: 15px !important;
     max-width: 15px !important;
     max-height: 15px !important;
     display: block !important;
     position: absolute !important;
     top: 50% !important;
     left: 50% !important;
     transform: translate(-50%, -50%) !important;
     flex-shrink: 0 !important;
   }

   .store-product-full .actions .button-group .btn.add.btn-primary.wide .button-icon.hidden {
     display: none !important;
     opacity: 0 !important;
     pointer-events: none !important;
   }
   
   .store-product-full .actions .button-group .btn.add.btn-primary.wide:hover:not(.remove-state):not([data-action="remove"]),
   .store-product-full .actions .button-group .btn.add.btn-primary.wide.basket-toggle-button:hover:not(.remove-state):not([data-action="remove"]),
   .store-product-full .nl-pkg__actions a.nl-pkg__btn.nl-pkg__btn--primary.basket-toggle-button:hover:not(.remove-state):not([data-action="remove"]) {
     background: #e9eaec !important;
     box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04) !important;
     transform: none !important;
     filter: none !important;
     opacity: 0.82;
   }
   
   .store-product-full .actions .button-group .btn.add.btn-primary.wide:active:not(.remove-state):not([data-action="remove"]),
   .store-product-full .nl-pkg__actions a.nl-pkg__btn.nl-pkg__btn--primary.basket-toggle-button:active:not(.remove-state):not([data-action="remove"]) {
     background: #e9eaec !important;
     transform: none !important;
     opacity: 0.72;
   }
   
   .store-product-full .actions .button-group {
     width: auto !important;
     margin: 8px 0 0 !important;
   }
   
   /* Gift button - dark square */
   .store-product-full .actions .button-group .btn.btn-secondary.btn-icon.gift {
     flex: 0 0 auto !important;
     width: 30px !important;
     height: 30px !important;
     border-radius: 10px !important;
     background: rgba(255, 255, 255, 0.08) !important;
     border: 1px solid rgba(255, 255, 255, 0.1) !important;
     box-shadow: none !important;
     transition: background 0.2s ease !important;
   }
   
   .store-product-full .actions .button-group .btn.btn-secondary.btn-icon.gift:hover {
     background: rgba(255, 255, 255, 0.12) !important;
   }
   
   .store-product-full .actions .button-group .btn.btn-secondary.btn-icon.gift i,
   .store-product-full .actions .button-group .btn.btn-secondary.btn-icon.gift .fa-gift {
     color: rgba(255, 255, 255, 0.5) !important;
   }
   
   /* Product header inside card */
   .store-product-full .product-summary .product-header {
     padding-bottom: 0;
     margin-bottom: 20px;
     border-bottom: none;
   }
   
   /* Hide payment-info from buy zone - clutters the flow */
   .store-product-full .product-summary .payment-info {
     display: none !important;
   }
   
   /* Live Stats - Minimal elegant */
   .live-stats-card {
     margin: 0 0 24px;
     padding: 20px 0 0;
     background: transparent;
     border: none;
     border-top: 1px solid rgba(255, 255, 255, 0.05);
     border-radius: 0;
   }
   
   .live-stats-header {
     display: flex;
     align-items: center;
     gap: 8px;
     margin-bottom: 14px;
   }
   
   .live-stats-pulse {
     width: 8px;
     height: 8px;
     background: var(--theme-accent, #4db8a8);
     border-radius: 50%;
     position: relative;
     flex-shrink: 0;
   }
   
   .live-stats-pulse::after {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     border-radius: 50%;
     box-shadow: 0 0 0 0 var(--theme-accent, #4db8a8);
     animation: circlePulse 2s infinite;
   }
   
   @keyframes circlePulse {
     0% {
       transform: scale(0.95);
       box-shadow: 0 0 0 0 rgb(from var(--theme-accent, #4db8a8) r g b / 0.35);
     }
   
     50% {
       transform: scale(1);
       box-shadow: 0 0 0 8px rgb(from var(--theme-accent, #4db8a8) r g b / 0.35);
     }
   
     100% {
       transform: scale(0.95);
       box-shadow: 0 0 0 0 rgb(from var(--theme-accent, #4db8a8) r g b / 0.35);
     }
   }
   
   .live-stats-label {
     font-size: 10px;
     font-weight: 600;
     letter-spacing: 1.5px;
     text-transform: uppercase;
     color: rgba(255, 255, 255, 0.3);
   }
   
   .live-stats-numbers {
     display: flex;
     align-items: center;
     gap: 0;
     padding: 16px 0 8px;
   }
   
   .live-stat-col {
     flex: 1;
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 4px;
   }
   
   .live-stat-num {
     font-family: var(--nl-font-family);
     font-size: 32px;
     font-weight: 800;
     line-height: 1;
     letter-spacing: -1.5px;
     background: linear-gradient(180deg, #ffffff 30%, rgba(255, 255, 255, 0.4) 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
   }
   
   .live-stat-tag {
     font-size: 10px;
     font-weight: 600;
     letter-spacing: 1px;
     text-transform: uppercase;
     color: rgba(255, 255, 255, 0.25);
   }
   
   .live-stats-divider {
     width: 1px;
     height: 36px;
     background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.08), transparent);
     flex-shrink: 0;
   }
   
   .live-stats-foot {
     padding-top: 12px;
     font-size: 10px;
     color: rgba(255, 255, 255, 0.18);
     text-align: center;
   }
   
   .live-stats-foot strong {
     color: rgba(255, 255, 255, 0.3);
     font-weight: 600;
   }
   
   /* Description section */
   .store-product-full .product-summary .product-description {
     background: transparent !important;
     border: none !important;
     border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
     border-radius: 0 !important;
     padding: 20px 0 0 !important;
     margin-top: 4px !important;
     height: fit-content;
   }
   
   .store-product-full .product-summary .product-description .description-title {
     font-family: var(--nl-font-family) !important;
     font-size: 16px !important;
     font-weight: 700 !important;
     color: #ffffff !important;
     margin: 0 0 14px 0 !important;
     padding: 0 !important;
     border: none !important;
     text-transform: none !important;
     letter-spacing: -0.01em !important;
   }
   
   .store-product-full .product-summary .product-description .descr {
     background: transparent !important;
     padding: 0 !important;
     font-size: 14px !important;
     line-height: 1.7 !important;
     color: rgba(255, 255, 255, 0.55) !important;
   }
   
   .store-product-full .product-description .descr p {
     margin: 0 0 12px 0;
     line-height: 1.7;
   }
   
   .store-product-full .product-description .descr p:last-child {
     margin-bottom: 0;
   }
   
   .store-product-full .product-description hr {
     display: none !important;
   }
   
   .store-product-full .product-description pre {
     background: transparent !important;
     padding: 0 !important;
     margin: 0 !important;
     border: none !important;
     font-family: inherit !important;
     color: rgba(255, 255, 255, 0.55) !important;
   }
   
   .store-product-full .product-description h1,
   .store-product-full .product-description h2,
   .store-product-full .product-description h3,
   .store-product-full .product-description h4,
   .store-product-full .product-description h5,
   .store-product-full .product-description h6 {
     border: none !important;
     background: transparent !important;
     padding: 0;
     margin: 16px 0 6px 0;
     font-size: 15px;
     font-weight: 600;
     color: #fff !important;
   }
   
   .store-product-full .product-description ul {
     list-style: disc;
     padding-left: 1.5em;
     margin: 0 0 12px 0;
   }
   
   .store-product-full .product-description li {
     margin: 0 0 8px 0;
     color: rgba(255, 255, 255, 0.55);
     line-height: 1.6;
   }
   
   .store-product-full .product-description a {
     color: var(--theme-accent, #4db8a8) !important;
     text-decoration: none;
     transition: color 0.2s ease;
   }
   
   .store-product-full .product-description a:hover {
     color: #6FE1D5 !important;
     text-decoration: underline;
   }
   
   .store-product-full .product-description * {
     color: rgba(255, 255, 255, 0.55);
   }
   
   .store-product-full .product-description code {
     background: rgba(255, 255, 255, 0.05) !important;
     padding: 2px 6px;
     border-radius: 4px;
     font-family: 'Courier New', monospace;
     font-size: 0.9em;
   }
   
   .store-product-full .product-description blockquote {
     background: transparent !important;
     border-left: 3px solid rgba(255, 255, 255, 0.1);
     padding-left: 16px;
     margin: 16px 0;
     font-style: italic;
     color: rgba(255, 255, 255, 0.5);
   }
   
   /* Countdown */
   .store-product-full .countdown {
     background: rgba(255, 68, 68, 0.9);
     color: white;
     padding: 4px 10px;
     border-radius: 12px;
     font-size: 12px;
     font-weight: 600;
     width: fit-content;
   }
   
   
   /* ============================================
      RESPONSIVE - PRODUCT PAGE
      ============================================ */
   @media (max-width: 1024px) {
     .store-product-full .product-main {
       display: flex !important;
       flex-direction: column;
       gap: 20px;
     }
   
     .store-product-full .product-media,
     .store-product-full .product-summary {
       grid-column: auto;
       grid-row: auto;
     }
   
     .store-product-full .product-summary {
       padding: 24px;
     }
   }
   
   @media (max-width: 768px) {
     .store-product-full .product-summary {
       padding: 20px;
       border-radius: 12px;
     }
   
     .store-product-full .product-title {
       font-size: 24px !important;
     }
   }
   
   @media (max-width: 480px) {
     .store-product-full .product-summary {
       padding: 16px;
     }
   
     .store-product-full .product-title {
       font-size: 22px !important;
     }
   }
   
   @media (prefers-reduced-motion: reduce) {
     .store-product.store-product-full {
       animation: none;
     }
   }
   
   /* =========================
      FAQ SECTION
      ========================= */
   .faq-section {
     max-width: 820px;
     margin: 0 auto;
     padding: 80px 20px 60px;
   }
   
   .faq-heading {
     font-family: var(--nl-font-family);
     font-size: 32px;
     font-weight: 700;
     color: #fff;
     text-align: center;
     margin-bottom: 40px;
   }
   
   .faq-list {
     display: flex;
     flex-direction: column;
     gap: 12px;
   }
   
   .faq-item {
     background: #1e1e1e;
     border: 1px solid #2d2d2d;
     border-radius: 8px;
     overflow: hidden;
     transition: border-color 0.3s ease;
   }
   
   .faq-item:hover {
     border-color: #3d3d3d;
   }
   
   .faq-item.open {
     border-color: #444;
   }
   
   .faq-question {
     width: 100%;
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 18px 22px;
     background: none;
     border: none;
     color: #e0e0e0;
     font-family: var(--nl-font-family);
     font-size: 15px;
     font-weight: 500;
     text-align: left;
     cursor: pointer;
     transition: color 0.2s ease;
   }
   
   .faq-question:hover {
     color: #fff;
   }
   
   .faq-chevron {
     flex-shrink: 0;
     color: #666;
     transition: transform 0.3s ease, color 0.3s ease;
   }
   
   .faq-item.open .faq-chevron {
     transform: rotate(180deg);
     color: #a0a0a0;
   }
   
   .faq-answer {
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.35s ease, padding 0.35s ease;
     padding: 0 22px;
   }
   
   .faq-item.open .faq-answer {
     max-height: 200px;
     padding: 0 22px 18px;
   }
   
   .faq-answer p {
     font-family: var(--nl-font-family);
     font-size: 14px;
     font-weight: 400;
     color: #999;
     line-height: 1.7;
     margin: 0;
   }
   
   @media (max-width: 600px) {
     .faq-section {
       padding: 50px 16px 40px;
     }
   
     .faq-heading {
       font-size: 24px;
       margin-bottom: 28px;
     }
   
     .faq-question {
       font-size: 14px;
       padding: 16px 18px;
     }
   
     .faq-answer {
       padding: 0 18px;
     }
   
     .faq-item.open .faq-answer {
       padding: 0 18px 16px;
     }
   }
   
   
   /* ============================================
      PROMO ANNOUNCEMENT BAR - Animated Marquee
      ============================================ */
   
   .promo-bar {
     position: relative;
     z-index: 1000;
     width: 100%;
     overflow: hidden;
     background: var(--promo-bar-bg, #0e0e10);
     border-bottom: 1px solid rgb(from var(--promo-bar-accent, var(--theme-accent, #4db8a8)) r g b / 0.35);
     font-family: var(--nl-font-family);
     user-select: none;
   }
   
   .promo-bar__track {
     display: flex;
     width: max-content;
     animation: promoScroll 25s linear infinite;
     will-change: transform;
   }
   
   .promo-bar__content {
     display: flex;
     align-items: center;
     gap: 0;
     flex-shrink: 0;
   }
   
   .promo-bar__item {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     padding: 9px 40px;
     font-size: 12px;
     font-weight: 500;
     letter-spacing: 0.3px;
     color: rgba(255, 255, 255, 0.6);
     white-space: nowrap;
   }
   
   .promo-bar__star {
     width: 12px;
     height: 12px;
     color: var(--theme-accent, #4db8a8);
     opacity: 0.7;
     flex-shrink: 0;
   }
   
   .promo-bar__code {
     color: var(--promo-bar-accent, var(--theme-accent, #4db8a8));
     font-weight: 700;
     letter-spacing: 0.8px;
     padding: 2px 7px;
     background: rgb(from var(--promo-bar-accent, var(--theme-accent, #4db8a8)) r g b / 0.35);
     border-radius: 4px;
     border: 1px solid rgb(from var(--promo-bar-accent, var(--theme-accent, #4db8a8)) r g b / 0.35);
     font-size: 11px;
     cursor: pointer;
     transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
   }
   
   /* Non-interactive teal chip (e.g. auto-applied % off, no copy action) */
   .promo-bar__pill {
     display: inline-block;
     color: var(--theme-accent, #4db8a8);
     font-weight: 700;
     letter-spacing: 0.8px;
     padding: 2px 7px;
     background: rgb(from var(--theme-accent, #4db8a8) r g b / 0.35);
     border-radius: 4px;
     border: 1px solid rgb(from var(--theme-accent, #4db8a8) r g b / 0.35);
     font-size: 11px;
     line-height: 1.2;
     vertical-align: baseline;
   }
   
   .promo-bar__code:hover {
     background: rgb(from var(--theme-accent, #4db8a8) r g b / 0.35);
     border-color: rgb(from var(--theme-accent, #4db8a8) r g b / 0.35);
     box-shadow: 0 0 8px rgb(from var(--theme-accent, #4db8a8) r g b / 0.35);
   }
   
   .promo-bar__code--copied {
     background: rgb(from var(--theme-accent, #4db8a8) r g b / 0.35) !important;
     border-color: var(--theme-accent, #4db8a8) !important;
     color: #6fe1d5 !important;
   }
   
   
   
   @keyframes promoScroll {
     0% {
       transform: translateX(0);
     }
   
     100% {
       transform: translateX(-50%);
     }
   }
   
   @media (max-width: 768px) {
     .promo-bar__item {
       padding: 8px 28px;
       font-size: 11px;
     }
   
     .promo-bar__track {
       animation-duration: 18s;
     }
   }
   
   @media (max-width: 480px) {
     .promo-bar__item {
       padding: 7px 20px;
       font-size: 10px;
       gap: 6px;
     }
   
     .promo-bar__code,
     .promo-bar__pill {
       font-size: 10px;
       padding: 1px 5px;
     }
   }
   
   /* ===========================
      STICKY FOOTER FIX
      Switches .site from grid to flexbox column so the footer always
      sits at the bottom of the viewport on short pages (packages, etc.)
      without creating empty space inside the content area.
      =========================== */
   .site {
     display: flex !important;
     flex-direction: column !important;
     min-height: calc(100vh - var(--tebex-footer-height, 35px)) !important;
     gap: 0 !important;
   }
   
   .site > * {
     width: 100%;
   }
   
   /* Content area grows to push footer to the bottom */
   .site-content {
     flex: 1 !important;
     padding-bottom: var(--widget-padding, 24px);
   }
   
   /* Remove the artificial gap between content and footer */
   .site-footer {
     margin-top: 0 !important;
   }

/* Tebex-safe utility + package basket icon sizing fallback */
.hidden,
[hidden] {
  display: none !important;
}

.store-product-full .actions.product-actions[data-package] .button-icon {
  width: 15px !important;
  height: 15px !important;
  max-width: 15px !important;
  max-height: 15px !important;
}

/* Product page — basket toggle must stay clickable (not broken by all:unset) */
.store-product-full .nl-pkg__actions .basket-toggle-button,
.store-product-full .actions .basket-toggle-button {
  pointer-events: auto !important;
  cursor: pointer !important;
  position: relative !important;
  z-index: 2 !important;
  display: inline-flex !important;
  align-items: center !important;
  text-decoration: none !important;
}

.store-product-full .nl-pkg__actions .button-icon-wrapper,
.store-product-full .nl-pkg__actions .button-icon-wrapper * {
  pointer-events: none !important;
}

.store-product-full .nl-pkg__actions .nl-pkg__svg-cart,
.store-product-full .nl-pkg__actions .nl-pkg__svg-trash {
  width: 14px !important;
  height: 14px !important;
  max-width: 14px !important;
  max-height: 14px !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
}

.store-product-full .nl-pkg__actions .nl-pkg__btn-icon {
  position: relative !important;
  width: 15px !important;
  height: 15px !important;
  flex-shrink: 0 !important;
  display: inline-flex !important;
}

.store-product-full .nl-pkg__actions .nl-pkg__btn-row {
  display: flex !important;
  align-items: stretch !important;
  gap: 10px !important;
  width: auto !important;
  margin-top: 8px !important;
}

.store-product-full .nl-pkg__actions a.nl-pkg__btn.nl-pkg__btn--primary.basket-toggle-button {
  all: unset;
  box-sizing: border-box;
  flex: 0 1 auto !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 7px !important;
  min-width: 168px !important;
  min-height: 32px !important;
  height: 32px !important;
  padding: 0 14px !important;
  border-radius: 8px !important;
  background: #e9eaec !important;
  color: #1a1a1a !important;
  font-family: var(--nl-font-family) !important;
  font-size: 12.5px !important;
  font-weight: 500 !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  cursor: pointer !important;
  text-decoration: none !important;
  transition: opacity 0.18s ease !important;
  transform: none !important;
  filter: none !important;
}

.store-product-full .nl-pkg__actions a.nl-pkg__btn--primary[data-action="remove"],
.store-product-full .nl-pkg__actions a.nl-pkg__btn--primary.remove-state {
  background: #2a2a2e !important;
  color: #f4f4f5 !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: none !important;
}

.store-product-full .nl-pkg__actions .nl-pkg__btn--icon.gift {
  flex: 0 0 32px !important;
  width: 32px !important;
  height: 32px !important;
  min-height: 32px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 8px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  cursor: pointer !important;
}

/* ==========================================================================
   NL — MOBILE HEADER + NAV DRAWER  (authoritative, single source of truth)
   --------------------------------------------------------------------------
   Appended LAST on purpose: earlier in this file the hamburger is styled by
   ~10 conflicting blocks (lines ~600, ~4644, ~7698, ~8358, ~10507). The last
   one turned it into a detached "glass box" pinned to the top-right corner,
   and a stray transform:translateZ(0) scrambled the z-order so the currency
   pill floated on top of the open menu.
   Carotto Studios feedback: hamburger placed wrongly + wrong style.
   This block resets all of that to a clean single-row header and a clean
   slide-in drawer with a proper close (X). Everything is scoped to
   max-width:960px so desktop is untouched.
   ========================================================================== */
@media (max-width: 960px) {

  /* ---- Header bar: one clean, vertically-centered row ---- */
  body.is-navigation-horizontal .site-header-inner {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
    gap: 12px !important;
    height: auto !important;
    min-height: 56px !important;
    padding: 10px 16px !important;
    position: relative !important;
  }

  /* Logo — left, vertically centred, never clipped */
  body.is-navigation-horizontal .site-header-inner .site-title {
    position: static !important;
    order: 0 !important;
    top: auto !important;
    left: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    width: auto !important;
    flex: 0 1 auto !important;
    display: flex !important;
    align-items: center !important;
    line-height: 1 !important;
    font-size: 0 !important;
    z-index: auto !important;
  }
  body.is-navigation-horizontal .site-header-inner .site-title img,
  body.is-navigation-horizontal .site-header-inner .site-title .site-title-logo {
    max-height: 30px !important;
    max-width: 150px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
  }

  /* Actions — right, inline row: currency · cart · hamburger */
  body.is-navigation-horizontal .site-header-inner .actions {
    position: static !important;
    order: 1 !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin: 0 !important;
    padding: 0 !important;
    width: auto !important;
    flex: 0 0 auto !important;
  }

  /* Server / discord info row — off on mobile to keep the bar compact */
  body.is-navigation-horizontal .site-header-inner .info {
    display: none !important;
  }

  /* ---- Hamburger: clean inline icon button (kills the floating glass box) ---- */
  body.is-navigation-horizontal .site-header .actions .toggle-navigation,
  body.is-navigation-horizontal .site-header-inner .actions button.toggle-navigation {
    position: static !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 auto !important;
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    background-image: none !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    border: none !important;
    border-radius: 10px !important;
    box-shadow: none !important;
    transform: none !important;
    will-change: auto !important;
    z-index: auto !important;
    cursor: pointer !important;
  }
  body.is-navigation-horizontal .site-header .actions .toggle-navigation:hover {
    background: rgba(255, 255, 255, 0.07) !important;
    border: none !important;
    transform: none !important;
  }

  /* Hamburger lines — three even white bars */
  body.is-navigation-horizontal .toggle-navigation .hamburger-icon {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: stretch !important;
    gap: 5px !important;
    width: 22px !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    pointer-events: none !important;
  }
  body.is-navigation-horizontal .toggle-navigation .hamburger-icon .line {
    display: block !important;
    position: relative !important;
    width: 100% !important;
    height: 2px !important;
    background-color: #ffffff !important;
    border-radius: 2px !important;
    opacity: 1 !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;
    transition: transform 0.25s ease, opacity 0.2s ease !important;
  }

  /* Cart button — visible, white icon, matching size */
  body.is-navigation-horizontal .site-header-inner .actions .mobile-basket-btn,
  body.is-navigation-horizontal .site-header-inner .actions .open-basket {
    position: static !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 auto !important;
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: none !important;
    border-radius: 10px !important;
    box-shadow: none !important;
  }
  body.is-navigation-horizontal .site-header-inner .actions .mobile-basket-btn:hover,
  body.is-navigation-horizontal .site-header-inner .actions .open-basket:hover {
    background: rgba(255, 255, 255, 0.07) !important;
  }
  body.is-navigation-horizontal .site-header-inner .actions .mobile-basket-btn svg,
  body.is-navigation-horizontal .site-header-inner .actions .open-basket svg,
  body.is-navigation-horizontal .site-header-inner .actions .mobile-basket-btn .cart-icon,
  body.is-navigation-horizontal .site-header-inner .actions .open-basket .cart-icon {
    width: 22px !important;
    height: 22px !important;
    color: #ffffff !important;
    fill: #ffffff !important;
  }
  body.is-navigation-horizontal .site-header-inner .actions .mobile-basket-btn svg path,
  body.is-navigation-horizontal .site-header-inner .actions .open-basket svg path {
    fill: #ffffff !important;
  }

  /* Header currency pill — inline in the row */
  body.is-navigation-horizontal .site-header-inner .actions .site-header-currency {
    display: flex !important;
    align-items: center !important;
    position: static !important;
    margin: 0 !important;
  }

  /* ---- Drawer (the slide-in menu) — make sure it truly covers the screen ---- */
  body.is-navigation-horizontal .site-navigation.navigation-horizontal {
    z-index: 99990 !important;
  }

  /* ---- OPEN state: hide everything that could float over the menu ---- */
  body.show-navigation.is-navigation-horizontal .promo-bar,
  body.show-navigation.is-navigation-horizontal .site-header-inner .site-title,
  body.show-navigation.is-navigation-horizontal .site-header-inner .actions .site-header-currency,
  body.show-navigation.is-navigation-horizontal .site-header-inner .actions .mobile-basket-btn,
  body.show-navigation.is-navigation-horizontal .site-header-inner .actions .open-basket,
  body.show-navigation.is-navigation-horizontal .site-header-inner .actions .toggle-navigation {
    visibility: hidden !important;
    pointer-events: none !important;
  }

  /* ---- OPEN state: re-enable + style the drawer's own close (X) ---- */
  body.show-navigation.is-navigation-horizontal .site-navigation .close-navigation {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: fixed !important;
    top: 16px !important;
    right: 16px !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    padding: 0 !important;
    margin: 0 !important;
    z-index: 99999 !important;
    color: transparent !important;
    font-size: 0 !important;
    line-height: 0 !important;
    background-color: rgba(255, 255, 255, 0.06) !important;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><line x1='18' y1='6' x2='6' y2='18'/><line x1='6' y1='6' x2='18' y2='18'/></svg>") !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: 18px 18px !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 10px !important;
    cursor: pointer !important;
  }
  body.show-navigation.is-navigation-horizontal .site-navigation .close-navigation:hover {
    background-color: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(255, 255, 255, 0.22) !important;
  }

  /* ---- OPEN state: tidy the menu panel itself ----
     A second (legacy) drawer system pins the menu list to inset:0 60px 0 0,
     leaving a 60px gap + a stray "grip" bar on the right. Make it one clean,
     centred, full-width column on the solid drawer background instead. */
  body.show-navigation.is-navigation-horizontal .site-navigation .menu,
  body.show-navigation.is-navigation-horizontal .site-navigation .navigation-list {
    position: relative !important;
    inset: auto !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    width: 100% !important;
    max-width: 420px !important;
    margin: 0 auto !important;
    padding: 84px 16px 40px !important;
    background: transparent !important;
    translate: none !important;
    scale: none !important;
    opacity: 1 !important;
  }
  body.show-navigation.is-navigation-horizontal .site-navigation .menu::after {
    display: none !important;
  }
}

/* Tiny phones — shrink the logo a touch so the row never overflows */
@media (max-width: 360px) {
  body.is-navigation-horizontal .site-header-inner {
    padding: 10px 12px !important;
    gap: 8px !important;
  }
  body.is-navigation-horizontal .site-header-inner .site-title img,
  body.is-navigation-horizontal .site-header-inner .site-title .site-title-logo {
    max-width: 116px !important;
    max-height: 26px !important;
  }
  body.is-navigation-horizontal .site-header-inner .actions {
    gap: 4px !important;
  }
}
