/* ========================================
   FLOATING DISCORD WIDGET
   ======================================== */
/* ================================================
   FLOATING DISCORD WIDGET - Frosted Glass Design
   ================================================ */

.floating-discord-widget {
  position: fixed !important;
  bottom: 24px !important;
  right: 24px !important;
  width: 320px !important;
  max-width: calc(100vw - 48px) !important;
  z-index: 100001 !important;
  padding: 20px;
  background: rgba(15, 23, 42, 0.3);
  backdrop-filter: blur(80px);
  -webkit-backdrop-filter: blur(80px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.25),
    0 2px 8px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  animation: discord-slide-up 0.4s cubic-bezier(0.16, 1, 0.3, 1) 2s both;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.floating-discord-widget.hidden {
  opacity: 0 !important;
  transform: translateY(16px) !important;
  pointer-events: none !important;
  transition: opacity 0.3s ease, transform 0.3s ease !important;
}

@keyframes discord-slide-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Close button */
.discord-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.15s ease;
  z-index: 10;
  pointer-events: auto;
}

.discord-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
}

.discord-close svg {
  width: 16px;
  height: 16px;
}

/* Header */
.discord-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  padding-right: 28px;
}

.discord-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #5865F2;
  border-radius: 12px;
  flex-shrink: 0;
}

.discord-icon svg {
  width: 22px;
  height: 22px;
  color: #ffffff;
}

.discord-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.discord-title {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.3;
}

.discord-subtitle {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.3;
}

.discord-subtitle strong {
  color: #7DD3FC;
  font-weight: 600;
}

/* Perks list */
.discord-perks {
  list-style: none;
  margin: 0 0 18px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.discord-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}

.discord-perks li svg {
  width: 14px;
  height: 14px;
  color: #7DD3FC;
  flex-shrink: 0;
}

/* CTA Button */
.discord-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 16px;
  background: #5865F2;
  border: none;
  border-radius: 10px;
  color: white;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.15s ease;
}

.discord-btn:hover {
  background: #4752C4;
  transform: translateY(-1px);
}

.discord-btn svg {
  width: 18px;
  height: 18px;
}

/* Mobile styles */
@media (max-width: 480px) {
  .floating-discord-widget {
    bottom: 16px !important;
    right: 16px !important;
    left: 16px !important;
    width: auto !important;
    padding: 18px;
  }

  .discord-header {
    gap: 12px;
    margin-bottom: 14px;
  }

  .discord-icon {
    width: 40px;
    height: 40px;
  }

  .discord-icon svg {
    width: 20px;
    height: 20px;
  }

  .discord-title {
    font-size: 14px;
  }

  .discord-subtitle {
    font-size: 12px;
  }

  .discord-perks {
    gap: 8px;
    margin-bottom: 16px;
  }

  .discord-perks li {
    font-size: 12px;
    gap: 8px;
  }

  .discord-perks li svg {
    width: 12px;
    height: 12px;
  }

  .discord-btn {
    padding: 11px 14px;
    font-size: 13px;
  }

  .discord-btn svg {
    width: 16px;
    height: 16px;
  }
}

/* Hero image responsive tweaks for SVG */
.hero-section .hero-image-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-section .hero-image {
  max-width: 100%;
  height: auto;
}

/* Modern Minimalist Design Styles */

/* Header Styles - High Specificity Overrides */
#header.site-header .site-header-inner,
.site-header .site-header-inner {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 20px var(--content-padding) !important;
  position: relative !important;
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
  flex-wrap: nowrap !important;
  gap: 0 !important;
  height: auto !important;
  min-height: auto !important;
}

.header-logo {
  flex-shrink: 0 !important;
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.header-logo .site-title {
  margin: 0 !important;
  font-size: 24px !important;
  font-weight: 700 !important;
  width: auto !important;
  line-height: normal !important;
  text-align: left !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.header-logo .site-title a {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  text-decoration: none !important;
}

.header-logo .site-title img {
  max-height: 55px !important;
  width: auto !important;
  margin: 0 !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Override original Tebex styles for all screen sizes */
.site-header-inner .site-title {
  position: relative !important;
  inset: auto !important;
  margin: 0 !important;
  width: auto !important;
  height: auto !important;
  line-height: normal !important;
  font-size: 24px !important;
  font-weight: 700 !important;
  text-align: left !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.site-header-inner .site-title img {
  margin: 0 !important;
  max-width: none !important;
  max-height: 55px !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Currency Selector Styles */
.currency-selector {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--color-text);
  font-weight: 500;
  cursor: pointer;
  padding: 12px 14px !important;
  border-radius: 6px;
  transition: background-color 0.2s;
  isolation: isolate;
  /* Create stacking context for backdrop-filter */
}

.currency-selector:hover {
  background: rgba(0, 0, 0, 0.05);
}

/* Currency dropdown with cross-browser backdrop-filter support */
.currency-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.25);
  /* More solid background as fallback */
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  transition: all 0.2s;
  will-change: transform, opacity;
  /* Optimize for animations */
}

/* Fallback for browsers that don't support backdrop-filter */
@supports not (backdrop-filter: blur(10px)) {
  .currency-dropdown {
    background: rgba(255, 255, 255, 0.9) !important;
    /* Solid background fallback */
  }
}

.currency-selector.active .currency-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.currency-option {
  color: #fff !important;
  padding: 10px 16px;
  border-radius: 8px;
  margin: 4px;
  transition: background-color 0.2s;
}

.currency-option:hover {
  background: rgba(255, 255, 255, 0.1) !important;
}

.currency-option.selected {
  background: rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
}

/* Navigation Badge */
.menu-item-with-badge {
  position: relative;
}

.badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--color-primary);
  color: var(--color-primary-text);
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 10px;
  font-weight: 600;
}

.chevron-down {
  color: var(--color-text);
}

/* FiveM Login Button - Override with glassmorphism */
.fivem-login {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: rgba(255, 255, 255, 0.1) !important;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px) !important;
  color: white !important;
  padding: 12px 12px !important;
  border-radius: 12px !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  border: none !important;
}

.fivem-login:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  color: white !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
}

.fivem-icon {
  color: white;
}

.header-navigation {
  flex: 1 !important;
  display: flex !important;
  justify-content: flex-end !important;
  margin: 0 40px !important;
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  min-width: 0 !important;
  max-width: none !important;
}

.header-actions {
  flex-shrink: 0 !important;
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Header Discord round button */
.header-discord-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #ffffff;
  color: #000000;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.2s ease;
  position: relative;
}

.header-discord-btn:hover svg {
  width: 26px !important;
  height: 26px !important;
}

.header-discord-btn svg {
  width: 24px !important;
  height: 24px !important;
  color: #000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease;
}

/* ==========================
   Tebex Login Popup (Discord)
   ========================== */

/* Popup card */
.login-popup .popup-content.login-popup-content {
  max-width: 540px !important;
  width: calc(100% - 32px) !important;
  margin: 48px auto !important;
  border-radius: 16px !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35) !important;
  padding: 28px 28px 24px 28px !important;
  color: #e6e8ee !important;
}

/* Login popup title and subtitle */
.login-popup .popup-content h1,
.login-popup .popup-content h2 {
  margin: 0 0 8px 0 !important;
  font-size: 24px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
}

.login-popup .popup-content .login-subtitle {
  margin: 0 0 24px 0 !important;
  color: #d2d6e6 !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
}

/* Center the FiveM login button */
.login-popup .popup-content .btn-primary {
  margin: 10px 0 0 0 auto !important;
  display: flex !important;
  max-width: 200px !important;
  align-items: center !important;
  justify-content: center !important;
  color: #001f4d !important;
}

/* FiveM logo in login button */
.login-popup .popup-content .btn-primary::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 256 256'%3E%3Cpath d='M26.667 240 48 181.333l64-64L80 240zM133.333 96 176 240h53.333L170.667 64zM85.648 75.54 106.667 16h42.666zm-28.416 79.136 65.435-64.01V80L61.76 142.224zm23.525-67.056-11.424 29.712 89.195-86.8-4.832-13.584zm46.88-12.661 2.374 8.379 35.008-34.39-2.966-7.872z' fill='%23001f4d' stroke-miterlimit='10' font-family='none' font-weight='none' font-size='none' text-anchor='none' style='mix-blend-mode:normal'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Ensure the button field is also centered */
.login-popup .popup-content .field {
  margin: 0 auto !important;
  text-align: left !important;
}

.popup-content .popup-close {
  position: absolute !important;
  top: 2px !important;
  right: 2px !important;
  border: none !important;
  color: #c8cbd4 !important;
  border-radius: 10px !important;
}

.popup-content .popup-close.loading {
  background: transparent !important;
  color: transparent !important;
}

.popup-content .popup-close.loading::before {
  display: none !important;
}

.popup {
  background: rgba(0, 0, 0, 0.5) !important;
  -webkit-backdrop-filter: blur(60px);
  backdrop-filter: blur(20px) !important;
}

