@import url("https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&display=swap");

:root {
  --color-primary: #8b35ff;
  --color-primary-hover: #a85cff;
  --color-primary-text: #ffffff;
  --color-primary-text-hover: #ffffff;

  --color-bg: #050509;
  --color-brighter-bg: rgba(13, 13, 20, .86);
  --color-text: #ffffff;
  --color-text-secondary: rgba(255, 255, 255, .66);

  --nex-purple: #8b35ff;
  --nex-purple-soft: #b77cff;
  --nex-border: rgba(155, 80, 255, .24);
  --nex-card: rgba(12, 12, 20, .82);
  --nex-hero-image: url("PASTE_HERO_IMAGE_URL_HERE");
}

body {
  font-family: "Rajdhani", sans-serif;
  background:
    radial-gradient(circle at 70% 20%, rgba(139, 53, 255, .14), transparent 30%),
    #050509;
}

body::before {
  display: none;
}

.site {
  gap: 0;
}

.nex-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0;
  max-width: none;
  background: rgba(5, 5, 9, .82);
  border-bottom: 1px solid rgba(255,255,255,.06);
  backdrop-filter: blur(16px);
}

.nex-navbar {
  width: min(1440px, 100%);
  min-height: 82px;
  margin: 0 auto;
  padding: 0 42px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.nex-navbar-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nex-logo {
  position: static !important;
  inset: auto !important;
  margin: 0 !important;
  width: auto !important;
  height: auto !important;
  line-height: 1 !important;
  font-size: 30px !important;
  font-weight: 900;
  letter-spacing: 1px;
}

.nex-logo a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nex-logo img {
  max-height: 44px !important;
  max-width: 190px !important;
}

.nex-logo span {
  color: #fff;
}

.nex-logo strong {
  color: var(--nex-purple);
}

.nex-navbar .site-navigation {
  padding: 0;
  margin: 0;
  width: auto;
}

.nex-navbar .navigation-horizontal .menu {
  background: transparent;
  padding: 0;
  gap: 22px;
  justify-content: center;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nex-navbar .navigation-horizontal .menu > li > a {
  position: relative;
  padding: 30px 4px;
  color: rgba(255,255,255,.72);
  transition: .2s ease;
}

.nex-navbar .navigation-horizontal .menu > li > a:hover,
.nex-navbar .navigation-horizontal .menu > li.active > a,
.nex-navbar .navigation-horizontal .menu > li > a.link-active {
  color: #fff;
}

.nex-navbar .navigation-horizontal .menu > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 3px;
  border-radius: 20px;
  background: var(--nex-purple);
  opacity: 0;
  transform: scaleX(.4);
  transition: .2s ease;
}

.nex-navbar .navigation-horizontal .menu > li.active > a::after,
.nex-navbar .navigation-horizontal .menu > li > a.link-active::after,
.nex-navbar .navigation-horizontal .menu > li > a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.nex-navbar-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-primary,
.btn-secondary,
.btn-tertiary,
.nex-btn,
.nex-discord-btn {
  border-radius: 8px;
  font-weight: 700;
  letter-spacing: .6px;
}

.btn-primary {
  background: linear-gradient(135deg, #6f2bff, #9b4dff);
  box-shadow: 0 0 28px rgba(139, 53, 255, .28);
}

.btn-secondary {
  color: #fff;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
}

.nex-discord-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 20px;
  color: #fff;
  background: linear-gradient(135deg, #6f2bff, #9b4dff);
  text-transform: uppercase;
  font-size: 13px;
}

.nex-home .site-header,
.nex-home .site-content {
  max-width: none;
  padding: 0;
}

.nex-hero {
  min-height: 690px;
  display: flex;
  align-items: center;
  padding: 110px 6vw;
  background:
    linear-gradient(90deg, rgba(5,5,9,.98) 0%, rgba(5,5,9,.86) 40%, rgba(5,5,9,.35) 100%),
    var(--nex-hero-image) center right / cover no-repeat;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.nex-hero-content {
  max-width: 650px;
}

.nex-eyebrow {
  display: block;
  margin-bottom: 24px;
  color: rgba(255,255,255,.70);
  text-transform: uppercase;
  letter-spacing: 6px;
  font-size: 15px;
}

.nex-eyebrow::first-letter {
  color: var(--nex-purple);
}

.nex-hero h1 {
  margin: 0;
  font-size: clamp(76px, 10vw, 138px);
  line-height: .82;
  letter-spacing: -5px;
  font-weight: 900;
  text-transform: uppercase;
}

.nex-hero h1 span {
  color: #fff;
}

.nex-hero h1 strong {
  color: var(--nex-purple);
  text-shadow: 0 0 34px rgba(139, 53, 255, .45);
}

.nex-hero h2 {
  margin-top: 32px;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
}

.nex-hero h2 strong {
  color: var(--nex-purple);
}

.nex-hero p {
  margin-top: 24px;
  max-width: 560px;
  color: rgba(255,255,255,.68);
  font-size: 19px;
  line-height: 1.65;
}

.nex-hero-actions {
  display: flex;
  gap: 20px;
  margin-top: 42px;
  flex-wrap: wrap;
}

.nex-btn {
  min-width: 190px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}

.nex-btn-primary {
  background: linear-gradient(135deg, #6f2bff, #9b4dff);
  box-shadow: 0 0 38px rgba(139, 53, 255, .32);
}

.nex-btn-secondary {
  background: rgba(255,255,255,.035);
  border: 1px solid var(--nex-border);
}

.nex-stats {
  width: min(1180px, calc(100% - 48px));
  margin: -72px auto 90px;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(10,10,18,.82);
  border: 1px solid var(--nex-border);
  border-radius: 14px;
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
}

.nex-stats div {
  padding: 32px 28px;
  border-right: 1px solid rgba(255,255,255,.08);
}

.nex-stats div:last-child {
  border-right: none;
}

.nex-stats strong {
  display: block;
  font-size: 32px;
  font-weight: 800;
}

.nex-stats span {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,.58);
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.store-products-images .store-product,
.store-products-list .store-product,
.widget,
.store-text,
.category-description,
.store-product-full {
  background: var(--nex-card);
  border: 1px solid rgba(155,80,255,.18);
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(0,0,0,.28);
}

.nex-product-card {
  overflow: hidden;
  transition: .2s ease;
}

.nex-product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(155,80,255,.42);
}

.nex-product-card .image-link {
  width: 100%;
}

.nex-product-card .image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 10px;
}

.nex-product-info {
  display: grid;
  gap: 8px;
}

.nex-product-desc {
  color: rgba(255,255,255,.60);
  line-height: 1.45;
}

.product-actions .price strong {
  color: var(--nex-purple-soft);
}

.nex-footer {
  margin-top: 80px;
  background: rgba(5,5,9,.92);
  border-top: 1px solid rgba(255,255,255,.08);
}

.nex-footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 34px;
  align-items: center;
  padding-top: 34px;
  padding-bottom: 34px;
}

.nex-footer-logo {
  margin-bottom: 8px;
  font-size: 28px;
  font-weight: 900;
}

.nex-footer-logo strong {
  color: var(--nex-purple);
}

.nex-footer p {
  color: rgba(255,255,255,.58);
}

.nex-footer-links {
  display: flex;
  gap: 18px;
  color: rgba(255,255,255,.65);
}

.nex-footer-links a:hover {
  color: #fff;
}

.nex-footer .copyright {
  padding: 0 24px 28px;
  color: rgba(255,255,255,.42);
  text-align: center;
}

@media (max-width: 960px) {
  .nex-navbar {
    grid-template-columns: auto 1fr auto;
    padding: 16px 22px;
  }

  .nex-navbar .site-navigation {
    position: fixed;
  }

  .nex-logo {
    font-size: 24px !important;
  }

  .nex-discord-btn {
    display: none;
  }

  .nex-hero {
    min-height: 620px;
    padding: 80px 28px;
    background:
      linear-gradient(180deg, rgba(5,5,9,.88), rgba(5,5,9,.78)),
      var(--nex-hero-image) center / cover no-repeat;
  }

  .nex-hero h1 {
    font-size: 72px;
    letter-spacing: -2px;
  }

  .nex-stats {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -42px;
  }

  .nex-stats div:nth-child(2) {
    border-right: none;
  }

  .nex-footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .nex-footer-links,
  .we-accept {
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .nex-navbar-actions .user-name,
  .nex-navbar-actions .log-in {
    display: none;
  }

  .nex-hero h1 {
    font-size: 56px;
  }

  .nex-hero p {
    font-size: 16px;
  }

  .nex-stats {
    grid-template-columns: 1fr;
  }

  .nex-stats div {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  
  .nex-section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 90px;
}

.nex-section-header {
  margin-bottom: 28px;
}

.nex-section-header span {
  display: block;
  margin-bottom: 8px;
  color: var(--nex-purple);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.nex-section-header h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 900;
  letter-spacing: -1px;
}

.nex-section-header p {
  margin-top: 10px;
  max-width: 620px;
  color: rgba(255,255,255,.58);
  font-size: 17px;
  line-height: 1.5;
}

.nex-section-header-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.nex-small-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  height: 44px;
  padding: 0 18px;
  color: #fff;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(155,80,255,.24);
  border-radius: 8px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .8px;
  transition: .2s ease;
}

.nex-small-link:hover {
  border-color: rgba(155,80,255,.55);
  background: rgba(155,80,255,.14);
}

.nex-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.nex-category-card {
  min-height: 150px;
  padding: 22px;
  display: flex;
  align-items: end;
  gap: 18px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(18,18,28,.92), rgba(8,8,14,.94));
  border: 1px solid rgba(155,80,255,.20);
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(0,0,0,.24);
  transition: .2s ease;
}

.nex-category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(139,53,255,.25), transparent 32%);
  opacity: .85;
  pointer-events: none;
}

