/* Import Notable and Zen Dots fonts */
@import url('https://fonts.googleapis.com/css2?family=Anton+SC&family=BBH+Sans+Bogle&family=Notable&family=Roboto:ital,wght@0,100..900;1,100..900&family=Sarpanch:wght@400;500;600;700;800;900&family=Zen+Dots&display=swap');

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

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

strong,
b {
  font-weight: 700;
}

em,
i {
  font-style: italic;
}

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

textarea {
  resize: none;
}

symbol,
use,
svg {
  overflow: visible;
}

svg,
img {
  display: block;
}

li {
  display: block;
}

button {
  display: block;
}

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

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

:focus {
  outline: 0;
}

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

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

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

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

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

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

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

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

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

body {
  position: relative;
  max-width: 100%;
  width: 100%;
  line-height: normal;
  color: var(--color-text);
  background: 
    radial-gradient(circle at 20% 50%, rgba(40, 20, 20, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(40, 20, 20, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(30, 15, 15, 0.2) 0%, transparent 40%),
    linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  background-attachment: fixed;
  accent-color: var(--color-primary);
  font-family: 'Goldman', sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.5px;
  padding-top: 20px;
  padding-bottom: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255, 0, 0, 0.02) 2px,
      rgba(255, 0, 0, 0.02) 4px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(255, 0, 0, 0.02) 2px,
      rgba(255, 0, 0, 0.02) 4px
    );
  pointer-events: none;
  z-index: 0;
  view-transition-name: siteBgImage;
}

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

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

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

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

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

.btn-primary {
  --btn-color-text: #ffffff;
  --btn-color-bg: linear-gradient(135deg, #ff0000, #cc0000);
  --btn-color-text-hover: #ff0000;
  --btn-color-bg-hover: linear-gradient(135deg, #ffffff, #f0f0f0);
  
  background: var(--btn-color-bg) !important;
  color: var(--btn-color-text) !important;
  border: 2px solid #ffffff !important;
  border-radius: 8px !important;
  font-family: 'Goldman', sans-serif !important;
  font-weight: 800 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  transition: all 0.3s ease !important;
  box-shadow: 
    0 4px 15px rgba(255, 0, 0, 0.4),
    0 2px 8px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
  position: relative !important;
  overflow: hidden !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.2), transparent) !important;
  transition: left 0.5s ease !important;
}

.btn-primary:hover {
  background: var(--btn-color-bg-hover) !important;
  color: var(--btn-color-text-hover) !important;
  border-color: #ff0000 !important;
  transform: translateY(-2px) !important;
  box-shadow: 
    0 8px 25px rgba(255, 0, 0, 0.6),
    0 4px 15px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

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

.btn-primary:active {
  transform: translateY(-1px) scale(0.98) !important;
  box-shadow: 
    0 4px 15px rgba(255, 0, 0, 0.4),
    0 2px 8px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
  transition: all 0.1s ease !important;
}

.btn-primary:focus {
  outline: none !important;
  box-shadow: 
    0 4px 15px rgba(255, 0, 0, 0.4),
    0 2px 8px rgba(0, 0, 0, 0.3),
    0 0 0 3px rgba(255, 0, 0, 0.3) !important;
}

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

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

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

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

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

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

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

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

.quantity-field {
  display: flex;
  align-items: stretch;
  justify-content: center;
  color: var(--color-text);
  background: var(--color-bg);
  height: 36px;
  border: 1px solid var(--color-secondary);
}
.quantity-field input[type=number] {
  position: relative;
  z-index: 1;
  flex: none;
  -moz-appearance: textfield;
  appearance: textfield;
  field-sizing: content;
  min-width: 40px;
  height: 100%;
  font-size: 16px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}
.quantity-field input[type=number]:focus, .quantity-field input[type=number]:hover {
  border-color: var(--color-secondary-hover);
}
.quantity-field input[type=number]::-webkit-inner-spin-button, .quantity-field input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.quantity-field.with-open-basket input[type=number] {
  margin: 0 -12px 0 -15px;
  min-width: auto;
  padding: 0 15px;
  order: 1;
  text-align: right;
  transition: color 0.15s ease-in-out;
}
.quantity-field .open-basket {
  margin-right: 5px;
  width: fit-content;
  height: 100%;
  order: 2;
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.15s ease-in-out;
}
.quantity-field .open-basket:focus, .quantity-field .open-basket:hover {
  color: var(--color-primary);
}
.quantity-field .open-basket:focus ~ input[type=number], .quantity-field .open-basket:hover ~ input[type=number] {
  color: var(--color-primary);
}
.quantity-field .adjust {
  position: relative;
  z-index: 2;
  flex: none;
  width: 34px;
  height: 100%;
  padding: 0;
  line-height: 0;
  font-size: 0;
  color: transparent;
}
.quantity-field .adjust.decrease {
  margin-right: auto;
  order: -1;
}
.quantity-field .adjust.increase {
  margin-left: auto;
  order: 100;
}
.quantity-field .adjust::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--color-text);
  mask: url("https://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 {
  display: grid;
  grid-auto-rows: auto 1fr auto;
  grid-template-columns: 100%;
  align-items: start;
  gap: var(--widget-padding);
  min-height: 100vh;
  font-size: 14px;
  view-transition-name: site;
}
@media (width > 960px) {
  .site {
    gap: calc(var(--widget-padding) * 2);
  }
}
.page-index.home-categories-enabled .site {
  grid-auto-rows: auto auto 1fr auto;
}

.site-sale-banner,
.site-home-categories {
  position: relative;
  z-index: 15;
  margin-top: 100vh;
  padding: var(--widget-padding);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.site-content {
  position: relative;
  z-index: 5;
  padding: var(--widget-padding);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  transition: margin-top 0.8s ease-in-out;
  margin-top: 80px; /* Default spacing from header */
}

/* Only apply large margin-top to homepage */
.page-index .site-content {
  margin-top: 100vh;
}

.site-footer-inner {
  margin: 0 auto;
  padding: 0 var(--content-padding);
  width: 100%;
}
@media (width > 960px) {
  .site-sale-banner,
  .site-home-categories,
  .site-footer-inner {
    max-width: var(--content-width);
  }
  .site-content {
    max-width: var(--content-width);
    margin-top: 100px; /* Default spacing from header on larger screens */
  }
  /* Only apply large margin-top to homepage */
  .page-index .site-content {
    margin-top: 100vh;
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  view-transition-name: siteHeader;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  margin: 0;
  width: 100%;
  max-width: none;
}

@media (width > 960px) {
  .site-header {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 20px;
    margin: 10px;
    width: calc(100% - 20px);
  }
}

/* Red animated line under header */
.header-red-line {
  width: 100%;
  height: 3px;
  background: #ff0000;
  opacity: 0.3;
  animation: redLineFade 4s ease-in-out infinite;
}

@keyframes redLineFade {
  0% {
    opacity: 0.1;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    opacity: 0.1;
  }
}

.site-header-inner .user-name {
  contain: paint;
}
.site-header-inner .user-name .text,
.site-header-inner .user-name .text-hover {
  transition: opacity 0.15s ease-in-out, font-size 0.15s ease-in-out, visibility 0.15s ease-in-out;
}
.site-header-inner .user-name:not(:hover):not(:focus-within) .text-hover {
  visibility: hidden;
  color: transparent;
  font-size: 0;
}
.site-header-inner .user-name:hover .text, .site-header-inner .user-name:focus-within .text {
  visibility: hidden;
  opacity: 0;
  font-size: 0;
}
@media (width <= 960px) {
  .site-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--widget-padding) 0;
    position: relative;
    padding: 15px var(--content-padding);
    flex-wrap: wrap;
    min-height: 70px;
  }
  
  /* Hide the navigation menu and info on mobile, but keep the title visible */
  .header-navigation,
  .site-header-inner .info,
  .site-header-inner .header-navigation,
  .site-header-inner .header-menu {
    display: none !important;
  }
  
  /* Hide site-navigation by default on mobile, show only when body has show-navigation class */
  .site-navigation.navigation-horizontal {
    display: none !important;
  }
  
  body.show-navigation .site-navigation.navigation-horizontal {
    display: block !important;
  }
  
  /* Only show the title on mobile, hide the rest of header-main */
  .header-main {
    display: block !important;
  }
  
  .header-main .header-navigation {
    display: none !important;
  }
  
  .site-header-inner .actions {
    position: absolute;
    top: 15px;
    left: var(--content-padding);
    display: flex;
    gap: 6px;
    z-index: 1001;
  }
  .site-header-inner .toggle-navigation {
    display: flex !important;
    background-image: url("https://template-assets.tebex.io/images/burger.svg");
    background-color: rgba(255, 255, 255, 0.1) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 6px !important;
    width: 46px !important;
    height: 46px !important;
    padding: 0 !important;
    background-size: 24px !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    transition: all 0.3s ease !important;
  }
  
  .site-header-inner .toggle-navigation:hover {
    background-color: rgba(255, 0, 0, 0.2) !important;
    border-color: #ff0000 !important;
    transform: scale(1.05) !important;
  }
  
  /* Hide all header buttons on mobile - they're in the navigation menu */
  .site-header-inner .user-actions {
    display: none !important;
  }
  
  .site-header-inner .currency-switcher {
    display: none !important;
  }
  
  .site-header-inner .discord-btn,
  .site-header-inner .faq-btn,
  .site-header-inner .open-basket,
  .site-header-inner .log-in,
  .site-header-inner .user-menu,
  .site-header-inner .logout-btn {
    display: none !important;
  }
  .site-header-inner .open-basket svg {
    width: 20px;
    height: 20px;
    fill: #ffffff !important;
  }
  
  .site-header-inner .open-basket:hover svg {
    fill: #ff0000 !important;
    filter: none !important;
  }
  
  .site-header-inner .user-name {
    display: none;
  }
  
  /* Position the header-main title in the center on mobile */
  .header-main {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: auto !important;
    max-width: calc(100% - 200px) !important;
    margin: 0 !important;
    padding: 0 !important;
    z-index: 1 !important;
  }
  
  .site-header-inner .site-title {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 35px !important;
  }
  
  .site-header-inner .site-title a {
    display: block !important;
    color: #ffffff !important;
    text-decoration: none !important;
    font-family: 'Goldman', sans-serif !important;
    text-align: center !important;
  }
  
  .site-header-inner .site-title h1 {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 18px !important;
    font-weight: 900 !important;
    line-height: 35px !important;
    color: #ffffff !important;
    font-family: 'Goldman', sans-serif !important;
  }
  
  .site-header-inner .site-title img {
    max-height: 35px !important;
    max-width: 200px !important;
    margin: 0 auto !important;
    object-fit: contain !important;
    display: block !important;
  }
}

