@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap");
:root {
  --color-text: #1a1a1a;
  --color-text-darker: #0a0a0a;
  --color-text-secondary: #6b7280;
  --color-text-dark: #ffffff;
  --color-bg: #f9fafb;
  --color-brighter-bg: rgba(255, 255, 255, 0.85);
  --color-input-bg: #ffffff;
  --color-popup-bg: rgba(0, 0, 0, 0.5);
  --color-primary: #6366f1;
  --color-primary-hover: #4f46e5;
  --color-primary-text: var(--color-text-dark);
  --color-primary-text-hover: var(--color-primary-text);
  --color-secondary: #f3f4f6;
  --color-secondary-hover: #e5e7eb;
  --color-secondary-text: var(--color-text);
  --color-secondary-text-hover: var(--color-text-darker);
  --color-tertiary: transparent;
  --color-tertiary-hover: rgba(99, 102, 241, 0.1);
  --color-tertiary-text: var(--color-text);
  --color-tertiary-text-hover: var(--color-primary);
  --color-removed: #ef4444;
  --color-card-bg: #ffffff;
  --color-border: #e5e7eb;
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --header-height: 350px;
  --tebex-footer-height: 37px;
  --layout-gap: 20px;
  --widget-padding: 20px;
  --content-padding: var(--widget-padding);
  --content-inner-width: 1280px;
  --content-width: calc((var(--content-padding) * 2) + var(--content-inner-width));
  --sidebar-width: 287px;
  --products-gap: 24px 36px;
  --btn-size: 46px;
  --btn-size-small: 38px;
  --btn-size-xsmall: 34px;
  --btn-icon-size: 18px;
  --btn-color-text: var(--color-text);
  --btn-color-text-hover: var(--btn-color-text);
  --btn-color-bg: var(--color-bg);
  --btn-color-bg-hover: var(--btn-color-bg);
  --bg-blur: blur(10px);
  --page-transition-duration: .35s;
  --tebex-legal-footer-max-width: min(
    var(--content-inner-width),
    calc(100vw - (var(--content-padding) * 2))
  );
  --tebex-legal-footer-background-color: var(--color-brighter-bg);
  --tebex-legal-footer-border-color: var(--color-brighter-bg);
  --tebex-legal-footer-text-color: var(--color-text-secondary);
}
@media (width > 600px) {
  :root {
    --widget-padding: 24px;
    --layout-gap: 48px;
  }
}
@media (width > 960px) {
  :root {
    --layout-gap: 72px;
    --content-padding: calc(var(--widget-padding) * 2);
  }
}
@media (max-width: 900px) {
  :root {
    --tebex-footer-height: 70px;
  }
}
@media (max-width: 600px) {
  :root {
    --tebex-footer-height: 80px;
  }
}
@media (prefers-color-scheme: dark) {
  :root.color-scheme-auto {
    --color-text: #f9fafb;
    --color-text-darker: #ffffff;
    --color-text-secondary: #9ca3af;
    --color-text-dark: #0a0a0a;
    --color-bg: #0f172a;
    --color-brighter-bg: rgba(30, 41, 59, 0.85);
    --color-input-bg: #1e293b;
    --color-popup-bg: rgba(0, 0, 0, 0.8);
    --color-primary: #818cf8;
    --color-primary-hover: #a5b4fc;
    --color-primary-text: var(--color-text-dark);
    --color-primary-text-hover: var(--color-primary-text);
    --color-secondary: #1e293b;
    --color-secondary-hover: #334155;
    --color-secondary-text: var(--color-text);
    --color-secondary-text-hover: var(--color-text-darker);
    --color-tertiary: transparent;
    --color-tertiary-hover: rgba(129, 140, 248, 0.15);
    --color-tertiary-text: var(--color-text);
    --color-tertiary-text-hover: var(--color-primary);
    --color-removed: #f87171;
    --color-card-bg: #1e293b;
    --color-border: #334155;
  }
}
:root.color-scheme-dark {
  --color-text: #f9fafb;
  --color-text-darker: #ffffff;
  --color-text-secondary: #9ca3af;
  --color-text-dark: #0a0a0a;
  --color-bg: #0f172a;
  --color-brighter-bg: rgba(30, 41, 59, 0.85);
  --color-input-bg: #1e293b;
  --color-popup-bg: rgba(0, 0, 0, 0.8);
  --color-primary: #818cf8;
  --color-primary-hover: #a5b4fc;
  --color-primary-text: var(--color-text-dark);
  --color-primary-text-hover: var(--color-primary-text);
  --color-secondary: #1e293b;
  --color-secondary-hover: #334155;
  --color-secondary-text: var(--color-text);
  --color-secondary-text-hover: var(--color-text-darker);
  --color-tertiary: transparent;
  --color-tertiary-hover: rgba(129, 140, 248, 0.15);
  --color-tertiary-text: var(--color-text);
  --color-tertiary-text-hover: var(--color-primary);
  --color-removed: #f87171;
  --color-card-bg: #1e293b;
  --color-border: #334155;
}

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

strong,
b {
  font-weight: 700;
}

em,
i {
  font-style: italic;
}

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

textarea {
  resize: none;
}

symbol,
use,
svg {
  overflow: visible;
}

svg,
img {
  display: block;
}

li {
  display: block;
}

button {
  display: block;
}

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

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

:focus {
  outline: 0;
}

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

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

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

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

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

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

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

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

html {
  overflow: hidden scroll;
  scrollbar-width: thin;
  scrollbar-color: var(--color-secondary) var(--color-bg);
  scrollbar-gutter: stable;
  scroll-behavior: smooth;
  color-scheme: light dark;
}
html.no-scroll {
  overflow: hidden;
}
@media (prefers-color-scheme: dark) {
  html.color-scheme-auto {
    color-scheme: only dark;
  }
}
html.color-scheme-dark {
  color-scheme: only dark;
}

body {
  position: relative;
  max-width: 100%;
  width: 100%;
  line-height: 1.6;
  color: var(--color-text);
  accent-color: var(--color-primary);
  background-color: var(--color-bg);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 15px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.site-header-top {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  margin-bottom: calc(var(--layout-gap) * -1);
  width: 100%;
  min-height: var(--btn-size);
  view-transition-name: siteHeaderTop;
}
body.is-logo-centered.is-header-visible .site-header-top {
  margin-bottom: 0;
}
@media (width <= 960px) {
  .site-header-top {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--color-brighter-bg);
    backdrop-filter: var(--bg-blur);
  }
}
@media (width > 960px) {
  .site-header-top {
    justify-content: flex-end;
  }
}
.site-header-top .site-title {
  position: absolute;
  inset: 0;
  margin: auto;
  max-width: calc(100% - 32px - var(--btn-size-xsmall) * 4 - var(--content-padding) * 2);
  width: fit-content;
  height: fit-content;
  line-height: 24px;
  font-size: 18px;
  font-weight: 900;
  text-align: center;
  text-box: trim-both cap alphabetic;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.site-header-top .site-title img {
  max-width: 100%;
  max-height: 28px;
}
@media (width <= 960px) {
  .site-header-top .btn-glyph-text {
    color: transparent;
    font-size: 0;
  }
  .site-header-top .btn-glyph-text::before {
    margin-right: 0;
  }
}
.site-header-top .toggle-navigation {
  --btn-icon: url("https://template-assets.tebex.io/images/burger.svg");
}
.site-header-top .site-link {
  --btn-icon: url("https://template-assets.tebex.io/images/globe.svg");
}
.site-header-top .site-link:hover svg {
  color: var(--color-primary);
}
.site-header-top .discord-link:hover svg {
  color: #7289da !important;
}
.site-header-top .color-scheme {
  --btn-icon: url("https://template-assets.tebex.io/images/sun.svg");
  --btn-icon-size: 15px;
}
@media (prefers-color-scheme: dark) {
  :root.color-scheme-auto .site-header-top .color-scheme {
    --btn-icon: url("https://template-assets.tebex.io/images/moon.svg");
  }
}
:root.color-scheme-dark .site-header-top .color-scheme {
  --btn-icon: url("https://template-assets.tebex.io/images/moon.svg");
}
.site-header-top .log-in {
  --btn-icon: url("https://template-assets.tebex.io/images/user.svg");
  margin-left: auto;
}
.site-header-top .open-basket {
  --btn-icon: url("https://template-assets.tebex.io/images/checkout.svg");
}
.site-header-top .user-name {
  --btn-icon: url("https://template-assets.tebex.io/images/log-out.svg");
  margin-left: auto;
  contain: paint;
}
@media (width > 960px) {
  .site-header-top .user-name {
    --btn-icon: url("https://template-assets.tebex.io/images/user.svg");
  }
}
.site-header-top .user-name .text,
.site-header-top .user-name .text-hover {
  transition: opacity 0.15s ease, font-size 0.15s ease, visibility 0.15s ease;
}
.site-header-top .user-name:not(:hover):not(:focus-within) .text-hover {
  visibility: hidden;
  color: transparent;
  font-size: 0;
}
.site-header-top .user-name:hover .text, .site-header-top .user-name:focus-within .text {
  visibility: hidden;
  opacity: 0;
  font-size: 0;
}

.site-header {
  position: relative;
  align-content: center;
  view-transition-name: siteHeader;
}
@media (width <= 960px) {
  .site-header {
    padding: 0;
  }
}
body.no-hero.is-logo-centered .site-header {
  min-height: 80px;
}
@media (width > 960px) {
  body.has-hero .site-header {
    min-height: var(--header-height);
  }
}
.site-header .site-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  width: 100%;
}
@media (width > 960px) {
  .site-header .site-actions {
    gap: 6px;
  }
}
.site-header .site-title {
  line-height: 42px;
  font-size: 36px;
  font-weight: 900;
  text-box: trim-both cap alphabetic;
}
body.has-hero .site-header .site-title {
  color: var(--color-text-dark);
}
@media (width > 960px) {
  .site-header .site-title {
    line-height: 60px;
    font-size: 54px;
  }
}
.site-header .site-title img {
  max-width: 500px;
  max-height: 60px;
}
body.is-logo-centered .site-header .site-title {
  margin: auto;
  width: fit-content;
  height: fit-content;
  text-align: center;
}
body.is-logo-centered .site-header .site-title img {
  max-height: 128px;
}
body.is-logo-centered.has-hero .site-header .site-title {
  position: absolute;
  inset: 0;
  filter: drop-shadow(0 1px 3px hsla(0, 0%, 0%, 0.5)), drop-shadow(0 6px 12px hsla(0, 0%, 0%, 0.5));
}
@media (prefers-color-scheme: dark) {
  :root.color-scheme-auto body.is-logo-centered.has-hero .site-header .site-title {
    color: var(--color-text);
    filter: drop-shadow(0 1px 3px hsl(from var(--color-bg) h s l/50%)) drop-shadow(0 6px 12px hsl(from var(--color-bg) h s l/50%));
  }
}
:root.color-scheme-dark body.is-logo-centered.has-hero .site-header .site-title {
  color: var(--color-text);
  filter: drop-shadow(0 1px 3px hsl(from var(--color-bg) h s l/50%)) drop-shadow(0 6px 12px hsl(from var(--color-bg) h s l/50%));
}
.site-header .hero-image {
  margin: auto;
  width: 100%;
  height: auto;
  max-height: var(--header-height);
  object-fit: cover;
}
@media (width > 960px) {
  .site-header .hero-image {
    border-radius: 10px;
  }
}

.site-navigation {
  --fade-duration: 200ms;
  view-transition-name: siteNavigation;
}
@media (width <= 960px) {
  .site-navigation {
    position: fixed;
    inset: 0;
    z-index: 100000;
    padding: 0;
    backdrop-filter: var(--bg-blur);
    transition: display var(--fade-duration) allow-discrete, backdrop-filter var(--fade-duration), opacity var(--fade-duration) ease;
  }
  @starting-style {
    .site-navigation {
      opacity: 0;
    }
  }
  body:not(.show-navigation) .site-navigation {
    display: none;
    opacity: 0;
  }
  .site-navigation.drawer {
    user-select: none;
  }
  .site-navigation.may-close {
    backdrop-filter: none;
  }
  .site-navigation .menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    inset: 0 calc(var(--btn-size) * 2) 0 0;
    padding: 72px var(--widget-padding) var(--widget-padding);
    line-height: 28px;
    font-size: 21px;
    font-weight: 500;
    background: rgb(from var(--color-bg) r g b/0.95);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
    overflow: hidden auto;
    scrollbar-width: thin;
    scrollbar-color: var(--color-secondary) var(--color-bg);
    transition: opacity var(--fade-duration) ease, scale var(--fade-duration) ease, translate var(--fade-duration) ease;
  }
  @starting-style {
    .site-navigation .menu {
      translate: -100% 0;
    }
  }
  .site-navigation.drawer .menu::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 7px;
    margin: auto;
    width: 4px;
    height: 100px;
    background: rgb(from var(--color-text-secondary) r g b/0.33);
    border-radius: 2px;
    pointer-events: none;
  }
  body:not(.show-navigation) .site-navigation .menu {
    translate: -100% 0;
  }
  .site-navigation.touching .menu {
    transition: opacity var(--fade-duration) ease, scale var(--fade-duration) ease;
  }
  body:not(.show-navigation) .site-navigation .menu, .site-navigation.may-close .menu {
    opacity: 0.8;
    scale: 0.95;
  }
  .site-navigation.may-close .menu {
    border-radius: 10px;
  }
  .site-navigation .popup-close {
    --btn-icon: url("https://template-assets.tebex.io/images/close.svg");
    top: 12px;
    right: calc(var(--btn-size) * 2 + 12px);
  }
  .site-navigation.touching .popup-close {
    opacity: 0;
    visibility: hidden;
    transition-duration: 100ms;
  }
  .site-navigation .menu-sub {
    width: 100%;
    padding-left: var(--widget-padding);
    line-height: 22px;
    font-size: 16px;
  }
  .site-navigation .menu-item {
    position: relative;
    width: 100%;
  }
  .site-navigation .has-children {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .site-navigation .has-children .toggle {
    --btn-icon: url("https://template-assets.tebex.io/images/chevron.svg");
    flex: none;
  }
  .site-navigation .has-children .toggle::before {
    transition: rotate 0.15s ease-in-out;
  }
  .site-navigation .has-children.expanded > .toggle::before {
    rotate: 180deg;
  }
  .site-navigation .has-children:not(.expanded) .menu-sub {
    display: none;
  }
  .site-navigation .menu-link {
    display: block;
    flex: 1 1 auto;
    padding: 11px 0;
    transition: color 0.15s ease-in-out;
  }
  .site-navigation .menu-link:hover {
    color: var(--color-primary);
  }
  .site-navigation .menu-link.active {
    color: var(--color-primary);
    font-weight: 700;
  }
  .site-navigation .menu-sub .menu-link {
    padding: 8px 0;
  }
  .site-navigation .site-link,
  .site-navigation .log-out {
    margin-top: auto;
    margin-left: -8px;
  }
  .site-navigation .site-link a,
  .site-navigation .log-out a {
    --btn-icon: url("https://template-assets.tebex.io/images/globe.svg");
    width: 100%;
  }
  .site-navigation .log-out a {
    --btn-icon: url("https://template-assets.tebex.io/images/log-out.svg");
  }
  .site-navigation .site-link + .log-out {
    margin-top: 0;
  }
}
@media (width > 960px) {
  .site-navigation {
    position: sticky;
    top: -1px;
    z-index: 100;
    transition: background-color 0.15s ease;
  }
  .site-navigation.stuck {
    background-color: var(--color-brighter-bg);
    backdrop-filter: var(--bg-blur);
  }
  .site-navigation .menu {
    display: flex;
    align-items: center;
    gap: var(--widget-padding);
    margin-inline: auto;
    padding-block: var(--content-padding);
    width: 100%;
    max-width: var(--content-inner-width);
    min-height: var(--btn-size);
    padding: calc(var(--widget-padding) * 0.75) var(--widget-padding);
    line-height: var(--btn-size);
    font-size: 16px;
    font-weight: 500;
    text-align: center;
  }
  .site-navigation:not(.stuck) .menu {
    background-color: var(--color-brighter-bg);
    backdrop-filter: var(--bg-blur);
    border-radius: 10px;
  }
  .site-navigation .menu > .menu-item {
    flex: 1 0 auto;
    max-width: 200px;
  }
  .site-navigation .menu > .menu-item > .menu-link {
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 18ch;
  }
  .site-navigation .menu-link {
    display: block;
    transition: color 0.15s ease-in-out;
  }
  .site-navigation .menu-link:hover, .site-navigation .menu-link.link-active {
    color: var(--color-primary);
  }
  .site-navigation li.site-title-link {
    flex: none;
    align-content: center;
    margin-right: var(--widget-padding);
    max-width: none;
    text-align: left;
  }
  .site-navigation .site-title {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-box: trim-both cap alphabetic;
  }
}
@media (width > 960px) and (width > 960px) {
  .site-navigation .site-title {
    font-size: 40px;
  }
}
@media (width > 960px) {
  .site-navigation .site-title .menu-link {
    color: var(--color-primary);
  }
  .site-navigation .site-title .menu-link:hover {
    color: var(--color-primary-hover);
  }
  .site-navigation .site-title img {
    max-width: 100%;
    max-height: var(--btn-size);
    border-radius: 5px;
  }
  .site-navigation .has-children {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .site-navigation .has-children .toggle {
    --btn-size: 30px;
    --btn-icon: url("https://template-assets.tebex.io/images/chevron.svg");
    --btn-color-bg-hover: var(--color-tertiary);
    flex: none;
    transition: rotate 0.15s ease-in-out;
  }
  .site-navigation .has-children:hover > .toggle {
    rotate: 180deg;
  }
  .site-navigation .menu-sub {
    position: absolute;
    top: 100%;
    left: -100px;
    right: -100px;
    margin-inline: auto;
    width: max-content;
    padding: calc(var(--widget-padding) / 2) 0;
    background: rgb(from var(--color-brighter-bg) r g b/0.9);
    border-radius: 5px;
    backdrop-filter: var(--bg-blur);
    transition: all 0.15s ease-in-out;
  }
  .site-navigation .has-children:not(:hover) > .menu-sub {
    visibility: hidden;
    opacity: 0;
    translate: 0 -10px;
  }
  .site-navigation .menu .menu-sub {
    line-height: 24px;
    font-size: 16px;
    font-weight: 400;
  }
  .site-navigation .menu-sub .menu-link {
    width: 100%;
    max-width: 24ch;
    padding: 4px calc(var(--widget-padding) / 2);
    transition: all 0.15s ease-in-out;
  }
  .site-navigation .menu-sub .menu-link:hover, .site-navigation .menu-sub .menu-link.link-active {
    color: var(--color-bg);
    background-color: var(--color-primary);
  }
}

.site-home-categories {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--widget-padding);
  margin-bottom: var(--layout-gap);
}
.site-home-categories .category {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: subgrid;
  align-items: center;
  gap: calc(var(--widget-padding) / 2);
  overflow: hidden;
  padding: var(--widget-padding);
  line-height: 26px;
  background: var(--color-brighter-bg) linear-gradient(to bottom, transparent 67%, rgb(from var(--color-primary) r g b/0.15)) no-repeat 0 0/100% 200%;
  border-radius: 10px;
  backdrop-filter: var(--bg-blur);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.015em;
  text-shadow: 0 1px 0 rgb(from var(--color-bg) r g b/0.5);
  transition: color 0.15s ease-in-out, background-position-y 0.3s ease;
}
@media (width > 600px) {
  .site-home-categories .category {
    gap: var(--widget-padding);
  }
}
@media (width > 600px) {
  .site-home-categories .category {
    padding-block: 20px;
    line-height: 32px;
    font-size: 24px;
    text-align: center;
  }
}
.site-home-categories .category:hover {
  color: var(--color-primary);
  background-position-y: 100%;
}
.site-home-categories .category .image {
  max-width: 100%;
  width: auto;
  max-height: 100%;
  object-fit: contain;
  border-radius: 10px;
}
@media (width > 600px) {
  .site-home-categories .category .image {
    margin: auto;
  }
}
.site-home-categories .category .image-default {
  position: relative;
  width: min(100px, 100%);
  aspect-ratio: 1;
}
.site-home-categories .category .image-default::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background-color: rgb(from var(--color-text) r g b/0.8);
  mask: url("https://template-assets.tebex.io/images/package-default.svg") center center/contain no-repeat;
}

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

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

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

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

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

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

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

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