.nex-category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(155,80,255,.48);
}

.nex-category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .22;
  object-fit: cover;
}

.nex-category-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 2;
  flex: none;
  color: #fff;
  background: linear-gradient(135deg, #6f2bff, #9b4dff);
  border-radius: 12px;
  font-size: 26px;
  font-weight: 900;
  box-shadow: 0 0 30px rgba(139,53,255,.28);
}

.nex-category-card div {
  position: relative;
  z-index: 2;
}

.nex-category-card h3 {
  margin: 0;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
}

.nex-category-card p {
  margin-top: 4px;
  color: rgba(255,255,255,.58);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nex-featured-grid {
  gap: 24px !important;
}

.nex-featured-grid:empty::before {
  content: "No featured scripts available yet. Add packages to your Tebex categories to display them here.";
  display: block;
  grid-column: 1 / -1;
  padding: 34px;
  color: rgba(255,255,255,.62);
  background: rgba(12,12,20,.82);
  border: 1px solid rgba(155,80,255,.18);
  border-radius: 14px;
  text-align: center;
}

.nex-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.nex-benefit-card {
  padding: 30px;
  background:
    linear-gradient(145deg, rgba(18,18,28,.92), rgba(8,8,14,.94));
  border: 1px solid rgba(155,80,255,.18);
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
}

.nex-benefit-card span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  background: rgba(139,53,255,.14);
  border: 1px solid rgba(155,80,255,.26);
  border-radius: 12px;
  font-size: 24px;
}