@media (width > 960px) {
  .site-header-inner {
    position: relative;
    height: auto;
  }
  
  .header-main {
    position: static !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: auto !important;
    max-width: none !important;
  }
  
  .site-header-inner .site-title {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 48px !important;
    line-height: 60px !important;
  }
  
  /* On desktop: show header navigation, hide site-navigation popup */
  .site-navigation.navigation-horizontal {
    display: none !important;
  }
  
  .site-header-inner .header-navigation {
    display: block !important;
  }
  
  .site-header-inner .header-menu {
    display: flex !important;
  }
  
  .site-header-inner .actions {
    position: absolute;
    top: var(--widget-padding);
    left: 0;
    display: flex;
    gap: 6px;
  }
  .site-header-inner .toggle-navigation {
    display: none;
    background-image: url("https://template-assets.tebex.io/images/burger.svg");
  }
  .site-header-inner .user-actions {
    position: absolute;
    top: var(--widget-padding);
    right: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    height: auto;
    justify-content: flex-end;
  }
  
  /* Show header buttons on desktop */
  .site-header-inner .currency-switcher {
    display: block;
  }
  
  .site-header-inner .discord-btn,
  .site-header-inner .faq-btn,
  .site-header-inner .open-basket,
  .site-header-inner .log-in,
  .site-header-inner .user-menu,
  .site-header-inner .logout-btn {
    display: flex;
  }
.site-header-inner .currency-switcher {
  display: flex;
  align-items: center;
  margin-right: 0;
}

/* Add spacing to the right of currency switcher when logged out */
.site-header-inner .user-actions .currency-switcher:last-child {
  margin-right: 12px;
}
.site-header-inner .currency-switcher .header-currency {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 6px 28px 6px 10px;
  background: rgba(26,26,26,0.9);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  font-family: 'Goldman', sans-serif;
  font-size: 12px;
  letter-spacing: 0.3px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23FFFFFF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  min-width: 84px;
}
.site-header-inner .currency-switcher .header-currency:focus {
  outline: none;
  border-color: rgba(255,255,255,0.35);
  box-shadow: 0 0 0 2px rgba(255,255,255,0.08);
}
.site-header-inner .currency-switcher .header-currency:hover {
  border-color: rgba(255,255,255,0.3);
}
  .site-header-inner .discord-btn {
    background: transparent !important;
    border: none !important;
    color: #ffffff !important;
    padding: 12px !important;
    box-shadow: none !important;
    text-shadow: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .site-header-inner .discord-btn.btn-glyph-text {
    gap: 8px !important;
    padding: 12px 16px !important;
  }
  .site-header-inner .discord-btn:hover {
    background: transparent !important;
    border: none !important;
    color: #ff0000 !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 0 #ff0000 !important;
  }
  .site-header-inner .discord-btn svg {
    width: 20px;
    height: 20px;
  }
  
  .site-header-inner .discord-btn:hover svg {
    fill: #ff0000 !important;
    filter: none !important;
  }
  .site-header-inner .discord-btn::before {
    display: none !important;
  }
  .site-header-inner .fivem-btn {
    background: transparent !important;
    border: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 12px 16px !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  
  /* When fivem-btn has btn-glyph-text, show text */
  .site-header-inner .fivem-btn.btn-glyph-text {
    font-size: 14px !important;
    line-height: normal !important;
    color: #ffffff !important;
  }
  
  /* When fivem-btn is just btn-glyph (icon only), hide text */
  .site-header-inner .fivem-btn.btn-glyph:not(.btn-glyph-text) {
    font-size: 0 !important;
    line-height: 0 !important;
    color: transparent !important;
  }
  
  .site-header-inner .fivem-btn:hover {
    background: transparent !important;
    border: none !important;
    color: #ff0000 !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 0 #ff0000 !important;
  }
  .site-header-inner .fivem-btn .material-symbols-outlined {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    font-size: 20px !important;
    line-height: 20px !important;
    color: #ffffff !important;
    margin: 0 !important;
    font-family: 'Material Symbols Outlined' !important;
    font-weight: normal;
    font-style: normal;
    flex-shrink: 0;
    position: relative !important;
  }
  
  .site-header-inner .fivem-btn:hover .material-symbols-outlined {
    color: #ff0000 !important;
    filter: none !important;
  }
  .site-header-inner .fivem-btn::before {
    display: none !important;
  }
  .site-header-inner .faq-btn {
    background: transparent !important;
    border: none !important;
    color: #ffffff !important;
    padding: 12px 16px !important;
    box-shadow: none !important;
    text-shadow: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
  }
  .site-header-inner .faq-btn:hover {
    background: transparent !important;
    border: none !important;
    color: #ff0000 !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 0 #ff0000 !important;
  }
  .site-header-inner .faq-btn svg {
    width: 20px;
    height: 20px;
    fill: #ffffff !important;
    flex-shrink: 0;
  }
  .site-header-inner .faq-btn:hover svg {
    fill: #ff0000 !important;
    filter: none !important;
  }
  .site-header-inner .faq-btn::before {
    display: none !important;
  }
  .site-header-inner .log-in.btn-primary {
    background: transparent !important;
    border: none !important;
    color: #ffffff !important;
    padding: 12px 16px !important;
    box-shadow: none !important;
    text-shadow: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    font-family: inherit !important;
    border-radius: 0 !important;
    overflow: visible !important;
    position: static !important;
  }
  
  .site-header-inner .log-in.btn-primary::before {
    display: none !important;
  }
  
  .site-header-inner .log-in.btn-primary:hover {
    background: transparent !important;
    color: #ff0000 !important;
    border: none !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 0 #ff0000 !important;
    text-decoration: none !important;
  }
  
  .site-header-inner .log-in.btn-primary:hover::before {
    display: none !important;
  }
  .site-header-inner .open-basket::before {
    display: none !important;
  }
  .site-header-inner .open-basket {
    background: transparent !important;
    border: none !important;
    color: #ffffff !important;
    padding: 12px 16px !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  .site-header-inner .open-basket:hover {
    background: transparent !important;
    border: none !important;
    color: #ff0000 !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 0 #ff0000 !important;
  }
  .site-header-inner .open-basket svg {
    width: 20px;
    height: 20px;
    fill: #ffffff !important;
  }
  
  .site-header-inner .open-basket:hover svg {
    fill: #ff0000 !important;
    filter: none !important;
  }
  .site-header-inner .user-menu {
    position: relative;
    display: inline-block;
  }
  .site-header-inner .user-icon {
    background: transparent !important;
    border: none !important;
    color: #ffffff !important;
    padding: 12px !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  .site-header-inner .user-icon:hover {
    background: transparent !important;
    border: none !important;
    color: #ff0000 !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 0 #ff0000 !important;
  }
  .site-header-inner .user-icon svg {
    width: 20px;
    height: 20px;
    fill: #ffffff !important;
  }
  
  .site-header-inner .user-icon:hover svg {
    fill: #ff0000 !important;
    filter: none !important;
  }
  .site-header-inner .user-icon::before {
    display: none !important;
  }
  .site-header-inner .user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 8px;
    padding: 16px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  }
  .site-header-inner .user-menu:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .site-header-inner .user-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .site-header-inner .username {
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    font-family: 'Goldman', sans-serif;
    letter-spacing: 0.5px;
  }
  .site-header-inner .logout-btn {
    background: transparent !important;
    border: none !important;
    color: #ffffff !important;
    padding: 12px !important;
    box-shadow: none !important;
    text-shadow: none !important;
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .site-header-inner .logout-btn:hover {
    background: transparent !important;
    border: none !important;
    color: #ff0000 !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 0 #ff0000 !important;
  }
  .site-header-inner .logout-btn svg {
    width: 20px;
    height: 20px;
    fill: #ffffff !important;
  }
  .site-header-inner .logout-btn:hover svg {
    fill: #ff0000 !important;
    filter: none !important;
  }
  .site-header-inner .logout-btn::before {
    display: none !important;
  }
  .site-header-inner .user-dropdown .logout-link {
    background: #ff0000;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 6px;
    padding: 8px 16px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    font-family: 'Goldman', sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-align: center;
    transition: all 0.2s ease;
    display: block;
    margin-top: 8px;
  }
  .site-header-inner .user-dropdown .logout-link:hover {
    background: #ffffff;
    color: #ff0000;
    border-color: #ff0000;
    transform: translateY(-1px);
  }
  .site-header-inner .site-title {
    position: static;
    margin: 0;
    flex: none;
    line-height: 60px;
    font-size: 48px;
    font-weight: 900;
    text-align: left;
  }
  .site-header-inner .site-title img {
    margin: 0;
    max-width: 100%;
    max-height: 60px;
  }
  .site-header-inner .info {
    position: absolute;
    top: calc(var(--widget-padding) + 46px);
    left: 0;
    bottom: 0;
    margin: auto 0;
    max-width: 280px;
    width: 33.3333333333%;
    height: fit-content;
    line-height: 22px;
  }
  .site-header-inner .info.server {
    padding-left: 64px;
  }
  .site-header-inner .info.discord {
    right: 0;
    left: auto;
    padding-right: 82px;
    text-align: right;
  }
  .site-header-inner .info .image {
    position: absolute;
    top: -50px;
    left: 0;
    bottom: -50px;
    margin: auto 0;
    width: 46px;
    height: 46px;
    object-fit: contain;
  }
  .site-header-inner .info.discord .image {
    left: auto;
    right: 0;
    width: 64px;
    height: 64px;
  }
  .site-header-inner .info .title {
    display: block;
    line-height: 28px;
    color: var(--color-text);
    font-size: 18px;
    font-weight: 600;
  }
  .site-header-inner .info .action {
    display: block;
    color: var(--color-primary);
    font-size: 16px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    transition: color 0.15s ease-in-out;
    cursor: pointer;
  }
  .site-header-inner .info:hover .action {
    color: var(--color-primary-hover);
  }
  .site-header-inner .info .value {
    width: fit-content;
    border: 1px solid #606060;
    padding: 0 6px;
    background: rgba(96, 96, 96, 0.5);
    color: #CCC;
    font-size: 16px;
  }
}

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

.site-footer {
  background: var(--color-brighter-bg);
  position: relative;
  width: 100%;
  margin-top: auto;
  margin-bottom: 0;
  padding-bottom: 0;
  flex-shrink: 0;
}

/* Ensure any Tebex footer is also positioned at bottom of page */
.tebex-footer,
[class*="tebex-footer"],
[class*="TebexFooter"] {
  position: relative !important;
  bottom: auto !important;
  margin-top: auto;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  flex-shrink: 0;
}

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

.store-text {
  padding: var(--content-padding);
  line-height: 1.375;
  font-size: 16px;
  font-weight: 400;
  background: #1a0000;
  border: 2px solid #ff0000;
  border-radius: 8px;
  margin-bottom: var(--widget-padding);
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

/* Global heading styles for all content sections */
.site-content h1,
.site-content h2,
.site-content h3,
.site-content h4,
.site-content h5,
.site-content h6,
.store-text h1,
.store-text h2,
.store-text h3,
.store-text h4,
.store-text h5,
.store-text h6,
.widget h1,
.widget h2,
.widget h3,
.widget h4,
.widget h5,
.widget h6 {
  color: #ffffff !important;
  font-family: 'Goldman', sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  margin-bottom: 16px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

/* Left-align h4 on FAQ page */
.store-text h4,
.site-content .store-text h4 {
  justify-content: flex-start !important;
  text-align: left !important;
}

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

.site-content-widgets {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.site-content-widgets .widget {
  background: #1a0000;
  border: 2px solid #ff0000;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

.site-content-widgets .widget-title {
  color: #ff0000;
  font-family: 'Goldman', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.site-content-widgets .widget-text .text-content {
  color: #ccc;
  line-height: 1.6;
}

.site-content-widgets .widget-text .text-content p {
  margin-bottom: 15px;
  font-size: 16px;
}

.site-content-widgets .widget-text .text-content p:last-child {
  margin-bottom: 0;
}

.site-content-widgets .widget-recent .purchases {
  display: flex;
  flex-direction: row;
  gap: 15px;
  overflow: hidden;
  padding: 10px 0;
  position: relative;
  height: 80px;
}

.site-content-widgets .widget-recent .purchases-slider {
  display: flex;
  flex-direction: row;
  gap: 15px;
  animation: slidePayments 30s linear infinite;
  width: max-content;
}


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

.site-content-widgets .widget-recent .purchases:hover .purchases-slider {
  animation-play-state: paused;
}

.site-content-widgets .widget-recent .purchase {
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid rgba(255, 0, 0, 0.3);
  border-radius: 4px;
  padding: 12px 16px;
  min-width: 200px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 15px;
  line-height: 1.4;
}

.site-content-widgets .widget-recent .username {
  color: #fff;
  font-weight: 600;
  margin-bottom: 5px;
}

.site-content-widgets .widget-recent time {
  color: #ccc;
  font-size: 12px;
}

.site-content-widgets .widget-recent .avatar {
  flex: none;
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  align-self: center;
}

.site-content-widgets .widget-recent .empty {
  text-align: center;
  color: #ccc;
}

.site-content-widgets .widget-top-donator .avatar {
  margin: 0 auto 12px;
  width: 96px;
  height: 96px;
  object-fit: contain;
  border-radius: 50%;
}

.site-content-widgets .widget-top-donator .username {
  margin-bottom: 6px;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}

.site-content-widgets .widget-top-donator .empty {
  text-align: center;
  color: #ccc;
}

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

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

.site-content-widgets .widget-community-goal .progress,
.site-content-widgets .widget-goal .progress {
  height: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--color-bg);
}

.site-content-widgets .widget-community-goal .progress-bar,
.site-content-widgets .widget-goal .progress-bar {
  background: linear-gradient(90deg, #ff0000, #cc0000);
  height: 100%;
  transition: width 0.3s ease;
}

/* Hero Slideshow Styles */
.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  margin: 0;
  padding: 0;
  z-index: 1;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.hero-slideshow.fade-red {
  background: #1a0000;
}

.hero-slideshow.fade-red .slideshow-container {
  opacity: 0;
}

.hero-slideshow.hidden {
  transform: translateY(-100vh);
  pointer-events: none;
  visibility: hidden;
  height: 0;
  overflow: hidden;
  transition: transform 0.8s ease-in-out, visibility 0.8s ease-in-out, height 0.8s ease-in-out;
}

.slideshow-container {
  position: relative;
  width: 100%;
  height: 100%;
  transition: opacity 0.5s ease-in-out;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 0, 0, 0.3);
  pointer-events: none;
  z-index: 1;
}

.slideshow-button {
  position: absolute;
  top: calc(50vh + 60px);
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.slideshow-title {
  font-family: 'Goldman', sans-serif;
  font-size: 48px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffffff;
  
  margin: 0;
  white-space: nowrap;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}


.slideshow-cta {
  font-family: 'Goldman', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 28px;
  background: rgba(255, 0, 0, 0.9);
  border: 2px solid #ff0000;
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
  transition: all 0.3s ease-in-out;
  white-space: nowrap;
  min-width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  height: auto;
}

.slideshow-cta:hover {
  background: rgba(255, 0, 0, 1);
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.8);
  transform: scale(1.05);
}

/* Store Menu Popup */
.store-menu-popup {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-10px) scale(0.95);
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 10px;
  pointer-events: none;
}

.store-menu-popup.show {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
  pointer-events: auto;
}

.store-menu-content {
  background: #1a0000;
  border: 2px solid #ff0000;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
  position: relative;
  min-width: 200px;
}

.store-menu-content h3 {
  color: #ff0000;
  font-family: 'Goldman', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.store-menu-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.store-menu-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid rgba(255, 0, 0, 0.3);
  border-radius: 6px;
  text-decoration: none;
  color: #fff;
  font-family: 'Goldman', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}

.store-menu-option:hover {
  background: rgba(255, 0, 0, 0.2);
  border-color: #ff0000;
  transform: scale(1.02);
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

.option-icon {
  font-size: 14px;
}

.option-text {
  flex: 1;
}


.slideshow-widget {
  margin-top: 30px;
  background: rgba(26, 26, 26, 0.9);
  border: 2px solid #ff0000;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease-in-out;
  pointer-events: none;
}

.slideshow-widget.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.slideshow-widget .widget {
  background: transparent;
  border: none;
  box-shadow: none;
  margin: 0;
  padding: 0;
}

.slideshow-widget .widget-title {
  color: #ff0000;
  font-family: 'Goldman', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
  text-align: center;
}

.slideshow-widget .widget-recent .purchases {
  display: flex;
  flex-direction: row;
  gap: 15px;
  overflow-x: auto;
  padding: 10px 0;
}

.slideshow-widget .widget-recent .purchase {
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid rgba(255, 0, 0, 0.3);
  border-radius: 4px;
  padding: 12px 16px;
  min-width: 200px;
  flex-shrink: 0;
}

.slideshow-widget .widget-recent .username {
  color: #fff;
  font-weight: 600;
}

.slideshow-widget .widget-recent time {
  color: #ccc;
  font-size: 12px;
}

.slideshow-widget .widget-textbox {
  margin-top: 20px;
}

.slideshow-widget .widget-textbox .widget-title {
  color: #ff0000;
  font-family: 'Goldman', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
  text-align: center;
}

.slideshow-widget .widget-textbox .widget-content {
  color: #fff;
  line-height: 1.6;
  font-size: 14px;
}

.slideshow-widget .widget-textbox .widget-content p {
  margin-bottom: 10px;
}

.slideshow-widget .widget-textbox .widget-content h1,
.slideshow-widget .widget-textbox .widget-content h2,
.slideshow-widget .widget-textbox .widget-content h3,
.slideshow-widget .widget-textbox .widget-content h4,
.slideshow-widget .widget-textbox .widget-content h5,
.slideshow-widget .widget-textbox .widget-content h6 {
  color: #ff0000;
  font-family: 'Goldman', sans-serif;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
  margin-bottom: 10px;
}

.slideshow-arrow {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.arrow-down {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  animation: arrowBounce 3s ease-in-out infinite;
}

.arrow-down:hover {
  transform: scale(1.1);
}

@keyframes arrowBounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
  60% {
    transform: translateY(-2px);
  }
}

/* Style content sections that might not be in widgets */
.site-content > .hero-slideshow {
  background: transparent;
  border: none;
  border-radius: 0;
  margin: 0;
  box-shadow: none;
  padding: 0;
}

.site-content > *:not(.hero-slideshow) {
  border-radius: 8px;
  margin-bottom: var(--widget-padding);
}

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

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

.store-products {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  margin-bottom: 0 !important;
}

/* Store text inside store-products (for FAQ/CMS pages styled like category pages) */
.store-products .store-text {
  margin-bottom: var(--widget-padding);
  padding: var(--widget-padding);
  line-height: 1.4;
  font-size: 18px;
  background: #1a0000;
  border: 2px solid #ff0000;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

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

.store-products-images {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  grid-auto-rows: min-content;
  gap: 32px;
  padding: 20px 0;
}

.store-product {
  display: flex;
  flex-direction: column;
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  overflow: visible;
  transition: all 0.2s ease;
  position: relative;
  isolation: isolate;
}

.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: inline-block;
  margin-top: 4px;
  padding: 4px 8px;
  background: #ff0000;
  color: #ffffff;
  font-size: 11px;
  font-weight: 500;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.store-product .image-link {
  display: block;
  width: 100%;
  margin: 0;
}

.store-product .image {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
}
.store-product .descr {
  display: none;
}
.store-product .actions {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 0;
  margin: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  height: 0;
  overflow: hidden;
  position: absolute;
  top: 8px;
  right: 8px;
  background: none;
  border-radius: 0;
  z-index: 10;
  width: auto;
}

article.store-product:hover .actions {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  height: auto;
}

/* Ensure hover only affects the specific product card */
article.store-product:hover {
  border-color: transparent !important;
  box-shadow: none !important;
  z-index: 1;
  position: relative;
  transform: scale(1);
  transition: all 0.3s ease;
}

.store-product .actions .price {
  display: none !important;
}

.store-product .actions .btn-primary,
.store-product .actions .btn-secondary {
  background: #ff0000 !important;
  color: #ffffff !important;
  border: 2px solid #ffffff !important;
  border-radius: 6px !important;
  padding: 8px 12px !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  transition: all 0.2s ease !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5) !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
  line-height: 1.2 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: auto !important;
  min-height: 32px !important;
  cursor: pointer !important;
}

.store-product .actions .btn-primary:hover,
.store-product .actions .btn-secondary:hover {
  background: #ffffff !important;
  color: #ff0000 !important;
  border-color: #ff0000 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6) !important;
}

.store-product .actions .btn-primary:active,
.store-product .actions .btn-secondary:active {
  transform: translateY(0) scale(0.98) !important;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4) !important;
  transition: all 0.1s ease !important;
}
.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;
}
article.store-product:hover .actions {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  height: auto;
}
.store-product .product-title {
  padding: 0 16px;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none !important;
  min-height: 50px;
  border-top: none !important;
  width: 100%;
  box-sizing: border-box;
  height: 50px;
}

.store-product .product-title h4 {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #ff0000 !important;
  margin: 0 !important;
  flex: 1 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  min-width: 0 !important;
  text-align: left !important;
  line-height: 50px !important;
  padding: 0 !important;
  display: block !important;
}

.store-product .product-title h4 a {
  color: inherit !important;
  transition: color 0.15s ease-in-out !important;
  line-height: 50px !important;
  display: inline !important;
  text-decoration: none !important;
}

.store-product .product-title .price {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin: 0 !important;
  flex-shrink: 0 !important;
  white-space: nowrap !important;
  line-height: 50px !important;
  padding: 0 !important;
  display: block !important;
}
.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: auto;
}
.store-product .quantity-field {
  height: 46px;
}
.store-product .half {
  flex: 0 1 calc(50% - 6px);
}
.store-product .wide {
  flex: 1 1 auto;
}
.store-product .gift {
  flex: none;
  background-image: url("https://template-assets.tebex.io/images/gift.svg");
}
.store-product .remove {
  flex: none;
  background-image: url("https://template-assets.tebex.io/images/delete.svg");
}


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

.media-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%;
  height: auto;
  min-height: 300px;
  overflow: hidden;
  margin-bottom: var(--slider-spacing);
  background: var(--color-bg);
}
.media-slider .slider::part(container) {
  --swiper-navigation-size: 24px;
  --swiper-theme-color: var(--color-text);
}
.media-slider .slider::part(wrapper) {
  align-items: center;
}
.media-slider .slide {
  align-content: center;
}
.media-slider .slide-image {
  margin: auto;
  max-width: 100%;
  height: auto;
  max-height: none;
  padding: var(--slider-spacing);
  object-fit: contain;
  border-radius: 8px;
}
.media-slider .slide-frame {
  display: block;
  margin: auto;
  width: 100%;
  height: auto;
  max-height: 100%;
  aspect-ratio: 16/9;
  object-fit: contain;
  padding: var(--slider-spacing);
  border-radius: 8px;
}
.media-slider {
  position: relative;
}

.media-slider .thumbs {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  z-index: 10;
  justify-content: center;
}

.media-slider .thumb {
  display: block;
  width: 8px;
  height: 8px;
  padding: 0;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
  backdrop-filter: blur(3px);
}

/* Hide all thumbnail images and use dots instead */
.media-slider .thumb-image,
.media-slider .thumb-youtube {
  display: none !important;
}

/* Active dot styling */
.media-slider .thumb:hover,
.media-slider .thumb.active {
  background-color: #ff0000;
  transform: scale(1.5);
  box-shadow: 0 0 6px rgba(255, 0, 0, 0.6);
}
.media-slider .open-lightbox {
  position: absolute;
  right: var(--slider-spacing);
  bottom: calc(20px + var(--slider-spacing));
  z-index: 2;
  align-content: center;
  width: 40px;
  height: 40px;
  backdrop-filter: blur(5px);
  visibility: hidden;
  line-height: 0;
  font-size: 0;
  color: transparent;
  opacity: 0;
  transition: all 0.15s ease-in-out;
}
.media-slider .open-lightbox:hover, .media-slider .open-lightbox:focus {
  background-color: rgba(255, 255, 255, 0.1);
}
.media-slider .open-lightbox::before {
  content: "";
  display: block;
  margin: auto;
  width: 18px;
  height: 18px;
  flex: none;
  background-color: var(--color-tertiary-text);
  mask: url("https://template-assets.tebex.io/images/fullscreen.svg") center center/contain no-repeat;
  transition: background-color 0.15s ease-in-out;
}
.media-slider .open-lightbox:hover::before, .media-slider .open-lightbox:focus::before {
  background-color: var(--color-tertiary-text-hover);
}
.media-slider .slider:has(.swiper-slide-active .slide-image):hover ~ .open-lightbox,
.media-slider .open-lightbox:hover {
  opacity: 1;
  visibility: visible;
}

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

.store-product-full {
  display: flex;
  flex-direction: row;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background: #1a1a1a;
  border: 1px solid #333333;
  border-radius: 16px;
  position: relative;
  font-family: 'Goldman', sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
  align-items: stretch;
}

.popup .store-product-full {
  height: 100% !important;
  max-height: 100% !important;
  min-height: 100% !important;
  overflow: hidden !important;
  align-items: stretch;
  flex-direction: row !important;
}

.store-product-full .product-media-container {
  flex: 2.5;
  min-width: 0;
  max-width: none;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.store-product-full .product-info-container {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  overflow: hidden;
  height: 100%;
  max-height: 100%;
}

.store-product-full .product-title {
  font-size: 24px;
  font-weight: 700;
  text-align: left;
  margin-bottom: 15px;
  color: #ffffff;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.store-product-full .product-title h2 {
  font-size: 24px;
  font-weight: 700;
  color: #ff0000;
  margin: 0;
  flex: 1;
}

.store-product-full .product-title .price {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  flex-shrink: 0;
}

.store-product-full .image,
.store-product-full .media-slider {
  width: 100%;
  margin-bottom: 0;
  overflow: visible;
}

/* Product media slider sizing and constraints */
.store-product-full .media-slider .slider {
  width: 100% !important;
  height: min(52vh, 520px) !important; /* responsive cap */
  background: transparent !important;
}
.store-product-full .media-slider .slider::part(container) {
  width: 100% !important;
  height: 100% !important;
  /* Make navigation arrows smaller for product slider */
  --swiper-navigation-size: 18px;
  --swiper-navigation-sides-offset: 18px;
}

.store-product-full .image img,
.store-product-full .media-slider img,
.store-product-full .slide-image {
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
  width: 100%;
  height: auto;
}

.store-product-full .image:hover img,
.store-product-full .media-slider:hover img,
.store-product-full .media-slider .slide:hover .slide-image {
  transform: none;
  box-shadow: none;
}

.store-product-full .media-slider .thumbs {
  position: absolute !important;
  bottom: 30px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  display: flex !important;
  gap: 8px !important;
  margin-top: 0 !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  z-index: 10 !important;
}

.store-product-full .media-slider .thumb {
  width: 8px !important;
  height: 8px !important;
  padding: 0 !important;
  background-color: rgba(255, 255, 255, 0.5) !important;
  border: none !important;
  border-radius: 50% !important;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  backdrop-filter: blur(3px) !important;
}

/* Hide all thumbnail images */
.store-product-full .media-slider .thumb-image,
.store-product-full .media-slider .thumb-youtube {
  display: none !important;
}

/* Active dot styling */
.store-product-full .media-slider .thumb:hover,
.store-product-full .media-slider .thumb.active {
  background-color: #ff0000 !important;
  transform: scale(1.5) !important;
  box-shadow: 0 0 6px rgba(255, 0, 0, 0.6) !important;
}

.store-product-full .media-slider .slide {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  width: 100% !important;
  max-width: 100% !important;
}

.store-product-full .media-slider .slide-image {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-width: 900px !important;
  max-height: 900px !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Make video iframe match image height - same constraints */
.store-product-full .media-slider .slide-frame {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-width: 900px !important;
  max-height: 900px !important;
  aspect-ratio: 16/9;
  margin: 0 auto !important;
  opacity: 1 !important;
  visibility: visible !important;
  position: relative !important;
  z-index: 1 !important;
  padding: var(--slider-spacing) !important;
  border-radius: 8px !important;
}

/* Allow JavaScript to override aspect-ratio with explicit dimensions */
.store-product-full .media-slider .slide-frame[style*="height"] {
  aspect-ratio: auto !important;
}

.store-product-full .media-slider .slider {
  display: block !important;
  width: 100% !important;
  max-width: 900px !important;
  height: auto !important;
  max-height: 900px !important;
  min-height: 400px !important;
  overflow: hidden !important;
  --swiper-slide-width: 100% !important;
  --swiper-slide-height: auto !important;
  margin: 0 auto !important;
}

.store-product-full .media-slider .slider::part(container) {
  display: block !important;
  width: 100% !important;
  height: auto !important;
}

.store-product-full .media-slider .slider::part(wrapper) {
  display: flex !important; /* allow horizontal slide layout */
  width: 100% !important;
  height: 100% !important;
}

.store-product-full .media-slider .slider::part(slide) {
  width: 100% !important;
  height: 100% !important;
}

/* Ensure slide content is centered horizontally and vertically */
.store-product-full .media-slider swiper-slide.slide {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
  z-index: 1 !important;
  padding: 0 !important;
}

/* Keep images contained and centered within slide */
.store-product-full .media-slider .slide-image {
  max-width: 100% !important;
  max-height: 100% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  margin: 0 auto !important;
  position: relative !important;
  z-index: 1 !important;
  padding: var(--slider-spacing) !important;
  border-radius: 8px !important;
}

/* Keep video iframe contained and centered within slide, matching image height */
.store-product-full .media-slider .slide-frame {
  max-width: 100% !important;
  max-height: 100% !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 16/9;
  margin: 0 auto !important;
  position: relative !important;
  z-index: 1 !important;
  padding: var(--slider-spacing) !important;
  border-radius: 8px !important;
  display: block !important;
  background: transparent !important;
}

/* Allow JavaScript to override aspect-ratio with explicit dimensions */
.store-product-full .media-slider .slide-frame[style*="height"] {
  aspect-ratio: auto !important;
  width: 100% !important;
  max-width: 100% !important;
}

/* Make active slide image span the full slide width */
.store-product-full .media-slider swiper-slide.swiper-slide-active .slide-image {
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
  object-fit: contain !important;
  padding: var(--slider-spacing) !important;
  border-radius: 8px !important;
}

/* Make active slide video iframe match image dimensions */
.store-product-full .media-slider swiper-slide.swiper-slide-active .slide-frame {
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 900px !important;
  aspect-ratio: 16/9 !important;
  padding: var(--slider-spacing) !important;
  border-radius: 8px !important;
}

/* Ensure the swiper container is above backgrounds */
.store-product-full .media-slider .slider,
.store-product-full .media-slider .slider::part(container) {
  position: relative !important;
  z-index: 1 !important;
}

/* Global styles to penetrate shadow DOM */
swiper-container {
  --swiper-slide-width: 100% !important;
  --swiper-slide-height: auto !important;
}

swiper-slide {
  display: flex !important;
  width: 100% !important;
  height: auto !important;
  opacity: 1 !important;
  visibility: visible !important;
  align-items: center;
}

swiper-slide img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 900px !important;
  opacity: 1 !important;
  visibility: visible !important;
  position: relative !important;
  z-index: 1 !important;
}

/* Force visibility for all images in slideshow */
.store-product-full img.slide-image {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 900px !important;
  opacity: 1 !important;
  visibility: visible !important;
  position: relative !important;
  z-index: 1 !important;
  background: transparent !important;
  object-fit: cover !important;
}

/* Swiper styling for product popup */
.store-product-full swiper-container {
  width: 100%;
  max-width: 900px;
  height: auto;
  max-height: 900px;
  display: block;
  background: transparent;
  margin: 0 auto;
}

.store-product-full swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  background: transparent;
}

.store-product-full swiper-slide img {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 900px;
  display: block;
  object-fit: contain;
  background: transparent;
  border-radius: 16px;
  box-shadow: 
    0 8px 24px rgba(0, 0, 0, 0.6),
    0 4px 12px rgba(255, 0, 0, 0.2);
  border: 2px solid rgba(255, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Remove any red overlays from homepage slider affecting product popup */
.store-product-full .slide::before,
.store-product-full .slide::after {
  display: none !important;
}

.store-product-full .slide {
  background: transparent !important;
}

.store-product-full .slide-image {
  background: transparent !important;
}

.store-product-full .actions {
  display: flex !important;
  flex-direction: row;
  gap: 12px;
  margin-bottom: 15px;
  margin-top: 0 !important;
  padding-top: 4px !important;
  padding-bottom: 2px !important;
  opacity: 1 !important;
  height: auto !important;
  position: static !important;
  align-items: stretch;
  overflow: visible !important;
}

.store-product-full .actions .btn-primary,
.store-product-full .actions .btn-secondary {
  flex: 1 !important;
  height: auto !important;
  min-height: 40px !important;
  padding: 12px 16px !important;
  font-size: 14px !important;
  margin: 2px 0 !important;
  font-family: 'Goldman', sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: 0.3px !important;
  text-transform: none !important;
  background: rgba(26, 26, 26, 0.9) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 8px !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease !important;
  backdrop-filter: blur(10px) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
  position: relative !important;
  will-change: transform !important;
}

.store-product-full .actions .btn-primary {
  border-color: rgba(255, 0, 0, 0.4) !important;
  background: rgba(26, 26, 26, 0.95) !important;
}

.store-product-full .actions .btn-secondary {
  border-color: rgba(255, 255, 255, 0.15) !important;
  background: rgba(26, 26, 26, 0.85) !important;
}

.store-product-full .actions .btn-primary:hover,
.store-product-full .actions .btn-secondary:hover {
  background: rgba(40, 40, 40, 0.95) !important;
  color: #ffffff !important;
  border-color: rgba(255, 0, 0, 0.6) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4), 0 2px 6px rgba(255, 0, 0, 0.2) !important;
}

.store-product-full .actions .btn-primary:active,
.store-product-full .actions .btn-secondary:active {
  transform: translateY(0) !important;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3) !important;
}

/* Gift button styling */
.store-product-full .actions .gift {
  flex: none !important;
  width: 46px !important;
  height: 46px !important;
  min-height: 46px !important;
  padding: 0 !important;
  margin: 2px 0 !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
  background: rgba(26, 26, 26, 0.85) !important;
  background-color: transparent !important;
  background-image: none !important;
  position: relative !important;
  line-height: 0 !important;
  font-size: 0 !important;
  color: transparent !important;
}

.store-product-full .actions .gift::before {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 18px !important;
  height: 18px !important;
  background-color: #ffffff !important;
  mask: url("https://template-assets.tebex.io/images/gift.svg") center center / contain no-repeat !important;
  -webkit-mask: url("https://template-assets.tebex.io/images/gift.svg") center center / contain no-repeat !important;
}

.store-product-full .actions .gift {
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease !important;
  will-change: transform !important;
}

.store-product-full .actions .gift:hover {
  border-color: rgba(255, 0, 0, 0.6) !important;
  background: rgba(40, 40, 40, 0.95) !important;
  transform: translateY(-2px) !important;
}

.store-product-full .actions .gift:hover::before {
  background-color: #ffffff !important;
}

.store-product-full .actions .price {
  display: none !important;
}

.store-product-full .descr {
  line-height: 1.6;
  font-size: 16px; /* unify body size for product descriptions */
  font-family: 'Goldman', sans-serif;
  font-weight: 500;
  letter-spacing: 0.3px;
  display: block !important;
  flex: 1 1 auto;
  min-height: 0;
  max-height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  scrollbar-width: none; /* Firefox - hide scrollbar */
  -ms-overflow-style: none; /* IE and Edge - hide scrollbar */
  padding-right: 0;
  box-sizing: border-box;
}

/* Hide WebKit scrollbar for description */
.store-product-full .descr::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera - hide scrollbar */
  width: 0;
  height: 0;
}

.store-product-full .descr.text-content {
  line-height: 1.6 !important;
  font-size: 16px !important; /* match theme body size */
  font-family: 'Goldman', sans-serif !important;
  font-weight: 500 !important;
  letter-spacing: 0.3px !important;
  display: block !important;
}

.store-product-full .descr.text-content h1,
.store-product-full .descr.text-content h2,
.store-product-full .descr.text-content h3,
.store-product-full .descr.text-content h4,
.store-product-full .descr.text-content h5,
.store-product-full .descr.text-content h6 {
  position: relative;
}

.product-page-title {
  font-family: 'Goldman', sans-serif !important;
  font-size: 32px !important;
  font-weight: 900 !important;
  color: #ffffff !important;
  text-align: center !important;
  margin: 0 !important;
  padding: 8px 20px !important;
  text-shadow: 0 2px 8px rgba(255, 0, 0, 0.5), 0 4px 12px rgba(0, 0, 0, 0.5) !important;
  letter-spacing: 2px !important;
  width: auto !important;
  text-transform: uppercase !important;
}

.category-page-header {
  position: relative;
  width: 100%;
  padding: 30px 0 !important;
  margin-bottom: 20px;
  border-bottom: 2px solid rgba(255, 0, 0, 0.3);
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(40, 20, 20, 0.95));
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

.category-page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(26, 26, 26, 0.95), 
    rgba(40, 20, 20, 0.95), 
    rgba(30, 15, 15, 0.95), 
    rgba(45, 25, 25, 0.95), 
    rgba(26, 26, 26, 0.95), 
    rgba(40, 20, 20, 0.95)
  );
  animation: headerShine 8s ease-in-out infinite;
  pointer-events: none;
}

.category-page-header > * {
  position: relative;
  z-index: 1;
}

@keyframes headerShine {
  0% {
    left: -100%;
  }
  50% {
    left: 0%;
  }
  100% {
    left: -100%;
  }
}

.category-page-title {
  font-family: 'Goldman', sans-serif !important;
  font-size: 28px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  text-shadow: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.product-page-header {
  position: relative;
  width: 100%;
  padding: 20px 0 !important;
  margin-bottom: 20px;
  margin-top: 20px;
  border-bottom: 2px solid rgba(255, 0, 0, 0.5);
  border-top: 2px solid rgba(255, 0, 0, 0.5);
  background: linear-gradient(135deg, #1a1a1a, #2a1818);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  backdrop-filter: blur(10px);
}

.product-page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(135deg, 
    #1a1a1a, 
    #2a1818, 
    #1e0f0f, 
    #2d1919, 
    #1a1a1a, 
    #2a1818
  );
  animation: headerShine 8s ease-in-out infinite;
  pointer-events: none;
}

.product-page-header > * {
  position: relative;
  z-index: 1;
}

.store-product-full .descr.text-content p {
  color: #cccccc !important;
  font-family: 'Goldman', sans-serif !important;
  font-weight: 500 !important;
  letter-spacing: 0.3px !important;
  line-height: 1.6 !important;
  font-size: 16px !important;
}

.store-product-full .descr.text-content ul,
.store-product-full .descr.text-content ol {
  color: #cccccc !important;
  font-family: 'Goldman', sans-serif !important;
  font-weight: 500 !important;
  letter-spacing: 0.3px !important;
  font-size: 16px !important;
  line-height: 1.6 !important;
}

.store-product-full .descr.text-content li {
  color: #cccccc !important;
  font-family: 'Goldman', sans-serif !important;
  font-weight: 500 !important;
  letter-spacing: 0.3px !important;
  font-size: 16px !important;
  line-height: 1.6 !important;
}

/* Override all inline styles for any element within product descriptions */
.store-product-full .descr *,
.store-product-full .descr.text-content * {
  font-family: 'Goldman', sans-serif !important;
  font-size: 16px !important;
  line-height: 1.6 !important;
  letter-spacing: 0.3px !important;
}

/* Ensure spans, divs, and other inline/block elements follow the same style */
.store-product-full .descr span,
.store-product-full .descr div,
.store-product-full .descr.text-content span,
.store-product-full .descr.text-content div,
.store-product-full .descr strong,
.store-product-full .descr b,
.store-product-full .descr.text-content strong,
.store-product-full .descr.text-content b,
.store-product-full .descr em,
.store-product-full .descr i,
.store-product-full .descr.text-content em,
.store-product-full .descr.text-content i {
  font-family: 'Goldman', sans-serif !important;
  font-size: 16px !important;
  line-height: 1.6 !important;
  letter-spacing: 0.3px !important;
}

/* Features accordion styles within product descriptions */
.features-accordion {
  margin-top: 12px;
  border: none;
  border-radius: 0;
  background: transparent; /* transparent container */
  overflow: visible;
  padding-bottom: 20px; /* padding below accordion */
}
.features-accordion > summary {
  cursor: pointer;
  list-style: none;
  padding: 12px 44px 12px 16px; /* space for arrow */
  font-family: 'Goldman', sans-serif;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: #ffffff;
  text-transform: uppercase;
  background: transparent; /* transparent header */
  position: relative;
  border-bottom: none;
}
.features-accordion > summary::-webkit-details-marker { display: none; }
.features-accordion > summary::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  width: 12px;
  height: 12px;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.2s ease;
  /* down arrow using border */
  border-right: 2px solid #ff4d4d;
  border-bottom: 2px solid #ff4d4d;
  rotate: 45deg;
}
.features-accordion[open] > summary::after {
  transform: translateY(-50%) rotate(225deg); /* points up when open */
}
.features-accordion > summary:hover,
.features-accordion > summary:focus-visible {
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.25), rgba(255, 0, 0, 0.1));
}
.features-accordion[open] { border-bottom-color: rgba(255, 0, 0, 0.6); }
.features-accordion ul,
.features-accordion ol {
  padding: 12px 18px 14px 34px;
}

