@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
:root {
  --color-primary: #6c5ce7;
  --color-primary-hover: #a78bfa;
  --bg-image: linear-gradient(135deg, #0d0019 0%, #050510 25%, #0a0f1e 50%, #071a2e 75%, #0d0d20 100%);
  
  /* Tebex Legal Footer Variables */
  --tebex-legal-footer-background-color: rgba(15, 15, 35, 0.95);
  --tebex-legal-footer-text-color: #c4b5fd;
  --tebex-legal-footer-border-color: rgba(139, 92, 246, 0.3);
  --tebex-legal-footer-max-width: 1400px;
  --tebex-legal-footer-logo-color: #8B5CF6;
}

body {
  font-family: Lato, sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: var(--bg-image);
  pointer-events: none;
}

.btn-primary,
.btn-secondary,
.btn-tertiary {
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 14px;
}

.btn-primary::before,
.btn-secondary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before,
.btn-secondary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary:hover, .btn-primary:focus,
.btn-secondary:hover,
.btn-secondary:focus {
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.6), 0 0 40px rgba(139, 92, 246, 0.3);
  transform: translateY(-2px);
}

.quantity-field {
  border-radius: 8px;
  border: 1px solid rgba(139, 92, 246, 0.3);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.quantity-field:focus-within {
  border-color: rgba(139, 92, 246, 0.6);
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.3);
}

/* ===== MODERN HEADER (Full Width) ===== */
.modern-header {
  background: linear-gradient(135deg, rgba(10, 10, 30, 0.98), rgba(20, 20, 50, 0.95));
  border-bottom: 2px solid rgba(139, 92, 246, 0.4);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.3), inset 0 1px 0 rgba(139, 92, 246, 0.1);
  width: 100%;
}

.header-top-bar {
  padding: 20px 0;
  width: 100%;
}

.header-top-inner-full {
  max-width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
}

/* Compact Logo in Top Bar */
.header-logo-compact {
  flex-shrink: 0;
}

.header-logo-compact img {
  max-height: 45px;
  width: auto;
  display: block;
  transition: all 0.3s ease;
}

.header-logo-compact:hover img {
  transform: scale(1.05);
  filter: drop-shadow(0 0 15px rgba(139, 92, 246, 0.5));
}