.nex-benefit-card h3 {
  margin: 0;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
}

.nex-benefit-card p {
  margin-top: 10px;
  color: rgba(255,255,255,.58);
  font-size: 16px;
  line-height: 1.5;
}

.nex-support-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 36px;
  background:
    radial-gradient(circle at 90% 20%, rgba(139,53,255,.22), transparent 28%),
    linear-gradient(145deg, rgba(18,18,28,.96), rgba(8,8,14,.96));
  border: 1px solid rgba(155,80,255,.24);
  border-radius: 16px;
  box-shadow: 0 22px 60px rgba(0,0,0,.32);
}

.nex-support-cta span {
  display: block;
  margin-bottom: 8px;
  color: var(--nex-purple);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.nex-support-cta h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
}

.nex-support-cta p {
  margin-top: 8px;
  color: rgba(255,255,255,.58);
  font-size: 17px;
}

@media (max-width: 1050px) {
  .nex-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nex-benefits {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nex-section {
    width: min(100% - 32px, 1180px);
    margin-bottom: 64px;
  }

  .nex-section-header-row {
    align-items: start;
    flex-direction: column;
  }

  .nex-category-grid {
    grid-template-columns: 1fr;
  }

  .nex-support-cta {
    align-items: start;
    flex-direction: column;
    padding: 28px;
  }

  .nex-support-cta .nex-btn {
    width: 100%;
  }
}

.nex-navbar-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.nex-login-discord,
.nex-account-btn,
.nex-cart-btn {
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .7px;
  font-size: 13px;
  transition: .2s ease;
  white-space: nowrap;
}

.nex-login-discord {
  gap: 10px;
  padding: 0 20px;
  color: #fff;
  background: linear-gradient(135deg, #5865F2, #8b35ff);
  box-shadow: 0 0 28px rgba(88, 101, 242, .28);
}

.nex-login-discord span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  padding: 0 8px;
  border-radius: 6px;
  background: rgba(255,255,255,.13);
  font-size: 11px;
}

.nex-login-discord:hover {
  transform: translateY(-2px);
  filter: brightness(1.12);
}

.nex-account-btn {
  min-width: 130px;
  padding: 0 16px;
  flex-direction: column;
  gap: 1px;
  color: #fff;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(155,80,255,.24);
}

.nex-account-btn span {
  max-width: 130px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nex-account-btn small {
  color: rgba(255,255,255,.48);
  font-size: 10px;
  line-height: 1;
}

.nex-cart-btn {
  padding: 0 18px;
  color: #fff;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
}

.nex-cart-btn:hover,
.nex-account-btn:hover {
  border-color: rgba(155,80,255,.55);
  background: rgba(155,80,255,.14);
}

.nex-tabs {
  gap: 28px !important;
}

.nex-tabs > li > a {
  font-size: 14px !important;
  font-weight: 800 !important;
  letter-spacing: 1.2px !important;
}

@media (max-width: 960px) {
  .nex-navbar-actions {
    gap: 8px;
  }

  .nex-login-discord {
    padding: 0 14px;
  }

  .nex-login-discord span {
    display: none;
  }

  .nex-account-btn {
    display: none;
  }

  .nex-cart-btn {
    padding: 0 14px;
  }
}

@media (max-width: 560px) {
  .nex-login-discord {
    font-size: 0;
    width: 46px;
    padding: 0;
  }

  .nex-login-discord::before {
    content: "D";
    font-size: 14px;
  }

  .nex-cart-btn {
    display: none;
  }
}

.nex-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0;
  max-width: none;
  background: rgba(5, 5, 9, .86);
  border-bottom: 1px solid rgba(255,255,255,.06);
  backdrop-filter: blur(16px);
}

.nex-navbar {
  width: min(1440px, 100%);
  min-height: 82px;
  margin: 0 auto;
  padding: 0 42px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.nex-navbar-left {
  display: flex;
  align-items: center;
  gap: 34px;
  min-width: 0;
}

.nex-logo {
  position: static !important;
  inset: auto !important;
  margin: 0 !important;
  width: auto !important;
  height: auto !important;
  line-height: 1 !important;
  font-size: 30px !important;
  font-weight: 900;
  letter-spacing: 1px;
  flex: none;
}

.nex-logo a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nex-logo img {
  max-height: 44px !important;
  max-width: 190px !important;
  object-fit: contain;
}

.nex-logo span {
  color: #fff;
}

.nex-logo strong {
  color: var(--nex-purple);
}

.nex-navbar .site-navigation {
  padding: 0;
  margin: 0;
  width: auto;
}

.nex-navbar .navigation-horizontal .menu {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
  padding: 0;
  background: transparent;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.nex-navbar .navigation-horizontal .menu > li > a {
  position: relative;
  display: block;
  padding: 31px 0;
  color: rgba(255,255,255,.68);
  transition: .2s ease;
}

.nex-navbar .navigation-horizontal .menu > li > a:hover,
.nex-navbar .navigation-horizontal .menu > li.active > a,
.nex-navbar .navigation-horizontal .menu > li > a.link-active {
  color: #fff;
}

.nex-navbar .navigation-horizontal .menu > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  height: 3px;
  border-radius: 20px;
  background: var(--nex-purple);
  opacity: 0;
  transform: scaleX(.45);
  transition: .2s ease;
}

.nex-navbar .navigation-horizontal .menu > li.active > a::after,
.nex-navbar .navigation-horizontal .menu > li > a.link-active::after,
.nex-navbar .navigation-horizontal .menu > li > a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.nex-navbar-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex: none;
}

.nex-login-btn,
.nex-cart-btn,
.nex-discord-btn {
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .8px;
  white-space: nowrap;
  transition: .2s ease;
}

.nex-login-btn {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(155,80,255,.26);
}

.nex-login-btn:hover {
  background: rgba(155,80,255,.14);
  border-color: rgba(155,80,255,.55);
}

.nex-account-btn {
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nex-cart-btn {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
}

.nex-cart-btn:hover {
  background: rgba(155,80,255,.14);
  border-color: rgba(155,80,255,.45);
}

.nex-discord-btn {
  background: linear-gradient(135deg, #5865F2, #8b35ff);
  box-shadow: 0 0 28px rgba(88,101,242,.28);
}

.nex-discord-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.12);
}

@media (max-width: 960px) {
  .nex-navbar {
    min-height: 72px;
    padding: 0 22px;
    gap: 18px;
  }

  .nex-navbar-left {
    gap: 16px;
  }

  .nex-navbar .site-navigation {
    position: fixed;
  }

  .nex-logo {
    font-size: 24px !important;
  }

  .nex-logo img {
    max-height: 38px !important;
    max-width: 150px !important;
  }

  .nex-login-btn,
  .nex-cart-btn,
  .nex-discord-btn {
    height: 42px;
    padding: 0 14px;
    font-size: 12px;
  }
}

@media (max-width: 640px) {
  .nex-cart-btn {
    display: none;
  }

  .nex-discord-btn {
    display: none;
  }
}

.nex-scripts-page .site {
  gap: 0;
}

.nex-products-page {
  width: min(1500px, calc(100% - 72px));
  margin: 54px auto 100px;
}

.nex-products-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.nex-search-wrap,
.nex-sort-wrap {
  height: 46px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 8px;
  color: rgba(255,255,255,.72);
}

.nex-search-wrap {
  width: min(430px, 100%);
  padding: 0 16px;
}

.nex-sort-wrap {
  padding: 0 14px;
}

.nex-search-wrap input,
.nex-sort-wrap select {
  width: 100%;
  height: 100%;
  color: #fff;
  background: transparent;
  font-size: 15px;
}

.nex-sort-wrap select {
  cursor: pointer;
}

.nex-products-count {
  margin-bottom: 34px;
  color: rgba(255,255,255,.60);
  font-size: 14px;
}

.nex-products-count strong {
  color: #fff;
}

.nex-market-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}