/* Stacked, staggered animation for feature items */
.features-accordion .features-list > li {
  opacity: 0;
  transform: translateY(-4px);
  transform-origin: top left;
  transition:
    opacity 200ms cubic-bezier(0.25, 0.1, 0.25, 1),
    transform 200ms cubic-bezier(0.25, 0.1, 0.25, 1);
  transition-delay: calc(var(--i, 0) * 30ms);
}
.features-accordion[open] .features-list > li {
  opacity: 1;
  transform: translateY(0);
}
.features-accordion.closing .features-list > li {
  /* Reverse the delay order and animate back to stacked state */
  transition-delay: calc((var(--count, 0) - var(--i, 0)) * 30ms);
  opacity: 0;
  transform: translateY(-4px);
}

/* Limit list height, scroll inside features only */
.features-accordion .features-scroll-wrap {
  position: relative;
  overflow: hidden;
  transition: height 300ms cubic-bezier(0.2, 0, 0, 1);
  will-change: height;
  contain: layout;
  transform: translateZ(0);
}
.features-accordion .features-list {
  max-height: 200px;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 40px; /* space for arrow buttons */
  position: relative;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

/* Hide scrollbar for WebKit browsers (Chrome, Safari, etc.) */
.features-accordion .features-list::-webkit-scrollbar {
  display: none;
}

/* Custom scroll arrow buttons */
.features-accordion .features-scroll-wrap .scroll-arrows {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  z-index: 10;
}

.features-accordion .scroll-arrow-btn {
  width: 24px;
  height: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  position: relative;
}

.features-accordion .scroll-arrow-btn:hover {
  background: rgba(40, 40, 40, 0.9);
  border-color: rgba(255, 0, 0, 0.6);
}

.features-accordion .scroll-arrow-btn:active {
  background: rgba(26, 26, 26, 0.95);
}

.features-accordion .scroll-arrow-btn.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

/* Arrow icons using borders */
.features-accordion .scroll-arrow-btn::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}