.store-name-text-compact {
  font-size: 24px;
  font-weight: 900;
  background: linear-gradient(135deg, #8B5CF6, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Main Navigation in Top Bar */
.header-main-nav {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.header-main-nav .nav-link {
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  color: #c4b5fd;
  transition: all 0.3s ease;
  letter-spacing: 0.8px;
  white-space: nowrap;
}

.header-main-nav .nav-link:hover {
  background: rgba(139, 92, 246, 0.3);
  color: #fff;
  transform: translateY(-1px);
}

.header-main-nav .nav-link:active,
.header-main-nav .nav-link.active {
  background: linear-gradient(135deg, #8B5CF6, #6366f1);
  color: #fff;
}

/* User Actions */
.header-user-section {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Login & Basket Buttons */
.btn-login {
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 10px;
  background: linear-gradient(135deg, #8B5CF6, #6366f1);
  color: #fff;
  border: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(139, 92, 246, 0.5);
  background: linear-gradient(135deg, #a78bfa, #8B5CF6);
}

/* Soften hover effect specifically for product Add to Basket / Subscribe buttons */
.product-actions .btn-primary::before,
.product-actions .btn-secondary::before {
  display: none;
}

.product-actions .btn-primary:hover,
.product-actions .btn-primary:focus,
.product-actions .btn-secondary:hover,
.product-actions .btn-secondary:focus {
  box-shadow: none;
  transform: none;
  background-color: var(--btn-color-bg);
}

.btn-basket {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 10px;
  background: rgba(26, 26, 62, 0.8);
  color: #a78bfa;
  border: 2px solid rgba(139, 92, 246, 0.4);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-basket:hover {
  transform: translateY(-2px);
  background: rgba(139, 92, 246, 0.3);
  border-color: rgba(139, 92, 246, 0.6);
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 8px;
}

/* Discord & Documentation Buttons */
.btn-icon-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 1px solid rgba(139, 92, 246, 0.3);
  background: rgba(26, 26, 62, 0.5);
}

.btn-icon-link:hover {
  background: rgba(139, 92, 246, 0.3);
  border-color: rgba(139, 92, 246, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.btn-icon-link .btn-icon {
  width: 20px;
  height: 20px;
}

.youtube-btn {
  color: #c4b5fd;
}

.discord-btn {
  color: #c4b5fd;
}

.docs-btn {
  color: #c4b5fd;
}

.docs-btn svg {
  stroke: currentColor;
}



.header-featured-inner {
  max-width: var(--content-inner-width);
  margin: 0 auto;
  padding: 0 var(--content-padding);
}

.featured-hero-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: rgba(15, 15, 30, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 2px solid rgba(139, 92, 246, 0.4);
  padding: 50px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.6), 0 0 100px rgba(139, 92, 246, 0.2);
  overflow: hidden;
  position: relative;
}

.featured-hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, #8B5CF6, #a78bfa, #8B5CF6, transparent);
  animation: shimmer 3s ease-in-out infinite;
}

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

.featured-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.featured-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, #8B5CF6, #6366f1);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  border-radius: 8px;
  width: fit-content;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.featured-title {
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  margin: 0;
  line-height: 1.2;
  text-shadow: 0 4px 20px rgba(139, 92, 246, 0.5);
}

.featured-description {
  font-size: 16px;
  line-height: 1.8;
  color: #c4b5fd;
  margin: 0;
  opacity: 0.9;
}

.featured-price {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 32px;
  font-weight: 900;
}

.price-original {
  color: #6b7280;
  text-decoration: line-through;
  font-size: 24px;
}

.price-discounted,
.price-current {
  color: #8B5CF6;
  text-shadow: 0 2px 10px rgba(139, 92, 246, 0.5);
}

.discount-badge {
  padding: 6px 12px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
  font-size: 16px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
}

.btn-featured-view {
  display: inline-block;
  padding: 16px 40px;
  background: linear-gradient(135deg, #8B5CF6, #6366f1);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 12px;
  transition: all 0.3s ease;
  width: fit-content;
  box-shadow: 0 6px 25px rgba(139, 92, 246, 0.4);
}

.btn-featured-view:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(139, 92, 246, 0.6);
  background: linear-gradient(135deg, #a78bfa, #8B5CF6);
}

.featured-hero-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

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

.featured-hero-card:hover .featured-hero-image img {
  transform: scale(1.05);
}

@media (width <= 1024px) {
  .featured-hero-card {
    grid-template-columns: 1fr;
    padding: 30px;
  }
  
  .featured-title {
    font-size: 36px;
  }
}

/* Responsive */
@media (width <= 960px) {
  .header-main-nav {
    display: none;
  }
  
  .site-title-large img {
    max-height: 70px;
  }
}

.site-sale-banner {
  border-radius: 12px;
  background: linear-gradient(90deg, #0c0c1b, #30265e) !important;
  border: 2px solid rgba(139, 92, 246, 0.4);
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
  animation: glow 2s ease-in-out infinite;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
  }
  50% {
    box-shadow: 0 8px 40px rgba(139, 92, 246, 0.6), 0 0 60px rgba(139, 92, 246, 0.3);
  }
}

.site-home-categories .category {
  border-radius: 12px;
  padding: 20px var(--widget-padding);
  background: var(--color-brighter-bg);
  border: 1px solid rgba(139, 92, 246, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}
.site-home-categories .category:hover {
  color: var(--color-primary);
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
  transform: translateY(-3px);
}

.category-description,
.category-description-hero,
.store-text {
  text-align: left;
  border-radius: 16px;
  padding: 40px;
  background: rgba(26, 26, 62, 0.8);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(139, 92, 246, 0.3);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
  margin: 0 0 40px 0;
}

.category-description-hero {
  background: rgba(26, 26, 62, 0.9);
  border: 2px solid rgba(139, 92, 246, 0.4);
  box-shadow: 0 8px 35px rgba(139, 92, 246, 0.3);
}

.category-description-hero h1,
.category-description-hero h2 {
  color: #a78bfa;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(139, 92, 246, 0.5);
}

.category-description-hero p {
  color: #e0d7ff;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.category-description-hero strong {
  color: #8B5CF6;
  font-weight: 700;
}

.category-description-hero a {
  color: #8B5CF6;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.category-description-hero a:hover {
  color: #a78bfa;
}

.store-text h1,
.store-text h2,
.store-text h3,
.store-text h4,
.store-text h5,
.store-text h6 {
  color: #a78bfa;
}

/* ===== LUXURY PRODUCT CARDS ===== */
.product-card-modern {
  display: flex;
  flex-direction: column;
  background: linear-gradient(145deg, rgba(20, 20, 40, 0.95), rgba(10, 10, 25, 0.98));
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 2px solid transparent;
  background-clip: padding-box;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(139, 92, 246, 0.1);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  min-height: 320px;
}

.product-card-modern::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(145deg, rgba(139, 92, 246, 0.3), rgba(99, 102, 241, 0.2), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product-card-modern:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 48px rgba(139, 92, 246, 0.4), 0 0 120px rgba(139, 92, 246, 0.15), inset 0 1px 0 rgba(139, 92, 246, 0.2);
}

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

/* Product Image Section */
.product-image-section {
  display: block;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(10, 10, 30, 0.8), rgba(5, 5, 15, 0.9));
}

.image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 65%; /* Better aspect ratio */
  overflow: hidden;
}

.image-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(10, 10, 25, 0.8), transparent);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.product-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
  filter: brightness(0.9);
}

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

.image-default {
  background: linear-gradient(145deg, rgba(26, 26, 62, 0.7), rgba(15, 15, 35, 0.9));
}

/* Premium Badges */
.badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 8px 18px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 10;
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: badgePulse 2.5s ease-in-out infinite;
}

.badge-discount {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 50%, #b91c1c 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* License Badge (ESCROW/OPENSOURCE) - Diagonal banner in top-left corner */
.license-badge {
  position: absolute;
  top: 18px;
  left: -25px;
  padding: 5px 32px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  z-index: 15;
  color: #ffffff;
  transform: rotate(-37.5deg);
  transform-origin: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  white-space: nowrap;
  pointer-events: none;
  line-height: 1.2;
}

.license-escrow {
  background: linear-gradient(135deg, #d97706 0%, #b45309 50%, #92400e 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.license-opensource {
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 50%, #5b21b6 100%);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

@keyframes badgePulse {
  0%, 100% { 
    transform: scale(1) rotate(0deg); 
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1); 
  }
  50% { 
    transform: scale(1.08) rotate(-2deg); 
    box-shadow: 0 8px 28px rgba(239, 68, 68, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.2); 
  }
}

/* Product Content */
.product-content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: linear-gradient(to bottom, transparent, rgba(5, 5, 15, 0.3));
}

.product-title {
  margin: 0;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.3px;
}

.product-title a {
  color: #ffffff;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #ffffff, #e0d7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-title a:hover {
  background: linear-gradient(135deg, #8B5CF6, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transform: translateX(2px);
}

.product-countdown {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #fca5a5;
  width: fit-content;
}

.countdown-icon {
  font-size: 14px;
  animation: pulse 1.5s ease-in-out infinite;
}

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

.countdown-text {
  font-weight: 600;
}

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

.store-products-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.widget-title {
  text-align: center;
  color: #a78bfa;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(139, 92, 246, 0.3);
  position: relative;
}

.widget-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #8B5CF6, transparent);
}

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

.no-products {
  color: var(--color-text-secondary);
  background: var(--color-brighter-bg);
  border-radius: 12px;
  border: 1px solid rgba(139, 92, 246, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.store-product-full {
  border-radius: 12px;
  background: var(--color-brighter-bg);
  border: 1px solid rgba(139, 92, 246, 0.3);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.store-product .quantity-field {
  border-radius: 5px;
  background: var(--color-brighter-bg);
}
.store-product .quantity-field input[type=number] {
  border: none;
}

/* ===== CATEGORY NAVIGATION ===== */
.category-nav {
  max-width: var(--content-inner-width);
  margin: 0 auto 30px;
  padding: 0 var(--content-padding);
}

.category-nav .navigation-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  background: rgba(26, 26, 62, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 10px;
  border: 1px solid rgba(139, 92, 246, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.category-nav .navigation-list li {
  position: relative;
}

.category-nav a {
  display: block;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  color: #e0d7ff;
}

.category-nav a:hover {
  background: rgba(139, 92, 246, 0.3);
  color: #fff;
  transform: translateY(-2px);
}

.category-nav a.link-active,
.category-nav .active > a {
  background: linear-gradient(135deg, #8B5CF6, #6366f1);
  color: #fff;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.category-nav .has-children > ul {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
  min-width: 200px;
  background: rgba(26, 26, 62, 0.95);
  backdrop-filter: blur(15px);
  border-radius: 8px;
  border: 1px solid rgba(139, 92, 246, 0.3);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  padding: 8px;
  display: none;
  z-index: 100;
}

.category-nav .has-children.expanded > ul,
.category-nav .has-children:hover > ul {
  display: block;
}

.category-nav .has-children > ul li {
  width: 100%;
}

.category-nav .has-children > ul a {
  width: 100%;
}

.widget {
  border-radius: 12px;
  background: rgba(15, 15, 30, 0.9);
  border: 1px solid rgba(139, 92, 246, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

/* Featured Package - Match Product Card Height */
.widget-featured .product-card-modern {
  min-height: 450px;
}

.widget:hover {
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.25);
}

/* Sidebar compact design */
.store-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 100%;
}

.store-sidebar .widget {
  margin-top: 0 !important;
  padding: 20px !important;
}

.store-sidebar .widget-title {
  font-size: 16px;
  margin-bottom: 12px;
}

.store-sidebar .product-card-modern {
  min-height: 320px !important;
}

.store-sidebar .product-content {
  padding: 16px !important;
}

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

/* Hide navigation widget in sidebar */
.store-sidebar .widget.site-navigation,
.store-sidebar .widget.navigation-vertical {
  display: none !important;
}

@media (width <= 960px) {
  .widget.site-navigation {
    border-radius: 0;
    background: transparent;
  }
}

.widget-gift-card .gift-card-input {
  border-radius: 8px;
  border: 1px solid rgba(139, 92, 246, 0.3);
  background: rgba(26, 26, 62, 0.5);
  transition: all 0.3s ease;
}

.widget-gift-card .gift-card-input:focus {
  border-color: rgba(139, 92, 246, 0.6);
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.3);
  background: rgba(26, 26, 62, 0.7);
}

.widget-top-donator .avatar {
  border-radius: 50%;
  border: 3px solid rgba(139, 92, 246, 0.4);
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
  transition: all 0.3s ease;
}

.widget-top-donator .avatar:hover {
  border-color: rgba(139, 92, 246, 0.7);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
  transform: scale(1.05);
}

.widget-community-goal .progress,
.widget-goal .progress {
  border-radius: 20px;
  background: rgba(26, 26, 62, 0.8);
  border: 1px solid rgba(139, 92, 246, 0.3);
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.widget-community-goal .progress-bar,
.widget-goal .progress-bar {
  border-radius: 20px;
  background: linear-gradient(90deg, #8B5CF6, #6366f1);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
  position: relative;
  overflow: hidden;
}

.widget-community-goal .progress-bar::after,
.widget-goal .progress-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: progressShimmer 2s linear infinite;
}

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

.popup-content {
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(15, 15, 35, 0.98), rgba(10, 10, 25, 0.95)) !important;
  backdrop-filter: blur(25px);
  border: 2px solid rgba(139, 92, 246, 0.4);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.7), 0 0 60px rgba(139, 92, 246, 0.4);
  position: relative;
  overflow: hidden;
}

.popup-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.6), transparent);
  z-index: 1;
}

.login-popup-content {
  max-width: 420px !important;
  padding: 40px !important;
}

.login-popup-content h1,
.login-popup-content h2 {
  color: #ffffff !important;
  text-align: center !important;
  margin-bottom: 30px !important;
  font-weight: 900 !important;
  background: linear-gradient(135deg, #ffffff, #8B5CF6) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.store-form {
  background: rgba(20, 20, 40, 0.6) !important;
  border: 1px solid rgba(139, 92, 246, 0.3) !important;
  border-radius: 16px !important;
  padding: 30px !important;
  backdrop-filter: blur(15px) !important;
}

.store-form input,
.store-form textarea,
.store-form select {
  background: rgba(15, 15, 35, 0.8) !important;
  border: 1px solid rgba(139, 92, 246, 0.4) !important;
  border-radius: 10px !important;
  color: #ffffff !important;
  padding: 12px 16px !important;
  font-size: 14px !important;
  transition: all 0.3s ease !important;
}

.store-form input:focus,
.store-form textarea:focus,
.store-form select:focus {
  border-color: rgba(139, 92, 246, 0.7) !important;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.3) !important;
  outline: none !important;
}

.store-form label {
  color: #c4b5fd !important;
  font-weight: 600 !important;
  margin-bottom: 8px !important;
  display: block !important;
}

.text-content {
  background: linear-gradient(145deg, rgba(20, 20, 40, 0.8), rgba(15, 15, 35, 0.9)) !important;
  border: 1px solid rgba(139, 92, 246, 0.3) !important;
  border-radius: 16px !important;
  padding: 30px !important;
  backdrop-filter: blur(15px) !important;
  color: #e2e8f0 !important;
  line-height: 1.7 !important;
}

.text-content h1,
.text-content h2,
.text-content h3 {
  color: #ffffff !important;
  margin-bottom: 20px !important;
  background: linear-gradient(135deg, #ffffff, #8B5CF6) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.text-content p {
  margin-bottom: 16px !important;
  color: #c4b5fd !important;
}

/* ===== PACKAGE PAGE STYLES ===== */
.package-page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* ===== PACKAGE MEDIA SECTION ===== */
.package-media-section {
  margin-bottom: 30px;
  max-width: 100%;
  overflow: hidden;
}

.package-media-section .media-slider {
  background: rgba(15, 15, 35, 0.6);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 16px;
  padding: 20px;
  overflow: hidden;
  width: 100%;
  max-width: 500px;
}

.package-media-section .slider {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  max-height: 400px;
  width: 100%;
}

.package-media-section .slide-image,
.package-media-section .slide-frame {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
}

.package-media-section .slide-frame {
  border: none;
}

.package-media-section .thumbs {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0;
}

.package-media-section .thumb {
  width: 80px;
  height: 60px;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid rgba(139, 92, 246, 0.3);
  transition: all 0.3s ease;
}

.package-media-section .thumb:hover {
  border-color: rgba(139, 92, 246, 0.6);
  transform: scale(1.05);
}

.package-media-section .thumb-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.package-media-section .thumb-youtube {
  width: 100%;
  height: 100%;
  position: relative;
  background: #000;
}

.package-media-section .thumb-youtube img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.package-media-section .thumb-youtube::after {
  content: '▶';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 16px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.package-page-content {
  background: linear-gradient(145deg, rgba(20, 20, 40, 0.8), rgba(15, 15, 35, 0.9));
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 20px;
  padding: 40px;
}

.package-header {
  margin-bottom: 30px;
}

.package-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 14px;
}

.breadcrumb-link {
  color: #8B5CF6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link:hover {
  color: #a78bfa;
}

.breadcrumb-separator {
  color: #6b7280;
}

.breadcrumb-current {
  color: #c4b5fd;
  font-weight: 600;
}

.package-title {
  font-size: 36px;
  font-weight: 900;
  margin: 0;
  background: linear-gradient(135deg, #ffffff, #8B5CF6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex;
  align-items: center;
  gap: 15px;
}

.package-countdown {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  animation: pulse 2s infinite;
}

.package-main-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.package-media-section {
  position: relative;
}

.package-image-container {
  border-radius: 16px;
  overflow: hidden;
  background: rgba(26, 26, 62, 0.5);
  max-width: 500px;
  width: 100%;
  border: 1px solid rgba(139, 92, 246, 0.3);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.package-image:hover {
  transform: scale(1.05);
}

.package-image-default {
  width: 80px;
  height: 80px;
  background: rgba(139, 92, 246, 0.3);
  border-radius: 12px;
  position: relative;
}

.package-image-default::before {
  content: "📦";
  font-size: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.package-actions-section {
  background: rgba(26, 26, 62, 0.8);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 16px;
  padding: 30px;
  height: fit-content;
}

.package-description-section {
  border-top: 1px solid rgba(139, 92, 246, 0.3);
  padding-top: 30px;
}

.section-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
  background: linear-gradient(135deg, #ffffff, #8B5CF6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.package-sidebar {
  background: linear-gradient(145deg, rgba(20, 20, 40, 0.8), rgba(15, 15, 35, 0.9));
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(15px);
  height: fit-content;
  position: sticky;
  top: 100px;
}

/* Responsive */
@media (width <= 1024px) {
  .package-page-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px 20px;
  }
  
  .package-main-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .package-title {
    font-size: 28px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .package-sidebar {
    position: static;
  }
}

@media (width <= 768px) {
  .package-page-content {
    padding: 25px;
  }
  
  .package-title {
    font-size: 24px;
  }
  
  .breadcrumb-current {
    display: none;
  }
}

/* ===== FRAMEWORK SUPPORT GRID ===== */
.framework-support {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(139, 92, 246, 0.3);
}

.framework-title {
  font-size: 16px;
  font-weight: 700;
  color: #c4b5fd;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.framework-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.framework-badge {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid;
  transition: all 0.3s ease;
}


.framework-badge.qb-core {
  background: rgba(34, 197, 94, 0.2);
  border-color: rgba(34, 197, 94, 0.4);
  color: #4ade80;
}

.framework-badge.esx {
  background: rgba(59, 130, 246, 0.2);
  border-color: rgba(59, 130, 246, 0.4);
  color: #60a5fa;
}

.framework-badge.qbox {
  background: rgba(168, 85, 247, 0.2);
  border-color: rgba(168, 85, 247, 0.4);
  color: #a78bfa;
}

.framework-badge.standalone {
  background: rgba(245, 158, 11, 0.2);
  border-color: rgba(245, 158, 11, 0.4);
  color: #fbbf24;
}

.framework-badge.universal {
  background: rgba(139, 92, 246, 0.2);
  border-color: rgba(139, 92, 246, 0.4);
  color: #8B5CF6;
}

/* ===== PACKAGE ACTIONS IMPROVEMENTS ===== */
.package-actions-section .actions {
  background: none !important;
  border: none !important;
  padding: 0 !important;
}

.package-price-section {
  margin-bottom: 25px;
}

.package-price-section .price {
  font-size: 28px !important;
  font-weight: 900 !important;
  margin-bottom: 0 !important;
  color: #8B5CF6 !important;
}

.actions .btn-primary,
.actions .btn-secondary {
  background: linear-gradient(135deg, #8B5CF6, #7c3aed) !important;
  border: 1px solid rgba(139, 92, 246, 0.4) !important;
  border-radius: 12px !important;
  padding: 14px 24px !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  color: #ffffff !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 12px !important;
}

.actions .btn-primary:hover,
.actions .btn-secondary:hover {
  background: linear-gradient(135deg, #7c3aed, #6d28d9) !important;
  transform: translateY(-2px) !important;
  /* box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4) !important; */
}

.actions .btn-secondary {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(124, 58, 237, 0.3)) !important;
  color: #8B5CF6 !important;
}

.actions .btn-secondary:hover {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(124, 58, 237, 0.4)) !important;
  color: #ffffff !important;
}

/* ===== RECOMMENDED SCRIPTS SECTION ===== */
.package-recommended-section {
  background: linear-gradient(145deg, rgba(20, 20, 40, 0.8), rgba(15, 15, 35, 0.9));
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(15px);
  margin-top: 40px;
}

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

.recommended-script-card {
  background: linear-gradient(145deg, rgba(26, 26, 62, 0.6), rgba(15, 15, 35, 0.8));
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 16px;
  padding: 20px;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.recommended-script-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), rgba(34, 211, 238, 0.3), transparent);
  transition: left 0.6s ease;
  z-index: 1;
}

.recommended-script-card:hover::before {
  left: 100%;
}

.recommended-script-card:hover {
  border-color: rgba(59, 130, 246, 0.6);
  transform: translateY(-8px);
  box-shadow: 
    0 15px 40px rgba(59, 130, 246, 0.4),
    0 0 30px rgba(34, 211, 238, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  background: linear-gradient(145deg, rgba(26, 26, 62, 0.8), rgba(15, 15, 35, 0.9));
}

.script-image {
  width: 100%;
  height: 120px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 15px;
  background: rgba(139, 92, 246, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.script-image-default {
  font-size: 32px;
  color: #8B5CF6;
}

.script-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.script-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.3;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.recommended-script-card:hover .script-title {
  color: #60a5fa;
  text-shadow: 0 0 10px rgba(96, 165, 250, 0.5);
}

.script-price {
  font-size: 16px;
  font-weight: 700;
  color: #8B5CF6;
  margin-bottom: 15px;
}

.recommended-script-card {
  text-decoration: none;
  color: inherit;
}

.script-link {
  background: linear-gradient(135deg, #8B5CF6, #7c3aed);
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  transition: all 0.3s ease;
  margin-top: auto;
  display: block;
  position: relative;
  z-index: 2;
}

.recommended-script-card:hover .script-link {
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(96, 165, 250, 0.4);
}

/* ===== PREVIEW VIDEO STYLES ===== */
.preview-video-container {
  margin: 25px 0;
  padding: 25px;
  background: linear-gradient(145deg, rgba(26, 26, 62, 0.6), rgba(15, 15, 35, 0.8));
  border: 1px solid rgba(139, 92, 246, 0.4);
  border-radius: 16px;
  backdrop-filter: blur(15px);
}

.video-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #ffffff, #8B5CF6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

/* Responsive for recommended scripts */
@media (width <= 768px) {
  .recommended-scripts-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
  }
  
  .package-recommended-section {
    padding: 25px;
    margin-top: 30px;
  }
  
  .preview-video-container {
    padding: 20px;
    margin: 20px 0;
  }
  
  .video-title {
    font-size: 18px;
  }
}

/* ===== UNIFIED PACKAGE INFO ===== */
.package-unified-info {
  background: rgba(26, 26, 62, 0.8);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 30px;
}

.unified-title {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 15px 0;
  text-align: center;
  background: linear-gradient(135deg, #ffffff, #8B5CF6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.unified-description {
  font-size: 16px;
  line-height: 1.6;
  color: #c4b5fd;
  margin: 0 0 25px 0;
  text-align: center;
}

.unified-sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

/* Features section full width */
.unified-section.features-section {
  grid-column: 1 / -1;
}

.unified-section.features-section .section-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 12px;
}

.unified-section {
  background: rgba(15, 15, 35, 0.6);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 12px;
  padding: 20px;
}

.section-header {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 15px 0;
  border-bottom: 1px solid rgba(139, 92, 246, 0.3);
  padding-bottom: 8px;
}

.section-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.unified-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 8px;
  font-size: 14px;
  color: #e2e8f0;
  transition: background-color 0.2s ease;
}

.unified-item:hover {
  background: rgba(139, 92, 246, 0.15);
}

.unified-item.required {
  border-color: rgba(34, 197, 94, 0.3);
  background: rgba(34, 197, 94, 0.1);
}

.unified-item.optional {
  border-color: rgba(245, 158, 11, 0.3);
  background: rgba(245, 158, 11, 0.1);
}

.req-badge {
  background: rgba(139, 92, 246, 0.8);
  color: #ffffff;
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.unified-item.required .req-badge {
  background: rgba(34, 197, 94, 0.8);
}

.unified-item.optional .req-badge {
  background: rgba(245, 158, 11, 0.8);
}

/* Package Footer Section */
.package-footer-section {
  margin-top: 25px;
  padding: 20px;
  background: rgba(15, 15, 35, 0.8);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 12px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 15px;
  /* max-width: 600px; */
  margin: 0 auto;
}

.footer-text {
  grid-column: 1 / -1;
  grid-row: 1;
}

.footer-link {
  display: flex;
  justify-content: center;
}

.footer-link:nth-child(2) {
  justify-content: flex-end;
  padding-right: 20px;
}

.footer-link:nth-child(3) {
  justify-content: flex-start;
  padding-left: 20px;
}

.footer-discord,
.footer-docs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #c4b5fd;
  transition: color 0.2s ease;
  padding: 15px;
  border-radius: 12px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.footer-discord:hover,
.footer-docs:hover {
  color: #ffffff;
  background: rgba(139, 92, 246, 0.2);
  border-color: rgba(139, 92, 246, 0.4);
}

.footer-discord img,
.footer-docs img {
  width: 32px;
  height: 32px;
}

.footer-discord span,
.footer-docs span {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-text {
  text-align: center;
}

.footer-text p {
  font-size: 14px;
  line-height: 1.5;
  color: #e2e8f0;
  margin: 0;
  font-weight: 500;
}

/* Responsive */
@media (width <= 768px) {
  .unified-sections {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .package-unified-info {
    padding: 20px;
  }
  
  .unified-title {
    font-size: 24px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 15px;
    text-align: center;
  }
  
  .footer-text {
    grid-column: 1;
    grid-row: 1;
  }
  
  /* Package Media Responsive */
  .package-media-section .slide-image,
  .package-media-section .slide-frame {
    height: 250px;
  }
  
  .package-media-section .slider {
    max-height: 250px;
  }
  
  .package-media-section .thumbs {
    gap: 8px;
  }
  
  .package-media-section .thumb {
    width: 60px;
    height: 45px;
  }
}

/* ===== PACKAGE INFO GRIDS ===== */
.package-info-grid {
  margin: 25px 0;
  padding: 25px;
  background: linear-gradient(145deg, rgba(26, 26, 62, 0.8), rgba(15, 15, 35, 0.9));
  border: 1px solid rgba(139, 92, 246, 0.4);
  border-radius: 16px;
}

.info-grid-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff, #8B5CF6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.info-grid-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 15px;
}

.info-grid-item {
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 12px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  position: relative;
}

.info-grid-item:hover {
  border-color: rgba(139, 92, 246, 0.5);
  background: rgba(139, 92, 246, 0.15);
}

.item-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.item-text {
  flex: 1;
  font-weight: 600;
  color: #ffffff;
  font-size: 14px;
}

.item-badge {
  background: rgba(139, 92, 246, 0.8);
  color: #ffffff;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Requirements specific styling */
.requirements-grid .info-grid-item.required {
  border-color: rgba(34, 197, 94, 0.4);
  background: rgba(34, 197, 94, 0.1);
}

.requirements-grid .info-grid-item.required:hover {
  border-color: rgba(34, 197, 94, 0.6);
  background: rgba(34, 197, 94, 0.15);
  box-shadow: 0 5px 15px rgba(34, 197, 94, 0.2);
}

.requirements-grid .info-grid-item.required .item-badge {
  background: rgba(34, 197, 94, 0.8);
}

.requirements-grid .info-grid-item.optional {
  border-color: rgba(245, 158, 11, 0.4);
  background: rgba(245, 158, 11, 0.1);
}

.requirements-grid .info-grid-item.optional:hover {
  border-color: rgba(245, 158, 11, 0.6);
  background: rgba(245, 158, 11, 0.15);
  box-shadow: 0 5px 15px rgba(245, 158, 11, 0.2);
}

.requirements-grid .info-grid-item.optional .item-badge {
  background: rgba(245, 158, 11, 0.8);
}

/* Features specific styling */
.features-grid .info-grid-item {
  border-color: rgba(168, 85, 247, 0.4);
  background: rgba(168, 85, 247, 0.1);
}

.features-grid .info-grid-item:hover {
  border-color: rgba(168, 85, 247, 0.6);
  background: rgba(168, 85, 247, 0.15);
  box-shadow: 0 5px 15px rgba(168, 85, 247, 0.2);
}

/* Compatibility specific styling */
.compatibility-grid .info-grid-item {
  border-color: rgba(59, 130, 246, 0.4);
  background: rgba(59, 130, 246, 0.1);
}

.compatibility-grid .info-grid-item:hover {
  border-color: rgba(59, 130, 246, 0.6);
  background: rgba(59, 130, 246, 0.15);
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.2);
}

/* Systems specific styling */
.systems-grid .info-grid-item {
  border-color: rgba(139, 92, 246, 0.4);
  background: rgba(139, 92, 246, 0.1);
}

.systems-grid .info-grid-item:hover {
  border-color: rgba(139, 92, 246, 0.6);
  background: rgba(139, 92, 246, 0.15);
  box-shadow: 0 5px 15px rgba(139, 92, 246, 0.2);
}

.systems-grid .info-grid-item.inventory {
  border-color: rgba(168, 85, 247, 0.4);
  background: rgba(168, 85, 247, 0.1);
}

.systems-grid .info-grid-item.target {
  border-color: rgba(59, 130, 246, 0.4);
  background: rgba(59, 130, 246, 0.1);
}

.systems-grid .info-grid-item.notification {
  border-color: rgba(245, 158, 11, 0.4);
  background: rgba(245, 158, 11, 0.1);
}

.systems-grid .info-grid-item.database {
  border-color: rgba(34, 197, 94, 0.4);
  background: rgba(34, 197, 94, 0.1);
}


/* Responsive */
@media (width <= 768px) {
  .info-grid-items {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .package-info-grid {
    padding: 20px;
    margin: 20px 0;
  }
  
  .info-grid-title {
    font-size: 18px;
  }
  
  .info-grid-item {
    padding: 12px;
  }
}

.popup-close {
  border-radius: 8px;
  background: rgba(139, 92, 246, 0.2);
  transition: all 0.3s ease;
}

.popup-close:hover {
  background: rgba(139, 92, 246, 0.4);
  transform: rotate(90deg);
}

.basket-popup-content,
.basket-popup-content .popup-close {
  border-radius: 16px;
}

.basket-items {
  padding: var(--widget-padding) calc(var(--content-padding) - var(--widget-padding));
}

.basket-item {
  border-radius: 12px;
  background: rgba(26, 26, 62, 0.5);
  border: 1px solid rgba(139, 92, 246, 0.2);
  padding: 12px;
  transition: all 0.3s ease;
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 12px;
  align-items: center;
  max-width: 100%;
  overflow: hidden;
}

.basket-item:hover {
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.2);
}

.basket-item .info {
  min-width: 0;
  overflow: hidden;
}

.basket-item .title {
  font-size: 16px !important;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.basket-item .quantity {
  padding: 0;
  background: none;
  border-radius: 0;
  border: none;
}

.basket-item .remove {
  width: 32px !important;
  height: 32px !important;
  background: rgba(239, 68, 68, 0.2) !important;
  border: 1px solid rgba(239, 68, 68, 0.3) !important;
  border-radius: 8px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
  flex-shrink: 0 !important;
  color: #ffffff !important;
}

.basket-item .remove:hover {
  background: rgba(239, 68, 68, 0.3) !important;
  border-color: rgba(239, 68, 68, 0.5) !important;
  transform: scale(1.05) !important;
}

.basket-item .remove::before {
  content: "";
  width: 18px;
  height: 18px;
  background: currentColor;
  mask: url("https://template-assets.tebex.io/images/delete.svg") center center/contain no-repeat;
  -webkit-mask: url("https://template-assets.tebex.io/images/delete.svg") center center/contain no-repeat;
}

.basket-item .quantity-field {
  background: none !important;
  border: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  min-width: 60px !important;
}

.basket-item .quantity-field input {
  background: rgba(139, 92, 246, 0.1) !important;
  border: 1px solid rgba(139, 92, 246, 0.3) !important;
  border-radius: 6px !important;
  padding: 4px 8px !important;
  font-size: 14px !important;
  text-align: center !important;
  width: 50px !important;
}

.basket-item .price {
  font-size: 14px !important;
  text-align: right !important;
  min-width: 60px !important;
}

.toast {
  border-radius: 12px;
  background: rgba(26, 26, 62, 0.95) !important;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(139, 92, 246, 0.4);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 0 0 40px rgba(139, 92, 246, 0.2);
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    transform: translateY(-100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.toast-close {
  border-radius: 6px;
  background: rgba(139, 92, 246, 0.2);
  transition: all 0.3s ease;
}

.toast-close:hover {
  background: rgba(139, 92, 246, 0.4);
  transform: scale(1.1);
}

.store-category-tiered {
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(20, 20, 40, 0.95), rgba(10, 10, 25, 0.98));
  backdrop-filter: blur(20px);
  border: 2px solid rgba(139, 92, 246, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  margin: 0 auto 40px auto;
  max-width: 1000px;
  width: 80%;
  position: relative;
}

/* Category Layout Improvements - Full Width */
.site-content:has(.store-category-tiered),
.site-content:has(.store-category) {
  max-width: 100%;
  margin: 0;
  padding: 0 10px;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

.store-categories-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 40px;
  width: 100%;
  padding: 40px 0;
}

/* Responsive adjustments for categories */
@media (width <= 1024px) {
  .store-category-tiered,
  .store-category {
    max-width: none;
    margin: 0 0 40px 0;
  }
  
  .store-product-tiered,
  .store-product {
    margin: 15px;
  }
  
  .store-categories-container {
    padding: 30px 0;
    gap: 30px;
  }
}

.store-category-tiered-header {
  padding: 40px 30px 30px 30px;
  text-align: center;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(99, 102, 241, 0.05));
  border-bottom: 1px solid rgba(139, 92, 246, 0.2);
  position: relative;
}

.store-category-tiered-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #8B5CF6, #6366f1);
  border-radius: 2px;
}

.store-category-tiered-header h1,
.store-category-tiered-header h2,
.store-category-tiered-header h3,
.store-category-tiered-header h4,
.store-category-tiered-header h5,
.store-category-tiered-header h6 {
  text-align: center;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(139, 92, 246, 0.5);
  margin: 0 0 15px 0;
  font-size: 32px;
  font-weight: 900;
  background: linear-gradient(135deg, #ffffff, #8B5CF6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.store-category-tiered-header p {
  color: #c4b5fd;
  font-size: 16px;
  margin: 0;
  opacity: 0.9;
}

.store-category-tiered-content {
  padding: 30px;
}

.store-category-tiered-content .no-products {
  text-align: center;
  color: #c4b5fd;
  font-size: 18px;
  padding: 40px;
  opacity: 0.8;
}

/* ===== REGULAR STORE CATEGORY STYLING ===== */
.store-category {
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  border: none;
  box-shadow: none;
  overflow: hidden;
  margin: 0 auto 40px auto;
  max-width: none;
  width: 100%;
  position: relative;
}

.store-category-header {
  padding: 40px 30px 20px 30px;
  text-align: left;
  background: transparent;
  border-bottom: none;
  position: relative;
}

.store-category-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #8B5CF6, #6366f1);
  border-radius: 2px;
}

.store-category-header h1,
.store-category-header h2,
.store-category-header h3,
.store-category-header h4,
.store-category-header h5,
.store-category-header h6 {
  text-align: center;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(139, 92, 246, 0.5);
  margin: 0 0 15px 0;
  font-size: 52px;
  font-weight: 900;
  background: linear-gradient(135deg, #ffffff, #8B5CF6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.store-category-header p {
  color: #c4b5fd;
  font-size: 16px;
  margin: 0;
  opacity: 0.9;
}

.store-category-content {
  padding: 30px;
}

.store-category-content .no-products {
  text-align: center;
  color: #c4b5fd;
  font-size: 18px;
  padding: 40px;
  opacity: 0.8;
}

/* Store Products in Regular Categories */
.store-product {
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(26, 26, 62, 0.8), rgba(20, 20, 50, 0.9));
  backdrop-filter: blur(15px);
  border: 2px solid rgba(139, 92, 246, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 20px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.store-product::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
  transition: left 0.6s ease;
}

.store-product:hover {
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: 0 12px 40px rgba(139, 92, 246, 0.3);
  transform: translateY(-5px) scale(1.02);
}

.store-product:hover::before {
  left: 100%;
}

/* Override shared.css store-products layout */
.store-category .store-products-images {
  display: grid;
  /* Always 5 columns (20%) */
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  padding: 0;
  max-width: 100%;
}

@media (max-width: 1400px) {
  .store-category .store-products-images {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .store-category .store-products-images {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .store-category .store-products-images {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .store-category .store-products-images {
    grid-template-columns: 1fr;
  }
}

.store-category .store-products-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
}

/* Reset default store-product styling from shared.css */
.store-category .store-product {
  margin: 0;
  padding: 20px;
}

.store-product-tiered {
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(26, 26, 62, 0.8), rgba(20, 20, 50, 0.9));
  backdrop-filter: blur(15px);
  border: 2px solid rgba(139, 92, 246, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 0;
  padding: 16px !important;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.tiered-image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.store-product-tiered .image {
  max-height: 140px;
  object-fit: contain;
  margin-bottom: 12px;
  width: 100%;
  display: block;
}

.store-product-tiered .product-title {
  font-size: 16px !important;
  margin-bottom: 10px;
}

.store-product-tiered .descr {
  font-size: 13px;
  line-height: 1.4;
  padding: 10px 0 !important;
  margin: 10px 0;
}

.store-product-tiered::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
  transition: left 0.6s ease;
}

.store-product-tiered:hover {
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: 0 12px 40px rgba(139, 92, 246, 0.3);
  transform: translateY(-5px) scale(1.02);
}

.store-product-tiered:hover::before {
  left: 100%;
}

/* Override tiered products grid layout - same as regular products */
.store-category-tiered .store-products-tiered,
.store-category .store-products-tiered {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  padding: 0;
}

@media (max-width: 1400px) {
  .store-category-tiered .store-products-tiered,
  .store-category .store-products-tiered {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .store-category-tiered .store-products-tiered,
  .store-category .store-products-tiered {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .store-category-tiered .store-products-tiered,
  .store-category .store-products-tiered {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .store-category-tiered .store-products-tiered,
  .store-category .store-products-tiered {
    grid-template-columns: 1fr;
  }
}

.media-slider .slider,
.media-slider .thumb {
  border-radius: 10px;
  border: 1px solid rgba(139, 92, 246, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.media-slider .thumb {
  transition: all 0.3s ease;
}

.media-slider .thumb:hover {
  border-color: rgba(139, 92, 246, 0.6);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.3);
  transform: scale(1.05);
}


.popup.popup-media-slider .thumb {
  border-radius: 10px;
  border: 1px solid rgba(139, 92, 246, 0.3);
  transition: all 0.3s ease;
}

.popup.popup-media-slider .thumb:hover {
  border-color: rgba(139, 92, 246, 0.6);
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.popup.popup-media-slider .popup-close {
  border-radius: 10px;
}

/* Modern Footer */
.modern-footer {
  background: rgba(15, 15, 35, 0.95);
  border-top: 2px solid rgba(139, 92, 246, 0.3);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  padding: 40px 0 20px;
}

.modern-footer .site-footer-inner {
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
  margin: 0 auto;
}

.footer-section.footer-info {
  order: 1;
  flex: 1;
  text-align: left;
}

.footer-section:has(.we-accept) {
  order: 2;
  flex: 2;
  text-align: right;
}

.footer-section:has(.we-accept) .footer-title {
  text-align: right;
}

.footer-section:has(.we-accept) .we-accept {
  justify-content: flex-end;
}

.footer-title {
  color: #a78bfa;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-description {
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

.we-accept {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  list-style: none;
  margin-top: 15px;
}

.we-accept li {
  background: rgba(26, 26, 62, 0.6);
  padding: 8px 15px;
  border-radius: 8px;
  border: 1px solid rgba(139, 92, 246, 0.2);
  transition: all 0.3s ease;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.we-accept li:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
  border-color: rgba(139, 92, 246, 0.5);
}

.we-accept img {
  height: 20px;
  width: auto;
  max-width: 36px;
  display: block;
  object-fit: contain;
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 2px solid rgba(139, 92, 246, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom-left {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-bottom-right {
  display: flex;
  align-items: center;
}

.footer-legal-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.legal-link {
  color: #c4b5fd;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.legal-link:hover {
  color: #8B5CF6;
  opacity: 1;
  text-decoration: underline;
}

.copyright,
.powered-by {
  color: var(--color-text-secondary);
  font-size: 13px;
  margin: 0;
}

.powered-by {
  color: #a78bfa;
  font-weight: 600;
}

/* ===== GLOBAL BACKGROUND THEME (Dark) ===== */
body {
  background: 
    linear-gradient(135deg, #050510 0%, #0a0a1a 25%, #060612 50%, #0f0f20 75%, #050510 100%),
    linear-gradient(0deg, transparent 0%, rgba(139, 92, 246, 0.02) 50%, transparent 100%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 50px,
      rgba(139, 92, 246, 0.03) 51px,
      rgba(139, 92, 246, 0.03) 52px,
      transparent 53px
    );
  background-attachment: fixed;
  background-size: 400% 400%, 100% 100%, 100% 100%;
  animation: gradientShift 25s ease infinite;
  min-height: 100vh;
}

/* Mobile Background Fix */
@media (width <= 768px) {
  body {
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 50%, #16213e 100%);
    background-attachment: scroll;
    background-size: 100% 100%;
    animation: none;
    min-height: 100vh;
  }
  
  body::before {
    display: none;
  }
  
  /* Mobile container backgrounds - Compact */
  .site-content {
    background: linear-gradient(145deg, rgba(26, 26, 62, 0.95), rgba(15, 15, 35, 0.9)) !important;
    border: 1px solid rgba(139, 92, 246, 0.4) !important;
    border-radius: 15px !important;
    margin: 10px 8px !important;
    padding: 15px !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3) !important;
  }
  
  .store-products {
    background: linear-gradient(145deg, rgba(15, 15, 35, 0.95), rgba(26, 26, 62, 0.9)) !important;
    border: 1px solid rgba(139, 92, 246, 0.4) !important;
    border-radius: 15px !important;
    margin: 10px 8px !important;
    padding: 15px !important;
  }
  
  .package-page-content {
    background: linear-gradient(145deg, rgba(26, 26, 62, 0.95), rgba(15, 15, 35, 0.9)) !important;
    border: 1px solid rgba(139, 92, 246, 0.4) !important;
    border-radius: 15px !important;
    margin: 0 -5px !important;
    padding: 15px !important;
  }
  
  .modern-header {
    background: rgba(10, 10, 30, 0.95) !important;
    backdrop-filter: none !important;
  }
  
  .site-footer {
    background: rgba(15, 15, 35, 0.95) !important;
  }
  
  /* Mobile Featured Scripts - Touch Scroll */
  .packages-scroll-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    mask: none;
  }
  
  .packages-scroll-wrapper::-webkit-scrollbar {
    display: none;
  }
  
  .packages-scroll-track {
    animation: none;
    gap: 20px;
    padding: 0 20px;
  }
  
  .packages-scroll-track:hover {
    animation-play-state: running;
  }
  
  .scroll-package-card {
    min-width: 280px;
    flex-shrink: 0;
  }
  
  /* Mobile Store Products - 1x1 Full Screen */
  .store-products-images {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    padding: 0 10px !important;
  }
  
  .store-category .store-products-images {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    padding: 0 10px !important;
  }
  
  .store-product,
  .store-product-tiered {
    margin: 0 !important;
    border-radius: 12px !important;
    padding: 15px !important;
    background: linear-gradient(145deg, rgba(26, 26, 62, 0.95), rgba(20, 20, 50, 0.98)) !important;
    border: 1px solid rgba(139, 92, 246, 0.4) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3) !important;
  }
  
  /* Mobile Header Responsive */
  .header-top-inner-full {
    padding: 0 15px !important;
    gap: 20px !important;
    flex-wrap: wrap;
  }
  
  .header-main-nav {
    display: none !important;
  }
  
  .header-user-section {
    gap: 10px !important;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .btn-icon-link {
    padding: 8px !important;
    min-width: auto !important;
  }
  
  .btn-icon-link span {
    display: none !important;
  }
  
  .btn-icon-link .btn-icon {
    width: 20px !important;
    height: 20px !important;
  }
  
  .header-logo-compact img {
    max-height: 35px !important;
  }
  
  .store-name-text-compact {
    font-size: 18px !important;
  }
  
  /* Mobile Package Page Compact */
  .package-page-container {
    padding: 10px !important;
    gap: 15px !important;
  }
  
  .package-main-content {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }
  
  .package-media-section {
    margin-bottom: 15px !important;
  }
  
  .package-media-section .media-slider {
    margin: 0 -5px !important;
    border-radius: 12px !important;
    padding: 15px !important;
    background: linear-gradient(145deg, rgba(15, 15, 35, 0.95), rgba(26, 26, 62, 0.9)) !important;
    border: 1px solid rgba(139, 92, 246, 0.4) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
  }
  
  .package-actions-section {
    background: linear-gradient(145deg, rgba(26, 26, 62, 0.95), rgba(15, 15, 35, 0.9)) !important;
    border: 1px solid rgba(139, 92, 246, 0.4) !important;
    border-radius: 12px !important;
    padding: 15px !important;
    margin: 0 -5px !important;
  }
  
  .package-unified-info {
    margin: 0 -5px !important;
    border-radius: 12px !important;
    padding: 15px !important;
    background: linear-gradient(145deg, rgba(26, 26, 62, 0.95), rgba(15, 15, 35, 0.9)) !important;
    border: 1px solid rgba(139, 92, 246, 0.4) !important;
  }
  
  .package-footer-section {
    margin: 0 -5px !important;
    border-radius: 12px !important;
    padding: 15px !important;
    background: linear-gradient(145deg, rgba(15, 15, 35, 0.95), rgba(26, 26, 62, 0.9)) !important;
    border: 1px solid rgba(139, 92, 246, 0.4) !important;
  }
  
  /* Mobile Font Sizes - Compact */
  .unified-title {
    font-size: 20px !important;
  }
  
  .unified-description {
    font-size: 14px !important;
  }
  
  .section-header {
    font-size: 16px !important;
  }
  
  .unified-item {
    font-size: 10px !important;
    padding: 3px 6px !important;
    border-radius: 4px !important;
    line-height: 1.2 !important;
  }
  
  .unified-sections {
    gap: 8px !important;
    margin: 0 -5px !important;
  }
  
  .unified-section {
    padding: 8px !important;
    margin: 0 !important;
    border-radius: 8px !important;
  }
  
  .section-items {
    gap: 4px !important;
  }
  
  .section-header {
    font-size: 14px !important;
    margin-bottom: 8px !important;
    padding-bottom: 4px !important;
  }
  
  .req-badge {
    font-size: 8px !important;
    padding: 1px 4px !important;
  }
  
  .footer-text p {
    font-size: 12px !important;
  }
  
  .store-product h3,
  .store-product-tiered h3 {
    font-size: 16px !important;
  }
  
  .store-product .product-price,
  .store-product-tiered .product-price {
    font-size: 14px !important;
  }
  
  /* Mobile Features Section - Extra Compact */
  .unified-section.features-section {
    padding: 6px !important;
  }
  
  .unified-section.features-section .section-items {
    grid-template-columns: 1fr !important;
    gap: 3px !important;
  }
  
  .unified-section.features-section .unified-item {
    font-size: 9px !important;
    padding: 2px 5px !important;
    margin: 0 !important;
  }
  
  /* Mobile Product Framework Badges */
  .product-framework-badges {
    gap: 4px !important;
  }
  
  .product-frameworks .framework-badge {
    font-size: 10px !important;
    padding: 4px 8px !important;
    border-radius: 12px !important;
  }
}

/* ===== PRODUCT FRAMEWORK BADGES ===== */
.product-frameworks {
  margin-top: 8px;
}

.product-framework-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

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

/* Vertical Lines Pattern */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 80px,
      rgba(139, 92, 246, 0.08) 81px,
      rgba(139, 92, 246, 0.08) 82px,
      transparent 83px
    );
  pointer-events: none;
  z-index: -1;
  opacity: 0.6;
}

/* Canvas-based snow overlay (foreground) */
#snow-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 50;
}

/* ===== HOME HERO FULLPAGE (Updated) ===== */
.home-hero-fullpage {
  background: rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.home-hero-fullpage::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(45deg, transparent 30%, rgba(139, 92, 246, 0.05) 50%, transparent 70%),
    linear-gradient(-45deg, transparent 30%, rgba(99, 102, 241, 0.03) 50%, transparent 70%);
  pointer-events: none;
  animation: heroShimmer 15s ease-in-out infinite;
}

@keyframes heroShimmer {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}

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

/* Hero Sections */
.hero-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  position: relative;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), transparent);
}

.hero-section:last-child::after {
  display: none;
}

/* Reverse layout for alternating sections */
.hero-reverse {
  direction: rtl;
}

.hero-reverse > * {
  direction: ltr;
}

/* Content Styling */
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-badge {
  display: inline-block;
  padding: 10px 24px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(99, 102, 241, 0.15));
  border: 2px solid rgba(139, 92, 246, 0.4);
  border-radius: 50px;
  color: #a78bfa;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.5px;
  width: fit-content;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.2);
}

.hero-title {
  font-size: 64px;
  font-weight: 900;
  line-height: 1.1;
  margin: 0;
  background: linear-gradient(135deg, #ffffff 0%, #e0d7ff 50%, #8B5CF6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.3)); }
  50% { filter: drop-shadow(0 0 40px rgba(139, 92, 246, 0.6)); }
}

.hero-description {
  font-size: 19px;
  line-height: 1.8;
  color: #c4b5fd;
  margin: 0;
}

.section-title {
  font-size: 48px;
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.section-description {
  font-size: 18px;
  line-height: 1.8;
  color: #c4b5fd;
  margin: 0;
}

.hero-cta-buttons {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}

.btn-hero-primary,
.btn-hero-secondary {
  padding: 18px 42px;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  border-radius: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-hero-primary {
  background: linear-gradient(135deg, #8B5CF6, #6366f1);
  color: #ffffff;
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.5);
}

.btn-hero-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 45px rgba(139, 92, 246, 0.7);
  background: linear-gradient(135deg, #a78bfa, #8B5CF6);
}

.btn-hero-secondary {
  background: rgba(26, 26, 62, 0.8);
  color: #a78bfa;
  border: 2px solid rgba(139, 92, 246, 0.4);
}

.btn-hero-secondary:hover {
  transform: translateY(-4px);
  background: rgba(139, 92, 246, 0.2);
  border-color: rgba(139, 92, 246, 0.7);
}

/* Stats Cards */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.stat-card {
  padding: 32px;
  background: linear-gradient(145deg, rgba(20, 20, 40, 0.95), rgba(10, 10, 25, 0.98));
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 2px solid rgba(139, 92, 246, 0.4);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(139, 92, 246, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-12px) rotateX(8deg) rotateZ(-2deg);
  border-color: rgba(139, 92, 246, 0.7);
  box-shadow: 0 20px 60px rgba(139, 92, 246, 0.5);
}

.stat-card:nth-child(2):hover {
  transform: translateY(-12px) rotateX(8deg) rotateZ(2deg);
}

.stat-card:nth-child(3):hover {
  transform: translateY(-12px) rotateX(-5deg) rotateZ(3deg);
}

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

.stat-icon {
  font-size: 56px;
  margin-bottom: 16px;
  filter: drop-shadow(0 4px 15px rgba(139, 92, 246, 0.6));
}

.stat-card h3 {
  margin: 0 0 8px 0;
  font-size: 32px;
  font-weight: 900;
  color: #ffffff;
}

.stat-card p {
  margin: 0;
  font-size: 15px;
  color: #a78bfa;
  opacity: 0.9;
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  perspective: 1000px;
}

.feature-box {
  background: rgba(10, 10, 30, 0.6);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(139, 92, 246, 0.3);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.feature-box:hover {
  border-color: rgba(139, 92, 246, 0.6);
  transform: translateY(-8px) rotateX(5deg) rotateY(-5deg);
  box-shadow: 0 12px 40px rgba(139, 92, 246, 0.4);
}

.feature-box:nth-child(even):hover {
  transform: translateY(-8px) rotateX(5deg) rotateY(5deg);
}

.feature-box .feature-icon {
  font-size: 36px;
  margin-bottom: 12px;
  display: block;
  filter: drop-shadow(0 2px 10px rgba(139, 92, 246, 0.5));
}

.feature-box h3 {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

.feature-box p {
  margin: 0;
  font-size: 14px;
  color: #a78bfa;
  line-height: 1.6;
}

/* Benefit List */
.benefit-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefit-list li {
  font-size: 17px;
  color: #e0d7ff;
  padding-left: 8px;
  font-weight: 600;
}

/* Info Card */
.info-card {
  padding: 48px;
  background: linear-gradient(145deg, rgba(139, 92, 246, 0.15), rgba(99, 102, 241, 0.1));
  backdrop-filter: blur(20px);
  border-radius: 28px;
  border: 2px solid rgba(139, 92, 246, 0.4);
  text-align: center;
  box-shadow: 0 12px 48px rgba(139, 92, 246, 0.3);
}

.info-card h3 {
  margin: 0 0 12px 0;
  font-size: 32px;
  font-weight: 900;
  color: #ffffff;
}

.info-card p {
  margin: 0 0 24px 0;
  font-size: 16px;
  color: #c4b5fd;
}

/* Promo Card Styling */
.promo-card {
  position: relative;
  overflow: hidden;
  animation: promoPulse 3s ease-in-out infinite;
}

@keyframes promoPulse {
  0%, 100% { 
    box-shadow: 0 12px 48px rgba(139, 92, 246, 0.3);
  }
  50% { 
    box-shadow: 0 16px 60px rgba(139, 92, 246, 0.6);
  }
}

.promo-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, #8B5CF6, #6366f1);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.5px;
  border-radius: 50px;
  margin-bottom: 16px;
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.5);
}

.promo-code {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(139, 92, 246, 0.2);
  border: 2px dashed rgba(139, 92, 246, 0.6);
  border-radius: 8px;
  color: #a78bfa;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 2px;
  margin: 0 4px;
  font-family: monospace;
}

.btn-info-card {
  display: inline-block;
  padding: 16px 40px;
  background: linear-gradient(135deg, #8B5CF6, #6366f1);
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
}

.btn-info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(139, 92, 246, 0.7);
}

/* Store Description Content */
.store-description-content {
  color: #c4b5fd;
  line-height: 1.8;
}

.store-description-content h1,
.store-description-content h2,
.store-description-content h3 {
  color: #a78bfa;
}

/* ===== SCROLLING PACKAGES SECTION ===== */
.packages-scroll-section {
  padding: 80px 0;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.scroll-title {
  text-align: center;
  font-size: 48px;
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 60px 0;
  background: linear-gradient(135deg, #ffffff, #8B5CF6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.packages-scroll-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  mask: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.packages-scroll-track {
  display: flex;
  gap: 30px;
  animation: scroll 40s linear infinite;
  width: fit-content;
}

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

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

.scroll-package-card {
  flex-shrink: 0;
  width: 320px;
  background: linear-gradient(145deg, rgba(20, 20, 40, 0.95), rgba(10, 10, 25, 0.98));
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 2px solid rgba(139, 92, 246, 0.3);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  display: block;
  text-decoration: none;
  color: inherit;
}

.scroll-package-card:hover {
  border-color: rgba(139, 92, 246, 0.5);
}

.scroll-package-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: rgba(10, 10, 30, 0.8);
  position: relative;
}

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

.scroll-package-card:hover .scroll-package-image img {
  transform: scale(1.0);
}

.package-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  font-weight: 900;
  color: #8B5CF6;
  background: linear-gradient(145deg, rgba(139, 92, 246, 0.2), rgba(99, 102, 241, 0.15));
  text-shadow: 0 4px 20px rgba(139, 92, 246, 0.6);
}

.scroll-package-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.scroll-package-info h3 {
  margin: 0;
  font-size: 19px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.3;
}
.scroll-package-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 24px;
  font-weight: 900;
  color: #8B5CF6;
  text-shadow: 0 2px 10px rgba(139, 92, 246, 0.5);
}

.scroll-price-original {
  font-size: 18px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-shadow: none;
}

.scroll-price-original del {
  color: inherit;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(255, 255, 255, 0.5);
}

.scroll-price-current {
  color: #8B5CF6;
  text-shadow: 0 2px 10px rgba(139, 92, 246, 0.6);
}

.scroll-price-current strong {
  font-size: 26px;
  font-weight: 900;
  color: inherit;
}

/* Store Description Section */
.store-description-section {
  padding: 60px 0;
  background: rgba(5, 5, 15, 0.6);
}

.store-description-section .store-text {
  max-width: var(--content-inner-width);
  margin: 0 auto;
  padding: 0 var(--content-padding);
}

/* Enhanced Content Sections */
.site-content {
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 20px;
  margin: 20px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.store-products {
  background: rgba(10, 10, 30, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 30px;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

/* ===== SALE BANNER - Elegant Scrolling ===== */
.site-sale-banner-wrapper {
  width: 100%;
  /* background: linear-gradient(135deg, rgba(139, 92, 246, 0.8), rgba(99, 102, 241, 0.9)); */
  border-top: 1px solid rgba(139, 92, 246, 0.6);
  border-bottom: 1px solid rgba(139, 92, 246, 0.6);
  position: relative;
  z-index: 100;
  overflow: hidden;
  height: 40px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 10px rgba(139, 92, 246, 0.3);
}

.site-sale-banner {
  width: 100%;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: center;
}

.sale-banner-content {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: scrollBanner 20s linear infinite;
  gap: 50px;
}

.sale-banner-text {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.sale-banner-icon {
  font-size: 14px;
  color: #ffffff;
  opacity: 0.9;
}

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

/* Responsive */
@media (width <= 1024px) {
  .hero-section {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 60px 0;
  }
  
  .hero-reverse {
    direction: ltr;
  }
  
  .hero-title {
    font-size: 48px;
  }
  
  .section-title {
    font-size: 36px;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
  
  .scroll-title {
    font-size: 36px;
    margin: 0 0 40px 0;
  }
  
  .scroll-package-card {
    width: 280px;
  }
  
  .header-top-inner-full {
    padding: 0 20px;
    gap: 20px;
  }
  
  .site-content {
    margin: 10px;
    padding: 20px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  
  .footer-section.footer-info,
  .footer-section:has(.we-accept) {
    order: unset;
    text-align: center;
  }
  
  .footer-section:has(.we-accept) .we-accept {
    justify-content: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .footer-bottom-left,
  .footer-bottom-right {
    width: 100%;
    justify-content: center;
  }
  
  .footer-legal-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .modern-footer .site-footer-inner {
    padding: 0 20px;
  }
}

/* ===== TESTIMONIALS SLIDER SECTION ===== */
.testimonials-slider-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.testimonials-slider-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

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

.testimonials-slider-header h2 {
  font-size: 48px;
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 20px 0;
  background: linear-gradient(135deg, #ffffff, #8B5CF6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.testimonials-slider-header p {
  font-size: 20px;
  color: #c4b5fd;
  margin: 0;
  opacity: 0.9;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: linear-gradient(145deg, rgba(20, 20, 40, 0.95), rgba(10, 10, 25, 0.98));
  backdrop-filter: blur(20px);
  border: 2px solid rgba(139, 92, 246, 0.3);
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
  transition: left 0.6s ease;
}

.testimonial-card:hover {
  border-color: rgba(139, 92, 246, 0.6);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(139, 92, 246, 0.4);
}

.testimonial-card:hover::before {
  left: 100%;
}

.testimonial-card .stars {
  font-size: 20px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.3));
}

.testimonial-card p {
  color: #e2e8f0;
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
  font-style: italic;
}

/* ===== DISCORD SUPPORT SECTION ===== */

/* Responsive */
@media (width <= 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
  }
  
  .testimonials-slider-header h2 {
    font-size: 40px;
  }

}

@media (width <= 768px) {
  .testimonials-slider-section {
    padding: 60px 0;
  }

  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .testimonial-card {
    padding: 25px;
  }
  
  .testimonials-slider-container {
    padding: 0 20px;
  }
  
  .testimonials-slider-header h2 {
    font-size: 32px;
  }
  
  .testimonials-slider-header p {
    font-size: 16px;
  }

}

/* ===== FEATURED PACKAGE SECTION (HIDDEN) ===== */
.header-featured-section {
  display: none;
}

.header-featured-inner {
  max-width: var(--content-inner-width);
  margin: 0 auto;
  padding: 0 var(--content-padding);
}

.featured-hero-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: rgba(15, 15, 30, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 2px solid rgba(139, 92, 246, 0.4);
  padding: 50px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.6), 0 0 100px rgba(139, 92, 246, 0.2);
  overflow: hidden;
  position: relative;
}

.featured-hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, #8B5CF6, #a78bfa, #8B5CF6, transparent);
  animation: shimmer 3s ease-in-out infinite;
}

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

.featured-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.featured-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, #8B5CF6, #6366f1);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  border-radius: 8px;
  width: fit-content;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.featured-title {
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  margin: 0;
  line-height: 1.2;
  text-shadow: 0 4px 20px rgba(139, 92, 246, 0.5);
}

.featured-description {
  font-size: 16px;
  line-height: 1.8;
  color: #c4b5fd;
  margin: 0;
  opacity: 0.9;
}

.featured-price {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 32px;
  font-weight: 900;
}

.price-original {
  color: #6b7280;
  text-decoration: line-through;
  font-size: 24px;
}

.price-discounted,
.price-current {
  color: #8B5CF6;
  text-shadow: 0 2px 10px rgba(139, 92, 246, 0.5);
}

.discount-badge {
  padding: 6px 12px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
  font-size: 16px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
}

.btn-featured-view {
  display: inline-block;
  padding: 16px 40px;
  background: linear-gradient(135deg, #8B5CF6, #6366f1);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 12px;
  transition: all 0.3s ease;
  width: fit-content;
  box-shadow: 0 6px 25px rgba(139, 92, 246, 0.4);
}

.btn-featured-view:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(139, 92, 246, 0.6);
  background: linear-gradient(135deg, #a78bfa, #8B5CF6);
}

.featured-hero-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

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

.featured-hero-card:hover .featured-hero-image img {
  transform: scale(1.05);
}

@media (width <= 1024px) {
  .featured-hero-card {
    grid-template-columns: 1fr;
    padding: 30px;
  }
  
  .featured-title {
    font-size: 36px;
  }
}