.nex-product-card {
  position: relative;
  overflow: hidden;
  padding: 0 !important;
  gap: 0 !important;
  background: rgba(8,8,10,.92) !important;
  border: 1px solid rgba(255,255,255,.08) !important;
  border-radius: 13px !important;
  box-shadow: 0 22px 65px rgba(0,0,0,.40);
  transition: .22s ease;
}

.nex-product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 221, 255, .70) !important;
  box-shadow:
    0 0 0 1px rgba(0,221,255,.18),
    0 0 35px rgba(0,221,255,.22),
    0 24px 75px rgba(0,0,0,.48);
}

.nex-product-image {
  position: relative;
  display: block;
  width: 100%;
  height: 190px;
  overflow: hidden;
  background: #08080c;
}

.nex-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .25s ease;
}

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

.nex-product-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 35%, rgba(0,0,0,.62) 100%),
    radial-gradient(circle at 15% 10%, rgba(0,221,255,.34), transparent 35%);
  pointer-events: none;
}

.nex-product-image-default {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 50% 35%, rgba(139,53,255,.25), transparent 35%),
    #101018;
}

.nex-sale-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  padding: 7px 10px;
  color: #020206;
  background: #00d9ff;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 900;
}

.nex-product-tags {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 3;
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.nex-product-tags span {
  padding: 5px 9px;
  color: #fff;
  background: rgba(5,5,8,.82);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .4px;
}

.nex-product-body {
  padding: 20px;
}

.nex-product-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 10px;
}