.product-options-popup .popup-content.store-product-options {
  max-width: 480px !important;
  width: calc(100% - 32px) !important;
  margin: 48px auto !important;
  border-radius: 16px !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35) !important;
  padding: 32px !important;
  color: #e6e8ee !important;
}

.discord-flow .actions {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 14px !important;
}

/* Custom Discord connect card */
.discord-connect-card {
  display: flex !important;
  flex-direction: column !important;
  gap: 18px !important;
  align-items: center !important;
  text-align: center !important;
}

.discord-connect-card .discord-title {
  color: #fff !important;
  margin: 0 !important;
  font-size: 28px !important;
  font-weight: 700 !important;
}

.discord-connect-card .discord-subtitle {
  margin: 0 0 12px 0 !important;
  color: #d2d6e6 !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  max-width: 400px !important;
}

.discord-benefits-container {
  display: flex !important;
  width: 100% !important;
  max-width: 520px !important;
  margin: 0 auto !important;
  align-items: center !important;
  justify-content: center !important;
}

.discord-benefits {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: grid !important;
  gap: 8px !important;
  justify-items: start !important;
  text-align: left !important;
}

.discord-benefits li {
  display: grid !important;
  grid-template-columns: 24px 1fr !important;
  align-items: center !important;
  gap: 16px !important;
  font-size: 15px !important;
}

.discord-benefits .check {
  width: 26px !important;
  height: 26px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 999px !important;
  background: transparent !important;
  border: 1.7px solid rgba(244, 245, 255, 0.97) !important;
}

.discord-benefits .check svg {
  width: 12px !important;
  height: 12px !important;
  fill: rgba(244, 245, 255, 0.97) !important;
}

.discord-benefits .check svg path:last-child {
  fill: rgba(244, 245, 255, 0.97) !important;
}

.discord-connect-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 4px !important;
  padding: 12px 60px !important;
  border-radius: 10px !important;
  background: #ffffff !important;
  color: #22254a !important;
  text-decoration: none !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  transition: transform 0.15s ease, box-shadow 0.15s ease !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  margin-top: 40px !important;
}

.discord-connect-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25) !important;
}

.discord-connect-btn svg {
  width: 24px !important;
  height: 24px !important;
  color: #22254a !important;
}

.discord-skip {
  margin-top: 20px !important;
  display: block !important;
  text-align: center !important;
  color: #b1b4c3 !important;
  text-decoration: none !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  margin-bottom: 5px !important;
  cursor: pointer !important;
}

.discord-skip:hover {
  color: #cfd3e3 !important;
}

/* Skip button loading state */
.skip-loading {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 12px !important;
  text-align: center !important;
}

.skip-loading .android-progress {
  position: relative;
  width: 24px;
  height: 24px;
}

.skip-loading .android-progress-ring {
  width: 24px;
  height: 24px;
  border: 2px solid rgba(244, 245, 255, 0.2);
  border-top: 2px solid #4ade80;
  border-radius: 50%;
  animation: android-spin 1s linear infinite;
}

.loading-text {
  color: #d2d6e6 !important;
  font-size: 14px !important;
  font-weight: 500 !important;
}

/* Discord success card styling */
.discord-success-card {
  background: rgba(15, 17, 24, 0.2) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(244, 245, 255, 0.1) !important;
  border-radius: 16px !important;
  padding: 40px !important;
  margin-bottom: 30px !important;
  text-align: center !important;
}

.discord-success-card .discord-title {
  font-size: 28px !important;
  font-weight: 600 !important;
  color: #4ade80 !important;
  margin: 0 0 16px 0 !important;
}

.discord-success-card .discord-subtitle {
  font-size: 15px !important;
  color: #d2d6e6 !important;
  margin: 0 0 24px 0 !important;
  max-width: 400px !important;
  margin: 0 auto 24px auto !important;
}

/* Circular progress indicator styling */
.redirect-progress {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.circular-progress {
  position: relative;
  width: 60px;
  height: 60px;
}

.progress-ring {
  transform: rotate(-90deg);
}

.progress-ring-circle-bg {
  fill: none;
  stroke: rgba(244, 245, 255, 0.1) !important;
}

.progress-ring-circle {
  fill: none;
  stroke: #4ade80 !important;
  stroke-linecap: round !important;
  stroke-dasharray: 150.8 !important;
  stroke-dashoffset: 0 !important;
  animation: progress-complete 0.8s ease-out, progress-rotate 1s linear infinite !important;
}

.progress-text {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  animation: checkmark-appear 0.5s ease-out 0.3s both !important;
}

.progress-text svg {
  width: 24px !important;
  height: 24px !important;
  fill: #4ade80 !important;
}

@keyframes progress-complete {
  0% {
    stroke-dashoffset: 150.8;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes checkmark-appear {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
  }

  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes android-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


.header-actions .log-in,
.header-actions .user-actions {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
}

/* Login button specific padding */
.header-actions .log-in {
  padding: 8px 20px !important;
}

.mobile-menu-toggle {
  display: none !important;
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
}

/* Header Menu Styles */
.header-menu {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.header-menu li {
  margin: 0;
}

.header-menu a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  font-size: 17px !important;
  transition: color 0.2s ease;
  padding: 8px 0;
  position: relative;
  white-space: nowrap;
}

.header-menu a:hover,
.header-menu a.link-active {
  background: rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(5px) !important;
  border-radius: 12px;
  padding: 12px 16px;
  margin: -12px -16px;
}

.header-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.2s ease;
}

.header-menu a:hover::after,
.header-menu a.link-active::after {
  width: 0;
}

/* Navigation Styles */
.navigation-horizontal .menu {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navigation-horizontal .menu>li>a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.2s ease;
  padding: 8px 0;
  position: relative;
}

.navigation-horizontal .menu>li>a:hover,
.navigation-horizontal .menu>li>a.link-active {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10.5px) !important;
  border-radius: 12px;
  padding: 12px 12px;
  margin: -12px -12px;
}

.navigation-horizontal .menu>li>a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.2s ease;
}

.navigation-horizontal .menu>li>a:hover::after,
.navigation-horizontal .menu>li>a.link-active::after {
  width: 0;
}

/* Hero Section */
.hero-section {
  padding: 110px 0 60px 0;
  background: transparent;
  position: relative;
  overflow: hidden;
  color: var(--color-text);
  width: 100%;
  max-width: none;
}

/* Reduce top gap when the sale banner is visible */
body.spring-sale-on .hero-section {
  padding-top: 40px;
}

.hero-section::before {
  display: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: none;
  width: 100%;
  margin: 0;
  position: relative;
  z-index: 1;
  padding: 0 40px;
}

.hero-title {
  font-size: 72px;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 12px 0;
  background: linear-gradient(135deg, #fff 0%, #e5e5e5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 24px 0;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.01);
  color: var(--color-text);
  padding: 4px 4px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
  border: 1px solid white !important;
}

.hero-badge-icon {
  width: 22px;
  height: 22px;
  background-color: white;
  border-radius: 50%;
  padding: 2px;
  align-items: center;
  justify-content: center;
  display: flex;
}

.hero-badge span {
  font-size: 13px !important;
  margin-right: 10px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn-with-icon {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 12px 24px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: all 0.2s !important;
}

.btn-primary.btn-with-icon {
  background: var(--color-primary) !important;
  color: var(--color-primary-text) !important;
}

.btn-primary.btn-with-icon:hover {
  background: var(--color-primary-hover) !important;
  transform: scale(1.05) !important;
}

.btn-secondary.btn-with-icon {
  background: rgba(255, 255, 255, 0.1) !important;
  color: var(--color-text) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  backdrop-filter: blur(7px) !important;
}

.btn-secondary.btn-with-icon:hover {
  background: rgba(255, 255, 255, 0.2) !important;
  transform: scale(1.05) !important;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-image-container {
  position: relative;
  width: 100%;
  max-width: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: none !important;
  transition: transform 0.3s ease;
  display: none;
}

/* Ensure hero SVG fits without affecting layout */
.hero-section .hero-visual .hero-image-container {
  width: 100%;
  max-width: clamp(320px, 46vw, 720px);
  overflow: visible;
}

.hero-section .hero-visual .hero-image {
  display: block !important;
  width: 100%;
  height: auto;
  max-height: 486px;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .hero-section .hero-visual .hero-image-container {
    max-width: clamp(240px, 42vw, 440px);
  }

  .hero-section .hero-visual .hero-image {
    max-height: 324px;
  }
}

@media (max-width: 768px) {
  .hero-section .hero-visual .hero-image-container {
    max-width: clamp(220px, 80vw, 380px);
  }

  .hero-section .hero-visual .hero-image {
    max-height: 234px;
  }
}

/* Featured Section */
.featured-section {
  padding: 60px var(--content-padding);
  background: transparent !important;
  width: 100%;
  max-width: 100%;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-size: 36px !important;
  font-weight: 700;
  margin: 0 0 16px 0;
  color: var(--color-text);
}

.section-subtitle {
  font-size: 18px;
  color: var(--color-text-secondary);
  margin: 0;
}

.featured-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.featured-section-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  padding-top: 20px;
}

.view-all-btn {
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

.view-all-btn.btn-with-icon {
  padding: 12px 32px !important;
}

.view-all-btn .arrow-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.view-all-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.featured-product-card {
  background: rgba(255, 255, 255, 0.05) !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
}

/* Gradient top accent line */
.featured-product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #38b6ff, #7dd3fc, #38b6ff);
  opacity: 0.6;
  z-index: 2;
  transition: opacity 0.4s ease;
}

.card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.featured-product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 182, 255, 0.25) !important;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(56, 182, 255, 0.08);
}

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