.store-product {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.store-product .product-title {
  font-size: 20px;
  font-weight: 600;
}
.store-product .product-title a {
  color: inherit;
  transition: color 0.15s ease-in-out;
}
.store-product .product-title a:hover {
  color: var(--color-primary);
}
.store-product .product-title .countdown {
  display: block;
  margin-top: 8px;
  color: var(--color-removed);
  font-size: 0.75em;
  font-variant-numeric: tabular-nums;
}
.store-product .product-title .countdown::before {
  content: "";
  display: inline-block;
  vertical-align: -0.15em;
  margin-right: 0.25em;
  width: 1em;
  height: 1em;
  background-color: currentColor;
  mask: url("https://template-assets.tebex.io/images/countdown.svg") center center/contain no-repeat;
}
.store-product .image-link {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  width: fit-content;
}
.store-product .image-link:hover ~ .product-title a {
  color: var(--color-primary);
}
.store-product .image {
  margin: 0 auto;
  max-width: 100%;
  border-radius: 10px;
}
.store-product .image-default {
  position: relative;
  width: min(140px, 100%);
  aspect-ratio: 1;
}
.store-product .image-default::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  margin: auto;
  background-color: rgb(from var(--color-text) r g b/0.8);
  mask: url("https://template-assets.tebex.io/images/package-default.svg") center center/contain no-repeat;
}
.store-product .descr {
  font-size: 14px;
}
.store-product .actions {
  display: flex;
  gap: 12px;
  position: relative;
  overflow: hidden;
}
.store-product .actions.updating {
  pointer-events: none;
}
.store-product .actions.updating > * {
  opacity: 0.3;
  filter: grayscale(100%);
}
.store-product .actions.updating::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: 10;
  margin: auto;
  width: 30px;
  height: 30px;
  background: url("https://template-assets.tebex.io/images/loading.svg") center center no-repeat;
  background-size: contain;
}
.store-product:not(.store-product-full) .actions {
  flex-wrap: wrap;
  align-content: flex-end;
  flex: 1 1 auto;
}
.store-product .price {
  font-size: 14px;
  font-weight: 500;
}
.store-product .price .discount {
  margin-right: 1ch;
  color: var(--color-removed);
  font-weight: 400;
  text-decoration-line: line-through;
}
.store-product .price strong {
  font-size: 20px;
  font-weight: inherit;
}
.store-product:not(.store-product-full) .price {
  width: 100%;
}
.store-product .quantity-field {
  height: var(--btn-size);
  background: var(--color-brighter-bg);
}
.store-product .quantity-field input[type=number] {
  border: none;
}
.store-product .half {
  flex: 1 1 33%;
  overflow: visible;
}
.store-product .wide {
  flex: 1 1 auto;
}
.store-product .gift {
  --btn-icon: url("https://template-assets.tebex.io/images/gift.svg");
  flex: none;
}
.store-product .remove {
  --btn-icon: url("https://template-assets.tebex.io/images/delete.svg");
  flex: none;
}

.store-products-images .store-product {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: subgrid;
}
.store-products-images .store-product .image-link {
  align-content: center;
  width: 100%;
  overflow: hidden;
}
.store-products-images .store-product .descr {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

.store-products-list .store-product .image-link {
  margin: 0;
}
.store-products-list .store-product .image {
  width: 80px;
}
@media (width > 600px) {
  .store-products-list .store-product {
    flex-direction: row;
    align-items: center;
    gap: 12px calc(var(--widget-padding) * 0.75);
  }
  .store-products-list .store-product .product-title {
    margin-right: auto;
  }
  .store-products-list .store-product .actions {
    flex-wrap: nowrap;
    align-items: center;
    flex: 0 1 auto;
    gap: calc(var(--widget-padding) * 0.75);
  }
  .store-products-list .store-product .price {
    width: auto;
  }
  .store-products-list .store-product .half {
    flex: 0 1 140px;
  }
  .store-products-list .store-product .wide {
    flex: 0 1 170px;
  }
}

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

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

.store-product-full .image {
  margin-inline: auto;
  max-width: 100%;
  order: -1;
}
.store-product-full .product-title {
  font-size: 28px;
  font-weight: 800;
}
.store-product-full .price {
  width: 100%;
  font-size: 24px;
}
.store-product-full .price strong {
  font-size: 28px;
}
.store-product-full .actions {
  flex-wrap: wrap;
}
.store-product-full .wide {
  max-width: 240px;
}
@media (width > 600px) {
  .store-product-full {
    display: grid;
    grid-template: "image title" auto "image actions" auto "image descr" 1fr/1fr 1fr;
    gap: 24px var(--layout-gap);
  }
  .store-product-full .image,
  .store-product-full .media-slider {
    grid-area: image;
    margin-right: 0;
  }
  .store-product-full .product-title {
    grid-area: title;
    font-size: 32px;
    align-self: flex-end;
  }
  .store-product-full .descr {
    grid-area: descr;
    font-size: 16px;
  }
  .store-product-full .actions {
    grid-area: actions;
    align-self: start;
  }
}

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

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

.store-sidebar {
  display: grid;
  gap: 36px;
}
body:not(.is-sidebar-bottom) .store-sidebar {
  padding-top: 14px;
}
body.is-sidebar-bottom .store-sidebar {
  margin-top: calc(var(--layout-gap) * 1.5);
}
@media (width > 600px) {
  body.is-sidebar-bottom .store-sidebar {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

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

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

.widget-gift-card {
  text-align: center;
}
.widget-gift-card .gift-card-input {
  margin-bottom: 12px;
  width: 100%;
  padding: 14px 12px;
  color: var(--color-text-darker);
  background: var(--color-input-bg);
  font-size: 14px;
  border-radius: 10px;
  font-size: 14px;
}
@media (width > 960px) {
  .widget-gift-card .gift-card-input {
    padding: 12px;
    font-size: 16px;
  }
}
.popup .widget-gift-card .gift-card-input {
  background: #242424;
}
.widget-gift-card .check {
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.login-popup-content {
  max-width: 400px;
}

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

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

.basket-popup-content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 520px;
  height: 100vh;
  height: 100dvh;
  padding: 0;
  background-color: rgb(from var(--color-bg) r g b/0.9);
}
.basket-popup-content, .popup.drawer .basket-popup-content {
  border-radius: 0;
}
.popup.drawer .basket-popup-content::after {
  inset: 0 auto 0 7px;
  margin-block: auto;
  width: 4px;
  height: 100px;
}
.popup.may-close .basket-popup-content {
  border-radius: 10px;
}
@starting-style {
  .basket-popup-content {
    translate: 100% 0;
  }
}
:root .popup[hidden] .basket-popup-content {
  translate: 100% 0;
}
.basket-popup-content .popup-close {
  border-radius: 0 0 0 10px;
}
.basket-popup-content.updating {
  pointer-events: none;
}
.basket-popup-content.updating::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: 10;
  margin: auto;
  width: 38px;
  height: 38px;
  background: url("https://template-assets.tebex.io/images/loading.svg") center center no-repeat;
  background-size: contain;
}
.basket-popup-content.updating > * {
  filter: grayscale(100%);
}

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

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

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

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

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

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

.store-quote {
  padding: var(--widget-padding);
}
.store-quote .wide {
  flex: 1 1 50%;
}
/* 
Modern Product Card Styles with Gaming Animations */
.modern-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.modern-product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.modern-product-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--color-primary);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 0 1px var(--color-primary),
    0 0 30px rgba(99, 102, 241, 0.3);
}

.modern-product-card:hover::before {
  opacity: 1;
}

/* Animated Glow Effect */
.card-glow {
  position: absolute;
  inset: -2px;
  background: linear-gradient(45deg, 
    var(--color-primary), 
    #a855f7, 
    var(--color-primary)
  );
  border-radius: 12px;
  opacity: 0;
  filter: blur(20px);
  transition: opacity 0.4s ease;
  z-index: -1;
  animation: glow-pulse 3s ease-in-out infinite;
}

.modern-product-card:hover .card-glow {
  opacity: 0.6;
}

@keyframes glow-pulse {
  0%, 100% {
    opacity: 0.3;
    transform: scale(0.95);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.05);
  }
}

/* Image Wrapper with Overlay */
.modern-product-card .image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(168, 85, 247, 0.1));
}

.modern-product-card .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-product-card:hover .image {
  transform: scale(1.1) rotate(1deg);
}

.modern-product-card .image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.modern-product-card:hover .image-overlay {
  opacity: 1;
}

/* Default Image Icon */
.modern-product-card .image-default {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(99, 102, 241, 0.2), 
    rgba(168, 85, 247, 0.2)
  );
}

.modern-product-card .default-icon {
  width: 64px;
  height: 64px;
  color: var(--color-primary);
  opacity: 0.5;
  transition: all 0.4s ease;
}

.modern-product-card:hover .default-icon {
  opacity: 1;
  transform: scale(1.2) rotate(5deg);
}

/* Card Content */
.modern-product-card .card-content {
  position: relative;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 2;
}

/* Product Title */
.modern-product-card .product-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

.modern-product-card .product-title a {
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

.modern-product-card:hover .product-title a {
  color: var(--color-primary);
  text-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
}

/* Countdown Badge */
.modern-product-card .countdown {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  padding: 6px 12px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  animation: pulse-badge 2s ease-in-out infinite;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

@keyframes pulse-badge {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.6);
  }
}

/* Responsive adjustments */
@media (width <= 600px) {
  .modern-product-card .card-content {
    padding: 16px;
  }
  
  .modern-product-card .product-title {
    font-size: 16px;
  }
}

/* Grid layout for products */
.store-products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin: 24px 0;
}

@media (width <= 600px) {
  .store-products {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Stagger animation for cards on page load */
.modern-product-card {
  animation: fadeInUp 0.6s ease-out backwards;
}

.modern-product-card:nth-child(1) { animation-delay: 0.1s; }
.modern-product-card:nth-child(2) { animation-delay: 0.2s; }
.modern-product-card:nth-child(3) { animation-delay: 0.3s; }
.modern-product-card:nth-child(4) { animation-delay: 0.4s; }
.modern-product-card:nth-child(5) { animation-delay: 0.5s; }
.modern-product-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Gaming Product Card Styles - Dark Theme with Red Accents */
.gaming-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(145deg, #1a1a1a 0%, #0a0a0a 100%);
  border: 2px solid #2a2a2a;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.gaming-product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.gaming-product-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: #ef4444;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.6),
    0 0 0 2px #ef4444,
    0 0 40px rgba(239, 68, 68, 0.4);
}

.gaming-product-card:hover::before {
  opacity: 1;
}

.gaming-product-card .card-glow {
  position: absolute;
  inset: -3px;
  background: linear-gradient(45deg, #ef4444, #dc2626, #ef4444);
  border-radius: 8px;
  opacity: 0;
  filter: blur(20px);
  transition: opacity 0.4s ease;
  z-index: -1;
  animation: glow-pulse-red 3s ease-in-out infinite;
}

.gaming-product-card:hover .card-glow {
  opacity: 0.6;
}

@keyframes glow-pulse-red {
  0%, 100% {
    opacity: 0.3;
    transform: scale(0.95);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.05);
  }
}

.gaming-product-card .image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.1));
}

.gaming-product-card .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gaming-product-card:hover .image {
  transform: scale(1.15);
}

.gaming-product-card .image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.8) 100%);
  opacity: 0.6;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.gaming-product-card:hover .image-overlay {
  opacity: 0.9;
}

.category-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 14px;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  backdrop-filter: blur(10px);
  z-index: 2;
}

.category-badge span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #9ca3af;
  text-transform: uppercase;
}

.sales-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: white;
  z-index: 2;
  animation: pulse-sales 2s ease-in-out infinite;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.5);
}

@keyframes pulse-sales {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.gaming-product-card .image-default {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(220, 38, 38, 0.2));
}

.gaming-product-card .default-icon {
  width: 64px;
  height: 64px;
  color: #ef4444;
  opacity: 0.5;
  transition: all 0.4s ease;
}

.gaming-product-card:hover .default-icon {
  opacity: 1;
  transform: scale(1.2) rotate(5deg);
}

.gaming-product-card .card-content {
  position: relative;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 2;
  background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
}

.rating-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: -4px;
}

.rating-stars svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.gaming-product-card:hover .rating-stars svg {
  transform: scale(1.1);
}

.rating-number {
  margin-left: 8px;
  font-size: 16px;
  font-weight: 700;
  color: #9ca3af;
}

.gaming-product-card .product-title {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
  margin: 0;
  letter-spacing: -0.5px;
}

.gaming-product-card .product-title a {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.gaming-product-card:hover .product-title a {
  color: #ef4444;
  text-shadow: 0 0 20px rgba(239, 68, 68, 0.5);
}

.product-description {
  font-size: 13px;
  line-height: 1.6;
  color: #9ca3af;
  margin: 0;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.feature-tags .tag {
  padding: 6px 12px;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  color: #60a5fa;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.feature-tags .tag:hover {
  background: rgba(59, 130, 246, 0.25);
  border-color: rgba(59, 130, 246, 0.5);
  transform: translateY(-2px);
}

.feature-tags .tag-countdown {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.3);
  color: #ef4444;
  animation: pulse-tag 2s ease-in-out infinite;
}

@keyframes pulse-tag {
  0%, 100% {
    box-shadow: 0 0 0 rgba(239, 68, 68, 0);
  }
  50% {
    box-shadow: 0 0 12px rgba(239, 68, 68, 0.4);
  }
}

.card-divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #ef4444 50%, transparent 100%);
  margin: 8px 0;
  animation: divider-glow 3s ease-in-out infinite;
}

@keyframes divider-glow {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.8;
  }
}

@media (width <= 600px) {
  .gaming-product-card .card-content {
    padding: 16px;
  }
  
  .gaming-product-card .product-title {
    font-size: 18px;
  }
  
  .feature-tags .tag {
    font-size: 10px;
    padding: 5px 10px;
  }
}

.gaming-product-card {
  animation: fadeInUp 0.6s ease-out backwards;
}

.gaming-product-card:nth-child(1) { animation-delay: 0.1s; }
.gaming-product-card:nth-child(2) { animation-delay: 0.2s; }
.gaming-product-card:nth-child(3) { animation-delay: 0.3s; }
.gaming-product-card:nth-child(4) { animation-delay: 0.4s; }
.gaming-product-card:nth-child(5) { animation-delay: 0.5s; }
.gaming-product-card:nth-child(6) { animation-delay: 0.6s; }

/* Horizontal Gaming Product Card - Override */
.gaming-product-card {
  flex-direction: row !important;
  min-height: 200px;
}

.gaming-product-card .image-wrapper {
  width: 200px !important;
  min-width: 200px;
  aspect-ratio: unset !important;
  height: 100%;
}

.gaming-product-card .card-content {
  flex: 1;
  justify-content: space-between;
}

.gaming-product-card .feature-tags {
  margin-bottom: auto;
}

@media (width <= 768px) {
  .gaming-product-card {
    flex-direction: column !important;
  }
  
  .gaming-product-card .image-wrapper {
    width: 100% !important;
    aspect-ratio: 16 / 9 !important;
    height: auto;
  }
}

/* Vertical Gaming Card - Exact Design */
.gaming-card-vertical {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #0a0a0a;
  border: 2px solid #ef4444;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 30px rgba(239, 68, 68, 0.3);
}

.gaming-card-vertical:hover {
  transform: translateY(-8px);
  border-color: #dc2626;
  box-shadow: 0 20px 60px rgba(239, 68, 68, 0.5);
}

.gaming-card-vertical .card-glow {
  position: absolute;
  inset: -4px;
  background: linear-gradient(45deg, #ef4444, #dc2626, #ef4444);
  border-radius: 12px;
  opacity: 0.4;
  filter: blur(25px);
  z-index: -1;
  animation: glow-rotate 4s linear infinite;
}

@keyframes glow-rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Image Section */
.gaming-card-vertical .image-section {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
  display: block;
}

.gaming-card-vertical .image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.gaming-card-vertical .product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gaming-card-vertical:hover .product-image {
  transform: scale(1.1);
}

.gaming-card-vertical .image-default {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(220, 38, 38, 0.3));
}