.nex-product-head h3 {
  margin: 0;
  color: #fff;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.15;
}

.nex-product-head h3 a:hover {
  color: #00d9ff;
}

.nex-product-price {
  flex: none;
  color: #00d9ff;
  font-size: 18px;
  font-weight: 900;
  text-align: right;
  white-space: nowrap;
}

.nex-product-price strong {
  color: #00d9ff;
}

.nex-product-price del {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,.36);
  font-size: 12px;
  font-weight: 600;
}

.nex-product-desc {
  height: 48px;
  overflow: hidden;
  margin-bottom: 22px;
  color: rgba(255,255,255,.58);
  font-size: 15px;
  line-height: 1.45;
}

.nex-product-desc * {
  display: inline;
  margin: 0;
  padding: 0;
  color: inherit !important;
  font-size: inherit !important;
  line-height: inherit !important;
}

.nex-product-card .product-actions {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 9px !important;
}

.nex-product-card .product-actions .price {
  display: none;
}

.nex-product-card .product-actions .add,
.nex-product-card .product-actions .subscribe,
.nex-product-card .product-actions .open-basket-cta,
.nex-product-card .product-actions .quantity-field {
  width: 100% !important;
  height: 42px;
  min-width: 0;
  border-radius: 7px;
}

.nex-product-card .product-actions .add,
.nex-product-card .product-actions .subscribe {
  color: #020206 !important;
  background: #00bfe0 !important;
  border: 1px solid #00d9ff !important;
  font-size: 14px;
  font-weight: 900;
}