.product-image {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

/* Zoom animation removed */

/* Package Tags */
.package-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 8px;
}

.package-tag {
  padding: 5px 10px;
  border-radius: 14px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
}

.package-tag-blue {
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
  border-color: rgba(59, 130, 246, 0.3);
}

.package-tag-orange {
  background: rgba(249, 115, 22, 0.15);
  color: #f97316;
  border-color: rgba(249, 115, 22, 0.3);
}

.package-tag-peach {
  background: rgba(236, 72, 153, 0.15);
  color: #ec4899;
  border-color: rgba(236, 72, 153, 0.3);
}

.package-tag-yellow {
  background: rgba(234, 179, 8, 0.15);
  color: #eab308;
  border-color: rgba(234, 179, 8, 0.3);
}

.package-tag-green {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  border-color: rgba(34, 197, 94, 0.3);
}

.package-tag-gray {
  background: rgba(107, 114, 128, 0.15);
  color: #6b7280;
  border-color: rgba(107, 114, 128, 0.3);
}

.package-tag-purple {
  background: rgba(147, 51, 234, 0.15);
  color: #9333ea;
  border-color: rgba(147, 51, 234, 0.3);
}

.package-tag-cyan {
  background: rgba(6, 182, 212, 0.15);
  color: #06b6d4;
  border-color: rgba(6, 182, 212, 0.3);
}

.product-content {
  padding: 22px;
}

.product-title {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 6px 0;
  color: var(--color-text);
  line-height: 1.3;
}

.product-description {
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0 0 12px 0;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  margin-bottom: 3px;
}

/* Price container for showing original and discounted price in cards */
.featured-product-card .price-container {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}

.featured-product-card .original-price {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: line-through;
  font-weight: 500;
}

.discount-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 7px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: #ef4444;
  border-radius: 999px;
  line-height: 1;
  margin-left: 0;
  vertical-align: baseline;
}

/* Position badge at top-right corner of the price without expanding its background */
.product-price .price,
.custom-price-display,
.featured-product-card .price-container .price {
  position: relative;
  display: inline-flex;
  align-items: baseline;
}

.product-price .price .discount-badge,
.custom-price-display .discount-badge,
.featured-product-card .price-container .price .discount-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  transform: translate(50%, -50%);
  margin: 0;
  pointer-events: none;
  z-index: 2;
}

.product-price .price {
  font-size: 20px;
  font-weight: 700;
  color: white;
  background: rgba(56, 182, 255, 0.1);
  padding: 4px 12px;
  border-radius: 6px;
  border: 1px solid rgba(56, 182, 255, 0.15);
}

.product-price .price-free {
  font-size: 16px;
  font-weight: 600;
  color: #10B981;
  background: rgba(16, 185, 129, 0.1);
  padding: 4px 12px;
  border-radius: 6px;
}

/* Reviews Section */
.reviews-section {
  padding: 80px 0;
  background: transparent;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.reviews-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

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

.reviews-container::before {
  left: 0;
  background: linear-gradient(to right, var(--color-brighter-bg) 0%, transparent 100%);
}

.reviews-container::after {
  right: 0;
  background: linear-gradient(to left, var(--color-brighter-bg) 0%, transparent 100%);
}

.reviews-track {
  display: flex;
  gap: 24px;
  animation: scroll-reviews 27s linear infinite;
  width: max-content;
}

.review-card {
  background: rgba(255, 255, 255, 0.05) !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 12px;
  padding: 28px 24px 24px;
  width: 320px;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/* Gradient top accent */
.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #38b6ff, #7dd3fc, #38b6ff);
  opacity: 0.7;
}

/* Decorative quotation mark */
.review-card::after {
  content: '\201C';
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 48px;
  font-family: Georgia, serif;
  color: rgba(56, 182, 255, 0.12);
  line-height: 1;
  pointer-events: none;
}

.review-card:hover {
  /* transform removed */
  border-color: rgba(56, 182, 255, 0.2) !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}

.review-stars svg {
  filter: drop-shadow(0 0 4px rgba(56, 182, 255, 0.4));
}

.review-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin: 0 0 16px 0;
  font-style: italic;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}

.review-author .tebex-icon {
  color: rgba(56, 182, 255, 0.8);
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(56, 182, 255, 0.3));
}

.discord-icon {
  color: var(--color-text-secondary);
  flex-shrink: 0;
}

.discord-username {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-secondary);
}

@keyframes scroll-reviews {
  0% {
    transform: translateX(0);
  }

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

/* Support Section */
.support-section {
  padding: 0;
  background: transparent;
  width: 100%;
  max-width: 100%;
}

.support-banner {
  position: relative;
  width: calc(100% - 40px);
  height: 260px;
  margin: 0 auto;
  background: url('https://cdn.tebex.io/store/1632349/templates/237245/assets/de274bbcff4a8bee6e1ae6a4d6309571ba2ae48b.webp?updated=de0ee357c13c7e1cfdda14f6a55c30bce4ae06b08ced80d7c899de3cc306f1f0') center center/cover no-repeat;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

/* Gradient overlay — dark on left for text, transparent on right to show image */
.support-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg,
      rgba(0, 0, 0, 0.65) 0%,
      rgba(0, 0, 0, 0.4) 50%,
      rgba(0, 0, 0, 0.15) 100%);
  z-index: 1;
}

/* Subtle bottom gradient accent */
.support-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #38b6ff, #7dd3fc, #38b6ff);
  opacity: 0.6;
  z-index: 2;
}

.support-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  height: 100%;
  padding: 0 40px;
}

.support-text {
  max-width: 600px;
}

.support-title {
  font-size: 32px;
  font-weight: 700;
  color: white;
  margin: 0 0 12px 0;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.support-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 20px 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.btn-discord {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: white;
  color: #000;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-discord:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.btn-discord svg {
  color: #000;
}

/* Shimmer Loading Skeleton Cards */
.skeleton-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.skeleton-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.1),
      transparent);
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

.skeleton-image {
  width: 100%;
  aspect-ratio: 16/9;
  background: rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.skeleton-content {
  padding: 16px;
}

.skeleton-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.skeleton-tag {
  width: 60px;
  height: 24px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.skeleton-title {
  width: 80%;
  height: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
}

.skeleton-price {
  width: 60%;
  height: 18px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

/* Footer Styles */
.site-footer {
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-top: none;
  position: relative;
}

/* Gradient top accent */
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #38b6ff, #7dd3fc, #38b6ff, transparent);
  opacity: 0.5;
}

/* Category Page Styles - Full screen layout matching featured products */
.featured-section {
  padding: 60px var(--content-padding);
  background: transparent !important;
  width: 100%;
  max-width: 100%;
}

.featured-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  width: 100%;
  max-width: 100%;
  margin: 0;
}

/* COMPLETE FULL-WIDTH OVERRIDE FOR CATEGORY PAGES */
/* Remove ALL spacing from category pages */
.site-content {
  max-width: none !important;
}

/* Apply max-width to homepage sections */
.hero-section,
.featured-section,
.reviews-section,
.support-section {
  margin: 0 auto;
  max-width: var(--content-width);
  width: 100%;
}


/* Add horizontal spacing to category page packages to match homepage */
.site-content .featured-section {
  padding: 60px 0 !important;
}

@media (min-width: 961px) {
  .site-content .featured-section {
    padding: 60px 0 !important;
  }
}

/* Enhanced Free Price Styling for All Cards */
.product-price .price,
.product-price .price-free {
  font-size: 20px !important;
  margin-top: 5px !important;
  padding: 8px 16px !important;
}

/* Responsive Free Price Styling */
@media (max-width: 960px) {
  .product-price .price-free {
    font-size: 18px !important;
  }
}

@media (max-width: 600px) {
  .product-price .price-free {
    font-size: 16px !important;
  }
}

.site-content .featured-products-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 16px !important;
  margin: 0 !important;
}