.features-accordion .scroll-arrow-btn.up::before {
  border-bottom: 7px solid #ff4d4d;
}

.features-accordion .scroll-arrow-btn.down::before {
  border-top: 7px solid #ff4d4d;
}

.store-product-full .image {
  max-width: 100%;
}
.store-product-full .actions .half,
.store-product-full .actions .wide {
  flex: 0 1 240px;
}
.store-product-full .price {
  margin-right: auto;
}

/* Stylized compact quantity field for store-product-full */
.store-product-full .quantity-field {
  height: 32px !important;
  border-radius: 8px;
  border: 1px solid rgba(255, 0, 0, 0.3);
  background: rgba(26, 26, 26, 0.8);
  backdrop-filter: blur(10px);
  padding: 0;
  max-width: 140px !important;
  width: auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 
    0 2px 8px rgba(0, 0, 0, 0.3),
    inset 0 1px 2px rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.store-product-full .quantity-field:hover {
  border-color: rgba(255, 0, 0, 0.5);
  box-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.4),
    0 2px 6px rgba(255, 0, 0, 0.2),
    inset 0 1px 2px rgba(255, 255, 255, 0.05);
}

.store-product-full .quantity-field .adjust {
  width: 28px !important;
  height: 100%;
  background: transparent;
  transition: all 0.2s ease;
  border-radius: 6px;
  margin: 0 2px;
}