.nex-product-card .product-actions .add:hover,
.nex-product-card .product-actions .subscribe:hover {
  filter: brightness(1.12);
}

.nex-product-card .product-actions .btn-secondary,
.nex-product-card .product-actions .open-basket-cta {
  color: #00d9ff !important;
  background: transparent !important;
  border: 1px solid #00d9ff !important;
  font-size: 14px;
  font-weight: 900;
}

.nex-product-card .product-actions .gift {
  display: none;
}

@media (max-width: 1300px) {
  .nex-market-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .nex-products-page {
    width: min(100% - 42px, 1500px);
  }

  .nex-market-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nex-products-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .nex-search-wrap {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .nex-market-grid {
    grid-template-columns: 1fr;
  }

  .nex-product-card .product-actions {
    grid-template-columns: 1fr;
  }
}

.nex-navbar {
  width: min(1440px, 100%) !important;
  min-height: 82px !important;
  margin: 0 auto !important;
  padding: 0 42px !important;
  display: flex !important;
  align-items: center !important;
  gap: 32px !important;
}

.nex-navbar-left {
  display: flex !important;
  align-items: center !important;
  gap: 34px !important;
  flex: 1 1 auto !important;
  min-width: 0 !important;
}

.nex-navbar .site-navigation {
  position: static !important;
  width: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
}

.nex-navbar .navigation-horizontal .menu,
.nex-tabs {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  flex-wrap: nowrap !important;
  gap: 28px !important;
  padding: 0 !important;
  background: transparent !important;
}

.nex-tabs > li {
  flex: none !important;
}

.nex-tabs > li > a {
  position: relative !important;
  display: block !important;
  padding: 31px 0 !important;
  color: rgba(255,255,255,.68) !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  letter-spacing: 1.1px !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
  transition: .2s ease !important;
}

.nex-tabs > li > a:hover,
.nex-tabs > li.active > a,
.nex-tabs > li > a.link-active {
  color: #fff !important;
}

.nex-tabs > li > a::after {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 22px !important;
  height: 3px !important;
  border-radius: 20px !important;
  background: #8b35ff !important;
  opacity: 0 !important;
  transform: scaleX(.45) !important;
  transition: .2s ease !important;
}

.nex-tabs > li.active > a::after,
.nex-tabs > li > a.link-active::after,
.nex-tabs > li > a:hover::after {
  opacity: 1 !important;
  transform: scaleX(1) !important;
}

.nex-navbar-actions {
  margin-left: auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 14px !important;
  flex: none !important;
}

@media (max-width: 1100px) {
  .nex-tabs {
    gap: 18px !important;
  }

  .nex-tabs > li > a {
    font-size: 12px !important;
    letter-spacing: .8px !important;
  }
}

@media (max-width: 960px) {
  .nex-navbar .site-navigation {
    position: fixed !important;
  }

  .nex-navbar-left {
    gap: 16px !important;
  }
}






  .nex-stats div:last-child {
    border-bottom: none;
  }
}