.site-content .featured-product-card {
  border-radius: 12px !important;
  margin: 0 !important;
  background: rgba(255, 255, 255, 0.05) !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.site-content .featured-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Responsive breakpoints for category pages */
@media (max-width: 960px) {
  .site-content .featured-products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
}

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

.featured-product-card {
  background: rgba(255, 255, 255, 0.05) !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.featured-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.product-image {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

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



.product-content {
  padding: 16px 20px 20px 20px;
}

/* Package Tags */
.package-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 8px;
}

.package-tag {
  padding: 5px 10px;
  border-radius: 14px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
}

.package-tag-blue {
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
  border-color: rgba(59, 130, 246, 0.3);
}

.package-tag-orange {
  background: rgba(249, 115, 22, 0.15);
  color: #f97316;
  border-color: rgba(249, 115, 22, 0.3);
}

.package-tag-peach {
  background: rgba(236, 72, 153, 0.15);
  color: #ec4899;
  border-color: rgba(236, 72, 153, 0.3);
}

.package-tag-yellow {
  background: rgba(234, 179, 8, 0.15);
  color: #eab308;
  border-color: rgba(234, 179, 8, 0.3);
}

.package-tag-green {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  border-color: rgba(34, 197, 94, 0.3);
}

.package-tag-gray {
  background: rgba(107, 114, 128, 0.15);
  color: #6b7280;
  border-color: rgba(107, 114, 128, 0.3);
}

.package-tag-purple {
  background: rgba(147, 51, 234, 0.15);
  color: #9333ea;
  border-color: rgba(147, 51, 234, 0.3);
}

.package-tag-cyan {
  background: rgba(6, 182, 212, 0.15);
  color: #06b6d4;
  border-color: rgba(6, 182, 212, 0.3);
}

.product-title {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 8px 0;
  line-height: 1.4;
  color: white;
}

.product-title .countdown {
  display: block;
  margin-top: 4px;
  color: #f97316;
  font-size: 12px;
  font-weight: 500;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.product-price .price {
  font-size: 20px;
  font-weight: 700;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 12px;
  border-radius: 6px;
}

.product-price .price-free {
  font-size: 16px;
  font-weight: 600;
  color: #10B981;
  background: rgba(16, 185, 129, 0.1);
  padding: 4px 12px;
  border-radius: 6px;
}

/* No products message */
.no-products {
  text-align: center;
  color: var(--color-text-secondary);
  font-size: 18px;
  padding: 60px 0;
}

/* Responsive styles for category page */
@media (max-width: 960px) {
  .featured-section {
    padding: 40px var(--content-padding);
  }

  .featured-products-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
  }

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

  .product-price .price {
    font-size: 18px;
  }
}

@media (max-width: 600px) {
  .featured-section {
    padding: 30px var(--content-padding);
  }

  .featured-products-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .product-price .price {
    font-size: 16px;
  }

  .no-products {
    padding: 40px 0;
    font-size: 16px;
  }
}


.footer-main {
  padding: 60px var(--content-padding) 40px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  max-width: var(--content-inner-width);
  margin: 0 auto;
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  max-height: 40px;
  width: auto;
}

.footer-logo h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  color: var(--color-text);
}

.footer-description {
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0 0 24px 0;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
}

.social-link.discord:hover {
  background: rgba(56, 182, 255, 0.15);
  color: #38b6ff;
  transform: translateY(-3px);
  border-color: rgba(56, 182, 255, 0.3);
  box-shadow: 0 8px 20px rgba(56, 182, 255, 0.15);
}

.social-link.youtube:hover {
  background: rgba(255, 0, 0, 0.12);
  color: #ff4444;
  transform: translateY(-3px);
  border-color: rgba(255, 0, 0, 0.25);
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.12);
}

.footer-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 20px 0;
  color: var(--color-text);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.3s ease;
  position: relative;
}

.footer-links a:hover {
  color: #38b6ff;
  padding-left: 6px;
}

/* Footer Support Column */
.footer-support-desc {
  font-size: 14px;
  margin-bottom: 16px !important;
}

.footer-discord-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(56, 182, 255, 0.12);
  color: #38b6ff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 1px solid rgba(56, 182, 255, 0.2);
}

.footer-discord-btn:hover {
  background: rgba(56, 182, 255, 0.2);
  border-color: rgba(56, 182, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(56, 182, 255, 0.15);
}

/* Payment Methods Styling */
.we-accept {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.we-accept li {
  display: flex;
  align-items: center;
}

.we-accept img {
  height: 24px;
  width: auto;
  max-width: 40px;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.7);
  transition: filter 0.2s ease;
}

.we-accept img:hover {
  filter: grayscale(0%) brightness(1);
}


.footer-bottom {
  padding: 24px var(--content-padding);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}

/* Gradient separator */
.footer-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56, 182, 255, 0.2), transparent);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--content-inner-width);
  margin: 0 auto;
}

.copyright {
  color: var(--color-text-secondary);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-bottom-links a {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: var(--color-primary);
}

.separator {
  color: var(--color-text-secondary);
  font-size: 14px;
}

/* Responsive Design */
/* Desktop styles (larger screens) */
@media (min-width: 961px) {
  .section-title {
    font-size: 36px !important;
  }

  .site-header .site-header-inner {
    padding: 20px 0 !important;
    height: auto !important;
    flex-wrap: nowrap !important;
    max-width: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .header-logo .site-title {
    font-size: 24px !important;
    line-height: normal !important;
    position: relative !important;
    inset: auto !important;
    margin: 0 !important;
    width: auto !important;
    height: auto !important;
    text-align: left !important;
  }

  .header-logo .site-title img {
    max-height: 55px !important;
    margin: 0 !important;
    max-width: none !important;
  }

  .header-navigation {
    display: flex !important;
  }

  .mobile-menu-toggle {
    display: none !important;
  }

  /* Hide all mobile menu elements on desktop */
  .mobile-nav-overlay,
  .mobile-navigation,
  .mobile-menu,
  .mobile-currency-wrapper,
  .hamburger-line,
  #mobile-nav-overlay,
  #mobile-menu-toggle {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  /* Desktop login button styles */
  .header-actions .log-in,
  .header-actions .fivem-login {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(5px) !important;
    border: none !important;
    color: white !important;
    padding: 12px 12px !important;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
  }

  .header-actions .log-in:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.3);
  }

  .header-actions .log-in svg {
    width: 18px;
    height: 18px;
    fill: white;
  }

  /* Show "Login with FiveM" text on desktop */
  .header-actions .log-in span {
    display: inline !important;
  }

  .header-actions .log-in::after {
    display: none !important;
  }

  /* Desktop currency selector */
  .currency-selector {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px) !important;
    border: none;
    color: white;
    padding: 12px 14px !important;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    display: flex !important;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .currency-selector:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
  }

  .currency-selector .currency-text {
    color: white;
  }

  .currency-selector .chevron-down {
    color: white;
  }

  /* Hide mobile navigation on desktop */
  .site-navigation {
    display: none !important;
  }
}

/* Ensure buttons maintain their colors in gradient container */
.gradient-container .btn-primary.btn-with-icon {
  background: white !important;
  color: #333 !important;
}

.gradient-container .btn-primary.btn-with-icon:hover {
  background: rgba(255, 255, 255, 0.9) !important;
  transform: scale(1.05) !important;
}

.gradient-container .btn-secondary.btn-with-icon {
  background: rgba(255, 255, 255, 0.1) !important;
  color: var(--color-text) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  backdrop-filter: blur(7px) !important;
}

.gradient-container .btn-secondary.btn-with-icon:hover {
  background: rgba(255, 255, 255, 0.2) !important;
  transform: scale(1.05) !important;
}

/* Global header full width */
.site-header {
  width: 100vw !important;
  max-width: var(--content-width) !important;
  margin: 0 auto !important;
  left: 0 !important;
  right: 0 !important;
  position: relative !important;
  padding: 0 !important;
}

/* Center header inner content */
.site-header-inner {
  margin: 0 auto !important;
  max-width: var(--content-width) !important;
  width: 100% !important;
  padding: 0 var(--content-padding) !important;
}

/* Gradient Container */
.gradient-container {
  background:
    radial-gradient(circle at top left, rgba(0, 31, 77, 0.6), transparent 50%),
    radial-gradient(circle at top right, rgba(0, 31, 77, 0.6), transparent 50%),
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.07), transparent 70%),
    linear-gradient(to bottom,
      #38b6ff 0%,
      #2986cc 30%,
      #002b6c 80%,
      #001f4d 100%) !important;

  position: relative;
  width: 100%;
}

/* Tablet styles (between mobile and desktop) */
@media (min-width: 768px) and (max-width: 960px) {
  .site-header {
    background: transparent;
    border-bottom: none;
  }

  .header-actions .log-in,
  .header-actions .fivem-login {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(5px) !important;
    border: none !important;
    color: white !important;
    padding: 12px 12px !important;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
  }

  .header-actions .log-in:hover,
  .header-actions .fivem-login:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
  }

  .header-actions .log-in svg,
  .header-actions .fivem-login svg {
    width: 18px;
    height: 18px;
    fill: white;
  }

  /* Show "Login with FiveM" text on tablet */
  .header-actions .log-in {
    font-size: 14px !important;
  }

  .header-actions .log-in span {
    display: inline !important;
  }

  .header-actions .log-in::after {
    display: none !important;
  }



  /* Hide currency selector on tablet (will be in mobile menu) */
  .currency-selector {
    display: none;
  }

  /* Hide hero image and center content on tablet */
  .hero-visual {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: center;
    padding: 0 20px;
  }

  .hero-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }
}