.store-product-full .quantity-field .adjust:hover {
  background: rgba(255, 0, 0, 0.15);
}

.store-product-full .quantity-field .adjust:active {
  background: rgba(255, 0, 0, 0.25);
  transform: scale(0.95);
}

.store-product-full .quantity-field .adjust::before {
  mask-size: 12px !important;
  background-color: #ffffff;
  transition: all 0.2s ease;
}

.store-product-full .quantity-field .adjust:hover::before {
  background-color: #ff4444;
  transform: scale(1.1);
}

.store-product-full .quantity-field input[type=number] {
  min-width: 35px !important;
  height: 100%;
  font-size: 14px !important;
  font-weight: 600;
  color: #ffffff;
  background: transparent;
  border: none;
  padding: 0 8px;
  margin: 0 -8px;
  text-align: center;
}

.store-product-full .quantity-field.with-open-basket input[type=number] {
  min-width: 25px !important;
  max-width: 35px !important;
  width: auto !important;
  padding: 0 4px !important;
  margin: 0 !important;
  text-align: center !important;
}

.store-product-full .quantity-field .open-basket {
  font-size: 11px !important;
  height: 100%;
  padding: 0 4px !important;
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  border: none;
  transition: all 0.2s ease;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 1;
  text-align: center;
}

.store-product-full .quantity-field .open-basket:hover {
  color: #ff4444;
  background: rgba(255, 0, 0, 0.1);
}