.gaming-card-vertical .default-icon {
  width: 80px;
  height: 80px;
  color: #ef4444;
  opacity: 0.6;
}

/* Image Overlay Content */
.gaming-card-vertical .image-overlay-content {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.5) 40%,
    rgba(0, 0, 0, 0.9) 100%
  );
  display: flex;
  flex-direction: column;
  padding: 24px;
  z-index: 2;
}

/* Category Badge on Image */
.gaming-card-vertical .category-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 8px 18px;
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  backdrop-filter: blur(10px);
}

.gaming-card-vertical .category-badge span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #9ca3af;
  text-transform: uppercase;
}

/* Title on Image */
.gaming-card-vertical .image-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
}

.gaming-card-vertical .image-title h3 {
  font-size: 32px;
  font-weight: 900;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
  letter-spacing: 1px;
  margin-bottom: 12px;
  line-height: 1.2;
}

.gaming-card-vertical .image-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: #ef4444;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Sales Badge on Image */
.gaming-card-vertical .sales-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1px;
  color: white;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.6);
  animation: pulse-sales-badge 2.5s ease-in-out infinite;
}

@keyframes pulse-sales-badge {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.6);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(239, 68, 68, 0.8);
  }
}

/* Info Section (Bottom Dark Part) */
.gaming-card-vertical .info-section {
  padding: 24px;
  background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gaming-card-vertical .rating-stars {
  display: flex;
  align-items: center;
  gap: 6px;
}

.gaming-card-vertical .rating-stars svg {
  width: 20px;
  height: 20px;
}

.gaming-card-vertical .rating-number {
  margin-left: 10px;
  font-size: 18px;
  font-weight: 800;
  color: #d1d5db;
}

.gaming-card-vertical .product-title {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.3;
  margin: 0;
  letter-spacing: -0.5px;
}

.gaming-card-vertical .product-title a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.gaming-card-vertical:hover .product-title a {
  color: #ef4444;
}

.gaming-card-vertical .feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gaming-card-vertical .feature-tags .tag {
  padding: 8px 16px;
  background: rgba(37, 99, 235, 0.2);
  border: 1px solid rgba(59, 130, 246, 0.4);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #60a5fa;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.gaming-card-vertical .feature-tags .tag:hover {
  background: rgba(37, 99, 235, 0.3);
  border-color: rgba(59, 130, 246, 0.6);
  transform: translateY(-2px);
}

.gaming-card-vertical .card-divider {
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #ef4444 50%, transparent 100%);
  margin: 8px 0;
  box-shadow: 0 0 15px rgba(239, 68, 68, 0.5);
  animation: divider-pulse 3s ease-in-out infinite;
}

@keyframes divider-pulse {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

.gaming-card-vertical .price-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Responsive */
@media (width <= 600px) {
  .gaming-card-vertical .image-section {
    height: 280px;
  }
  
  .gaming-card-vertical .image-title h3 {
    font-size: 24px;
  }
  
  .gaming-card-vertical .info-section {
    padding: 20px;
  }
  
  .gaming-card-vertical .product-title {
    font-size: 20px;
  }
}

/* Grid Layout */
.store-products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 32px;
  margin: 32px 0;
}

@media (width <= 768px) {
  .store-products {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Stagger Animation */
.gaming-card-vertical {
  animation: cardFadeIn 0.8s ease-out backwards;
}

.gaming-card-vertical:nth-child(1) { animation-delay: 0.1s; }
.gaming-card-vertical:nth-child(2) { animation-delay: 0.2s; }
.gaming-card-vertical:nth-child(3) { animation-delay: 0.3s; }
.gaming-card-vertical:nth-child(4) { animation-delay: 0.4s; }
.gaming-card-vertical:nth-child(5) { animation-delay: 0.5s; }
.gaming-card-vertical:nth-child(6) { animation-delay: 0.6s; }

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

/* 3-Column Grid Layout Override */
.store-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
  margin: 32px 0;
}

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

@media (width <= 768px) {
  .store-products {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
}

/* Simplified Gaming Card for Grid */
.gaming-card-vertical {
  border-radius: 16px !important;
  border-width: 1px !important;
  border-color: #2a2a2a !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4) !important;
}

.gaming-card-vertical:hover {
  border-color: #ef4444 !important;
  box-shadow: 0 8px 24px rgba(239, 68, 68, 0.3) !important;
}

.gaming-card-vertical .card-glow {
  opacity: 0 !important;
}

.gaming-card-vertical:hover .card-glow {
  opacity: 0.3 !important;
}

.gaming-card-vertical .image-section {
  height: 200px !important;
  border-radius: 16px 16px 0 0;
}

.gaming-card-vertical .image-title h3 {
  font-size: 36px !important;
  font-weight: 900 !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9) !important;
}

.gaming-card-vertical .image-subtitle {
  display: none;
}

.gaming-card-vertical .category-badge {
  top: 12px !important;
  left: 12px !important;
  padding: 6px 12px !important;
}

.gaming-card-vertical .category-badge span {
  font-size: 10px !important;
}

.gaming-card-vertical .sales-badge {
  bottom: 12px !important;
  left: 12px !important;
  padding: 8px 14px !important;
  font-size: 11px !important;
}

.gaming-card-vertical .info-section {
  padding: 20px !important;
  gap: 12px !important;
}

.gaming-card-vertical .rating-stars {
  display: none;
}

.gaming-card-vertical .product-title {
  font-size: 16px !important;
  font-weight: 700 !important;
  margin-bottom: 8px;
}

.gaming-card-vertical .feature-tags {
  display: none;
}

.gaming-card-vertical .card-divider {
  display: none;
}

.gaming-card-vertical .price-action {
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

/* Red Cursor */
* {
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="%23ff0000" d="M3 3l7.07 16.97 2.51-7.39 7.39-2.51L3 3z"/></svg>') 0 0, auto;
}

a, button, input[type="submit"], .btn-primary, .btn-secondary, .btn-tertiary {
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="%23ff0000" d="M8 3v3h3v12H8v3h8v-3h-3V6h3V3H8z"/></svg>') 12 12, pointer !important;
}

input[type="text"], input[type="number"], textarea, select {
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="%23ff0000" d="M12 2L12 22M8 6L12 2L16 6M8 18L12 22L16 18"/></svg>') 12 12, text !important;
}

/* Clean Gaming Card Design - Exact Match */
.gaming-card-vertical {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #0f0f0f;
  border: 1px solid #1f1f1f;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.gaming-card-vertical:hover {
  transform: translateY(-6px);
  border-color: #2a2a2a;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.7);
}

.gaming-card-vertical .card-glow {
  display: none;
}

/* Image Section */
.gaming-card-vertical .image-section {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  display: block;
  border-radius: 12px 12px 0 0;
}

.gaming-card-vertical .image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.gaming-card-vertical .product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gaming-card-vertical:hover .product-image {
  transform: scale(1.08);
}

.gaming-card-vertical .image-default {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
}

.gaming-card-vertical .default-icon {
  width: 60px;
  height: 60px;
  color: #3a3a3a;
  opacity: 0.5;
}

/* Image Overlay */
.gaming-card-vertical .image-overlay-content {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
  display: flex;
  flex-direction: column;
  padding: 16px;
  z-index: 2;
  transition: background 0.3s ease;
}

.gaming-card-vertical:hover .image-overlay-content {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.9) 100%
  );
}

/* Title on Image - Centered */
.gaming-card-vertical .image-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
  transition: transform 0.3s ease;
}

.gaming-card-vertical:hover .image-title {
  transform: translate(-50%, -50%) scale(1.05);
}

.gaming-card-vertical .image-title h3 {
  font-size: 28px;
  font-weight: 900;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
  letter-spacing: 0.5px;
  margin: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.gaming-card-vertical .image-subtitle {
  display: none;
}

/* Badges */
.gaming-card-vertical .category-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 12px;
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.gaming-card-vertical:hover .category-badge {
  background: rgba(0, 0, 0, 0.85);
  border-color: rgba(255, 255, 255, 0.15);
}

.gaming-card-vertical .category-badge span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #888;
  text-transform: uppercase;
}

.gaming-card-vertical .sales-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(239, 68, 68, 0.9);
  border-radius: 4px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: white;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
  transition: all 0.3s ease;
}

.gaming-card-vertical:hover .sales-badge {
  background: rgba(239, 68, 68, 1);
  box-shadow: 0 4px 16px rgba(239, 68, 68, 0.6);
  transform: scale(1.05);
}

/* Info Section */
.gaming-card-vertical .info-section {
  padding: 18px;
  background: #0a0a0a;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gaming-card-vertical .rating-stars {
  display: none;
}

.gaming-card-vertical .product-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  color: #ffffff;
}

.gaming-card-vertical .product-title a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.gaming-card-vertical:hover .product-title a {
  color: #60a5fa;
}

.gaming-card-vertical .feature-tags {
  display: none;
}

.gaming-card-vertical .card-divider {
  display: none;
}

/* Price and Button */
.gaming-card-vertical .price-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
}

.gaming-card-vertical .price-action .price {
  font-size: 18px;
  font-weight: 800;
  color: #60a5fa;
}