@media (max-width: 960px) {
  .site-header {
    background: transparent;
    border-bottom: none;
    z-index: 1000;
    position: relative;
  }

  .site-header .site-header-inner {
    padding: 16px 0 !important;
    height: auto !important;
    flex-wrap: nowrap !important;
    max-width: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
  }

  .header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
  }

  .header-logo .site-title {
    font-size: 20px !important;
    line-height: 1.2 !important;
    position: relative !important;
    inset: auto !important;
    margin: 0 !important;
    width: auto !important;
    height: auto !important;
    text-align: left !important;
    color: white;
    font-weight: 600;
  }

  .header-logo .site-title a {
    color: white;
    text-decoration: none;
  }

  .header-logo .site-title img {
    max-height: 45px !important;
    margin: 0 !important;
    max-width: none !important;
  }

  .header-navigation {
    display: none !important;
  }

  .mobile-menu-toggle {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center;
    align-items: center;
    order: -1;
    margin-right: 16px;
    z-index: 1001;
    position: relative;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
  }

  .hamburger-line {
    width: 24px;
    height: 2px;
    background: white;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 1px;
    transform-origin: center;
  }

  /* Hamburger to X Animation */
  .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

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

  .header-actions .log-in {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border: none;
    color: white;
    padding: 12px 12px !important;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
  }

  .header-actions .log-in:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
  }

  .header-actions .log-in svg {
    width: 18px;
    height: 18px;
    fill: white;
  }

  /* Hide "Login with FiveM" text on mobile, show just "Login" */
  .header-actions .log-in {
    font-size: 0 !important;
  }

  .header-actions .log-in span {
    display: none !important;
  }

  .header-actions .log-in::after {
    content: "Login";
    color: white;
    font-size: 14px;
    font-weight: 500;
  }

  .currency-selector {
    display: none;
    /* Hide currency selector from header on mobile */
  }

  /* Show mobile currency selector only in mobile menu */
  .site-navigation .currency-selector {
    display: flex;
  }

  .currency-selector .currency-text {
    color: white;
  }

  .currency-selector .chevron-down {
    color: white;
  }

  .currency-dropdown {
    background: rgba(255, 255, 255, 0.25) !important;
    /* More solid background as fallback */
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px) !important;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  }

  .currency-option {
    color: #fff !important;
    padding: 10px 16px;
    border-radius: 8px;
    margin: 4px;
    transition: background-color 0.2s;
  }

  .currency-option:hover {
    background: rgba(255, 255, 255, 0.1) !important;
  }

  .currency-option.selected {
    background: rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
  }

  /* User Actions Container */
  .user-actions {
    display: flex;
    gap: 8px;
  }

  /* User Actions Container */

  /* Mobile Navigation Overlay */
  .mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px) !important;
    z-index: 999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  /* Hide mobile menu on desktop */
  @media (min-width: 961px) {

    .mobile-nav-overlay,
    .mobile-navigation,
    .mobile-menu,
    .mobile-currency-wrapper,
    .mobile-menu-toggle,
    .hamburger-line,
    #mobile-nav-overlay,
    #mobile-menu-toggle {
      display: none !important;
      visibility: hidden !important;
      opacity: 0 !important;
      pointer-events: none !important;
      position: absolute !important;
      left: -9999px !important;
      top: -9999px !important;
      width: 0 !important;
      height: 0 !important;
      overflow: hidden !important;
      clip: rect(0, 0, 0, 0) !important;
      margin: 0 !important;
      padding: 0 !important;
      border: none !important;
    }

    /* Ensure mobile menu doesn't interfere with desktop layout */
    .site-header .mobile-menu-toggle {
      display: none !important;
    }
  }

  .mobile-nav-overlay.show {
    display: block;
    opacity: 1;
  }

  .mobile-navigation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 120px var(--content-padding) 20px;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
  }

  .mobile-nav-overlay.show .mobile-navigation {
    transform: translateY(0);
  }

  .mobile-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .mobile-menu li {
    margin: 0;
  }

  .mobile-menu a {
    color: white;
    text-decoration: none;
    font-size: 24px;
    font-weight: 400;
    transition: all 0.3s ease;
    display: block;
    padding: 8px 0;
  }

  .mobile-menu a:hover {
    color: rgba(255, 255, 255, 0.8);
    transform: scale(1.05);
  }

  .site-navigation .menu .badge {
    background: rgba(255, 255, 255, 0.3);
    color: #333;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 12px;
  }

  /* Currency selector at bottom of mobile menu */
  .mobile-currency-wrapper {
    margin-top: 20px;
    text-align: center;
  }

  .mobile-navigation .currency-selector {
    background: rgba(255, 255, 255, 0.1) !important;
    border: none;
    color: white;
    padding: 14px 18px !important;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 10px;
  }

  .mobile-navigation .currency-selector:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
  }

  .site-navigation .currency-selector .currency-text {
    color: white;
  }

  .site-navigation .currency-selector .chevron-down {
    color: white;
  }

  /* Mobile User Actions */
  .mobile-user-actions {
    margin-top: 20px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .mobile-login-btn,
  .mobile-logout-btn,
  .mobile-basket-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    padding: 16px 20px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    width: 100%;
    justify-content: center;
  }

  .mobile-login-btn:hover,
  .mobile-logout-btn:hover,
  .mobile-basket-btn:hover {
    background: rgba(255, 255, 255, 0.15);
  }

  .mobile-logout-btn {
    flex-direction: column;
    gap: 8px;
  }

  .mobile-user-name {
    font-size: 18px;
    font-weight: 600;
  }

  .mobile-logout-text {
    font-size: 14px;
    opacity: 0.8;
  }

  .mobile-login-btn svg {
    width: 20px;
    height: 20px;
  }

  /* Ensure logout button is hidden on mobile and tablet */
  @media (width <=960px) {
    .user-actions .btn-secondary.btn-glyph-text.user-name.desktop-only {
      display: none !important;
    }
  }

  /* Additional mobile-specific hiding */
  @media (max-width: 960px) {
    .user-actions .btn-secondary.btn-glyph-text.user-name.desktop-only {
      display: none !important;
    }
  }

  /* Force hide on all mobile devices */
  @media (max-width: 1024px) {
    .user-actions .btn-secondary.btn-glyph-text.user-name.desktop-only {
      display: none !important;
    }
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    padding: 0 20px;
  }

  .hero-visual {
    display: none;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-title {
    font-size: 56px;
  }

  .support-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    padding: 40px 20px;
  }

  .support-title {
    font-size: 32px;
  }



  .support-banner::before {
    width: 100%;
    opacity: 0.3;
  }

  .support-banner {
    height: 310px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-section {
    text-align: left;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  /* Tablet-specific overrides to fix login button text */
  @media (min-width: 768px) and (max-width: 960px) {
    .header-actions .log-in {
      font-size: 14px !important;
    }

    .header-actions .log-in::after {
      display: none !important;
    }

    /* Keep 3-column footer layout on tablet */
    .footer-content {
      grid-template-columns: 1fr 1fr 1fr;
      gap: 30px;
    }
  }
}

@media (max-width: 600px) {
  .site-header-inner {
    padding: 12px var(--content-padding);
  }

  .header-logo .site-title {
    font-size: 18px;
  }

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

  .hero-section {
    padding: 80px 0 60px 0;
  }

  .featured-section,
  .reviews-section,
  .support-section {
    padding: 60px var(--content-padding);
  }

  .hero-title {
    font-size: 42px;
  }

  .section-title {
    font-size: 28px !important;
  }

  .featured-products-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn-with-icon {
    width: 100%;
    max-width: 180px;
    justify-content: center;
  }

  .support-features {
    gap: 16px;
  }

  .feature-icon {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }

  /* Reduce support section text and button sizes on mobile */
  .support-title {
    font-size: 24px;
  }

  .support-subtitle {
    font-size: 14px;
  }

  .btn-discord {
    padding: 12px 20px;
    font-size: 14px;
  }

  .btn-discord svg {
    width: 16px;
    height: 16px;
  }

  /* Support banner mobile enhancements */
  .support-banner {
    width: calc(100% - 10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
  }

  .support-banner::before {
    backdrop-filter: blur(5px);
  }

  .footer-content {
    gap: 24px;
  }

  .footer-section {
    text-align: left;
  }
}

/* Text Selection Styling */
::selection {
  background-color: white !important;
  color: #001f4d !important;
}

::-moz-selection {
  background-color: white !important;
  color: #001f4d !important;
}

/* Additional specificity for text selection */
*::selection {
  background-color: white !important;
  color: #001f4d !important;
}

*::-moz-selection {
  background-color: white !important;
  color: #001f4d !important;
}

/* Hero title specific selection styling */
.hero-title::selection {
  background-color: white !important;
  color: #001f4d !important;
  -webkit-text-fill-color: #001f4d !important;
}

.hero-title::-moz-selection {
  background-color: white !important;
  color: #001f4d !important;
  -webkit-text-fill-color: #001f4d !important;
}

/* FAQ Section */
.faq-container {
  max-width: var(--content-inner-width);
  margin: 60px auto 120px auto;
  padding: 0 var(--content-padding);
}

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

.faq-title {
  font-size: 36px;
  font-weight: 700;
  color: white;
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.faq-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

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

.faq-item {
  background: rgba(255, 255, 255, 0.05) !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 12px;
  margin-bottom: 1px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 3px solid rgba(255, 255, 255, 0.08) !important;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.07) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
  border-left-color: rgba(255, 255, 255, 0.15) !important;
}

.faq-item.active {
  border-left-color: #38b6ff !important;
  background: rgba(56, 182, 255, 0.04) !important;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
}

.faq-question span {
  font-size: 18px;
  font-weight: 500;
  color: white;
  line-height: 1.4;
}

.faq-icon {
  color: rgba(255, 255, 255, 0.7);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg) scale(1.1);
  color: #38b6ff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 32px 24px 32px;
}

.faq-answer p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* FAQ Responsive */
@media (max-width: 960px) {
  .faq-container {
    margin: 60px auto 100px auto;
  }

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

  .faq-subtitle {
    font-size: 18px;
  }

  .faq-question {
    padding: 20px 24px;
  }

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

  .faq-item.active .faq-answer {
    padding: 0 24px 20px 24px;
  }
}

@media (max-width: 600px) {
  .faq-container {
    margin: 40px auto 40px auto;
  }

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

  .faq-subtitle {
    font-size: 16px;
  }

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

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

  .faq-item.active .faq-answer {
    padding: 0 20px 16px 20px;
  }

  .faq-answer p {
    font-size: 14px;
  }
}

/* Font Family */
:root {
  --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Apply Poppins font to all elements */
* {
  font-family: var(--font-family);
}

/* Fix for extra margin below footer */
:root {
  --tebex-footer-height: 0px !important;
}

html,
body {
  margin: 0;
  padding: 0;
  height: auto !important;
  font-family: var(--font-family);
  background: var(--color-bg) !important;
}

.site {
  margin-bottom: 0 !important;
  min-height: auto !important;
  height: auto !important;
  display: block !important;
  gap: 0 !important;
  grid: none !important;
  grid-auto-rows: unset !important;
  align-items: unset !important;
  background: var(--color-bg) !important;
}

.site-content {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.site-footer {
  margin-bottom: 0 !important;
  margin-top: 60px !important;
}

/* Modern Product Page Layout */
.modern-product-layout {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 40px var(--content-padding);
  display: flex;
  flex-direction: column;
  gap: 60px;
}



/* Product Main Row - Gallery and Details side by side */
.product-main-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  width: 100%;
  align-items: start;
  position: relative;
}

/* Product Gallery */
.product-gallery {
  position: sticky;
  top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  min-width: 0;
  z-index: 2;
}

.main-image-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
  aspect-ratio: 16/9;
}

.main-gallery-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  z-index: 30;
}