.store-product-full .quantity-field .open-basket:focus ~ input[type=number],
.store-product-full .quantity-field .open-basket:hover ~ input[type=number] {
  color: #ff4444;
}

.store-product-full .quantity-field.with-open-basket {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 2px !important;
}

.store-product-full .quantity-field.with-open-basket input[type=number] {
  min-width: 25px !important;
  max-width: 35px !important;
  width: auto !important;
  padding: 0 4px !important;
  margin: 0 !important;
  text-align: center !important;
}

@media (max-width: 900px) {
  .store-product-full {
    flex-direction: column;
    gap: 20px;
  }
  
  .store-product-full .product-media-container {
    width: 100%;
  }
  
  .store-product-full .product-info-container {
    width: 100%;
  }
  
  .store-product-full .image,
  .store-product-full .media-slider {
    margin-bottom: 20px;
  }
  
  /* Keep popup layout horizontal even on small screens */
  .popup .store-product-full {
    flex-direction: row !important;
  }
}

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

.site-navigation {
  --fade-duration: 200ms;
  view-transition-name: siteNavigation;
}
@media (width <= 960px) {
  .site-navigation {
    position: fixed;
    inset: 0;
    z-index: 100000;
    padding: 0;
    background-color: #1a1a1a !important;
    background: #1a1a1a !important;
    transition: display var(--fade-duration) allow-discrete, opacity var(--fade-duration) ease;
  }
  
  body.show-navigation .site-navigation {
    background-color: #1a1a1a !important;
    background: #1a1a1a !important;
  }
  
  .site-navigation.navigation-horizontal {
    background-color: #1a1a1a !important;
    background: #1a1a1a !important;
  }
  
  body.show-navigation .site-navigation.navigation-horizontal {
    background-color: #1a1a1a !important;
    background: #1a1a1a !important;
  }
  @starting-style {
    .site-navigation {
      opacity: 0;
    }
  }
  body:not(.show-navigation) .site-navigation {
    visibility: hidden;
    opacity: 0;
  }
  
  body.show-navigation .site-navigation {
    visibility: visible !important;
    opacity: 1 !important;
    background: #1a1a1a !important;
  }
  
  .site-navigation.drawer {
    user-select: none;
  }
  .site-navigation .close-navigation {
    position: absolute;
    top: 12px;
    right: 72px;
    background-image: url("https://template-assets.tebex.io/images/close.svg");
    background-size: 24px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
  }
  
  .site-navigation .close-navigation:hover {
    background-color: rgba(255, 0, 0, 0.2);
    border-color: #ff0000;
    transform: scale(1.1);
  }
  .site-navigation .menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    inset: 0 60px 0 0;
    padding: 72px var(--widget-padding) var(--widget-padding);
    background: #1a1a1a !important;
    border-right: 2px solid rgba(255, 0, 0, 0.3);
    line-height: 24px;
    color: var(--color-text-secondary);
    font-size: 18px;
    overflow: hidden auto;
    scrollbar-width: thin;
    scrollbar-color: #ff0000 var(--color-bg);
    transition: opacity var(--fade-duration) ease, scale var(--fade-duration) ease, translate var(--fade-duration) ease;
  }
  @starting-style {
    .site-navigation .menu {
      translate: -100% 0;
    }
  }
  .site-navigation.drawer .menu::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 7px;
    bottom: 0;
    margin-block: auto;
    width: 4px;
    height: 100px;
    background: rgb(from var(--color-text-secondary) r g b/0.33);
    border-radius: 2px;
    pointer-events: none;
  }
  body:not(.show-navigation) .site-navigation .menu {
    translate: -100% 0;
  }
  .site-navigation.touching .menu {
    transition: opacity var(--fade-duration) ease, scale var(--fade-duration) ease;
  }
  body:not(.show-navigation) .site-navigation .menu {
    opacity: 0.8;
    scale: 0.95;
  }
  .site-navigation.may-close .menu {
    opacity: 0.8;
  }
  .site-navigation ul ul {
    padding-left: var(--widget-padding);
    line-height: 22px;
    font-size: 16px;
  }
  .site-navigation li {
    position: relative;
    width: 100%;
  }
  
  /* Navigation header actions styling */
  .site-navigation .nav-header-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
  }
  
  .site-navigation .nav-header-actions > * {
    width: 100%;
  }
  
  .site-navigation .nav-header-actions .btn-primary,
  .site-navigation .nav-header-actions .btn-tertiary,
  .site-navigation .nav-header-actions .log-in {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 16px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  /* Style primary buttons (Basket) - match header styles */
  .site-navigation .nav-header-actions .btn-primary {
    background: transparent !important;
    border: none !important;
    color: #ffffff !important;
    padding: 12px 16px !important;
    box-shadow: none !important;
    text-shadow: none !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    font-weight: 600 !important;
  }
  
  .site-navigation .nav-header-actions .btn-primary:hover {
    background: transparent !important;
    border: none !important;
    color: #ff0000 !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 0 #ff0000 !important;
  }
  
  /* Style login button - match header styles */
  .site-navigation .nav-header-actions .log-in {
    display: flex;
    align-items: center;
    height: auto;
    color: #ffffff !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    text-shadow: none !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    font-weight: 600 !important;
  }
  
  .site-navigation .nav-header-actions .log-in:hover {
    background: transparent !important;
    color: #ff0000 !important;
    border: none !important;
    transform: translateY(-1px);
    text-decoration: underline;
    text-decoration-color: #ff0000;
  }
  
  /* Style tertiary buttons (Discord, FAQ) - match header styles */
  .site-navigation .nav-header-actions .btn-tertiary {
    background: transparent !important;
    border: none !important;
    color: #ffffff !important;
    padding: 12px !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  
  .site-navigation .nav-header-actions .btn-tertiary:hover {
    background: transparent !important;
    border: none !important;
    color: #ff0000 !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 0 #ff0000 !important;
  }
  
  .site-navigation .nav-header-actions .btn-tertiary svg {
    width: 20px;
    height: 20px;
    fill: #ffffff !important;
  }
  
  .site-navigation .nav-header-actions .btn-tertiary:hover svg {
    fill: #ff0000 !important;
    filter: none !important;
  }
  
  .site-navigation .nav-header-actions .btn-primary svg,
  .site-navigation .nav-header-actions .log-in svg {
    width: 20px;
    height: 20px;
    fill: #ffffff !important;
  }
  
  .site-navigation .nav-header-actions .btn-primary:hover svg,
  .site-navigation .nav-header-actions .log-in:hover svg {
    fill: #ff0000 !important;
    filter: none !important;
  }
  
  .site-navigation .nav-header-actions .btn-glyph,
  .site-navigation .nav-header-actions .btn-glyph-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  
  .site-navigation .nav-header-actions .btn-glyph svg,
  .site-navigation .nav-header-actions .btn-glyph-text svg {
    width: 20px;
    height: 20px;
  }
  
  .site-navigation .nav-header-actions .currency-switcher {
    width: 100%;
  }
  
  .site-navigation .nav-header-actions .currency-switcher .header-currency {
    width: 100%;
  }
  
  .site-navigation .log-out {
    margin-top: auto;
  }
  .site-navigation .log-out a {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .site-navigation .log-out a::before {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    background-color: currentColor;
    mask: url("https://template-assets.tebex.io/images/log-out.svg") center center no-repeat;
    mask-size: contain;
  }
  .site-navigation .has-children {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .site-navigation .has-children > a {
    flex: 1 1 auto;
  }
  .site-navigation .has-children .toggle {
    background-image: url("https://template-assets.tebex.io/images/chevron.svg");
    background-size: 20px;
    transition: rotate 0.15s ease-in-out;
  }
  .site-navigation .has-children.expanded > .toggle {
    rotate: 180deg;
  }
  .site-navigation .has-children > ul {
    width: 100%;
  }
  .site-navigation .has-children:not(.expanded) > ul {
    display: none;
  }
  .site-navigation a {
    display: block;
    padding: 11px 0;
    transition: color 0.15s ease-in-out;
    color: rgba(255, 255, 255, 0.9);
  }
  .site-navigation a:hover {
    color: #ff0000 !important;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
  }
  .site-navigation a.active {
    color: #ff0000 !important;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
  }
  .site-navigation ul ul a {
    padding: 8px 0;
  }
}

/* Header Layout with Integrated Navigation */
.site-header-inner {
  display: flex;
  flex-direction: column;
  gap: calc(var(--widget-padding) / 8);
  padding: calc(var(--widget-padding) / 8) var(--content-padding);
  background: transparent;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: calc(var(--widget-padding) / 8);
}

.header-navigation {
  flex: 1;
}

.header-menu {
  display: flex;
  align-items: center;
  gap: calc(var(--widget-padding) / 6);
  margin: 0;
  padding: 0;
  list-style: none;
}

.header-menu > li {
  position: relative;
}

.header-menu > li > a {
  display: block;
  padding: 6px calc(var(--widget-padding) / 4);
  color: var(--color-text);
  text-decoration: none;
  font-family: 'Goldman', sans-serif !important;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}

.header-menu > li > a:hover,
.header-menu > li > a.link-active {
  color: #ff0000;
  text-decoration: underline;
  text-decoration-color: #ff0000;
  transition: all 0.3s ease-in-out;
}

.header-menu .has-children {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-menu .has-children > a {
  padding-right: 0;
}

.header-menu .has-children .toggle {
  flex: none;
  width: 28px;
  height: 28px;
  background-color: transparent;
  background-image: url("https://template-assets.tebex.io/images/chevron.svg");
  background-size: 20px;
  transition: rotate 0.15s ease-in-out;
}

.header-menu .has-children:hover > .toggle {
  rotate: 180deg;
}

.header-menu .has-children > ul {
  position: absolute;
  top: calc(100% - var(--widget-padding) / 2);
  left: 0;
  width: max-content;
  padding: calc(var(--widget-padding) / 2) 0;
  background: rgb(from var(--color-brighter-bg) r g b/0.7);
  backdrop-filter: blur(10px);
  transition: all 0.15s ease-in-out;
  line-height: 24px;
  font-size: 16px;
  font-weight: 400;
  list-style: none;
  margin: 0;
}

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

.header-menu .has-children > ul > li > a {
  width: 100%;
  max-width: 24ch;
  padding: 4px calc(var(--widget-padding) / 2);
  transition: all 0.15s ease-in-out;
  color: var(--color-text);
  text-decoration: none;
}

.header-menu .has-children > ul > li > a:hover,
.header-menu .has-children > ul > li > a.link-active {
  color: var(--color-bg);
  background-color: #ff0000;
}

@media (width > 960px) {
  .site-header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: auto;
    padding: calc(var(--widget-padding) / 12) var(--content-padding);
  }
  
  .header-main {
    flex: 1;
    order: 1;
    display: flex !important;
  }
  
  .site-header-inner .actions {
    position: static;
    order: 0;
  }
  
  .site-header-inner .user-actions,
  .site-header-inner .log-in {
    position: static;
    order: 2;
  }
  
  .site-header-inner .info {
    position: static;
    order: 3;
    margin: 0;
    max-width: none;
    width: auto;
    display: block !important;
  }
  
  /* Hide the drawer navigation on desktop */
  .site-navigation.drawer {
    display: none !important;
  }
}

/* Horizontal Navigation Styles - HIDE on desktop, only use header navigation */
.site-navigation.navigation-horizontal {
  display: none !important;
}

.site-navigation.navigation-horizontal .menu {
  display: flex;
  align-items: center;
  gap: calc(var(--widget-padding) / 2);
  margin: 0;
  padding: 0;
  background: none;
  line-height: 28px;
  font-size: 18px;
  font-weight: 700;
}

.site-navigation.navigation-horizontal .menu > li {
  position: relative;
  width: auto;
}

.site-navigation.navigation-horizontal .menu > li > a {
  display: block;
  padding: 14px calc(var(--widget-padding) / 2);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 18ch;
  transition: color 0.15s ease-in-out;
}

.site-navigation.navigation-horizontal .menu > li > a:hover,
.site-navigation.navigation-horizontal .menu > li > a.link-active {
  color: red;
}

.site-navigation.navigation-horizontal .has-children {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-navigation.navigation-horizontal .has-children > a {
  padding-right: 0;
}

.site-navigation.navigation-horizontal .has-children .toggle {
  flex: none;
  width: 28px;
  height: 28px;
  background-color: transparent;
  background-image: url("https://template-assets.tebex.io/images/chevron.svg");
  background-size: 20px;
  transition: rotate 0.15s ease-in-out;
}

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

.site-navigation.navigation-horizontal .has-children > ul {
  position: absolute;
  top: calc(100% - var(--widget-padding) / 2);
  left: 0;
  width: max-content;
  padding: calc(var(--widget-padding) / 2) 0;
  background: rgb(from var(--color-brighter-bg) r g b/0.7);
  backdrop-filter: blur(10px);
  transition: all 0.15s ease-in-out;
  line-height: 24px;
  font-size: 16px;
  font-weight: 400;
}

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

.site-navigation.navigation-horizontal .has-children > ul > li > a {
  width: 100%;
  max-width: 24ch;
  padding: 4px calc(var(--widget-padding) / 2);
  transition: all 0.15s ease-in-out;
}

.site-navigation.navigation-horizontal .has-children > ul > li > a:hover,
.site-navigation.navigation-horizontal .has-children > ul > li > a.link-active {
  color: var(--color-bg);
  background-color: #ff0000;
}


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

.widget {
  padding: var(--widget-padding);
  background: #1a0000;
  border: 2px solid #ff0000;
  border-radius: 8px;
  margin-bottom: var(--widget-padding);
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

.widget h1,
.widget h2,
.widget h3,
.widget h4,
.widget h5,
.widget h6 {
  color: #ff0000;
  font-family: 'Goldman', sans-serif;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.widget + .widget {
  margin-top: var(--widget-padding);
}

.widget-title {
  margin-bottom: var(--widget-padding);
  font-size: 20px;
  font-weight: 700;
  color: #ff0000;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

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

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

.widget-recent .purchase {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  margin-bottom: 12px;
  line-height: 1.4;
  padding: 12px 16px;
}
.widget-recent .avatar {
  flex: none;
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  align-self: center;
}
.widget-recent .username {
  font-weight: 700;
}
.widget-recent .empty {
  text-align: center;
}
.widget-recent time {
  opacity: 0.5;
  font-size: 0.9em;
}
.widget-recent .sep {
  margin: 0 0.3em;
}

.widget-top-donator .avatar {
  margin: 0 auto 12px;
  width: 96px;
  height: 96px;
  object-fit: contain;
  border-radius: 50%;
}
.widget-top-donator .username {
  margin-bottom: 6px;
  font-weight: 700;
  font-size: 18px;
}
.widget-top-donator .empty {
  text-align: center;
}

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

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

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

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

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

/* Content Section Styles */
.content-section {
  background: #1a0000;
  border: 2px solid #ff0000;
  border-radius: 8px;
  padding: 40px;
  margin: 10px 0 40px 0;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

.content-section h2 {
  color: #ff0000;
  font-family: 'Goldman', sans-serif;
  font-size: 32px;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-align: center;
}

.content-section p {
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.feature-item {
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid rgba(255, 0, 0, 0.3);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
}

.feature-item h3 {
  color: #ff0000;
  font-family: 'Goldman', sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
  margin-bottom: 10px;
}

.feature-item p {
  color: #ccc;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.modules-section {
  margin-top: 40px;
  padding-top: 40px;
}

.modules-section .widget {
  background: #1a0000;
  border: 2px solid #ff0000;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

.modules-section .widget-title {
  color: #ff0000;
  font-family: 'Goldman', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.modules-section .widget-text .text-content {
  color: #ccc;
  line-height: 1.6;
}

.modules-section .widget-text .text-content p {
  margin-bottom: 15px;
  font-size: 16px;
}

.modules-section .widget-text .text-content p:last-child {
  margin-bottom: 0;
}

.modules-section .widget-recent .purchases {
  display: flex;
  flex-direction: row;
  gap: 15px;
  overflow: hidden;
  padding: 10px 0;
  position: relative;
  height: 80px;
}

.modules-section .widget-recent .purchases-slider {
  display: flex;
  flex-direction: row;
  gap: 15px;
  animation: slidePayments 30s linear infinite;
  width: max-content;
}

.modules-section .widget-recent .purchases:hover .purchases-slider {
  animation-play-state: paused;
}

.modules-section .widget-recent .purchase {
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid rgba(255, 0, 0, 0.3);
  border-radius: 4px;
  padding: 12px 16px;
  min-width: 200px;
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.4;
}

.modules-section .widget-recent .username {
  color: #fff;
  font-weight: 600;
  margin-bottom: 5px;
}

.modules-section .widget-recent time {
  color: #ccc;
  font-size: 12px;
}

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

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

.popup-content {
  position: relative;
  width: 100%;
  max-width: 550px;
  padding: var(--widget-padding);
  background: var(--color-brighter-bg);
  transition: translate var(--fade-duration) ease, opacity var(--fade-duration) ease;
}

/* Give more space to store product popups */
.popup:has(.store-product),
.popup.store-product {
  max-width: 95vw !important;
  width: 95vw !important;
}

.popup:has(.store-product-full),
.popup.store-product .store-product-full {
  margin: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}

/* Reduce padding for product popup container to maximize space */
.popup:has(.store-product) .popup-scroll-cont,
.popup.store-product .popup-scroll-cont {
  padding: 20px !important;
}

.popup:has(.store-product) .popup-content,
.popup.store-product .popup-content {
  padding: 30px !important;
}

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

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

.store-product-popup-content {
  max-width: 1200px;
  background: #1a1a1a !important;
  border: 2px solid #ff0000;
  border-radius: 16px !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8) !important;
  overflow: hidden !important;
}

/* Constrain full product layout height within the popup viewport - FIXED HEIGHT, NEVER CHANGES */
.popup .store-product-popup-content.store-product.store-product-full {
  height: min(85vh, 800px) !important;
  max-height: min(85vh, 650px) !important;
  min-height: min(85vh, 650px) !important;
  overflow: hidden !important;
}

/* Override for product popup background */
.popup:has(.store-product-popup-content) .popup-content,
.popup.store-product .popup-content {
  background: #1a1a1a !important;
  border: 2px solid #ff0000;
  border-radius: 16px !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8) !important;
  max-width: 1200px !important;
  overflow: hidden !important;
}

.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: 480px;
  padding-bottom: calc(var(--widget-padding) - 12px);
  background: #1a1a1a !important;
  border: 1px solid #333333 !important;
  border-radius: 8px !important;
}

/* Login popup theme styling */
.login-popup-content h1,
.login-popup-content h2,
.login-popup-content h3,
.login-popup-content h4,
.login-popup-content h5,
.login-popup-content h6 {
  font-family: 'Goldman', sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  color: #ff0000 !important;
  text-align: center !important;
}

.login-popup-content .store-form {
  font-family: 'Goldman', sans-serif !important;
}

.login-popup-content .store-form input[type=text],
.login-popup-content .store-form input[type=password],
.login-popup-content .store-form input[type=email] {
  background: #2a2a2a !important;
  border: 1px solid #333333 !important;
  border-radius: 6px !important;
  color: #ffffff !important;
  font-family: 'Goldman', sans-serif !important;
  font-weight: 500 !important;
  letter-spacing: 0.3px !important;
  padding: 12px 16px !important;
  transition: all 0.2s ease !important;
}

.login-popup-content .store-form input[type=text]:focus,
.login-popup-content .store-form input[type=password]:focus,
.login-popup-content .store-form input[type=email]:focus {
  border-color: #ff0000 !important;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.3) !important;
  outline: none !important;
}

/* Login popup specific enhancements */
.login-popup-content .store-form .btn-primary {
  padding: 16px 32px !important;
  font-size: 16px !important;
  min-width: 200px !important;
  height: auto !important;
  line-height: 1.2 !important;
}

.login-popup-content .store-form .actions {
  justify-content: center !important;
  margin-top: 24px !important;
}

.login-popup-content .store-form p {
  color: #cccccc !important;
  font-family: 'Goldman', sans-serif !important;
  font-weight: 500 !important;
  letter-spacing: 0.3px !important;
  text-align: center !important;
}

.login-popup-content .popup-close {
  background-color: rgba(255, 0, 0, 0.1) !important;
  border-radius: 50% !important;
}

.login-popup-content .popup-close:hover {
  background-color: rgba(255, 0, 0, 0.2) !important;
}

.basket {
  position: relative;
  z-index: 1001;
}
.site-content .basket {
  display: none;
}
.basket .basket-empty {
  margin: auto;
  text-align: center;
  font-size: 18px;
}
.basket .basket-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 50px var(--content-padding) 30px;
  font-size: 22px;
  font-weight: 600;
  background: rgba(40, 40, 40, 0.5);
}
@media (width > 960px) {
  .basket .basket-header {
    padding-top: 70px;
  }
}
.basket .basket-title {
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
}
.basket .basket-title::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background-color: var(--color-text);
  mask: url("https://template-assets.tebex.io/images/user.svg") center center no-repeat;
  mask-size: contain;
}
.basket .basket-second-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px var(--content-padding);
  background: var(--color-brighter-bg);
  background: rgb(from var(--color-brighter-bg) r g b/0.9);
  font-size: 18px;
  font-weight: 300;
  text-align: center;
}
.basket .basket-second-header .total {
  font-size: 14px;
}
.basket .basket-second-header .total strong {
  font-size: 18px;
  font-weight: inherit;
}
.basket .basket-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);
}
.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;
  object-fit: contain;
}
.basket .basket-item .title {
  font-size: 20px;
  font-weight: 600;
}
.basket .basket-item .price {
  color: #cccccc !important;
  font-size: 14px;
}
.basket .basket-item .price strong {
  font-size: 18px;
  font-weight: inherit;
  color: #cccccc !important;
}
.basket .basket-item .quantity-field {
  height: 40px;
}
.basket .basket-item .remove {
  width: 40px;
  height: 40px;
  background: transparent !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 6px !important;
}
.basket .basket-item .remove::before {
  mask-image: url("https://template-assets.tebex.io/images/delete.svg");
  background-color: #ffffff !important;
  width: 20px !important;
  height: 20px !important;
}
.basket .basket-item .remove:hover {
  background: rgba(255, 0, 0, 0.1) !important;
  border-color: #ff0000 !important;
  transform: translateY(-1px);
}
.basket .basket-item .remove:hover::before {
  background-color: #ff0000 !important;
}
.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;
  color: #ffffff !important;
}
.basket .basket-checkout .total {
  color: #ffffff !important;
  font-size: 16px;
  font-weight: 400;
}
.basket .basket-checkout .total strong {
  font-size: 24px;
  font-weight: inherit;
  color: #ffffff !important;
}
.basket .basket-checkout .checkout {
  width: 100%;
}

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

.basket-popup-content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 520px;
  height: 100vh;
  height: 100dvh;
  padding: 0;
  background: var(--color-bg);
  transition: translate var(--fade-duration) ease-in-out;
}