.gaming-card-vertical .price-action .price-label {
  font-size: 11px;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.gaming-card-vertical .price-action button,
.gaming-card-vertical .price-action .btn-primary {
  flex: 1;
  padding: 10px 16px;
  background: rgba(37, 99, 235, 0.8);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 6px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.gaming-card-vertical .price-action button:hover,
.gaming-card-vertical .price-action .btn-primary:hover {
  background: rgba(37, 99, 235, 1);
  border-color: rgba(59, 130, 246, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

/* Grid Layout - 3 Columns */
.store-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 24px 0;
}

@media (width <= 1200px) {
  .store-products {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (width <= 768px) {
  .store-products {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .gaming-card-vertical .image-section {
    height: 160px;
  }
  
  .gaming-card-vertical .image-title h3 {
    font-size: 24px;
  }
}

/* Stagger Animation */
.gaming-card-vertical {
  animation: fadeInCard 0.5s ease-out backwards;
}

.gaming-card-vertical:nth-child(1) { animation-delay: 0.05s; }
.gaming-card-vertical:nth-child(2) { animation-delay: 0.1s; }
.gaming-card-vertical:nth-child(3) { animation-delay: 0.15s; }
.gaming-card-vertical:nth-child(4) { animation-delay: 0.2s; }
.gaming-card-vertical:nth-child(5) { animation-delay: 0.25s; }
.gaming-card-vertical:nth-child(6) { animation-delay: 0.3s; }

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

/* Clean Gaming Card - Final Design */
.gaming-card-clean {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #1a1f2e;
  border: 1px solid #2a3142;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.gaming-card-clean:hover {
  transform: translateY(-8px);
  border-color: #3a4152;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

/* Image Section - No Text Overlay */
.gaming-card-clean .card-image-link {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  display: block;
  border-radius: 16px 16px 0 0;
}

.gaming-card-clean .card-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.gaming-card-clean .card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gaming-card-clean:hover .card-image {
  transform: scale(1.1);
}

.gaming-card-clean .card-image-default {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2a3142, #1a1f2e);
}

.gaming-card-clean .default-icon {
  width: 64px;
  height: 64px;
  color: #4a5568;
  opacity: 0.5;
}

/* Card Info Section */
.gaming-card-clean .card-info {
  padding: 20px;
  background: #1a1f2e;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gaming-card-clean .card-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
  color: #ffffff;
}

.gaming-card-clean .card-title a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.gaming-card-clean:hover .card-title a {
  color: #60a5fa;
}

/* Card Actions - Price and Button */
.gaming-card-clean .card-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gaming-card-clean .card-actions .price-wrapper {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.gaming-card-clean .card-actions .price-label {
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.gaming-card-clean .card-actions .price {
  font-size: 20px;
  font-weight: 800;
  color: #60a5fa;
}

.gaming-card-clean .card-actions .currency {
  font-size: 14px;
  font-weight: 600;
  color: #9ca3af;
}

/* Button Styling */
.gaming-card-clean .card-actions button,
.gaming-card-clean .card-actions .btn-primary,
.gaming-card-clean .card-actions a[class*="btn"] {
  width: 100%;
  padding: 12px 20px;
  background: #3b82f6;
  border: none;
  border-radius: 8px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.gaming-card-clean .card-actions button:hover,
.gaming-card-clean .card-actions .btn-primary:hover,
.gaming-card-clean .card-actions a[class*="btn"]:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.5);
}

.gaming-card-clean .card-actions button:active,
.gaming-card-clean .card-actions .btn-primary:active {
  transform: translateY(0);
}

/* Grid Layout */
.store-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 32px 0;
}

@media (width <= 1200px) {
  .store-products {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (width <= 768px) {
  .store-products {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .gaming-card-clean .card-image-link {
    height: 180px;
  }
  
  .gaming-card-clean .card-info {
    padding: 16px;
  }
}

/* Stagger Animation */
.gaming-card-clean {
  animation: fadeInUp 0.6s ease-out backwards;
}

.gaming-card-clean:nth-child(1) { animation-delay: 0.05s; }
.gaming-card-clean:nth-child(2) { animation-delay: 0.1s; }
.gaming-card-clean:nth-child(3) { animation-delay: 0.15s; }
.gaming-card-clean:nth-child(4) { animation-delay: 0.2s; }
.gaming-card-clean:nth-child(5) { animation-delay: 0.25s; }
.gaming-card-clean:nth-child(6) { animation-delay: 0.3s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Full Gaming Card Design - Exact Match */
.gaming-card-full {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #0a0a0a;
  border: 2px solid #ef4444;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 0 30px rgba(239, 68, 68, 0.3);
}

.gaming-card-full:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(239, 68, 68, 0.5);
  border-color: #dc2626;
}

/* Image Section with Full Overlay */
.gaming-card-full .card-image-section {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
  display: block;
}

.gaming-card-full .card-image-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.gaming-card-full .card-product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gaming-card-full:hover .card-product-image {
  transform: scale(1.15);
}

.gaming-card-full .card-no-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(220, 38, 38, 0.3));
}

.gaming-card-full .placeholder-icon {
  width: 80px;
  height: 80px;
  color: #ef4444;
  opacity: 0.6;
}

/* Image Overlay with All Content */
.gaming-card-full .card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(0, 0, 0, 0.95) 100%
  );
  padding: 24px;
  display: flex;
  flex-direction: column;
  z-index: 2;
}

/* Category Badge */
.gaming-card-full .card-category-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 8px 18px;
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  backdrop-filter: blur(10px);
}

.gaming-card-full .card-category-badge span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #9ca3af;
  text-transform: uppercase;
}

/* Title and Features on Image */
.gaming-card-full .card-image-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
}

.gaming-card-full .card-image-title h3 {
  font-size: 36px;
  font-weight: 900;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9);
  letter-spacing: 1px;
  margin-bottom: 12px;
  line-height: 1.1;
}

.gaming-card-full .card-image-subtitle {
  font-size: 14px;
  font-weight: 700;
  color: #ef4444;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.gaming-card-full .card-features-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.gaming-card-full .feature-item {
  font-size: 14px;
  font-weight: 600;
  color: #d1d5db;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

/* Sales Badge */
.gaming-card-full .card-sales-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1px;
  color: white;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.6);
  animation: pulseSales 2.5s ease-in-out infinite;
}

@keyframes pulseSales {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Details Section */
.gaming-card-full .card-details-section {
  padding: 24px;
  background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Star Rating */
.gaming-card-full .card-rating {
  display: flex;
  align-items: center;
  gap: 6px;
}

.gaming-card-full .card-rating svg {
  width: 20px;
  height: 20px;
}

.gaming-card-full .rating-value {
  margin-left: 10px;
  font-size: 18px;
  font-weight: 800;
  color: #d1d5db;
}

/* Product Title */
.gaming-card-full .card-product-title {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.3;
  margin: 0;
  letter-spacing: -0.5px;
}

.gaming-card-full .card-product-title a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.gaming-card-full:hover .card-product-title a {
  color: #ef4444;
}

/* Description */
.gaming-card-full .card-description {
  font-size: 13px;
  line-height: 1.6;
  color: #6b7280;
  margin: 0;
  font-family: monospace;
}

/* Feature Tags */
.gaming-card-full .card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gaming-card-full .card-tag {
  padding: 8px 16px;
  background: rgba(37, 99, 235, 0.2);
  border: 1px solid rgba(59, 130, 246, 0.4);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #60a5fa;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.gaming-card-full .card-tag:hover {
  background: rgba(37, 99, 235, 0.3);
  border-color: rgba(59, 130, 246, 0.6);
  transform: translateY(-2px);
}

/* Red Divider */
.gaming-card-full .card-red-divider {
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #ef4444 50%, transparent 100%);
  margin: 8px 0;
  box-shadow: 0 0 15px rgba(239, 68, 68, 0.5);
  animation: dividerGlow 3s ease-in-out infinite;
}

@keyframes dividerGlow {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

/* Price Section */
.gaming-card-full .card-price-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.gaming-card-full .card-price-section .price {
  font-size: 32px;
  font-weight: 900;
  color: #ef4444;
}

.gaming-card-full .card-price-section button,
.gaming-card-full .card-price-section .btn-primary {
  flex: 1;
  padding: 14px 24px;
  background: transparent;
  border: 2px solid #ef4444;
  border-radius: 8px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.gaming-card-full .card-price-section button::before,
.gaming-card-full .card-price-section .btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, #ef4444 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.gaming-card-full .card-price-section button:hover,
.gaming-card-full .card-price-section .btn-primary:hover {
  background: #ef4444;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.5);
  transform: translateY(-2px);
}

.gaming-card-full .card-price-section button:hover::before,
.gaming-card-full .card-price-section .btn-primary:hover::before {
  transform: translateX(100%);
}

/* Responsive */
@media (width <= 768px) {
  .gaming-card-full .card-image-section {
    height: 280px;
  }
  
  .gaming-card-full .card-image-title h3 {
    font-size: 28px;
  }
  
  .gaming-card-full .card-details-section {
    padding: 20px;
  }
  
  .gaming-card-full .card-product-title {
    font-size: 20px;
  }
}

/* Grid */
.store-products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 32px;
  margin: 32px 0;
}

@media (width <= 768px) {
  .store-products {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Animation */
.gaming-card-full {
  animation: cardAppear 0.8s ease-out backwards;
}

.gaming-card-full:nth-child(1) { animation-delay: 0.1s; }
.gaming-card-full:nth-child(2) { animation-delay: 0.2s; }
.gaming-card-full:nth-child(3) { animation-delay: 0.3s; }

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

/* Simple Gaming Card - Clean Design */
.simple-gaming-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.simple-gaming-card:hover {
  transform: translateY(-8px);
  border-color: #ef4444;
  box-shadow: 0 12px 32px rgba(239, 68, 68, 0.3);
}

/* Clean Image - No Overlays */
.simple-gaming-card .simple-card-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  display: block;
  border-radius: 12px 12px 0 0;
}

.simple-gaming-card .simple-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.simple-gaming-card:hover .simple-card-image img {
  transform: scale(1.1);
}

.simple-gaming-card .simple-card-no-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
}

.simple-gaming-card .simple-card-no-image svg {
  width: 64px;
  height: 64px;
  color: #4a4a4a;
  opacity: 0.5;
}

/* Content Section */
.simple-gaming-card .simple-card-content {
  padding: 20px;
  background: #1a1a1a;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Star Rating */
.simple-gaming-card .simple-card-rating {
  display: flex;
  align-items: center;
  gap: 4px;
}

.simple-gaming-card .simple-card-rating svg {
  width: 18px;
  height: 18px;
}

.simple-gaming-card .simple-card-rating span {
  margin-left: 8px;
  font-size: 16px;
  font-weight: 700;
  color: #d1d5db;
}

/* Title */
.simple-gaming-card .simple-card-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

.simple-gaming-card .simple-card-title a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.simple-gaming-card:hover .simple-card-title a {
  color: #ef4444;
}

/* Actions - Price and Button */
.simple-gaming-card .simple-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 8px;
}

.simple-gaming-card .simple-card-actions .price {
  font-size: 24px;
  font-weight: 900;
  color: #ef4444;
}

.simple-gaming-card .simple-card-actions button,
.simple-gaming-card .simple-card-actions .btn-primary,
.simple-gaming-card .simple-card-actions a[class*="btn"] {
  flex: 1;
  padding: 12px 20px;
  background: #ef4444;
  border: none;
  border-radius: 8px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.simple-gaming-card .simple-card-actions button:hover,
.simple-gaming-card .simple-card-actions .btn-primary:hover,
.simple-gaming-card .simple-card-actions a[class*="btn"]:hover {
  background: #dc2626;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(239, 68, 68, 0.5);
}

/* Grid Layout */
.store-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 32px 0;
}

@media (width <= 1200px) {
  .store-products {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (width <= 768px) {
  .store-products {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .simple-gaming-card .simple-card-image {
    height: 180px;
  }
  
  .simple-gaming-card .simple-card-content {
    padding: 16px;
  }
  
  .simple-gaming-card .simple-card-title {
    font-size: 16px;
  }
}

/* Stagger Animation */
.simple-gaming-card {
  animation: fadeInSimple 0.6s ease-out backwards;
}

.simple-gaming-card:nth-child(1) { animation-delay: 0.05s; }
.simple-gaming-card:nth-child(2) { animation-delay: 0.1s; }
.simple-gaming-card:nth-child(3) { animation-delay: 0.15s; }
.simple-gaming-card:nth-child(4) { animation-delay: 0.2s; }
.simple-gaming-card:nth-child(5) { animation-delay: 0.25s; }
.simple-gaming-card:nth-child(6) { animation-delay: 0.3s; }

@keyframes fadeInSimple {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Updated Button Style - Rounded */
.simple-gaming-card .simple-card-actions button,
.simple-gaming-card .simple-card-actions .btn-primary,
.simple-gaming-card .simple-card-actions a[class*="btn"],
.simple-gaming-card .simple-card-actions .open-basket,
.simple-gaming-card .simple-card-actions [class*="add"] {
  flex: 1 !important;
  padding: 14px 24px !important;
  background: #ef4444 !important;
  border: none !important;
  border-radius: 50px !important;
  color: #ffffff !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  text-align: center !important;
  transition: all 0.3s ease !important;
  cursor: pointer !important;
  box-shadow: 0 4px 16px rgba(239, 68, 68, 0.4) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
}

.simple-gaming-card .simple-card-actions button:hover,
.simple-gaming-card .simple-card-actions .btn-primary:hover,
.simple-gaming-card .simple-card-actions a[class*="btn"]:hover,
.simple-gaming-card .simple-card-actions .open-basket:hover,
.simple-gaming-card .simple-card-actions [class*="add"]:hover {
  background: #dc2626 !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 24px rgba(239, 68, 68, 0.6) !important;
}

.simple-gaming-card .simple-card-actions button:active,
.simple-gaming-card .simple-card-actions .btn-primary:active {
  transform: translateY(-1px) !important;
}

/* Cart Icon in Button */
.simple-gaming-card .simple-card-actions button svg,
.simple-gaming-card .simple-card-actions .btn-primary svg {
  width: 18px !important;
  height: 18px !important;
}

/* Button with Red Lines - Final Style */
.simple-gaming-card .simple-card-actions button,
.simple-gaming-card .simple-card-actions .btn-primary,
.simple-gaming-card .simple-card-actions a[class*="btn"],
.simple-gaming-card .simple-card-actions .open-basket,
.simple-gaming-card .simple-card-actions [class*="add"] {
  flex: 1 !important;
  padding: 16px 24px !important;
  background: transparent !important;
  border: none !important;
  border-top: 3px solid #ef4444 !important;
  border-bottom: 3px solid #ef4444 !important;
  border-radius: 0 !important;
  color: #ffffff !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  text-align: center !important;
  transition: all 0.3s ease !important;
  cursor: pointer !important;
  box-shadow: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  position: relative !important;
}

.simple-gaming-card .simple-card-actions button::before,
.simple-gaming-card .simple-card-actions .btn-primary::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: rgba(239, 68, 68, 0.1) !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease !important;
}

.simple-gaming-card .simple-card-actions button:hover,
.simple-gaming-card .simple-card-actions .btn-primary:hover,
.simple-gaming-card .simple-card-actions a[class*="btn"]:hover,
.simple-gaming-card .simple-card-actions .open-basket:hover,
.simple-gaming-card .simple-card-actions [class*="add"]:hover {
  background: rgba(239, 68, 68, 0.15) !important;
  border-top-color: #dc2626 !important;
  border-bottom-color: #dc2626 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.3) !important;
}

.simple-gaming-card .simple-card-actions button:hover::before,
.simple-gaming-card .simple-card-actions .btn-primary:hover::before {
  opacity: 1 !important;
}

/* Cart Icon in Button */
.simple-gaming-card .simple-card-actions button svg,
.simple-gaming-card .simple-card-actions .btn-primary svg,
.simple-gaming-card .simple-card-actions button::before {
  width: 20px !important;
  height: 20px !important;
}

/* Fix Button Layout - Single Button Full Width */
.simple-gaming-card .simple-card-actions {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  margin-top: 8px !important;
}

.simple-gaming-card .simple-card-actions > * {
  width: 100% !important;
}

/* Hide duplicate elements */
.simple-gaming-card .simple-card-actions .quantity-field,
.simple-gaming-card .simple-card-actions .price-wrapper {
  display: none !important;
}

/* Single Button Style - Full Width */
.simple-gaming-card .simple-card-actions button,
.simple-gaming-card .simple-card-actions .btn-primary,
.simple-gaming-card .simple-card-actions .open-basket {
  width: 100% !important;
  flex: none !important;
  padding: 16px 24px !important;
  background: transparent !important;
  border: none !important;
  border-top: 3px solid #ef4444 !important;
  border-bottom: 3px solid #ef4444 !important;
  border-radius: 0 !important;
  color: #ffffff !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  text-align: center !important;
  transition: all 0.3s ease !important;
  cursor: pointer !important;
  box-shadow: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  white-space: nowrap !important;
  overflow: visible !important;
}

.simple-gaming-card .simple-card-actions button:hover,
.simple-gaming-card .simple-card-actions .btn-primary:hover,
.simple-gaming-card .simple-card-actions .open-basket:hover {
  background: rgba(239, 68, 68, 0.15) !important;
  border-top-color: #dc2626 !important;
  border-bottom-color: #dc2626 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.3) !important;
}

/* Cart Icon */
.simple-gaming-card .simple-card-actions svg {
  width: 20px !important;
  height: 20px !important;
  flex-shrink: 0 !important;
}

/* Price Display - Above Button */
.simple-gaming-card .simple-card-actions::before {
  content: attr(data-price) !important;
  font-size: 24px !important;
  font-weight: 900 !important;
  color: #ef4444 !important;
  text-align: left !important;
}

/* Hide All Extra Elements - Show Only One Button */
.simple-gaming-card .simple-card-actions .price,
.simple-gaming-card .simple-card-actions .quantity-field,
.simple-gaming-card .simple-card-actions .open-basket-cta,
.simple-gaming-card .simple-card-actions .gift,
.simple-gaming-card .simple-card-actions .subscribe {
  display: none !important;
}

/* Show Only Add to Basket Button */
.simple-gaming-card .simple-card-actions .add {
  display: flex !important;
  width: 100% !important;
  padding: 16px 24px !important;
  background: transparent !important;
  border: none !important;
  border-top: 3px solid #ef4444 !important;
  border-bottom: 3px solid #ef4444 !important;
  border-radius: 0 !important;
  color: #ffffff !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  text-align: center !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  cursor: pointer !important;
  box-shadow: none !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  white-space: nowrap !important;
}

.simple-gaming-card .simple-card-actions .add::before {
  content: '🛒' !important;
  font-size: 18px !important;
}

.simple-gaming-card .simple-card-actions .add:hover {
  background: rgba(239, 68, 68, 0.15) !important;
  border-top-color: #dc2626 !important;
  border-bottom-color: #dc2626 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.3) !important;
}

.simple-gaming-card .simple-card-actions .add[disabled] {
  opacity: 0.5 !important;
  cursor: not-allowed !important;
}

/* Clean Actions Container */
.simple-gaming-card .simple-card-actions .product-actions {
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
  width: 100% !important;
}

/* Show Price - Properly Styled */
.simple-gaming-card .simple-card-actions .price {
  display: block !important;
  font-size: 28px !important;
  font-weight: 900 !important;
  color: #ef4444 !important;
  margin-bottom: 16px !important;
  text-align: left !important;
}

.simple-gaming-card .simple-card-actions .price strong {
  font-size: 20px !important;
  font-weight: 700 !important;
  color: #60a5fa !important;
}

.simple-gaming-card .simple-card-actions .price del {
  font-size: 18px !important;
  color: #6b7280 !important;
  margin-right: 12px !important;
}

/* Price Display */
.simple-gaming-card .simple-card-actions .price .currency {
  font-size: 20px !important;
  color: #9ca3af !important;
  margin-left: 4px !important;
}

/* Remove Cart Icon */
.simple-gaming-card .simple-card-actions .add::before {
  display: none !important;
  content: none !important;
}

.simple-gaming-card .simple-card-actions .add svg,
.simple-gaming-card .simple-card-actions button svg {
  display: none !important;
}

/* Fix Cursor - Always Pointer */
.simple-gaming-card .simple-card-actions .add,
.simple-gaming-card .simple-card-actions .add:hover,
.simple-gaming-card .simple-card-actions button,
.simple-gaming-card .simple-card-actions a {
  cursor: pointer !important;
}

.simple-gaming-card .simple-card-actions .add[disabled] {
  cursor: not-allowed !important;
}

/* Override any cursor styles */
.simple-gaming-card .simple-card-actions * {
  cursor: inherit !important;
}

/* Remove Custom Cursor on Buttons - Use Default Pointer */
.simple-gaming-card .simple-card-actions .add,
.simple-gaming-card .simple-card-actions .add *,
.simple-gaming-card .simple-card-actions button,
.simple-gaming-card .simple-card-actions button *,
.simple-gaming-card .simple-card-actions a,
.simple-gaming-card .simple-card-actions a * {
  cursor: pointer !important;
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="%23ffffff" d="M8 3v3h3v12H8v3h8v-3h-3V6h3V3H8z"/></svg>') 12 12, pointer !important;
}

/* Force pointer cursor everywhere in card actions */
.simple-gaming-card .simple-card-actions {
  cursor: default !important;
}

.simple-gaming-card .simple-card-actions .add:hover,
.simple-gaming-card .simple-card-actions button:hover,
.simple-gaming-card .simple-card-actions a:hover {
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="%23ef4444" d="M8 3v3h3v12H8v3h8v-3h-3V6h3V3H8z"/></svg>') 12 12, pointer !important;
}

/* Center Welcome Text */
.site-content > p,
.site-content > h1,
.site-content > h2,
.site-content > div > p:first-child {
  text-align: center !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Center any welcome message */
p:contains("Welcome"),
h1:contains("Welcome"),
h2:contains("Welcome") {
  text-align: center !important;
}

/* Center all top-level text in content area */
.site-content {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

.site-content > * {
  width: 100% !important;
  max-width: var(--content-inner-width) !important;
}

/* Slide Welcome Text to Left - Not Fully Centered */
.site-content > p,
.site-content > h1,
.site-content > h2,
.site-content > div > p:first-child {
  text-align: left !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}

.site-content {
  align-items: flex-start !important;
}

/* Center Welcome Text - Properly */
.site-content > p,
.site-content > h1,
.site-content > h2 {
  text-align: center !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.site-content {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
}

/* Center "No packages" message too */
.site-content > div {
  text-align: center !important;
  width: 100% !important;
}

/* Large Animated Welcome Text with Color */
.site-content > p,
.site-content > h1,
.site-content > h2 {
  font-size: 48px !important;
  font-weight: 900 !important;
  background: linear-gradient(90deg, #ef4444, #f97316, #eab308, #22c55e, #3b82f6, #a855f7, #ef4444) !important;
  background-size: 200% 100% !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  animation: gradientShift 4s ease infinite, fadeInScale 1s ease-out !important;
  text-shadow: 0 0 30px rgba(239, 68, 68, 0.5) !important;
  letter-spacing: 2px !important;
  margin: 40px 0 !important;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

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

/* Responsive */
@media (width <= 768px) {
  .site-content > p,
  .site-content > h1,
  .site-content > h2 {
    font-size: 32px !important;
  }
}

@media (width <= 480px) {
  .site-content > p,
  .site-content > h1,
  .site-content > h2 {
    font-size: 24px !important;
  }
}

/* Force Welcome Text Styling - More Specific */
body .site-content > p:first-of-type,
body .site-content > h1:first-of-type,
body .site-content > h2:first-of-type,
body .site > .site-content > p,
body .site > .site-content > h1,
body .site > .site-content > h2 {
  font-size: 48px !important;
  font-weight: 900 !important;
  color: transparent !important;
  background: linear-gradient(90deg, #ef4444 0%, #f97316 20%, #eab308 40%, #22c55e 60%, #3b82f6 80%, #a855f7 100%) !important;
  background-size: 200% auto !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  animation: rainbowGradient 3s linear infinite, textFadeIn 1s ease-out !important;
  letter-spacing: 3px !important;
  margin: 40px auto !important;
  padding: 20px 0 !important;
  filter: drop-shadow(0 0 20px rgba(239, 68, 68, 0.5)) !important;
}

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

@keyframes textFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(30px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Center All Category/Page Headings */
.site-content h1,
.site-content h2,
.site-content h3,
.site-content > h1,
.site-content > h2,
.site-content > h3,
.page-title,
.category-title,
.site-content header h1,
.site-content header h2 {
  text-align: center !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  font-size: 42px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  margin-bottom: 32px !important;
  letter-spacing: 1px !important;
}

/* Center "No packages" message */
.site-content > div,
.site-content > p {
  text-align: center !important;
}

/* Center Category Heading - Specific */
.category-header,
.category-header h2,
.store-products .category-header,
.site-content .category-header h2 {
  text-align: center !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block !important;
}

.category-header h2 {
  font-size: 42px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  margin-bottom: 24px !important;
  letter-spacing: 1px !important;
}

/* Center description too */
.category-header p,
.category-header div {
  text-align: center !important;
}

/* Force Center All Headings - Maximum Priority */
* h1, * h2, * h3,
body h1, body h2, body h3,
.site-content h1, .site-content h2, .site-content h3,
main h1, main h2, main h3 {
  text-align: center !important;
}

/* Specific for category header */
.category-header * {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Hide Category Heading */
.category-header,
.category-header h2,
.category-header h1 {
  display: none !important;
}

/* Featured Package Widget Styling */
.widget-featured {
  margin: 32px 0;
}

.widget-featured .widget-title {
  text-align: center !important;
  font-size: 24px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  margin-bottom: 24px !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
}

.widget-featured .widget-content {
  max-width: 600px !important;
  margin: 0 auto !important;
}

/* Make featured package card full width */
.widget-featured .simple-gaming-card {
  max-width: 100% !important;
}

/* Make Featured Package Same Size as Regular Products */
.widget-featured .widget-content {
  max-width: 380px !important;
  margin: 0 auto !important;
}

/* Match regular product card styling */
.widget-featured .simple-gaming-card {
  max-width: 100% !important;
  width: 100% !important;
}

/* Match image height */
.widget-featured .simple-card-image {
  height: 200px !important;
}

/* Center the widget on page */
.widget-featured {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  margin: 32px auto !important;
  max-width: 100% !important;
}


/* ============================================
   HOMEPAGE REDESIGN - DEVIL BYTES
   ============================================ */

/* Welcome Section */
.welcome-section {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 24px;
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

.welcome-title {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, #ff0000, #ff6b6b, #ff0000);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 3px;
  animation: gradientShift 3s ease infinite;
}

.welcome-text {
  font-size: 18px;
  line-height: 1.8;
  color: #b0b0b0;
  max-width: 800px;
  margin: 0 auto;
}

/* Featured Products Section */
.featured-products-section {
  max-width: 1400px;
  margin: 80px auto;
  padding: 0 24px;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  text-align: center;
  margin-bottom: 48px;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  padding-bottom: 16px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ef4444, transparent);
}

.featured-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1200px) {
  .featured-products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .featured-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .featured-products-grid {
    grid-template-columns: 1fr;
  }
}

/* Enhanced Product Cards */
.simple-gaming-card {
  background: linear-gradient(145deg, #1a1a1a 0%, #0f0f0f 100%);
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.simple-gaming-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.simple-gaming-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(239, 68, 68, 0.3);
}

.simple-gaming-card:hover::before {
  opacity: 1;
}

/* Free Product Badge */
.simple-gaming-card[data-free="true"]::after {
  content: 'FREE';
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

/* Testimonials Section */
.testimonials-section {
  max-width: 100%;
  margin: 80px 0;
  padding: 0 24px;
  overflow: hidden;
}

.testimonials-scroll-container {
  overflow: hidden;
  margin-top: 48px;
  position: relative;
}

.testimonials-scroll-container::before,
.testimonials-scroll-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.testimonials-scroll-container::before {
  left: 0;
  background: linear-gradient(to right, #0a0a0a, transparent);
}

.testimonials-scroll-container::after {
  right: 0;
  background: linear-gradient(to left, #0a0a0a, transparent);
}

.testimonials-scroll {
  display: flex;
  gap: 32px;
  animation: scrollTestimonials 40s linear infinite;
  width: max-content;
}

.testimonials-scroll:hover {
  animation-play-state: paused;
}

@keyframes scrollTestimonials {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

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

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

.testimonial-card {
  background: rgba(31, 41, 55, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(55, 65, 81, 0.5);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  transition: all 0.3s ease;
  animation: fadeIn 0.6s ease-out;
  min-width: 320px;
  max-width: 320px;
  flex-shrink: 0;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.3), rgba(59, 130, 246, 0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(239, 68, 68, 0.2);
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-stars {
  color: #ef4444;
  font-size: 16px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial-text {
  color: #b0b0b0;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-author {
  color: #ffffff;
  font-weight: 600;
  font-size: 13px;
  text-align: right;
}

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

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

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Enhanced Button Styling for Homepage */
.featured-products-section .simple-card-actions .btn-add-basket {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  border: none;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.featured-products-section .simple-card-actions .btn-add-basket::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.5s ease;
}

.featured-products-section .simple-card-actions .btn-add-basket:hover::before {
  left: 100%;
}

.featured-products-section .simple-card-actions .btn-add-basket:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(239, 68, 68, 0.4);
}


/* ============================================
   MODERN FOOTER DESIGN
   ============================================ */

.site-footer {
  background: #000000;
  padding: 0;
  margin-top: 80px;
  position: relative;
}

.footer-red-line {
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    #ef4444 10%, 
    #ff0000 50%, 
    #ef4444 90%, 
    transparent 100%);
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.6);
}

.site-footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 24px 14px 24px;
}

/* Top Footer Row - 3 columns */
.footer-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 12px;
  min-height: 50px;
}

/* Bottom Footer Row - Centered copyright */
.footer-bottom-row {
  text-align: center;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
  color: #888888;
  font-size: 11px;
  margin: 0;
  padding: 0;
  line-height: 1.4;
}

.footer-brand {
  flex: 1;
  min-width: 200px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.footer-logo {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  padding: 0;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #ff0000, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1.2;
}

.footer-tagline {
  font-size: 11px;
  color: #888888;
  margin: 2px 0 0 0;
  padding: 0;
  letter-spacing: 0.5px;
  display: block;
  line-height: 1.2;
}

.footer-links {
  flex: 1;
  display: flex;
  gap: 28px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.footer-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  line-height: 1.4;
  white-space: nowrap;
}

.footer-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ef4444;
  transition: width 0.3s ease;
}

.footer-link:hover {
  color: #ef4444;
}

.footer-link:hover::after {
  width: 100%;
}

.we-accept {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
  height: 100%;
}

.we-accept li {
  opacity: 0.6;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  height: 20px;
}

.we-accept li:hover {
  opacity: 1;
}

.we-accept img {
  height: 20px;
  width: auto;
  display: block;
}

@media (max-width: 768px) {
  .footer-top-row {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  
  .footer-brand {
    text-align: center;
    align-items: center;
  }
  
  .footer-links {
    justify-content: center;
  }
  
  .we-accept {
    justify-content: center;
    flex-wrap: wrap;
  }
}


/* ============================================
   FOOTER FIX - FORCE OVERRIDE
   ============================================ */

.site-footer {
  background: #000000 !important;
  padding: 0 !important;
  margin-top: 80px !important;
  overflow: visible !important;
}

.site-footer-inner {
  max-width: 1400px !important;
  margin: 0 auto !important;
  padding: 20px 24px 16px 24px !important;
}

.footer-top-row {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 32px !important;
  margin-bottom: 16px !important;
  min-height: 60px !important;
}

.footer-brand {
  flex: 1 !important;
  min-width: 200px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;
}

.footer-logo {
  font-size: 26px !important;
  line-height: 1.3 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.footer-tagline {
  font-size: 12px !important;
  line-height: 1.3 !important;
  margin: 4px 0 0 0 !important;
  padding: 0 !important;
}

.footer-links {
  flex: 1 !important;
  display: flex !important;
  gap: 32px !important;
  justify-content: center !important;
  align-items: center !important;
}

.footer-link {
  font-size: 14px !important;
  line-height: 1.5 !important;
  padding: 4px 0 !important;
}

.we-accept {
  flex: 1 !important;
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
  gap: 14px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.we-accept li {
  display: flex !important;
  align-items: center !important;
  height: 24px !important;
}

.we-accept img {
  height: 22px !important;
  width: auto !important;
  display: block !important;
}

.footer-bottom-row {
  text-align: center !important;
  padding-top: 12px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.footer-copyright {
  font-size: 11px !important;
  line-height: 1.5 !important;
  margin: 0 !important;
  padding: 0 !important;
}


/* ============================================
   FOOTER FINAL FIX - TWO COLUMN LAYOUT
   ============================================ */

.footer-top-row {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  gap: 40px !important;
  margin-bottom: 16px !important;
  min-height: 50px !important;
}

.footer-right-group {
  display: flex !important;
  align-items: center !important;
  gap: 40px !important;
  flex-wrap: nowrap !important;
}

.footer-links {
  display: flex !important;
  gap: 28px !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  flex-shrink: 0 !important;
}

.we-accept {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  flex-wrap: nowrap !important;
  flex-shrink: 0 !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

@media (max-width: 900px) {
  .footer-top-row {
    flex-direction: column !important;
    align-items: center !important;
    gap: 20px !important;
  }
  
  .footer-brand {
    text-align: center !important;
    align-items: center !important;
  }
  
  .footer-right-group {
    flex-direction: column !important;
    gap: 16px !important;
  }
  
  .footer-links {
    justify-content: center !important;
  }
  
  .we-accept {
    justify-content: center !important;
    flex-wrap: wrap !important;
  }
}


/* ============================================
   FOOTER REDESIGN - BALANCED 3 COLUMN LAYOUT
   ============================================ */

/* Reset and Base */
.site-footer {
  background: #000000 !important;
  padding: 0 !important;
  margin-top: 80px !important;
}

.footer-red-line {
  width: 100% !important;
  height: 3px !important;
  background: linear-gradient(90deg, transparent 0%, #ef4444 10%, #ff0000 50%, #ef4444 90%, transparent 100%) !important;
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.6) !important;
}

.site-footer-inner {
  max-width: 1400px !important;
  margin: 0 auto !important;
  padding: 20px 32px 16px 32px !important;
}

/* Top Row - 3 Equal Columns */
.footer-top-row {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  gap: 48px !important;
  margin-bottom: 16px !important;
  min-height: 50px !important;
}

/* Left Column - Logo */
.footer-brand {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;
  min-width: 0 !important;
}

.footer-logo {
  font-size: 24px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  margin: 0 !important;
  padding: 0 !important;
  letter-spacing: 2px !important;
  background: linear-gradient(135deg, #ff0000, #ff6b6b) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  line-height: 1.2 !important;
}

.footer-tagline {
  font-size: 11px !important;
  color: #888888 !important;
  margin: 4px 0 0 0 !important;
  padding: 0 !important;
  letter-spacing: 0.5px !important;
  line-height: 1.2 !important;
}

/* Center Column - Navigation */
.footer-links {
  flex: 1 !important;
  display: flex !important;
  gap: 32px !important;
  justify-content: center !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  min-width: 0 !important;
}

.footer-link {
  color: #ffffff !important;
  text-decoration: none !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  white-space: nowrap !important;
  padding: 4px 0 !important;
}

.footer-link::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 0 !important;
  height: 2px !important;
  background: #ef4444 !important;
  transition: width 0.3s ease !important;
}

.footer-link:hover {
  color: #ef4444 !important;
}

.footer-link:hover::after {
  width: 100% !important;
}

/* Right Column - Payment Icons (Smaller & Subtle) */
.we-accept {
  flex: 1 !important;
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
  gap: 10px !important;
  flex-wrap: nowrap !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  min-width: 0 !important;
}

.we-accept li {
  opacity: 0.5 !important;
  transition: opacity 0.3s ease !important;
  display: flex !important;
  align-items: center !important;
  height: 18px !important;
}

.we-accept li:hover {
  opacity: 0.8 !important;
}

.we-accept img {
  height: 16px !important;
  width: auto !important;
  display: block !important;
}

/* Bottom Row - Copyright */
.footer-bottom-row {
  text-align: center !important;
  padding-top: 12px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.footer-copyright {
  color: #666666 !important;
  font-size: 11px !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.4 !important;
}

/* Responsive - Mobile */
@media (max-width: 900px) {
  .footer-top-row {
    flex-direction: column !important;
    gap: 24px !important;
  }
  
  .footer-brand {
    align-items: center !important;
    text-align: center !important;
  }
  
  .footer-links {
    justify-content: center !important;
  }
  
  .we-accept {
    justify-content: center !important;
    flex-wrap: wrap !important;
  }
}


/* ============================================
   FOOTER TRUE CENTER - CSS GRID LAYOUT
   ============================================ */

/* Top Row - CSS Grid for True Center */
.footer-top-row {
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  align-items: center !important;
  gap: 32px !important;
  margin-bottom: 16px !important;
  min-height: 50px !important;
}

/* Left Column - Logo (Left Aligned) */
.footer-brand {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;
}

/* Center Column - Navigation (True Center) */
.footer-links {
  display: flex !important;
  gap: 32px !important;
  justify-content: center !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  grid-column: 2 !important;
}

/* Right Column - Payment Icons (Right Aligned) */
.we-accept {
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
  gap: 10px !important;
  flex-wrap: nowrap !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  grid-column: 3 !important;
}

/* Responsive - Mobile Stack */
@media (max-width: 900px) {
  .footer-top-row {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  
  .footer-brand {
    align-items: center !important;
    text-align: center !important;
  }
  
  .footer-links {
    grid-column: 1 !important;
    justify-content: center !important;
  }
  
  .we-accept {
    grid-column: 1 !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
  }
}


/* ============================================
   HOMEPAGE ENHANCEMENTS
   ============================================ */

/* Welcome Section - Optimized */
.welcome-section {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 24px;
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

.welcome-title {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, #ff0000, #ff6b6b, #ff0000);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 3px;
  animation: gradientShift 3s ease infinite;
}

.welcome-text {
  font-size: 18px;
  line-height: 1.6;
  color: #b0b0b0;
  max-width: 700px;
  margin: 0 auto;
}

/* Why Choose Section */
.why-choose-section {
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 24px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}

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

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-box {
  background: linear-gradient(145deg, #1a1a1a 0%, #0f0f0f 100%);
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(135deg, #ef4444, #3b82f6);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(239, 68, 68, 0.3);
}

.feature-box:hover::before {
  opacity: 1;
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 10px rgba(239, 68, 68, 0.5));
}

.feature-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.feature-desc {
  font-size: 14px;
  color: #888888;
  line-height: 1.5;
  margin: 0;
}

/* Statistics Section */
.stats-section {
  max-width: 1200px;
  margin: 100px auto;
  padding: 60px 24px;
  background: linear-gradient(145deg, #0f0f0f 0%, #1a1a1a 100%);
  border-top: 2px solid rgba(239, 68, 68, 0.3);
  border-bottom: 2px solid rgba(239, 68, 68, 0.3);
  position: relative;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ef4444, transparent);
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.6);
}

.stats-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ef4444, transparent);
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.6);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  text-align: center;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

.stat-box {
  animation: fadeIn 0.8s ease-out;
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, #ff0000, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.stat-label {
  font-size: 14px;
  color: #888888;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Enhanced Product Cards */
.featured-products-section .simple-gaming-card {
  background: linear-gradient(145deg, #1a1a1a 0%, #0f0f0f 100%);
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.featured-products-section .simple-gaming-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.featured-products-section .simple-gaming-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(239, 68, 68, 0.3);
}

.featured-products-section .simple-gaming-card:hover::before {
  opacity: 1;
}

/* Hide "No packages" message */
.no-products {
  display: none !important;
}


/* ============================================
   HOMEPAGE OPTIMIZATION - COMPACT LAYOUT
   ============================================ */

/* Welcome Section - Compact */
.welcome-section {
  max-width: 800px !important;
  margin: 40px auto !important;
  padding: 0 24px !important;
  text-align: center !important;
}

.welcome-title {
  font-size: 40px !important;
  margin-bottom: 16px !important;
}

.welcome-text {
  font-size: 16px !important;
  line-height: 1.5 !important;
  color: #b0b0b0 !important;
}

/* Featured Products Section - Compact */
.featured-products-section {
  max-width: 1400px !important;
  margin: 60px auto !important;
  padding: 0 24px !important;
}

.section-title {
  font-size: 32px !important;
  margin-bottom: 32px !important;
  padding-bottom: 12px !important;
}

.featured-products-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
}

@media (max-width: 1200px) {
  .featured-products-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 900px) {
  .featured-products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

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

/* Product Cards - Compact Premium Style */
.simple-gaming-card {
  background: linear-gradient(145deg, #1a1a1a 0%, #0f0f0f 100%) !important;
  border: 1px solid #2a2a2a !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
  position: relative !important;
}

.simple-gaming-card::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  border-radius: 12px !important;
  padding: 2px !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0) !important;
  -webkit-mask-composite: xor !important;
  mask-composite: exclude !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease !important;
}

.simple-gaming-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 16px 32px rgba(239, 68, 68, 0.3) !important;
}

.simple-gaming-card:hover::before {
  opacity: 1 !important;
}

.simple-card-image {
  height: 180px !important;
  overflow: hidden !important;
}

.simple-card-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.3s ease !important;
}

.simple-gaming-card:hover .simple-card-image img {
  transform: scale(1.05) !important;
}

.simple-card-title {
  font-size: 16px !important;
  font-weight: 700 !important;
  margin: 12px 0 !important;
}

/* Why Choose Section - Compact */
.why-choose-section {
  max-width: 1200px !important;
  margin: 60px auto !important;
  padding: 0 24px !important;
}

.features-grid {
  gap: 24px !important;
  margin-top: 32px !important;
}

.feature-box {
  padding: 24px 20px !important;
  border-radius: 12px !important;
}

.feature-icon {
  font-size: 36px !important;
  margin-bottom: 12px !important;
}

.feature-title {
  font-size: 16px !important;
  margin-bottom: 8px !important;
}

.feature-desc {
  font-size: 13px !important;
  line-height: 1.4 !important;
}

/* Statistics Section - Slim Horizontal Strip */
.stats-section {
  max-width: 100% !important;
  margin: 60px 0 !important;
  padding: 32px 24px !important;
  background: linear-gradient(145deg, #0f0f0f 0%, #1a1a1a 100%) !important;
}

.stats-grid {
  max-width: 1200px !important;
  margin: 0 auto !important;
  gap: 32px !important;
}

.stat-number {
  font-size: 36px !important;
  margin-bottom: 6px !important;
}

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

/* Testimonials Section - Maintain spacing */
.testimonials-section {
  margin: 60px 0 !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .welcome-title {
    font-size: 32px !important;
  }
  
  .section-title {
    font-size: 28px !important;
  }
  
  .feature-icon {
    font-size: 32px !important;
  }
  
  .stat-number {
    font-size: 32px !important;
  }
}


/* ============================================
   FEATURED SCRIPTS SLIDER - CENTERED & AUTO-SLIDE
   ============================================ */

.featured-slider-section {
  max-width: 1400px !important;
  margin: 60px auto !important;
  padding: 0 24px !important;
  overflow: hidden !important;
}

.slider-container {
  overflow: hidden !important;
  position: relative !important;
  margin: 40px 0 !important;
  padding: 0 40px !important;
}

.slider-container::before,
.slider-container::after {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  bottom: 0 !important;
  width: 80px !important;
  z-index: 2 !important;
  pointer-events: none !important;
}

.slider-container::before {
  left: 0 !important;
  background: linear-gradient(to right, #0a0a0a, transparent) !important;
}

.slider-container::after {
  right: 0 !important;
  background: linear-gradient(to left, #0a0a0a, transparent) !important;
}

.slider-track {
  display: flex !important;
  gap: 24px !important;
  animation: autoSlide 30s linear infinite !important;
  width: max-content !important;
}

.slider-track:hover {
  animation-play-state: paused !important;
}

@keyframes autoSlide {
  0% {
    transform: translateX(0) !important;
  }
  100% {
    transform: translateX(-50%) !important;
  }
}

.slider-card {
  flex: 0 0 auto !important;
  width: 350px !important;
}

/* Responsive Slider */
@media (max-width: 1200px) {
  .slider-card {
    width: 320px !important;
  }
}

@media (max-width: 768px) {
  .slider-card {
    width: 280px !important;
  }
  
  .slider-container {
    padding: 0 20px !important;
  }
  
  .slider-container::before,
  .slider-container::after {
    width: 40px !important;
  }
}

/* Slider Card Styling */
.slider-card .simple-gaming-card {
  background: linear-gradient(145deg, #1a1a1a 0%, #0f0f0f 100%) !important;
  border: 1px solid #2a2a2a !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  height: 100% !important;
}

.slider-card .simple-gaming-card::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  border-radius: 12px !important;
  padding: 2px !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0) !important;
  -webkit-mask-composite: xor !important;
  mask-composite: exclude !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease !important;
}

.slider-card .simple-gaming-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 40px rgba(239, 68, 68, 0.4) !important;
}

.slider-card .simple-gaming-card:hover::before {
  opacity: 1 !important;
}

/* Slider Buttons */
.slider-buttons {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 20px !important;
  margin-top: 40px !important;
}

.slider-btn {
  padding: 14px 32px !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  overflow: hidden !important;
  display: inline-block !important;
}

.btn-primary {
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 4px 16px rgba(239, 68, 68, 0.3) !important;
}

.btn-primary::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent) !important;
  transition: left 0.5s ease !important;
}

.btn-primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(239, 68, 68, 0.5) !important;
}

.btn-primary:hover::before {
  left: 100% !important;
}

.btn-secondary {
  background: transparent !important;
  color: #ffffff !important;
  border: 2px solid #ef4444 !important;
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.2) !important;
}

.btn-secondary:hover {
  background: rgba(239, 68, 68, 0.1) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 0 30px rgba(239, 68, 68, 0.4) !important;
}

@media (max-width: 600px) {
  .slider-buttons {
    flex-direction: column !important;
    gap: 16px !important;
  }
  
  .slider-btn {
    width: 100% !important;
    max-width: 300px !important;
    text-align: center !important;
  }
}


/* ============================================
   TEBEX FEATURED PACKAGE MODULE - SLIDER DESIGN
   ============================================ */

.featured-package-slider {
  max-width: 1400px !important;
  margin: 60px auto !important;
  padding: 0 24px !important;
}

.featured-slider-wrapper {
  max-width: 900px !important;
  margin: 40px auto !important;
  padding: 0 40px !important;
  position: relative !important;
}

.featured-slider-wrapper::before,
.featured-slider-wrapper::after {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  bottom: 0 !important;
  width: 60px !important;
  z-index: 2 !important;
  pointer-events: none !important;
}

.featured-slider-wrapper::before {
  left: 0 !important;
  background: linear-gradient(to right, #0a0a0a, transparent) !important;
}

.featured-slider-wrapper::after {
  right: 0 !important;
  background: linear-gradient(to left, #0a0a0a, transparent) !important;
}

.featured-package-card {
  max-width: 400px !important;
  margin: 0 auto !important;
}

.featured-package-card .simple-gaming-card {
  background: linear-gradient(145deg, #1a1a1a 0%, #0f0f0f 100%) !important;
  border: 2px solid #2a2a2a !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  transition: all 0.4s ease !important;
  position: relative !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5) !important;
}

.featured-package-card .simple-gaming-card::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  border-radius: 16px !important;
  padding: 2px !important;
  background: linear-gradient(135deg, #ef4444, #dc2626, #ef4444) !important;
  background-size: 200% 200% !important;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0) !important;
  -webkit-mask-composite: xor !important;
  mask-composite: exclude !important;
  opacity: 0 !important;
  transition: opacity 0.4s ease !important;
  animation: borderGlow 3s ease infinite !important;
}

@keyframes borderGlow {
  0%, 100% {
    background-position: 0% 50% !important;
  }
  50% {
    background-position: 100% 50% !important;
  }
}

.featured-package-card .simple-gaming-card:hover {
  transform: translateY(-12px) scale(1.02) !important;
  box-shadow: 0 24px 48px rgba(239, 68, 68, 0.4) !important;
  border-color: #ef4444 !important;
}

.featured-package-card .simple-gaming-card:hover::before {
  opacity: 1 !important;
}

.featured-package-card .simple-card-image {
  height: 220px !important;
  position: relative !important;
  overflow: hidden !important;
}

.featured-package-card .simple-card-image::after {
  content: 'FEATURED' !important;
  position: absolute !important;
  top: 16px !important;
  right: 16px !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: #ffffff !important;
  padding: 6px 16px !important;
  border-radius: 20px !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: 1px !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.5) !important;
  z-index: 10 !important;
}

.featured-package-card .simple-card-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.4s ease !important;
}

.featured-package-card .simple-gaming-card:hover .simple-card-image img {
  transform: scale(1.1) !important;
}

.featured-package-card .simple-card-content {
  padding: 20px !important;
}

.featured-package-card .simple-card-title {
  font-size: 18px !important;
  font-weight: 800 !important;
  margin: 12px 0 !important;
  color: #ffffff !important;
}

.featured-package-card .simple-card-title a {
  background: linear-gradient(135deg, #ffffff, #e0e0e0) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* Responsive Featured Package */
@media (max-width: 768px) {
  .featured-slider-wrapper {
    padding: 0 20px !important;
  }
  
  .featured-package-card {
    max-width: 100% !important;
  }
  
  .featured-slider-wrapper::before,
  .featured-slider-wrapper::after {
    width: 40px !important;
  }
}

/* Hide old widget styling */
.widget-featured {
  display: none !important;
}


/* ============================================
   FEATURED SCRIPTS GRID - MARKETPLACE STYLE
   ============================================ */

.featured-scripts-grid {
  max-width: 1400px !important;
  margin: 50px auto !important;
  padding: 0 24px !important;
}

.featured-scripts-grid .section-title {
  font-size: 36px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  text-align: center !important;
  margin-bottom: 40px !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  position: relative !important;
  display: inline-block !important;
  width: 100% !important;
}

.title-underline {
  display: block !important;
  width: 80px !important;
  height: 3px !important;
  background: linear-gradient(90deg, transparent, #ef4444, transparent) !important;
  margin: 12px auto 0 !important;
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.6) !important;
}

.products-grid-container {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 28px !important;
  max-width: 1400px !important;
  margin: 0 auto !important;
}

@media (max-width: 1200px) {
  .products-grid-container {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 900px) {
  .products-grid-container {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px !important;
  }
}

@media (max-width: 600px) {
  .products-grid-container {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
}

/* Premium Product Card Design */
.products-grid-container .simple-gaming-card {
  background: linear-gradient(145deg, #1a1a1a 0%, #0f0f0f 100%) !important;
  border: 1px solid #2a2a2a !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
}

.products-grid-container .simple-gaming-card::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  border-radius: 14px !important;
  padding: 2px !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0) !important;
  -webkit-mask-composite: xor !important;
  mask-composite: exclude !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease !important;
}

.products-grid-container .simple-gaming-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 16px 40px rgba(239, 68, 68, 0.35) !important;
}

.products-grid-container .simple-gaming-card:hover::before {
  opacity: 1 !important;
}

/* Free Badge */
.products-grid-container .simple-gaming-card[data-free="true"]::after {
  content: 'FREE' !important;
  position: absolute !important;
  top: 12px !important;
  right: 12px !important;
  background: linear-gradient(135deg, #10b981, #059669) !important;
  color: #ffffff !important;
  padding: 6px 14px !important;
  border-radius: 20px !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: 1px !important;
  z-index: 10 !important;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.5) !important;
}

/* Card Image */
.products-grid-container .simple-card-image {
  height: 200px !important;
  overflow: hidden !important;
  position: relative !important;
}

.products-grid-container .simple-card-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.3s ease !important;
}

.products-grid-container .simple-gaming-card:hover .simple-card-image img {
  transform: scale(1.08) !important;
}

/* Card Content */
.products-grid-container .simple-card-content {
  padding: 18px !important;
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
}

.products-grid-container .simple-card-title {
  font-size: 17px !important;
  font-weight: 700 !important;
  margin: 10px 0 !important;
  color: #ffffff !important;
  line-height: 1.3 !important;
}

.products-grid-container .simple-card-title a {
  color: #ffffff !important;
  text-decoration: none !important;
  transition: color 0.3s ease !important;
}

.products-grid-container .simple-card-title a:hover {
  color: #ef4444 !important;
}

/* Price Display */
.products-grid-container .simple-card-actions {
  margin-top: auto !important;
}

.products-grid-container .package-price {
  font-size: 22px !important;
  font-weight: 800 !important;
  color: #ef4444 !important;
  margin-bottom: 12px !important;
  text-align: center !important;
}

/* Premium Button */
.products-grid-container .btn-add-basket,
.products-grid-container button[type="submit"] {
  width: 100% !important;
  padding: 12px 20px !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  border: none !important;
  border-radius: 8px !important;
  color: #ffffff !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  overflow: hidden !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
}

.products-grid-container .btn-add-basket::before,
.products-grid-container button[type="submit"]::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent) !important;
  transition: left 0.5s ease !important;
}

.products-grid-container .btn-add-basket:hover,
.products-grid-container button[type="submit"]:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(239, 68, 68, 0.5) !important;
}

.products-grid-container .btn-add-basket:hover::before,
.products-grid-container button[type="submit"]:hover::before {
  left: 100% !important;
}

/* Compact Spacing */
.why-choose-section {
  margin-top: 50px !important;
}

.stats-section {
  margin-top: 50px !important;
  margin-bottom: 50px !important;
}

.testimonials-section {
  margin-top: 50px !important;
}


/* ============================================
   FEATURED CATEGORY - NATIVE TEBEX RENDERING
   ============================================ */

.featured-category-section {
  max-width: 1400px !important;
  margin: 50px auto !important;
  padding: 0 24px !important;
}

.featured-category-section .section-title {
  font-size: 36px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  text-align: center !important;
  margin-bottom: 40px !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  position: relative !important;
  display: inline-block !important;
  width: 100% !important;
}

.featured-category-section .title-underline {
  display: block !important;
  width: 80px !important;
  height: 3px !important;
  background: linear-gradient(90deg, transparent, #ef4444, transparent) !important;
  margin: 12px auto 0 !important;
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.6) !important;
}

/* Style Tebex Native Category Display as Grid */
.featured-category-section .store-products,
.featured-category-section .store-products-grid,
.featured-category-section .store-products-list {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 28px !important;
  max-width: 1400px !important;
  margin: 0 auto !important;
}

@media (max-width: 1200px) {
  .featured-category-section .store-products,
  .featured-category-section .store-products-grid,
  .featured-category-section .store-products-list {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 900px) {
  .featured-category-section .store-products,
  .featured-category-section .store-products-grid,
  .featured-category-section .store-products-list {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px !important;
  }
}

@media (max-width: 600px) {
  .featured-category-section .store-products,
  .featured-category-section .store-products-grid,
  .featured-category-section .store-products-list {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
}

/* Hide "No products" message on homepage */
.featured-category-section .no-products {
  display: none !important;
}

/* Premium Card Styling for Featured Category */
.featured-category-section .simple-gaming-card {
  background: linear-gradient(145deg, #1a1a1a 0%, #0f0f0f 100%) !important;
  border: 1px solid #2a2a2a !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
}

.featured-category-section .simple-gaming-card::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  border-radius: 14px !important;
  padding: 2px !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0) !important;
  -webkit-mask-composite: xor !important;
  mask-composite: exclude !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease !important;
}

.featured-category-section .simple-gaming-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 16px 40px rgba(239, 68, 68, 0.35) !important;
}

.featured-category-section .simple-gaming-card:hover::before {
  opacity: 1 !important;
}

/* Card Image */
.featured-category-section .simple-card-image {
  height: 200px !important;
  overflow: hidden !important;
}

.featured-category-section .simple-card-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.3s ease !important;
}

.featured-category-section .simple-gaming-card:hover .simple-card-image img {
  transform: scale(1.08) !important;
}

/* Card Content */
.featured-category-section .simple-card-content {
  padding: 18px !important;
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
}

.featured-category-section .simple-card-title {
  font-size: 17px !important;
  font-weight: 700 !important;
  margin: 10px 0 !important;
  line-height: 1.3 !important;
}

/* Button Styling */
.featured-category-section .btn-add-basket,
.featured-category-section button[type="submit"] {
  width: 100% !important;
  padding: 12px 20px !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  border: none !important;
  border-radius: 8px !important;
  color: #ffffff !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
}

.featured-category-section .btn-add-basket:hover,
.featured-category-section button[type="submit"]:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(239, 68, 68, 0.5) !important;
}


/* ============================================
   TEBEX FEATURED PACKAGE - IMPROVED ALIGNMENT
   ============================================ */

.featured-package-section {
  max-width: 1400px !important;
  margin: 50px auto !important;
  padding: 0 24px !important;
}

.featured-package-section .section-title {
  font-size: 36px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  text-align: center !important;
  margin: 0 0 40px 0 !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  position: relative !important;
  display: inline-block !important;
  width: 100% !important;
}

.featured-package-section .title-underline {
  display: block !important;
  width: 80px !important;
  height: 3px !important;
  background: linear-gradient(90deg, transparent, #ef4444, transparent) !important;
  margin: 12px auto 0 !important;
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.6) !important;
}

.featured-package-wrapper {
  max-width: 500px !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

.featured-package-card {
  width: 100% !important;
}

/* Premium Card Styling */
.featured-package-card .simple-gaming-card {
  background: linear-gradient(145deg, #1a1a1a 0%, #0f0f0f 100%) !important;
  border: 2px solid #2a2a2a !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  transition: all 0.4s ease !important;
  position: relative !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5) !important;
}

.featured-package-card .simple-gaming-card::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  border-radius: 16px !important;
  padding: 2px !important;
  background: linear-gradient(135deg, #ef4444, #dc2626, #ef4444) !important;
  background-size: 200% 200% !important;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0) !important;
  -webkit-mask-composite: xor !important;
  mask-composite: exclude !important;
  opacity: 0 !important;
  transition: opacity 0.4s ease !important;
  animation: borderPulse 3s ease infinite !important;
}

@keyframes borderPulse {
  0%, 100% {
    background-position: 0% 50% !important;
  }
  50% {
    background-position: 100% 50% !important;
  }
}

.featured-package-card .simple-gaming-card:hover {
  transform: translateY(-12px) !important;
  box-shadow: 0 24px 48px rgba(239, 68, 68, 0.4) !important;
  border-color: #ef4444 !important;
}

.featured-package-card .simple-gaming-card:hover::before {
  opacity: 1 !important;
}

/* Featured Badge */
.featured-package-card .simple-card-image {
  height: 240px !important;
  position: relative !important;
  overflow: hidden !important;
}

.featured-package-card .simple-card-image::after {
  content: 'FEATURED' !important;
  position: absolute !important;
  top: 16px !important;
  right: 16px !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: #ffffff !important;
  padding: 8px 18px !important;
  border-radius: 20px !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: 1.5px !important;
  box-shadow: 0 4px 16px rgba(239, 68, 68, 0.6) !important;
  z-index: 10 !important;
}

.featured-package-card .simple-card-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.4s ease !important;
}

.featured-package-card .simple-gaming-card:hover .simple-card-image img {
  transform: scale(1.1) !important;
}

/* Card Content */
.featured-package-card .simple-card-content {
  padding: 24px !important;
}

.featured-package-card .simple-card-title {
  font-size: 20px !important;
  font-weight: 800 !important;
  margin: 12px 0 !important;
  color: #ffffff !important;
  text-align: center !important;
}

.featured-package-card .simple-card-title a {
  background: linear-gradient(135deg, #ffffff, #e0e0e0) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  text-decoration: none !important;
}

/* Rating */
.featured-package-card .simple-card-rating {
  justify-content: center !important;
  margin-bottom: 16px !important;
}

/* Price */
.featured-package-card .package-price {
  font-size: 28px !important;
  font-weight: 800 !important;
  color: #ef4444 !important;
  text-align: center !important;
  margin: 16px 0 !important;
}

/* Premium Button */
.featured-package-card .btn-add-basket,
.featured-package-card button[type="submit"] {
  width: 100% !important;
  padding: 14px 24px !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  border: none !important;
  border-radius: 10px !important;
  color: #ffffff !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  overflow: hidden !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

.featured-package-card .btn-add-basket::before,
.featured-package-card button[type="submit"]::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent) !important;
  transition: left 0.5s ease !important;
}

.featured-package-card .btn-add-basket:hover,
.featured-package-card button[type="submit"]:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 30px rgba(239, 68, 68, 0.6) !important;
}

.featured-package-card .btn-add-basket:hover::before,
.featured-package-card button[type="submit"]:hover::before {
  left: 100% !important;
}

/* Responsive */
@media (max-width: 768px) {
  .featured-package-wrapper {
    max-width: 100% !important;
  }
  
  .featured-package-card .simple-card-image {
    height: 200px !important;
  }
  
  .featured-package-section .section-title {
    font-size: 32px !important;
  }
}

/* Hide old widget styling */
.widget-featured {
  display: none !important;
}


/* ============================================
   FINAL OVERRIDE - FEATURED SCRIPTS GRID
   ============================================ */

/* Hide Tebex Featured Package Module Completely */
.widget-featured,
.featured-package-section,
.featured-package-slider {
  display: none !important;
  visibility: hidden !important;
}

/* Featured Scripts Grid Section */
.featured-category-section {
  max-width: 1200px !important;
  margin: 40px auto !important;
  padding: 0 24px !important;
  clear: both !important;
}

.featured-category-section .section-title {
  font-size: 36px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  text-align: center !important;
  margin: 0 0 35px 0 !important;
  padding: 0 !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  position: relative !important;
  display: block !important;
  width: 100% !important;
}

.featured-category-section .title-underline {
  display: block !important;
  width: 70px !important;
  height: 3px !important;
  background: linear-gradient(90deg, transparent, #ef4444, transparent) !important;
  margin: 10px auto 0 !important;
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.6) !important;
}

/* Force Grid Layout on Tebex Native Rendering */
.featured-category-section .store-products,
.featured-category-section .store-products-grid,
.featured-category-section .store-products-list,
.featured-category-section > div:not(.section-title) {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Responsive Grid */
@media (max-width: 1100px) {
  .featured-category-section .store-products,
  .featured-category-section .store-products-grid,
  .featured-category-section .store-products-list,
  .featured-category-section > div:not(.section-title) {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .featured-category-section .store-products,
  .featured-category-section .store-products-grid,
  .featured-category-section .store-products-list,
  .featured-category-section > div:not(.section-title) {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }
}

@media (max-width: 500px) {
  .featured-category-section .store-products,
  .featured-category-section .store-products-grid,
  .featured-category-section .store-products-list,
  .featured-category-section > div:not(.section-title) {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
}

/* Product Card Styling */
.featured-category-section .store-product,
.featured-category-section .simple-gaming-card,
.featured-category-section article {
  background: linear-gradient(145deg, #1a1a1a 0%, #0f0f0f 100%) !important;
  border: 1px solid #2a2a2a !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}

/* Red Glow Border on Hover */
.featured-category-section .store-product::before,
.featured-category-section .simple-gaming-card::before,
.featured-category-section article::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  border-radius: 14px !important;
  padding: 2px !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0) !important;
  -webkit-mask-composite: xor !important;
  mask-composite: exclude !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease !important;
  pointer-events: none !important;
}

.featured-category-section .store-product:hover,
.featured-category-section .simple-gaming-card:hover,
.featured-category-section article:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 16px 40px rgba(239, 68, 68, 0.35) !important;
}

.featured-category-section .store-product:hover::before,
.featured-category-section .simple-gaming-card:hover::before,
.featured-category-section article:hover::before {
  opacity: 1 !important;
}

/* Free Product Badge */
.featured-category-section .store-product[data-free="true"]::after,
.featured-category-section .simple-gaming-card[data-free="true"]::after {
  content: 'FREE' !important;
  position: absolute !important;
  top: 12px !important;
  right: 12px !important;
  background: linear-gradient(135deg, #10b981, #059669) !important;
  color: #ffffff !important;
  padding: 6px 14px !important;
  border-radius: 20px !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: 1px !important;
  z-index: 10 !important;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.5) !important;
}

/* Card Image */
.featured-category-section .simple-card-image,
.featured-category-section .product-image {
  height: 200px !important;
  overflow: hidden !important;
  width: 100% !important;
}

.featured-category-section .simple-card-image img,
.featured-category-section .product-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.3s ease !important;
}

.featured-category-section .store-product:hover .simple-card-image img,
.featured-category-section .simple-gaming-card:hover .simple-card-image img {
  transform: scale(1.08) !important;
}

/* Card Content */
.featured-category-section .simple-card-content,
.featured-category-section .product-content {
  padding: 16px !important;
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
}

.featured-category-section .simple-card-title,
.featured-category-section .product-title {
  font-size: 16px !important;
  font-weight: 700 !important;
  margin: 10px 0 !important;
  line-height: 1.3 !important;
  color: #ffffff !important;
}

/* Button Styling */
.featured-category-section .btn-add-basket,
.featured-category-section button[type="submit"],
.featured-category-section .add-to-cart {
  width: 100% !important;
  padding: 12px 20px !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  border: none !important;
  border-radius: 8px !important;
  color: #ffffff !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: auto !important;
}

.featured-category-section .btn-add-basket:hover,
.featured-category-section button[type="submit"]:hover,
.featured-category-section .add-to-cart:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(239, 68, 68, 0.5) !important;
}

/* Hide "No products" message */
.featured-category-section .no-products {
  display: none !important;
}

/* Compact Section Spacing */
.why-choose-section {
  margin-top: 40px !important;
}

.stats-section {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}


/* ============================================
   TEBEX FEATURED PACKAGE - PREMIUM SPOTLIGHT CARD
   ============================================ */

/* Container Alignment */
.widget-featured {
  max-width: 1100px !important;
  margin: 60px auto !important;
  padding: 0 24px !important;
  display: block !important;
  visibility: visible !important;
}

.widget-featured .widget-title {
  font-size: 36px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  text-align: center !important;
  margin: 0 0 40px 0 !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  position: relative !important;
  display: block !important;
}

.widget-featured .widget-title::after {
  content: '' !important;
  display: block !important;
  width: 80px !important;
  height: 3px !important;
  background: linear-gradient(90deg, transparent, #ef4444, transparent) !important;
  margin: 12px auto 0 !important;
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.6) !important;
}

.widget-featured .widget-content {
  padding: 0 !important;
  margin: 0 !important;
}

/* Premium Spotlight Card */
.widget-featured .store-product,
.widget-featured .simple-gaming-card,
.widget-featured article {
  background: linear-gradient(145deg, #1a1a1a 0%, #0f0f0f 100%) !important;
  border: 2px solid #2a2a2a !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  transition: all 0.4s ease !important;
  position: relative !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6) !important;
  display: flex !important;
  flex-direction: column !important;
  max-width: 100% !important;
  margin: 0 !important;
}

/* Red Glow Border */
.widget-featured .store-product::before,
.widget-featured .simple-gaming-card::before,
.widget-featured article::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  border-radius: 16px !important;
  padding: 2px !important;
  background: linear-gradient(135deg, #ef4444, #dc2626, #ef4444) !important;
  background-size: 200% 200% !important;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0) !important;
  -webkit-mask-composite: xor !important;
  mask-composite: exclude !important;
  opacity: 0 !important;
  transition: opacity 0.4s ease !important;
  animation: borderShimmer 3s ease infinite !important;
  pointer-events: none !important;
}

@keyframes borderShimmer {
  0%, 100% {
    background-position: 0% 50% !important;
  }
  50% {
    background-position: 100% 50% !important;
  }
}

.widget-featured .store-product:hover,
.widget-featured .simple-gaming-card:hover,
.widget-featured article:hover {
  transform: translateY(-12px) !important;
  box-shadow: 0 24px 60px rgba(239, 68, 68, 0.4) !important;
  border-color: #ef4444 !important;
}

.widget-featured .store-product:hover::before,
.widget-featured .simple-gaming-card:hover::before,
.widget-featured article:hover::before {
  opacity: 1 !important;
}

/* Full-Width Image at Top */
.widget-featured .simple-card-image,
.widget-featured .product-image {
  height: 350px !important;
  width: 100% !important;
  overflow: hidden !important;
  position: relative !important;
  margin: 0 !important;
}

.widget-featured .simple-card-image img,
.widget-featured .product-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.4s ease !important;
}

.widget-featured .store-product:hover .simple-card-image img,
.widget-featured .simple-gaming-card:hover .simple-card-image img {
  transform: scale(1.1) !important;
}

/* Featured Badge */
.widget-featured .simple-card-image::after,
.widget-featured .product-image::after {
  content: 'FEATURED' !important;
  position: absolute !important;
  top: 20px !important;
  right: 20px !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: #ffffff !important;
  padding: 10px 20px !important;
  border-radius: 25px !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: 2px !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.6) !important;
  z-index: 10 !important;
}

/* Content Section - Flex Layout */
.widget-featured .simple-card-content,
.widget-featured .product-content {
  padding: 32px !important;
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between !important;
  align-items: flex-start !important;
  gap: 32px !important;
  flex-wrap: wrap !important;
}

/* Left Side: Name + Price */
.widget-featured .product-info-left {
  flex: 1 !important;
  min-width: 250px !important;
}

.widget-featured .simple-card-title,
.widget-featured .product-title {
  font-size: 28px !important;
  font-weight: 800 !important;
  margin: 0 0 16px 0 !important;
  line-height: 1.2 !important;
  color: #ffffff !important;
}

.widget-featured .simple-card-title a,
.widget-featured .product-title a {
  background: linear-gradient(135deg, #ffffff, #e0e0e0) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  text-decoration: none !important;
}

/* Price Styling */
.widget-featured .package-price,
.widget-featured .product-price {
  font-size: 32px !important;
  font-weight: 800 !important;
  color: #ef4444 !important;
  margin: 16px 0 !important;
}

.widget-featured .price-old,
.widget-featured .original-price {
  font-size: 20px !important;
  color: #666666 !important;
  text-decoration: line-through !important;
  margin-right: 12px !important;
}

.widget-featured .price-discount,
.widget-featured .discount-badge {
  display: inline-block !important;
  background: linear-gradient(135deg, #10b981, #059669) !important;
  color: #ffffff !important;
  padding: 6px 14px !important;
  border-radius: 20px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  margin-left: 12px !important;
}

/* Right Side: Tags */
.widget-featured .product-tags,
.widget-featured .package-tags {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  align-items: flex-start !important;
}

.widget-featured .tag,
.widget-featured .package-tag {
  background: rgba(239, 68, 68, 0.15) !important;
  border: 1px solid rgba(239, 68, 68, 0.3) !important;
  color: #ef4444 !important;
  padding: 8px 16px !important;
  border-radius: 20px !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  transition: all 0.3s ease !important;
}

.widget-featured .tag:hover,
.widget-featured .package-tag:hover {
  background: rgba(239, 68, 68, 0.25) !important;
  border-color: #ef4444 !important;
}

/* Rating */
.widget-featured .simple-card-rating {
  margin: 12px 0 !important;
}

/* Button */
.widget-featured .btn-add-basket,
.widget-featured button[type="submit"],
.widget-featured .add-to-cart {
  width: 100% !important;
  max-width: 400px !important;
  padding: 16px 32px !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  border: none !important;
  border-radius: 10px !important;
  color: #ffffff !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
  margin-top: 24px !important;
}

.widget-featured .btn-add-basket:hover,
.widget-featured button[type="submit"]:hover,
.widget-featured .add-to-cart:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 30px rgba(239, 68, 68, 0.6) !important;
}

/* Responsive - Mobile Stack */
@media (max-width: 768px) {
  .widget-featured {
    margin: 40px auto !important;
  }
  
  .widget-featured .simple-card-image,
  .widget-featured .product-image {
    height: 250px !important;
  }
  
  .widget-featured .simple-card-content,
  .widget-featured .product-content {
    flex-direction: column !important;
    padding: 24px !important;
    gap: 20px !important;
  }
  
  .widget-featured .product-info-left {
    min-width: 100% !important;
  }
  
  .widget-featured .simple-card-title,
  .widget-featured .product-title {
    font-size: 24px !important;
  }
  
  .widget-featured .package-price,
  .widget-featured .product-price {
    font-size: 28px !important;
  }
  
  .widget-featured .btn-add-basket,
  .widget-featured button[type="submit"],
  .widget-featured .add-to-cart {
    max-width: 100% !important;
  }
}

/* Compact Spacing */
.widget-featured + section,
.widget-featured + .why-choose-section {
  margin-top: 40px !important;
}


/* ============================================
   REMOVE FEATURED PACKAGE - SHOW CATEGORY GRID
   ============================================ */

/* Completely Hide Featured Package Module */
.widget-featured,
.featured-package-section,
.featured-package-slider,
.featured-package-wrapper,
.featured-package-card {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Ensure Featured Category Grid is Visible and Styled */
.featured-category-section {
  display: block !important;
  visibility: visible !important;
  max-width: 1400px !important;
  margin: 50px auto !important;
  padding: 0 24px !important;
}

.featured-category-section .section-title {
  display: block !important;
  font-size: 36px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  text-align: center !important;
  margin: 0 0 40px 0 !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
}

.featured-category-section .title-underline {
  display: block !important;
  width: 80px !important;
  height: 3px !important;
  background: linear-gradient(90deg, transparent, #ef4444, transparent) !important;
  margin: 12px auto 0 !important;
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.6) !important;
}

/* Force Grid Display on All Tebex Category Containers */
.featured-category-section .store-products,
.featured-category-section .store-products-grid,
.featured-category-section .store-products-list,
.featured-category-section [class*="store-products"] {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
  .featured-category-section .store-products,
  .featured-category-section .store-products-grid,
  .featured-category-section .store-products-list,
  .featured-category-section [class*="store-products"] {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .featured-category-section .store-products,
  .featured-category-section .store-products-grid,
  .featured-category-section .store-products-list,
  .featured-category-section [class*="store-products"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }
}

@media (max-width: 500px) {
  .featured-category-section .store-products,
  .featured-category-section .store-products-grid,
  .featured-category-section .store-products-list,
  .featured-category-section [class*="store-products"] {
    grid-template-columns: 1fr !important;
  }
}

/* Product Card Styling - Standard Marketplace Cards */
.featured-category-section .store-product,
.featured-category-section article,
.featured-category-section .simple-gaming-card {
  background: linear-gradient(145deg, #1a1a1a 0%, #0f0f0f 100%) !important;
  border: 1px solid #2a2a2a !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  height: 100% !important;
}

/* Remove any offset or centering on individual cards */
.featured-category-section .store-product,
.featured-category-section article {
  transform: none !important;
  left: auto !important;
  right: auto !important;
}

/* Red Glow Border on Hover */
.featured-category-section .store-product::before,
.featured-category-section article::before,
.featured-category-section .simple-gaming-card::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  border-radius: 14px !important;
  padding: 2px !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0) !important;
  -webkit-mask-composite: xor !important;
  mask-composite: exclude !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease !important;
}

.featured-category-section .store-product:hover,
.featured-category-section article:hover,
.featured-category-section .simple-gaming-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 16px 40px rgba(239, 68, 68, 0.35) !important;
}

.featured-category-section .store-product:hover::before,
.featured-category-section article:hover::before,
.featured-category-section .simple-gaming-card:hover::before {
  opacity: 1 !important;
}

/* Card Image */
.featured-category-section .simple-card-image,
.featured-category-section .product-image {
  height: 200px !important;
  width: 100% !important;
  overflow: hidden !important;
}

.featured-category-section .simple-card-image img,
.featured-category-section .product-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.3s ease !important;
}

.featured-category-section .store-product:hover img,
.featured-category-section article:hover img {
  transform: scale(1.08) !important;
}

/* Card Content */
.featured-category-section .simple-card-content,
.featured-category-section .product-content {
  padding: 18px !important;
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
}

/* Button */
.featured-category-section .btn-add-basket,
.featured-category-section button[type="submit"] {
  width: 100% !important;
  padding: 12px 20px !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  border: none !important;
  border-radius: 8px !important;
  color: #ffffff !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: auto !important;
}

.featured-category-section .btn-add-basket:hover,
.featured-category-section button[type="submit"]:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(239, 68, 68, 0.5) !important;
}

/* Hide "No products" message */
.featured-category-section .no-products {
  display: none !important;
}


/* ============================================
   HOMEPAGE DYNAMIC CATEGORY SECTIONS
   ============================================ */

/* Category Section Container */
.homepage-category-section {
  max-width: 1200px !important;
  margin: 50px auto !important;
  padding: 0 24px !important;
}

.homepage-category-section .section-title {
  font-size: 32px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  text-align: center !important;
  margin: 0 0 35px 0 !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  display: block !important;
}

.homepage-category-section .title-underline {
  display: block !important;
  width: 70px !important;
  height: 3px !important;
  background: linear-gradient(90deg, transparent, #ef4444, transparent) !important;
  margin: 10px auto 0 !important;
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.6) !important;
}

/* Category Products Wrapper */
.category-products-wrapper {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Force Grid Layout on Tebex Native Rendering */
.homepage-category-section .store-products,
.homepage-category-section .store-products-grid,
.homepage-category-section .store-products-list,
.category-products-wrapper > div {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Responsive Grid */
@media (max-width: 1100px) {
  .homepage-category-section .store-products,
  .homepage-category-section .store-products-grid,
  .homepage-category-section .store-products-list,
  .category-products-wrapper > div {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .homepage-category-section .store-products,
  .homepage-category-section .store-products-grid,
  .homepage-category-section .store-products-list,
  .category-products-wrapper > div {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }
  
  .homepage-category-section {
    margin: 40px auto !important;
  }
  
  .homepage-category-section .section-title {
    font-size: 28px !important;
  }
}

@media (max-width: 500px) {
  .homepage-category-section .store-products,
  .homepage-category-section .store-products-grid,
  .homepage-category-section .store-products-list,
  .category-products-wrapper > div {
    grid-template-columns: 1fr !important;
  }
}

/* Product Card Styling */
.homepage-category-section .store-product,
.homepage-category-section article,
.homepage-category-section .simple-gaming-card {
  background: linear-gradient(145deg, #1a1a1a 0%, #0f0f0f 100%) !important;
  border: 1px solid #2a2a2a !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  height: 100% !important;
}

/* Red Glow Border on Hover */
.homepage-category-section .store-product::before,
.homepage-category-section article::before,
.homepage-category-section .simple-gaming-card::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  border-radius: 14px !important;
  padding: 2px !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0) !important;
  -webkit-mask-composite: xor !important;
  mask-composite: exclude !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease !important;
}

.homepage-category-section .store-product:hover,
.homepage-category-section article:hover,
.homepage-category-section .simple-gaming-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 16px 40px rgba(239, 68, 68, 0.35) !important;
}

.homepage-category-section .store-product:hover::before,
.homepage-category-section article:hover::before,
.homepage-category-section .simple-gaming-card:hover::before {
  opacity: 1 !important;
}

/* Card Image */
.homepage-category-section .simple-card-image,
.homepage-category-section .product-image {
  height: 200px !important;
  width: 100% !important;
  overflow: hidden !important;
}

.homepage-category-section .simple-card-image img,
.homepage-category-section .product-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.3s ease !important;
}

.homepage-category-section .store-product:hover img,
.homepage-category-section article:hover img {
  transform: scale(1.08) !important;
}

/* Card Content */
.homepage-category-section .simple-card-content,
.homepage-category-section .product-content {
  padding: 18px !important;
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
}

.homepage-category-section .simple-card-title {
  font-size: 16px !important;
  font-weight: 700 !important;
  margin: 10px 0 !important;
  line-height: 1.3 !important;
}

/* Button Styling */
.homepage-category-section .btn-add-basket,
.homepage-category-section button[type="submit"] {
  width: 100% !important;
  padding: 12px 20px !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  border: none !important;
  border-radius: 8px !important;
  color: #ffffff !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
  margin-top: auto !important;
}

.homepage-category-section .btn-add-basket:hover,
.homepage-category-section button[type="submit"]:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(239, 68, 68, 0.5) !important;
}

/* Hide "No products" message */
.homepage-category-section .no-products {
  display: none !important;
}

/* Compact spacing between sections */
.homepage-category-section + .homepage-category-section {
  margin-top: 40px !important;
}

.homepage-category-section + .why-choose-section {
  margin-top: 50px !important;
}


/* ============================================
   PREMIUM CATEGORY SHOWCASE
   ============================================ */

.category-showcase-section {
  max-width: 1200px !important;
  margin: 50px auto !important;
  padding: 0 24px !important;
}

.category-showcase-section .section-title {
  font-size: 36px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  text-align: center !important;
  margin: 0 0 40px 0 !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
}

.category-showcase-section .title-underline {
  display: block !important;
  width: 80px !important;
  height: 3px !important;
  background: linear-gradient(90deg, transparent, #ef4444, transparent) !important;
  margin: 12px auto 0 !important;
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.6) !important;
}

/* Category Grid */
.category-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
}

@media (max-width: 1100px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }
}

@media (max-width: 500px) {
  .category-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Premium Category Card */
.category-card {
  background: linear-gradient(145deg, #1a1a1a 0%, #0f0f0f 100%) !important;
  border: 2px solid #2a2a2a !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  transition: all 0.4s ease !important;
  position: relative !important;
  display: block !important;
  text-decoration: none !important;
  min-height: 250px !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5) !important;
}

/* Red Glow Border on Hover */
.category-card::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  border-radius: 16px !important;
  padding: 2px !important;
  background: linear-gradient(135deg, #ef4444, #dc2626, #ef4444) !important;
  background-size: 200% 200% !important;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0) !important;
  -webkit-mask-composite: xor !important;
  mask-composite: exclude !important;
  opacity: 0 !important;
  transition: opacity 0.4s ease !important;
  animation: borderPulse 3s ease infinite !important;
}

@keyframes borderPulse {
  0%, 100% {
    background-position: 0% 50% !important;
  }
  50% {
    background-position: 100% 50% !important;
  }
}

.category-card:hover {
  transform: translateY(-12px) !important;
  box-shadow: 0 20px 50px rgba(239, 68, 68, 0.4) !important;
  border-color: #ef4444 !important;
}

.category-card:hover::before {
  opacity: 1 !important;
}

/* Card Content */
.category-card-content {
  padding: 40px 24px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  height: 100% !important;
  min-height: 250px !important;
}

.category-name {
  font-size: 28px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  margin: 0 0 12px 0 !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  background: linear-gradient(135deg, #ffffff, #e0e0e0) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.category-subtitle {
  font-size: 14px !important;
  color: #888888 !important;
  margin: 0 0 24px 0 !important;
  line-height: 1.5 !important;
}

.category-button {
  display: inline-block !important;
  padding: 12px 28px !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: #ffffff !important;
  border-radius: 8px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 16px rgba(239, 68, 68, 0.3) !important;
  margin-top: auto !important;
}

.category-card:hover .category-button {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(239, 68, 68, 0.5) !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .category-name {
    font-size: 24px !important;
  }
  
  .category-card-content {
    padding: 32px 20px !important;
    min-height: 220px !important;
  }
  
  .category-card {
    min-height: 220px !important;
  }
}

@media (max-width: 500px) {
  .category-name {
    font-size: 22px !important;
  }
  
  .category-card-content {
    padding: 28px 16px !important;
    min-height: 200px !important;
  }
  
  .category-card {
    min-height: 200px !important;
  }
}


/* ============================================
   FEATURED PRODUCTS SECTION (TEBEX NATIVE)
   ============================================ */

.featured-products-section {
  max-width: 1200px !important;
  margin: 60px auto !important;
  padding: 0 24px !important;
}

.featured-products-section .section-title {
  font-size: 36px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  text-align: center !important;
  margin: 0 0 40px 0 !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
}

.featured-products-section .title-underline {
  display: block !important;
  width: 80px !important;
  height: 3px !important;
  background: linear-gradient(90deg, transparent, #ef4444, transparent) !important;
  margin: 12px auto 0 !important;
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.6) !important;
}

/* Products Grid */
.featured-products-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
}

@media (max-width: 1100px) {
  .featured-products-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .featured-products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }
}

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

/* Featured Product Card */
.featured-product-card {
  background: #1a1a1a !important;
  border: 2px solid #2a2a2a !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
  display: flex !important;
  flex-direction: column !important;
  text-decoration: none !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4) !important;
}

.featured-product-card:hover {
  transform: translateY(-8px) !important;
  border-color: #ef4444 !important;
  box-shadow: 0 12px 32px rgba(239, 68, 68, 0.3) !important;
}

/* Product Image */
.featured-product-image {
  width: 100% !important;
  height: 200px !important;
  overflow: hidden !important;
  background: #0f0f0f !important;
  position: relative !important;
}

.featured-product-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.3s ease !important;
}

.featured-product-card:hover .featured-product-image img {
  transform: scale(1.05) !important;
}

.featured-product-image .image-placeholder {
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(135deg, #1a1a1a, #0f0f0f) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Product Info */
.featured-product-info {
  padding: 20px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  flex: 1 !important;
}

/* Stars */
.featured-product-stars {
  display: flex !important;
  gap: 4px !important;
  font-size: 16px !important;
  color: #fbbf24 !important;
}

/* Title */
.featured-product-title {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin: 0 !important;
  line-height: 1.3 !important;
  min-height: 48px !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

/* Price */
.featured-product-price {
  font-size: 24px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  margin: 8px 0 !important;
}

.featured-product-price .price-free {
  color: #10b981 !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}

/* Button */
.featured-product-button {
  width: 100% !important;
  padding: 14px 20px !important;
  background: transparent !important;
  border: 2px solid #ef4444 !important;
  border-radius: 8px !important;
  color: #ef4444 !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  margin-top: auto !important;
}

.featured-product-card:hover .featured-product-button {
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 16px rgba(239, 68, 68, 0.4) !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .featured-product-image {
    height: 180px !important;
  }
  
  .featured-product-title {
    font-size: 16px !important;
    min-height: 44px !important;
  }
  
  .featured-product-price {
    font-size: 20px !important;
  }
}

@media (max-width: 500px) {
  .featured-product-image {
    height: 160px !important;
  }
  
  .featured-product-title {
    font-size: 15px !important;
    min-height: 40px !important;
  }
}


/* ============================================
   FEATURED PACKAGE MODULE STYLING
   ============================================ */

.featured-package-section {
  max-width: 1200px !important;
  margin: 60px auto !important;
  padding: 0 24px !important;
}

.featured-package-section .section-title {
  font-size: 36px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  text-align: center !important;
  margin: 0 0 40px 0 !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
}

.featured-package-section .title-underline {
  display: block !important;
  width: 80px !important;
  height: 3px !important;
  background: linear-gradient(90deg, transparent, #ef4444, transparent) !important;
  margin: 12px auto 0 !important;
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.6) !important;
}

/* Featured Package Container */
.featured-package-container {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
}

@media (max-width: 1100px) {
  .featured-package-container {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .featured-package-container {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }
}

@media (max-width: 500px) {
  .featured-package-container {
    grid-template-columns: 1fr !important;
  }
}

/* Style the featured package as a card */
.featured-package-container .store-product,
.featured-package-container .featured-package {
  background: #1a1a1a !important;
  border: 2px solid #2a2a2a !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
  display: flex !important;
  flex-direction: column !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4) !important;
  max-width: 100% !important;
  margin: 0 !important;
}

.featured-package-container .store-product:hover,
.featured-package-container .featured-package:hover {
  transform: translateY(-8px) !important;
  border-color: #ef4444 !important;
  box-shadow: 0 12px 32px rgba(239, 68, 68, 0.3) !important;
}

/* Featured package image */
.featured-package-container .store-product-image,
.featured-package-container .product-image {
  width: 100% !important;
  height: 200px !important;
  overflow: hidden !important;
  background: #0f0f0f !important;
  margin: 0 !important;
  border-radius: 0 !important;
}

.featured-package-container .store-product-image img,
.featured-package-container .product-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.3s ease !important;
}

.featured-package-container .store-product:hover .store-product-image img,
.featured-package-container .featured-package:hover .product-image img {
  transform: scale(1.05) !important;
}

/* Featured package content */
.featured-package-container .store-product-content,
.featured-package-container .product-content {
  padding: 20px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  flex: 1 !important;
}

/* Product title */
.featured-package-container .store-product-title,
.featured-package-container .product-title,
.featured-package-container h3 {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin: 0 !important;
  line-height: 1.3 !important;
  min-height: 48px !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

/* Product price */
.featured-package-container .store-product-price,
.featured-package-container .product-price {
  font-size: 24px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  margin: 8px 0 !important;
}

/* Product actions/buttons */
.featured-package-container .product-actions,
.featured-package-container .store-product-actions {
  margin-top: auto !important;
}

.featured-package-container .btn-primary,
.featured-package-container button {
  width: 100% !important;
  padding: 14px 20px !important;
  background: transparent !important;
  border: 2px solid #ef4444 !important;
  border-radius: 8px !important;
  color: #ef4444 !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
}

.featured-package-container .store-product:hover .btn-primary,
.featured-package-container .featured-package:hover button {
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 16px rgba(239, 68, 68, 0.4) !important;
}

/* Hide any extra elements that might break the layout */
.featured-package-container .store-product-tags,
.featured-package-container .product-tags {
  display: none !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .featured-package-container .store-product-image,
  .featured-package-container .product-image {
    height: 180px !important;
  }
  
  .featured-package-container .store-product-title,
  .featured-package-container .product-title,
  .featured-package-container h3 {
    font-size: 16px !important;
    min-height: 44px !important;
  }
  
  .featured-package-container .store-product-price,
  .featured-package-container .product-price {
    font-size: 20px !important;
  }
}

@media (max-width: 500px) {
  .featured-package-container .store-product-image,
  .featured-package-container .product-image {
    height: 160px !important;
  }
  
  .featured-package-container .store-product-title,
  .featured-package-container .product-title,
  .featured-package-container h3 {
    font-size: 15px !important;
    min-height: 40px !important;
  }
}


/* Category Preview Cards on Homepage */
.category-preview-card .category-badge {
  display: inline-block !important;
  padding: 6px 16px !important;
  background: linear-gradient(135deg, #6366f1, #4f46e5) !important;
  color: #ffffff !important;
  border-radius: 6px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}

.category-preview-card .image-placeholder {
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(135deg, #1a1a1a, #0f0f0f) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}


/* ============================================
   FEATURED SCRIPTS SLIDER SECTION
   ============================================ */

.featured-scripts-slider-section {
  background: #000000 !important;
  padding: 80px 0 !important;
  margin: 60px 0 !important;
  position: relative !important;
  overflow: hidden !important;
}

/* Title Styling */
.featured-slider-title {
  text-align: center !important;
  font-size: 48px !important;
  font-weight: 900 !important;
  margin: 0 0 60px 0 !important;
  letter-spacing: 4px !important;
  text-transform: uppercase !important;
}

.title-featured {
  color: #888888 !important;
  margin-right: 16px !important;
}

.title-scripts {
  color: #ffffff !important;
}

@media (max-width: 768px) {
  .featured-slider-title {
    font-size: 32px !important;
    letter-spacing: 2px !important;
  }
}

/* Swiper Container */
.featured-scripts-swiper {
  max-width: 1400px !important;
  margin: 0 auto !important;
  padding: 20px 40px 60px !important;
}

@media (max-width: 768px) {
  .featured-scripts-swiper {
    padding: 20px 20px 60px !important;
  }
}

/* Swiper Slide */
.featured-scripts-swiper swiper-slide {
  opacity: 0.6 !important;
  transform: scale(0.85) !important;
  transition: all 0.5s ease !important;
}

.featured-scripts-swiper swiper-slide-active {
  opacity: 1 !important;
  transform: scale(1) !important;
}

/* Featured Slide Card */
.featured-slide-card {
  display: block !important;
  position: relative !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6) !important;
  transition: all 0.4s ease !important;
  text-decoration: none !important;
  height: 450px !important;
}

.featured-slide-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 16px 48px rgba(239, 68, 68, 0.4), 0 0 40px rgba(239, 68, 68, 0.2) !important;
}

@media (max-width: 768px) {
  .featured-slide-card {
    height: 350px !important;
  }
}

/* Slide Image */
.featured-slide-image {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
  overflow: hidden !important;
}

.featured-slide-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.6s ease !important;
}

.featured-slide-card:hover .featured-slide-image img {
  transform: scale(1.1) !important;
}

/* Image Placeholder */
.featured-image-placeholder {
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(135deg, #1a1a1a, #0f0f0f) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.featured-image-placeholder::before {
  content: '📦' !important;
  font-size: 64px !important;
  opacity: 0.3 !important;
}

/* Gradient Overlay */
.featured-slide-overlay {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 60% !important;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 40%, transparent 100%) !important;
  pointer-events: none !important;
}

/* Slide Content */
.featured-slide-content {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  padding: 32px !important;
  z-index: 2 !important;
}

@media (max-width: 768px) {
  .featured-slide-content {
    padding: 24px !important;
  }
}

/* Slide Name */
.featured-slide-name {
  font-size: 28px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  margin: 0 0 12px 0 !important;
  line-height: 1.2 !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8) !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

@media (max-width: 768px) {
  .featured-slide-name {
    font-size: 22px !important;
  }
}

/* Slide Price */
.featured-slide-price {
  font-size: 24px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8) !important;
}

.featured-slide-price strong {
  color: #ef4444 !important;
  font-size: 28px !important;
}

.price-free-badge {
  display: inline-block !important;
  padding: 8px 20px !important;
  background: linear-gradient(135deg, #10b981, #059669) !important;
  color: #ffffff !important;
  border-radius: 8px !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.4) !important;
}

@media (max-width: 768px) {
  .featured-slide-price {
    font-size: 20px !important;
  }
  
  .featured-slide-price strong {
    font-size: 24px !important;
  }
  
  .price-free-badge {
    font-size: 16px !important;
    padding: 6px 16px !important;
  }
}

/* Pagination */
.featured-swiper-pagination {
  text-align: center !important;
  margin-top: 40px !important;
}

.featured-scripts-swiper::part(pagination) {
  bottom: 20px !important;
}

.featured-scripts-swiper::part(bullet) {
  width: 12px !important;
  height: 12px !important;
  background: rgba(255, 255, 255, 0.3) !important;
  opacity: 1 !important;
  transition: all 0.3s ease !important;
}

.featured-scripts-swiper::part(bullet-active) {
  width: 32px !important;
  border-radius: 6px !important;
  background: #ef4444 !important;
  box-shadow: 0 0 16px rgba(239, 68, 68, 0.6) !important;
}


/* ============================================
   HOMEPAGE PRODUCTS GRID
   ============================================ */

.homepage-products-section {
  max-width: 1200px !important;
  margin: 60px auto !important;
  padding: 0 24px !important;
}

.homepage-products-section .section-title {
  text-align: center !important;
  font-size: 48px !important;
  font-weight: 900 !important;
  margin: 0 0 60px 0 !important;
  letter-spacing: 4px !important;
  text-transform: uppercase !important;
}

.homepage-products-section .title-featured {
  color: #888888 !important;
  margin-right: 16px !important;
}

.homepage-products-section .title-scripts {
  color: #ffffff !important;
}

@media (max-width: 768px) {
  .homepage-products-section .section-title {
    font-size: 32px !important;
    letter-spacing: 2px !important;
  }
}

/* Products Grid */
.homepage-products-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
}

@media (max-width: 1100px) {
  .homepage-products-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .homepage-products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }
}

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

/* Product Card */
.product-card {
  background: #1a1a1a !important;
  border: 2px solid #2a2a2a !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
  display: flex !important;
  flex-direction: column !important;
  text-decoration: none !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4) !important;
}

.product-card:hover {
  transform: translateY(-8px) !important;
  border-color: #ef4444 !important;
  box-shadow: 0 12px 32px rgba(239, 68, 68, 0.3) !important;
}

/* Product Image */
.product-card-image {
  width: 100% !important;
  height: 200px !important;
  overflow: hidden !important;
  background: #0f0f0f !important;
  position: relative !important;
}

.product-card-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.3s ease !important;
}

.product-card:hover .product-card-image img {
  transform: scale(1.05) !important;
}

.product-image-placeholder {
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(135deg, #1a1a1a, #0f0f0f) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.product-image-placeholder::before {
  content: '📦' !important;
  font-size: 48px !important;
  opacity: 0.3 !important;
}

/* Product Content */
.product-card-content {
  padding: 20px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  flex: 1 !important;
}

/* Stars */
.product-card-stars {
  display: flex !important;
  gap: 4px !important;
  font-size: 16px !important;
  color: #fbbf24 !important;
}

/* Title */
.product-card-title {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin: 0 !important;
  line-height: 1.3 !important;
  min-height: 48px !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

/* Price */
.product-card-price {
  font-size: 24px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  margin: 8px 0 !important;
}

.product-card-price strong {
  color: #ef4444 !important;
}

.product-card-price .price-free-badge {
  display: inline-block !important;
  padding: 6px 16px !important;
  background: linear-gradient(135deg, #10b981, #059669) !important;
  color: #ffffff !important;
  border-radius: 6px !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}

/* Button */
.product-card-button {
  width: 100% !important;
  padding: 14px 20px !important;
  background: transparent !important;
  border: 2px solid #ef4444 !important;
  border-radius: 8px !important;
  color: #ef4444 !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  margin-top: auto !important;
}

.product-card:hover .product-card-button {
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 16px rgba(239, 68, 68, 0.4) !important;
}

/* No Products Message */
.no-products-message {
  grid-column: 1 / -1 !important;
  text-align: center !important;
  padding: 60px 20px !important;
  color: #888888 !important;
}

.no-products-message p {
  font-size: 18px !important;
  margin: 8px 0 !important;
}

/* Responsive */
@media (max-width: 768px) {
  .product-card-image {
    height: 180px !important;
  }
  
  .product-card-title {
    font-size: 16px !important;
    min-height: 44px !important;
  }
  
  .product-card-price {
    font-size: 20px !important;
  }
}

@media (max-width: 500px) {
  .product-card-image {
    height: 160px !important;
  }
  
  .product-card-title {
    font-size: 15px !important;
    min-height: 40px !important;
  }
}


/* ============================================
   RTX-STYLE PRODUCTS GRID (HOMEPAGE)
   ============================================ */

.all-products-section {
  max-width: 1200px !important;
  margin: 60px auto !important;
  padding: 0 24px !important;
}

.products-section-title {
  text-align: center !important;
  font-size: 48px !important;
  font-weight: 900 !important;
  margin: 0 0 60px 0 !important;
  letter-spacing: 4px !important;
  text-transform: uppercase !important;
}

.title-our {
  color: #888888 !important;
  margin-right: 16px !important;
}

.title-products {
  color: #ffffff !important;
}

@media (max-width: 768px) {
  .products-section-title {
    font-size: 32px !important;
    letter-spacing: 2px !important;
  }
}

/* RTX Products Grid - Uses existing package-entry.twig cards */
.rtx-products-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
}

@media (max-width: 1100px) {
  .rtx-products-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .rtx-products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }
}

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

/* No Products Message */
.no-products-found {
  grid-column: 1 / -1 !important;
  text-align: center !important;
  padding: 60px 20px !important;
  color: #888888 !important;
}

.no-products-found p {
  font-size: 18px !important;
  margin: 8px 0 !important;
}