.main-gallery-nav-btn:hover {
  transform: translateY(-50%) scale(1.1);
}

.main-gallery-nav-btn.prev {
  left: 16px;
}

.main-gallery-nav-btn.next {
  right: 16px;
}

.main-gallery-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.main-gallery-nav-btn:disabled:hover {
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
}

.main-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

.main-image:hover {
  transform: scale(1.02);
}

/* Product Video Iframe (plays in thumbnail space) */
.product-video-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
  z-index: 2;
}

.product-video-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.7);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  padding: 0;
}

.product-video-close:hover {
  background: rgba(0, 0, 0, 0.9);
}

.product-video-close svg {
  width: 20px;
  height: 20px;
}

/* Thumbnail Gallery */
.thumbnail-gallery {
  position: relative;
  margin-top: 16px;
  width: 100%;
  overflow: hidden;
  padding: 0 40px;
}

.thumbnail-gallery-container {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  width: 100%;
  flex-wrap: nowrap;
}

.thumbnail-gallery::-webkit-scrollbar {
  display: none;
}

.gallery-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  z-index: 10;
}

.gallery-nav-btn:hover {
  transform: translateY(-50%) scale(1.1);
}

/* Match gallery nav buttons background with play button (glassmorphism) */
.main-gallery-nav-btn,
.gallery-nav-btn {
  background: rgba(255, 255, 255, 0.1) !important;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.main-gallery-nav-btn:hover,
.gallery-nav-btn:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
}

.gallery-nav-btn.prev {
  left: 8px;
}

.gallery-nav-btn.next {
  right: 8px;
}

.gallery-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.gallery-nav-btn:disabled:hover {
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
}

.thumbnail {
  width: 120px;
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.03) !important;
  backdrop-filter: blur(10px);
  opacity: 0.5;
  flex-shrink: 0;
  min-width: 120px;
}

.thumbnail.active {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(56, 182, 255, 0.3);
  opacity: 1;
}

.thumbnail:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  opacity: 1;
}

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

/* Product Details */
.product-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  min-width: 0;
}

.product-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 24px;
}

.product-info-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-actions-section {
  width: 100%;
  padding: 0;
  background: none;
  backdrop-filter: none;
  border: none;
  border-radius: 0;
  display: flex;
  justify-content: flex-start;
}

.product-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modern-product-layout .product-title {
  font-size: 38px !important;
  font-weight: 700 !important;
  color: white !important;
  line-height: 1.2 !important;
  margin: 0 0 12px 0 !important;
}

/* Ensure recommended cards on product page use same title size as category cards */
.modern-product-layout .recommended-section .featured-product-card .product-title {
  font-size: 22px !important;
}

/* ═══════════════════════════════════════════════════
   Spring Server Upgrade Sale — Banner & Ribbon
   Palette: #38b6ff (brand-blue), #7dd3fc (sky), #0ea5e9 (deep)
   ═══════════════════════════════════════════════════ */

/* ── Main Banner (Home + Category) ── */
.spring-sale-banner {
  position: relative;
  max-width: var(--content-width);
  margin: 0 auto 28px;
  padding: 0 20px;
  overflow: hidden;
}

.spring-sale-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 36px;
  background: linear-gradient(135deg, rgba(56, 182, 255, 0.1) 0%, rgba(14, 165, 233, 0.06) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  border: 1px solid rgba(56, 182, 255, 0.25);
  box-shadow:
    0 0 0 1px rgba(56, 182, 255, 0.1),
    0 8px 32px rgba(0, 0, 0, 0.2),
    0 0 40px rgba(56, 182, 255, 0.05);
  z-index: 1;
}

/* Brand-blue gradient top accent */
.spring-sale-inner::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #38b6ff, #7dd3fc, #38b6ff, transparent);
  border-radius: 16px 16px 0 0;
}

/* Floating emoji petals */
.spring-petal {
  position: absolute;
  font-size: 18px;
  opacity: 0.15;
  pointer-events: none;
  animation: spring-float linear infinite;
  user-select: none;
  z-index: 0;
}
.spring-petal-1 { left: 4%;  top: -10px; animation-duration: 6s;   animation-delay: 0s;   font-size: 16px; }
.spring-petal-2 { left: 18%; top: -10px; animation-duration: 8s;   animation-delay: 1.5s; font-size: 14px; }
.spring-petal-3 { left: 52%; top: -10px; animation-duration: 7s;   animation-delay: 0.7s; font-size: 18px; }
.spring-petal-4 { left: 72%; top: -10px; animation-duration: 9s;   animation-delay: 2s;   font-size: 13px; }
.spring-petal-5 { left: 88%; top: -10px; animation-duration: 5.5s; animation-delay: 0.3s; font-size: 15px; }

@keyframes spring-float {
  0%   { transform: translateY(-20px) rotate(0deg);  opacity: 0;    }
  10%  { opacity: 0.18; }
  90%  { opacity: 0.12; }
  100% { transform: translateY(80px) rotate(20deg);  opacity: 0; }
}

/* Left: icon + label */
.spring-sale-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.spring-sale-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(56,182,255,0.18), rgba(125,211,252,0.1));
  border: 1px solid rgba(56,182,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(56,182,255,0.1);
}

.spring-sale-emoji {
  font-size: 24px;
  animation: spring-bounce 2.4s ease-in-out infinite;
}

@keyframes spring-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-4px); }
}

.spring-sale-label {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.spring-sale-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.spring-sale-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
}

/* Centre: discount pills */
.spring-sale-discounts {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.spring-discount-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 22px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(56,182,255,0.16), rgba(56,182,255,0.06));
  border: 1px solid rgba(56,182,255,0.3);
  gap: 3px;
}