/* Hide category header and main wrapper in popup */
.basket-popup .category-page-header,
.basket-popup .store-products {
  display: none !important;
}

/* Show basket header in popup */
.basket-popup .basket-header {
  display: flex !important;
}

/* Hide category header and main wrapper when basket is in popup context */
.basket-popup-content .category-page-header,
.basket-popup-content .store-products {
  display: none !important;
}

/* Show basket header in popup context */
.basket-popup-content .basket-header {
  display: flex !important;
}
@starting-style {
  .basket-popup-content {
    translate: 100% 0;
  }
}
:root .basket-popup[hidden] .basket-popup-content {
  translate: 100% 0;
}
.basket-popup-content.updating {
  pointer-events: none;
}
.basket-popup-content.updating::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: 10;
  margin: auto;
  width: 38px;
  height: 38px;
  background: url("https://template-assets.tebex.io/images/loading.svg") center center no-repeat;
  background-size: contain;
}
.basket-popup-content.updating > * {
  filter: grayscale(100%);
}

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

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

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

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

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

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

.store-product-tiered {
  --border-color: rgb(from var(--color-text) r g b / .1);
  --primary-color: rgb(from var(--color-primary) r g b / .25);
  display: grid;
  grid-row: span 4;
  grid-template-rows: subgrid;
  gap: var(--gap);
  padding: var(--gap);
}
.store-product-tiered.store-product-cta {
  background-image: linear-gradient(to bottom, transparent 67%, var(--primary-color));
}
.store-product-tiered .image {
  margin: auto;
  max-width: 100%;
  object-fit: contain;
}
.store-product-tiered .product-title {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}
.store-product-tiered .countdown {
  display: block;
  margin-top: 4px;
  color: var(--color-removed);
  font-size: 0.75em;
  font-variant-numeric: tabular-nums;
}
.store-product-tiered .countdown::before {
  content: "";
  display: inline-block;
  vertical-align: -0.15em;
  margin-right: 0.25em;
  width: 1em;
  height: 1em;
  background-color: currentColor;
  mask: url("https://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: #cccccc !important;
  font-family: 'Goldman', sans-serif !important;
  font-size: 16px !important;
  line-height: 1.6 !important;
  font-weight: 500 !important;
  letter-spacing: 0.3px !important;
}

/* Override all inline styles for tiered product descriptions */
.store-product-tiered .descr * {
  font-family: 'Goldman', sans-serif !important;
  font-size: 16px !important;
  line-height: 1.6 !important;
  letter-spacing: 0.3px !important;
  font-weight: 500 !important;
}
.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%;
}