.spring-discount-pill--alt {
  background: linear-gradient(135deg, rgba(125,211,252,0.14), rgba(125,211,252,0.05));
  border-color: rgba(125,211,252,0.3);
}

.spring-discount-pct {
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  -webkit-text-fill-color: #fff;
}

.spring-discount-pill--alt .spring-discount-pct {
  color: #fff;
  -webkit-text-fill-color: #fff;
}

.spring-discount-cat {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.spring-discount-divider {
  font-size: 22px;
  color: rgba(56,182,255,0.3);
  flex-shrink: 0;
}

/* Right: countdown + CTA */
.spring-sale-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.spring-countdown {
  display: flex;
  align-items: center;
  gap: 6px;
}

.spring-cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.spring-cd-value {
  display: inline-block;
  min-width: 46px;
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  background: rgba(56,182,255,0.08);
  border: 1px solid rgba(56,182,255,0.18);
  border-radius: 8px;
  padding: 7px 4px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

/* Flip animation */
@keyframes spring-flip-anim {
  0%   { transform: translateY(-6px); opacity: 0; }
  100% { transform: translateY(0);    opacity: 1; }
}

.spring-cd-value.spring-flip {
  animation: spring-flip-anim 0.25s cubic-bezier(0.4,0,0.2,1);
}

.spring-cd-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(56,182,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.spring-cd-sep {
  font-size: 22px;
  font-weight: 700;
  color: rgba(56,182,255,0.5);
  margin-bottom: 18px;
  line-height: 1;
}

.spring-sale-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #38b6ff, #0ea5e9);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 6px 20px rgba(56,182,255,0.35);
  border: 1px solid rgba(255,255,255,0.15);
}

.spring-sale-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(56,182,255,0.45);
  filter: brightness(1.1);
}

.spring-sale-cta svg {
  transition: transform 0.3s ease;
}

.spring-sale-cta:hover svg {
  transform: translateX(3px);
}

/* ── Product Page Ribbon ── */
.spring-sale-product-ribbon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(56,182,255,0.1) 0%, rgba(14,165,233,0.06) 100%);
  border: 1px solid rgba(56,182,255,0.25);
  border-left: 3px solid #38b6ff;
  border-radius: 10px;
  backdrop-filter: blur(8px);
  animation: spring-ribbon-in 0.5s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 0 20px rgba(56,182,255,0.05);
}

@keyframes spring-ribbon-in {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.spring-ribbon-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.spring-ribbon-emoji {
  font-size: 22px;
  animation: spring-bounce 2.4s ease-in-out infinite;
}

.spring-ribbon-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.spring-ribbon-title {
  font-size: 16px;
  font-weight: 700;
  color: #38b6ff;
  letter-spacing: 0.01em;
}

.spring-ribbon-disc {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}

.spring-ribbon-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.spring-ribbon-ends {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
}

.spring-ribbon-countdown {
  display: flex;
  align-items: baseline;
  gap: 3px;
  font-variant-numeric: tabular-nums;
}

.spring-ribbon-countdown span:not(.spring-ribbon-colon) {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.spring-ribbon-countdown em {
  font-style: normal;
  font-size: 12px;
  color: #38b6ff;
  font-weight: 600;
}

.spring-ribbon-colon {
  font-size: 15px;
  color: rgba(56,182,255,0.5);
  font-weight: 700;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .spring-sale-inner {
    flex-wrap: wrap;
    padding: 18px 20px;
    gap: 16px;
  }
  .spring-sale-left  { flex: 1 1 100%; }
  .spring-sale-discounts { flex: 1 1 auto; }
  .spring-sale-right {
    flex: 1 1 100%;
    justify-content: space-between;
  }
}

@media (max-width: 600px) {
  .spring-sale-banner { padding: 0 10px; margin-bottom: 20px; }
  .spring-sale-inner  { padding: 14px 16px; border-radius: 12px; }
  .spring-sale-title  { font-size: 17px; }
  .spring-sale-sub    { font-size: 13px; }
  .spring-sale-discounts { gap: 6px; }
  .spring-discount-pill { padding: 10px 14px; }
  .spring-discount-pct { font-size: 22px; }
  .spring-discount-cat { font-size: 12px; }
  .spring-sale-cta { padding: 10px 16px; font-size: 13px; }
  .spring-cd-value { min-width: 38px; font-size: 20px; }
  .spring-cd-label { font-size: 10px; }
  .spring-sale-product-ribbon {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .spring-ribbon-right { width: 100%; justify-content: space-between; }
}


/* Product Price Section */
.product-price-section {
  padding: 0;
  background: none;
  backdrop-filter: none;
  border: none;
  border-radius: 0;
  margin-bottom: 10px;
}

.price-container {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  min-height: 1.2em;
}

.original-price {
  color: rgba(255, 255, 255, 0.6);
  font-size: 24px;
  text-decoration: line-through;
  margin-right: 12px;
}

.custom-price-display {
  font-size: 48px;
  font-weight: 700;
  color: white;
  margin: 0 !important;
  min-height: 1.2em;
  display: flex;
  align-items: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1;
}

.custom-price-display .currency-symbol {
  font-size: 36px;
  margin-right: 4px;
  opacity: 0.9;
}

.custom-price-display .price-amount {
  font-size: 48px;
  font-weight: 700;
}

.free-price {
  font-size: 24px;
  font-weight: 700;
  color: #10B981;
  margin: 0;
}

.custom-price {
  font-size: 20px;
  color: white;
  margin: 0;
}

/* Product Actions Section */
.product-actions-section {
  padding: 0;
  background: none;
  backdrop-filter: none;
  border: none;
  border-radius: 0;
}

.product-actions-section .actions {
  display: flex !important;
  flex-direction: row !important;
  gap: 12px;
  align-items: center;
  justify-content: flex-start !important;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.product-actions-section .btn-primary,
.product-actions-section .btn-secondary {
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  margin-bottom: 0;
  width: auto !important;
  min-width: 120px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  gap: 6px;
}

.product-actions-section .gift-button {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: blur(10px);
  margin-bottom: 0;
  width: auto !important;
  min-width: 120px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  gap: 6px;
}

.product-actions-section .gift-button .gift-icon {
  width: 24px !important;
  height: 24px !important;
  flex-shrink: 0;
}

.product-actions-section .cart-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.product-actions-section .gift-button:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  color: white !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.product-actions-section .btn-primary:hover,
.product-actions-section .btn-secondary:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.product-actions-section .gift-button:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}



/* Product Features */
.product-features {
  margin-top: 16px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: var(--content-width);
  margin: 8px auto 0 auto;
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}



.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: #60A5FA;
  flex-shrink: 0;
}

.feature-content {
  flex: 1;
}

.feature-title {
  font-size: 16px;
  font-weight: 600;
  color: white;
  margin: 0;
  line-height: 1.3;
}

/* Product Description Section */
.product-description-section {
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  width: 100%;
  margin-top: 0;
  clear: both;
  position: relative;
  z-index: 1;
}

.product-description-title {
  font-size: 28px;
  font-weight: 600;
  color: white;
  margin: 0 0 16px 0;
}

.product-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 16px;
}

.product-description h1,
.product-description h2,
.product-description h3,
.product-description h4,
.product-description h5,
.product-description h6 {
  color: white;
  margin: 24px 0 12px 0;
}

.product-description p {
  margin: 0 0 16px 0;
}

.product-description ul,
.product-description ol {
  margin: 16px 0;
  padding-left: 24px;
}

.product-description li {
  margin: 8px 0;
}

.recommended-section {
  margin-top: 10px;
}

/* Recommended section: responsive heading sizes on product page */
.modern-product-layout .recommended-section .section-title {
  font-size: 28px !important;
}

/* Recommended section: responsive subtitle on product page */
.modern-product-layout .recommended-section .section-subtitle {
  font-size: 16px;
}

@media (max-width: 960px) {
  .modern-product-layout .recommended-section .section-title {
    font-size: 26px !important;
  }

  .modern-product-layout .recommended-section .section-subtitle {
    font-size: 15px;
  }
}

@media (max-width: 600px) {
  .modern-product-layout .recommended-section .section-title {
    font-size: 22px !important;
  }

  .modern-product-layout .recommended-section .section-subtitle {
    font-size: 14px;
  }
}

/* Responsive Design */
@media (max-width: 960px) {
  .modern-product-layout {
    padding: 20px var(--content-padding);
    gap: 40px;
  }

  .product-main-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .product-gallery {
    position: static;
  }

  .product-header-row {
    flex-direction: column;
    gap: 24px;
  }

  .product-info-left {
    width: 100%;
  }

  .product-actions-section {
    width: 100%;
  }

  .modern-product-layout .product-title {
    font-size: 32px !important;
  }

  /* Match category card title size on mobile for recommended cards */
  .modern-product-layout .recommended-section .featured-product-card .product-title {
    font-size: 18px !important;
  }

  .custom-price-display {
    font-size: 40px;
  }

  .custom-price-display .currency-symbol {
    font-size: 30px;
  }

  .custom-price-display .price-amount {
    font-size: 40px;
  }

  .product-features {
    margin-top: 16px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .feature-card {
    padding: 10px;
    gap: 10px;
  }

  .feature-icon {
    width: 42px;
    height: 42px;
  }

  .feature-title {
    font-size: 16px;
  }

  .thumbnail {
    width: 100px;
    aspect-ratio: 16/9;
    min-width: 100px;
  }
}

@media (max-width: 600px) {
  .modern-product-layout {
    padding: 16px var(--content-padding);
    gap: 30px;
  }

  .product-main-row {
    gap: 25px;
  }

  .modern-product-layout .product-title {
    font-size: 28px !important;
    margin: 0 0 4px 0 !important;
  }

  /* Slightly smaller on small screens */
  .modern-product-layout .recommended-section .featured-product-card .product-title {
    font-size: 18px !important;
  }

  /* Responsive tweak for recommended titles removed to match category cards */

  .product-info-left {
    gap: 5px;
  }

  .custom-price-display {
    font-size: 36px;
    margin: 0 !important;
  }

  .custom-price-display .currency-symbol {
    font-size: 26px;
  }

  .custom-price-display .price-amount {
    font-size: 36px;
  }

  .thumbnail-gallery {
    gap: 8px;
    padding: 0 30px;
  }

  .gallery-nav-btn {
    width: 36px;
    height: 36px;
  }

  .gallery-nav-btn.prev {
    left: 6px;
  }

  .gallery-nav-btn.next {
    right: 6px;
  }

  .main-gallery-nav-btn {
    width: 36px;
    height: 36px;
  }

  .main-gallery-nav-btn.prev {
    left: 12px;
  }

  .main-gallery-nav-btn.next {
    right: 12px;
  }

  .thumbnail {
    width: 80px;
    aspect-ratio: 16/9;
    min-width: 80px;
  }

  .product-price-section,
  .product-actions-section {
    padding: 0;
  }

  .product-description-section {
    padding: 16px;
  }

  .product-description-title {
    font-size: 20px;
  }

  .product-description {
    font-size: 15px;
  }

  .product-features {
    margin-top: 12px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    margin: 20px auto 0 auto;
  }

  .feature-card {
    padding: 8px;
    gap: 16px !important;
  }

  .feature-icon {
    width: 42px;
    height: 42px;
  }

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

  .product-actions-section .actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-actions-section .btn-primary,
  .product-actions-section .btn-secondary,
  .product-actions-section .gift-button {
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }
}

/* Hide Tebex default modules and widgets */
.widget-top-donator,
.widget-recent,
.widget-payments,
.widget-community-goal,
.widget-server-status,
.widget-gift-card,
.widget-featured,
.widget-textbox,
.widget-goal {
  display: none !important;
}

/* Hide any sidebar widgets that might contain these sections */
.site-content-widgets .widget {
  display: none !important;
}

/* Hide specific module sections */
.module-topdonator,
.module-recent,
.module-payments,
.module-communitygoal,
.module-serverstatus,
.module-giftcardbalance,
.module-featuredpackage,
.module-textbox,
.module-goal {
  display: none !important;
}

/* Hide any elements with these class patterns (but NOT Discord widget) */
/* Hide Tebex widgets but NOT our Discord widget */
[class*="widget-"]:not(.floating-discord-widget):not([class*="discord-"]),
[class*="module-"] {
  display: none !important;
}

/* Discord widget layout rules */
.discord-header {
  display: flex !important;
}

.discord-perks {
  display: flex !important;
}

.discord-btn {
  display: flex !important;
}

.discord-perks li {
  display: flex !important;
}

/* Ensure the main content takes full width when widgets are hidden */
.site-content-widgets {
  display: block !important;
}

.site-content-widgets>main {
  width: 100% !important;
  max-width: 100% !important;
}

/* ─── Gallery Expand (Fullscreen) Button ──────────────────────────────────── */
.gallery-expand-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 20;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
  opacity: 0;
  padding: 0;
}

/* Show the button when hovering the image container */
.main-image-container:hover .gallery-expand-btn,
.gallery-expand-btn:focus {
  opacity: 1;
}

.gallery-expand-btn:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.35);
  transform: scale(1.08);
}

/* ─── Image Lightbox Modal ────────────────────────────────────────────────── */
.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.image-lightbox.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.image-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  cursor: zoom-out;
}

.image-lightbox-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 48px 72px;
  box-sizing: border-box;
}

.image-lightbox-img-wrap {
  position: relative;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.image-lightbox-img {
  max-width: calc(100vw - 160px);
  max-height: calc(100vh - 100px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7);
  display: block;
  transition: opacity 0.2s ease;
  user-select: none;
}

/* Lightbox mode for youtube video */
.product-video-iframe.lightbox-mode {
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  max-width: calc(100vw - 160px) !important;
  max-height: calc(100vh - 100px) !important;
  width: 80vw !important;
  height: 45vw !important; /* 16:9 ratio */
  z-index: 10001 !important; /* Above 9999 */
  border-radius: 10px !important;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7) !important;
}

/* ── Close button ── */
.image-lightbox-close {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  padding: 0;
}

.image-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

/* ── Prev / Next nav ── */
.image-lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.25s ease;
  padding: 0;
}

.image-lightbox-nav.prev { left: 20px; }
.image-lightbox-nav.next { right: 20px; }

.image-lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
}
.image-lightbox-nav.prev:hover { transform: translateY(-50%) scale(1.08) translateX(-2px); }
.image-lightbox-nav.next:hover { transform: translateY(-50%) scale(1.08) translateX(2px); }

.image-lightbox-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.image-lightbox-nav:disabled:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-50%);
}

/* ── Counter ── */
.image-lightbox-counter {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  background: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 6px 16px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* ── Mobile adjustments ── */
@media (max-width: 600px) {
  .image-lightbox-img {
    max-width: calc(100vw - 24px);
    max-height: calc(100vh - 120px);
  }
  .image-lightbox-content {
    padding: 56px 12px 56px;
  }
  .image-lightbox-nav {
    width: 40px;
    height: 40px;
  }
  .image-lightbox-nav.prev { left: 8px; }
  .image-lightbox-nav.next { right: 8px; }
  
  .product-video-iframe.lightbox-mode {
    max-width: calc(100vw - 24px) !important;
    max-height: calc(100vh - 120px) !important;
    width: 95vw !important;
    height: 53.5vw !important;
  }
}

body.video-lightbox-active .main-image-container,
body.video-lightbox-active .product-gallery,
body.video-lightbox-active .store-product,
body.video-lightbox-active .product-main-row {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  overflow: visible !important;
  z-index: auto !important;
  transform: none !important;
  position: static !important;
}

/* ─── Announcement Top Bar ────────────────────────────────────────────────── */
.announcement-bar {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 200;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.35s ease;
  max-height: 40px;
}

/* Bottom glow accent line */
.announcement-bar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(0, 0, 0, 0.06);
  animation: none;
}

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

/* Hidden state */
.announcement-bar.dismissed {
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  border-bottom-width: 0;
}

.announcement-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 6px 44px 6px 16px;
  max-width: var(--content-width);
  margin: 0 auto;
  position: relative;
}

/* Badge pill */
.announcement-bar-badge {
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0f2d5c;
  background: rgba(15, 45, 92, 0.08);
  border: 1px solid rgba(15, 45, 92, 0.2);
  border-radius: 20px;
  padding: 2px 8px;
  white-space: nowrap;
}

/* Message text */
.announcement-bar-text {
  font-size: 12.5px;
  font-weight: 400;
  color: #0f2d5c;
  margin: 0;
  line-height: 1.4;
  text-align: center;
}

.announcement-bar-text strong {
  color: #0a1f42;
  font-weight: 700;
}

/* CTA link */
.announcement-bar-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #0f2d5c;
  text-decoration: none;
  border-bottom: 1px solid rgba(15, 45, 92, 0.35);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.announcement-bar-cta:hover {
  color: #0a1f42;
  border-color: rgba(10, 31, 66, 0.6);
}

/* Dismiss button */
.announcement-bar-close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: rgba(15, 23, 42, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}

.announcement-bar-close:hover {
  background: rgba(0, 0, 0, 0.1);
  color: #0f172a;
}

/* Mobile */
@media (max-width: 600px) {
  .announcement-bar-badge {
    display: none;
  }
  .announcement-bar-inner {
    padding: 9px 40px 9px 12px;
    gap: 8px;
  }
  .announcement-bar-text {
    font-size: 12.5px;
  }
  .announcement-bar-cta {
    margin-left: 6px;
  }
}

/* ─── Spring Sale — Hidden by Default ───────────────────────────────────────
   Code is preserved. To re-enable, remove or comment out these rules.
   ─────────────────────────────────────────────────────────────────────────── */
.spring-sale-banner,
.spring-sale-product-ribbon {
  display: none !important;
}