@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&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 {
  /* Neon Cyan Color Palette - 0Tick Scripts */
  --color-primary: #00E5FF;
  --color-primary-hover: #4FF4F9;
  --color-bg: transparent;
  --color-text: #E0FFFF;
  --color-text-secondary: rgba(79, 244, 249, 0.6);
  --color-text-darker: rgba(79, 244, 249, 0.3);
  --color-brighter-bg: rgba(95, 136, 139, 0.16);
  --content-padding: 24px;
  --bg-image: url("https://template-assets.tebex.io/images/page-bg.jpg");
  --gradient-primary: linear-gradient(135deg, #00E5FF 0%, #4FF4F9 100%);
  --gradient-secondary: linear-gradient(135deg, #4FF4F9 0%, #00E5FF 100%);
  --gradient-hero: linear-gradient(135deg, rgba(0, 229, 255, 0.1) 0%, rgba(79, 244, 249, 0.1) 100%);
  --glass-bg: rgba(5, 15, 18, 0.8);
  --glass-border: rgba(95, 136, 139, 0.5);
  --shadow-glow: 0 2px 8px rgba(0, 0, 0, 0.15);
  --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-hover: 0 4px 12px rgba(0, 0, 0, 0.25);
}

html {
  min-height: 100%;
  background: linear-gradient(135deg, #050F12 0%, #0a1f25 25%, #0f2f38 50%, #0a1f25 75%, #050F12 100%);
  background-attachment: fixed;
  background-size: 200% 200%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  background: transparent !important;
  min-height: 100vh;
  color: var(--color-text);
}

/* Gift Icon - Yellow (Same style as cart button, but yellow) */
.store-product .gift,
.btn-secondary.gift,
.btn-glyph.gift {
  width: 48px !important;
  min-width: 48px !important;
  height: 100% !important;
  align-self: stretch !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #FFD700 !important;
  color: #000000 !important;
  border: none !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: none !important;
  flex-shrink: 0 !important;
  text-decoration: none !important;
  position: relative !important;
  opacity: 1 !important;
  filter: none !important;
  box-shadow: none !important;
  animation: none !important;
  transform: none !important;
}

/* Product page - match cart button size (56px x 56px) */
.btn-buy-now-wrapper .gift,
.product-info-section .gift {
  width: 56px !important;
  min-width: 56px !important;
  height: 56px !important;
  align-self: stretch !important;
}

.store-product .gift::before,
.btn-secondary.gift::before,
.btn-glyph.gift::before {
  content: "" !important;
  display: block !important;
  width: 20px !important;
  height: 20px !important;
  background-color: #000000 !important;
  mask: url("https://template-assets.tebex.io/images/gift.svg") center center/contain no-repeat !important;
  -webkit-mask: url("https://template-assets.tebex.io/images/gift.svg") center center/contain no-repeat !important;
  transition: none !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  margin-top: -10px !important;
  margin-left: -10px !important;
  transform: none !important;
}

.store-product .gift:hover,
.btn-secondary.gift:hover,
.btn-glyph.gift:hover {
  background: #FFD700 !important;
  transform: none !important;
  cursor: pointer !important;
}

.store-product .gift:hover::before,
.btn-secondary.gift:hover::before,
.btn-glyph.gift:hover::before {
  background-color: #000000 !important;
  transform: none !important;
}

.store-product .gift:active,
.btn-secondary.gift:active,
.btn-glyph.gift:active {
  background: #FFD700 !important;
  transform: none !important;
  cursor: pointer !important;
}

.store-product .gift:active::before,
.btn-secondary.gift:active::before,
.btn-glyph.gift:active::before {
  background-color: #000000 !important;
  transform: none !important;
}

.store-product .gift:focus,
.btn-secondary.gift:focus,
.btn-glyph.gift:focus {
  background: #FFD700 !important;
  cursor: pointer !important;
  outline: none !important;
  transform: none !important;
}

.store-product .gift:focus::before,
.btn-secondary.gift:focus::before,
.btn-glyph.gift:focus::before {
  background-color: #000000 !important;
  transform: none !important;
}

.store-product .gift[disabled],
.btn-secondary.gift[disabled],
.btn-glyph.gift[disabled] {
  opacity: 0.5 !important;
  cursor: pointer !important;
}

/* Modern Button Styles */
.btn-primary,
.btn-secondary,
.btn-tertiary {
  border-radius: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

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

.btn-primary:hover::before,
.btn-secondary:hover::before {
  left: 100%;
}

.btn-primary:hover, .btn-primary:focus,
.btn-secondary:hover,
.btn-secondary:focus {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.btn-primary:active,
.btn-secondary:active {
  transform: translateY(0);
}

.quantity-field {
  border-radius: 12px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
}

/* Modern Header Layout */
.site-header {
  background: var(--color-bg);
  border-bottom: 1px solid var(--glass-border);
  padding: 0;
  position: relative;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--content-padding);
  max-width: 1400px;
  margin: 0 auto;
  gap: 32px;
  position: relative;
  min-height: 70px;
}

/* Navigation Section */
.header-navigation {
  flex: 1;
  min-width: 0;
  display: flex !important;
  justify-content: center;
  align-items: center;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Override shared.css mobile styles for desktop */
@media (width > 960px) {
  .header-navigation .site-navigation {
    position: static !important;
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
  }
  
  .header-navigation .site-navigation .menu {
    display: flex !important;
    flex-direction: row !important;
    position: static !important;
    transform: none !important;
    translate: none !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}

/* Logo Section */
.header-logo {
  flex-shrink: 0;
  max-width: 300px;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--color-text);
  transition: opacity 0.3s ease;
  height: 50px;
}

.logo-link:hover {
  opacity: 0.8;
}

.logo-image {
  height: 50px;
  width: auto;
  object-fit: contain;
  margin-right: 12px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-main {
  font-size: 1.5rem;
  font-weight: 700;
  color: #00E5FF;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.logo-text-metallic {
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #E0FFFF 0%, #5F888B 30%, #E0FFFF 60%, #2F4F4F 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: metallic-shine 3s ease-in-out infinite;
  text-shadow: 0 0 30px rgba(224, 255, 255, 0.3);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  white-space: nowrap;
  line-height: 1;
}

.logo-scripts {
  text-transform: uppercase;
}

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


/* Navigation styles - Force visibility */
.header-navigation {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.header-navigation .site-navigation {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: static !important;
  display: block !important;
  width: 100%;
  transform: none !important;
  translate: none !important;
}

.header-navigation .site-navigation .menu,
.header-navigation .site-navigation .navigation-list {
  visibility: visible !important;
  opacity: 1 !important;
  display: flex !important;
  flex-direction: row !important;
  position: static !important;
  transform: none !important;
  translate: none !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background: transparent !important;
}

.header-navigation .navigation-list li,
.header-navigation .site-navigation .menu li {
  margin: 0 !important;
  display: block !important;
  list-style: none !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.header-navigation .navigation-list a,
.header-navigation .site-navigation .menu li a {
  padding: 10px 20px !important;
  color: var(--color-text-secondary) !important;
  font-weight: 500 !important;
  font-size: 0.9375rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  transition: all 0.3s ease;
  border-radius: 8px;
  display: block !important;
  position: relative;
  text-decoration: none !important;
  white-space: nowrap;
  opacity: 1 !important;
  visibility: visible !important;
  background: transparent !important;
}

.header-navigation .navigation-list a:hover,
.header-navigation .navigation-list .active a,
.header-navigation .navigation-list .link-active {
  color: var(--color-text) !important;
  background: var(--glass-bg);
}

/* Force category names to be visible */
.header-navigation .site-navigation .menu li a,
.header-navigation .site-navigation .navigation-list li a {
  color: var(--color-text-secondary) !important;
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  font-size: 0.9375rem !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
}

.header-navigation .navigation-list .has-children {
  position: relative;
}

.header-navigation .navigation-list .has-children > ul {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 8px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: var(--shadow-card);
}

.header-navigation .navigation-list .has-children.expanded > ul,
.header-navigation .navigation-list .has-children:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-navigation .navigation-list .has-children > ul li {
  margin: 4px 0;
}

.header-navigation .navigation-list .has-children > ul a {
  padding: 8px 16px;
  font-size: 0.875rem;
}

.header-navigation .navigation-list .toggle {
  display: none;
}

.header-navigation .close-navigation {
  display: none;
}

/* Right Side Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-social-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--color-text-secondary);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: rgba(0, 229, 255, 0.2);
  border-color: var(--color-primary);
  color: var(--color-text);
  transform: translateY(-2px);
}

.header-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--color-text-secondary);
  transition: all 0.3s ease;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
}

.header-icon-btn:hover {
  background: rgba(0, 229, 255, 0.2);
  border-color: var(--color-primary);
  color: var(--color-text);
  transform: translateY(-2px);
}

/* Login Button with Text */
.header-login-btn {
  width: auto !important;
  min-width: auto !important;
  border-radius: 20px !important;
  padding: 8px 16px !important;
  gap: 8px !important;
}

.header-login-btn .login-text {
  font-weight: 600;
  font-size: 0.875rem;
  white-space: nowrap;
  color: var(--color-text-secondary);
  transition: color 0.3s ease;
}

.header-login-btn:hover .login-text {
  color: var(--color-text);
}

.header-user-account {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  color: var(--color-text);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.header-user-account:hover {
  background: rgba(0, 229, 255, 0.2);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.header-user-account svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.user-name-text {
  font-weight: 600;
  font-size: 0.875rem;
  white-space: nowrap;
  color: var(--color-text);
}

/* Currency selector removed */

.mobile-only {
  display: none;
}

@media (max-width: 960px) {
  .header-container {
    padding: 16px var(--content-padding);
    gap: 12px;
    flex-wrap: wrap;
  }

  .logo-text-metallic {
    font-size: 0.85rem;
  }

  .header-logo {
    order: 1;
    flex: 0 0 auto;
    min-width: 0;
    max-width: none;
  }

  .logo-main {
    font-size: 1.1rem !important;
  }

  .toggle-navigation.mobile-only {
    order: 2;
    display: flex !important;
  }

  .header-actions {
    order: 3;
    gap: 8px;
  }

  .header-navigation {
    display: none !important;
    order: 4;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  }

  body.show-navigation .header-navigation {
    display: block !important;
  }

  .header-navigation .site-navigation {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
  }

  .header-navigation .site-navigation .menu {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
  }

  .header-navigation .site-navigation .menu li {
    width: 100%;
  }

  .header-navigation .site-navigation .menu li a {
    padding: 12px 16px !important;
    border-radius: 8px;
    background: rgba(28, 28, 30, 0.8) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: var(--color-text) !important;
  }

  .header-navigation .site-navigation .menu li a:hover,
  .header-navigation .site-navigation .menu li.active a,
  .header-navigation .site-navigation .menu li .link-active {
    background: rgba(0, 229, 255, 0.2) !important;
    border-color: var(--color-primary) !important;
    color: var(--color-text) !important;
  }

  .header-navigation .site-navigation .menu .has-children > ul {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 8px 0 0 16px !important;
    margin-top: 4px;
  }

  .header-navigation .site-navigation .menu .has-children > ul li {
    margin: 4px 0;
  }

  .header-navigation .site-navigation .menu .has-children > ul a {
    padding: 8px 12px !important;
    font-size: 0.875rem !important;
    background: rgba(28, 28, 30, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    color: var(--color-text-secondary) !important;
  }

  .header-navigation .site-navigation .menu .has-children > ul a:hover,
  .header-navigation .site-navigation .menu .has-children > ul li.active a {
    background: rgba(0, 229, 255, 0.15) !important;
    border-color: var(--color-primary) !important;
    color: var(--color-text) !important;
  }

  .header-navigation .close-navigation {
    display: block !important;
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--color-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header-social-icons {
    gap: 6px;
  }

  .social-icon,
  .header-icon-btn {
    width: 36px;
    height: 36px;
  }

  .mobile-only {
    display: flex;
  }
}

@media (max-width: 600px) {
  .header-container {
    padding: 12px var(--content-padding);
    gap: 8px;
  }

  .logo-text-metallic {
    font-size: 0.75rem;
  }

  .logo-image {
    height: 40px;
    margin-right: 8px;
  }

  .logo-main {
    font-size: 0.95rem !important;
  }

  .header-social-icons {
    display: none;
  }

  .header-user-account .user-name-text {
    display: none;
  }

  .header-user-account {
    padding: 8px;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    justify-content: center;
  }

  .header-login-btn .login-text {
    display: none;
  }

  .header-login-btn {
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    padding: 0 !important;
    min-width: 36px !important;
  }

  .header-icon-btn {
    width: 32px !important;
    height: 32px !important;
  }

  .header-icon-btn svg {
    width: 18px !important;
    height: 18px !important;
  }
}

/* Sale Banner - Kayan Yazı */
.site-sale-banner-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #FF3B30;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  padding: 14px 0;
  z-index: 1000;
}

.site-sale-banner-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 40px;
  width: fit-content;
  animation: slideSaleBanner 30s linear infinite;
  /* will-change removed for better mobile performance */
}

.site-sale-banner-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: #FFFFFF;
  white-space: nowrap;
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

/* Pause on hover */
.site-sale-banner-wrapper:hover .site-sale-banner-track {
  animation-play-state: paused;
}

/* Legacy support - hide old sale banner */
.site-sale-banner {
  display: none !important;
}

/* Sale Banner - Mobile Responsive */
@media (max-width: 960px) {
  .site-sale-banner-wrapper {
    padding: 12px 0;
  }

  .site-sale-banner-text {
    font-size: 0.75rem;
    letter-spacing: 0.3px;
  }

  .site-sale-banner-track {
    gap: 30px;
    animation: slideSaleBanner 25s linear infinite;
    /* Reduced animation complexity for mobile */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
  }
}

@media (max-width: 600px) {
  .site-sale-banner-wrapper {
    padding: 10px 0;
  }

  .site-sale-banner-text {
    font-size: 0.6875rem;
    letter-spacing: 0.2px;
  }

  .site-sale-banner-track {
    gap: 25px;
    animation: slideSaleBanner 20s linear infinite;
    /* Hardware acceleration for mobile */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
  }
  
  /* Disable hover pause on mobile for better performance */
  .site-sale-banner-wrapper:hover .site-sale-banner-track {
    animation-play-state: running;
  }
}

.page-index .site {
  grid-auto-rows: auto;
}

.page-index.home-categories-enabled .site {
  grid-auto-rows: auto;
}

.home-hero-section {
  padding: 10px var(--content-padding) 10px;
  margin-bottom: 0;
}

.hero-content {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(968px, auto);
  align-items: flex-start;
  align-content: start;
  column-gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-logo-wrap {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  min-height: 120px;
}

.hero-logo {
  height: 120px;
  width: auto;
  object-fit: contain;
}

.hero-text-carousel-wrap {
  min-width: 0;
  max-width: 100%;
  display: flex;
  align-items: center;
}

.hero-text-carousel {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.hero-text-slide {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 100%;
}

.hero-text-carousel-set {
  position: relative;
  min-height: 1.4em;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.hero-text-carousel-item {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #E0FFFF 0%, #5F888B 30%, #E0FFFF 60%, #2F4F4F 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  transition: opacity 0.5s ease;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.hero-text-bottom.hero-text-carousel-item {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  -webkit-text-fill-color: var(--color-text-secondary);
  background: none;
  background-clip: unset;
}

.hero-text-carousel-item.hero-text-active {
  position: relative;
  opacity: 1;
}

@keyframes hero-spotlight-slide-down {
  from { transform: translateY(-50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes hero-spotlight-center-img {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-40px); }
}

@keyframes hero-spotlight-center-label {
  0%, 100% { transform: translateY(-12px); opacity: 0; }
  50% { transform: translateY(0); opacity: 1; }
}

.hero-spotlight {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  flex-shrink: 0;
  min-width: 0;
}

.hero-spotlight-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero-spotlight-item {
  width: 300px;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  position: relative;
}

.hero-spotlight-item-inner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
}

.hero-spotlight-overlay {
  position: absolute;
  inset: 0;
  background: #0a1f26;
  opacity: 0;
  transition: opacity 0.35s ease-out;
  pointer-events: none;
  z-index: 1;
}

.hero-spotlight-changing .hero-spotlight-overlay {
  opacity: 1;
}

.hero-spotlight-change-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  max-width: 60%;
  max-height: 60%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.3s ease-out 0.1s, transform 0.3s ease-out 0.1s;
  pointer-events: none;
  z-index: 2;
}

.hero-spotlight-changing .hero-spotlight-cell-center .hero-spotlight-item .hero-spotlight-change-logo {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.hero-spotlight-item.hero-spotlight-enter .hero-spotlight-item-inner {
  animation: hero-spotlight-content-in 0.4s ease-out forwards;
}

@keyframes hero-spotlight-content-in {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

.hero-spotlight-cell-left .hero-spotlight-item,
.hero-spotlight-cell-right .hero-spotlight-item {
  animation: hero-spotlight-slide-down 0.6s ease-out forwards;
}

.hero-spotlight-cell-center .hero-spotlight-item {
  animation: hero-spotlight-slide-down 0.6s ease-out forwards;
}

.hero-spotlight-cell-center .hero-spotlight-label {
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  text-transform: uppercase;
  background: linear-gradient(135deg, #E0FFFF 0%, #5F888B 30%, #E0FFFF 60%, #2F4F4F 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(224, 255, 255, 0.3);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  animation: hero-spotlight-center-label 3s ease-in-out infinite, metallic-shine 3s ease-in-out infinite;
}

.hero-spotlight-product .hero-spotlight-link {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-spotlight-img,
.hero-spotlight-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-spotlight-img-default {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,229,255,0.2), rgba(79,244,249,0.1));
}

.hero-spotlight-center-panel {
  width: 320px;
  height: 180px;
}

.hero-spotlight-embed {
  width: 100%;
  height: 100%;
}

.hero-spotlight-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 960px) {
  .home-hero-section { padding: 10px var(--content-padding); margin-bottom: 10px; }
  .hero-content { grid-template-columns: 1fr; gap: 20px; }
  .hero-logo { height: 80px; }
  .hero-text-carousel-item { font-size: 1.2rem; white-space: normal; }
  .hero-spotlight { justify-content: center; gap: 16px; }
  .hero-spotlight-item { width: 200px; height: 120px; }
  .hero-spotlight-center-panel { width: 200px; height: 120px; }
}

@media (max-width: 600px) {
  .hero-content { gap: 12px; }
  .hero-logo { height: 60px; }
  .hero-text-carousel-item { font-size: 1rem; }
  .hero-spotlight { gap: 10px; }
  .hero-spotlight-item { width: 130px; height: 80px; }
  .hero-spotlight-center-panel { width: 140px; height: 80px; }
}

/* Ana Sayfa Bölümleri */
.section-header {
  margin-bottom: 48px;
  text-align: center;
}

/* Override section-header margin for FAQ and Recent Payments */
.home-faq .section-header {
  margin-bottom: 32px !important;
}

.home-recent-payments .section-header {
  margin-top: 0 !important;
  margin-bottom: 32px !important;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

/* Animasyonlu Kayan Ürünler */
.home-featured-products {
  margin-top: -30px !important;
  margin-bottom: 100px !important;
  padding: 0 var(--content-padding) !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative !important;
  width: 100% !important;
  max-width: 100% !important;
}

/* Package page - ensure featured products work correctly */
.home-featured-products:has(#package-products-slider-track) {
  margin-bottom: 100px !important;
  padding: 0 var(--content-padding) !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  min-height: 200px !important;
  height: auto !important;
  overflow: visible !important;
}

.home-featured-products .section-header {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.home-featured-products .section-title {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.products-slider-container {
  overflow: hidden !important;
  position: relative !important;
  padding: 40px 0 !important;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  min-height: 350px !important;
}

/* Center highlight box - Modern Design */
.products-slider-container::before {
  content: '';
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 450px !important;
  height: calc(450px * 10 / 16) !important; /* Match aspect ratio 16:10 */
  border-radius: 20px !important;
  pointer-events: none !important;
  z-index: 10 !important;
  opacity: 1 !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  
  /* Clean border - no glow effects */
  background: transparent !important;
  border: 1px solid rgba(0, 229, 255, 0.3) !important;
  background-clip: padding-box !important;
}

.products-slider-container:hover::before {
  border-color: rgba(0, 229, 255, 0.5) !important;
  background: transparent !important;
}

.products-slider-track {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 32px !important;
  width: fit-content !important;
  /* will-change removed for better mobile performance */
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  visibility: visible !important;
  opacity: 1 !important;
  align-items: flex-start !important;
  height: auto !important;
  min-height: 0 !important;
  /* Animation will be set dynamically via JavaScript */
}

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

/* Mobile: Disable hover pause for better performance */
@media (max-width: 600px) {
  .products-slider-track:hover,
  .testimonials-slider-track:hover,
  .payments-slider-track:hover {
    animation-play-state: running !important;
  }
}

.products-slider-container .store-product {
  flex: 0 0 320px;
  min-width: 320px;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Featured Product Card - Modern Design (Image Only) */
.featured-product-card {
  flex: 0 0 450px !important;
  min-width: 450px !important;
  max-width: 450px !important;
  display: flex !important;
  flex-direction: column !important;
  background: transparent !important;
  border: none !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  cursor: pointer !important;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative !important;
  height: auto !important;
  flex-shrink: 0 !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.featured-product-card:hover {
  transform: translateY(-8px) scale(1.02) !important;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25) !important;
}

.featured-product-link {
  display: flex !important;
  flex-direction: column !important;
  text-decoration: none !important;
  color: inherit !important;
  width: 100% !important;
  height: 100% !important;
}

.featured-product-image {
  width: 100% !important;
  aspect-ratio: 16 / 10 !important;
  overflow: hidden !important;
  background: var(--glass-bg) !important;
  border-radius: 12px !important;
  margin-bottom: 0 !important;
  position: relative !important;
}

.featured-product-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
  border-radius: 12px;
}

.featured-product-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s ease !important;
  filter: none !important;
}

.featured-product-card:hover .featured-product-image img {
  transform: scale(1.1) !important;
  filter: none !important;
}

.featured-product-image-default {
  width: 100% !important;
  height: 100% !important;
  background: rgba(28, 28, 30, 0.6) !important;
  display: block !important;
}

/* Kullanıcı Yorumları */
.home-testimonials {
  margin-bottom: 100px;
  padding: 0 var(--content-padding);
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Package page - ensure testimonials work correctly */
.home-testimonials:has(#package-testimonials-slider-track) {
  margin-bottom: 100px !important;
  padding: 0 var(--content-padding) !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Remove margin from testimonials when followed by FAQ */
.home-testimonials + .home-faq {
  margin-top: 0 !important;
}

/* Category page specific - Remove spacing between FAQ and Recent Payments */
/* Target category page by checking for category-specific IDs (only exists on category page) */

/* Reduce testimonials margin on category page */
.home-testimonials:has(+ .home-faq + .home-recent-payments #category-payments-slider-track) {
  margin-bottom: 48px !important;
}

.home-recent-payments:has(#category-payments-slider-track) {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.home-recent-payments:has(#category-payments-slider-track) .section-header {
  margin-top: -64px !important;
  margin-bottom: 32px !important;
}

/* Hide the hidden sidebar div completely - it might be creating space */
.home-recent-payments:has(#category-payments-slider-track) > div[style*="display: none"] {
  display: none !important;
  visibility: hidden !important;
  position: absolute !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 0 !important;
  font-size: 0 !important;
  top: -9999px !important;
  left: -9999px !important;
}

/* FAQ before category Recent Payments */
.home-faq:has(+ .home-recent-payments #category-payments-slider-track) {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.home-faq:has(+ .home-recent-payments #category-payments-slider-track) + .home-recent-payments {
  margin-top: -150px !important;
  padding-top: 0 !important;
}

.home-faq:has(+ .home-recent-payments #category-payments-slider-track) .section-header {
  margin-bottom: 0 !important;
  margin-top: 0 !important;
}

.home-faq:has(+ .home-recent-payments #category-payments-slider-track) .faq-list {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.home-faq:has(+ .home-recent-payments #category-payments-slider-track) .faq-item:last-child {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.testimonials-slider-container {
  overflow: hidden !important;
  width: 100% !important;
  max-width: 100% !important;
  position: relative;
  padding: 20px 0;
}

.testimonials-slider-track {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 24px !important;
  width: fit-content !important;
  align-items: stretch !important;
  animation: slideTestimonials 250s linear infinite;
  /* will-change removed for better mobile performance */
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

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

.testimonials-slider-container:hover .testimonials-slider-track {
  animation-play-state: paused;
}

.testimonial-item {
  flex: 0 0 auto !important;
  display: flex !important;
  flex-direction: column !important;
  min-width: 350px !important;
  max-width: 400px !important;
  width: auto !important;
  white-space: normal !important;
  flex-shrink: 0 !important;
}

.testimonial-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 40px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-card);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(0, 229, 255, 0.3);
}

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

.testimonial-text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #FFFFFF !important;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--glass-border);
}

.author-name {
  font-weight: 700;
  color: var(--color-text);
  font-size: 0.9375rem;
}

.author-rating {
  color: #fbbf24;
  font-size: 1rem;
  letter-spacing: 2px;
}

/* FAQ Bölümü */
.home-faq {
  margin-bottom: 100px;
  padding: 0 var(--content-padding);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.home-faq .section-header {
  margin-bottom: 48px;
}

/* Package page - restore normal spacing */
.home-faq:has(+ .home-recent-payments #package-payments-slider-track) {
  margin-bottom: 100px !important;
}

.home-faq:has(+ .home-recent-payments #package-payments-slider-track) + .home-recent-payments {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.home-recent-payments:has(#package-payments-slider-track) {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.home-recent-payments:has(#package-payments-slider-track) .section-header {
  margin-top: 0 !important;
  margin-bottom: 48px !important;
}

.home-recent-payments {
  margin-bottom: 100px;
  padding: 0 var(--content-padding);
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden !important;
}

.home-recent-payments .section-header {
  margin-bottom: 48px;
}

/* Remove all spacing between FAQ and Recent Payments - ONLY for category page */
section.home-faq:has(+ section.home-recent-payments #category-payments-slider-track) {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

section.home-faq:has(+ section.home-recent-payments #category-payments-slider-track) + section.home-recent-payments {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

section.home-recent-payments:has(#category-payments-slider-track) {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.faq-item {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.faq-item.active {
  border-color: rgba(0, 229, 255, 0.5);
  box-shadow: var(--shadow-card);
}

.faq-question {
  width: 100%;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  background: transparent;
  color: var(--color-text);
  font-size: 1.0625rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 20px;
  color: var(--color-primary);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
}

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

.faq-answer p {
  color: var(--color-text-darker);
  line-height: 1.8;
  margin: 0;
}

.home-recent-payments {
  margin-top: 0 !important;
  margin-bottom: 100px;
  padding: 0 var(--content-padding) !important;
  width: 100% !important;
  max-width: 100% !important;
}

.home-recent-payments > div[style*="display: none"] {
  display: none !important;
  visibility: hidden !important;
  position: absolute !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
}

.recent-payments-box {
  display: flex;
  align-items: stretch;
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 24px;
  min-height: 280px;
}

.recent-payments-left {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 24px;
  flex-shrink: 0;
  align-self: stretch;
  min-width: 320px;
}

.recent-payments-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
}

.recent-payments-logo img.recent-payments-logo-img {
  height: 160px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  object-position: left center;
}

.recent-payments-top-buyer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px;
  background: rgba(10, 31, 38, 0.5);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  min-width: 180px;
  flex: 1;
}

.recent-payments-top-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-text-secondary);
  margin: 0 0 4px 0;
  text-align: center;
  line-height: 1.3;
}

.top-buyer-crown {
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-buyer-crown .top-buyer-crown-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.top-buyer-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-brighter-bg);
  border: 2px solid var(--glass-border);
  background-size: cover;
  background-position: center;
}

.top-buyer-name {
  font-weight: 700;
  color: var(--color-text);
  font-size: 1rem;
  text-align: center;
}

.top-buyer-amount-label {
  font-size: 0.7rem;
  color: var(--color-text-secondary);
  text-align: center;
  opacity: 0.9;
}

.top-buyer-amount {
  font-size: 0.85rem;
  color: var(--color-primary, #00E5FF);
  text-align: center;
  font-weight: 600;
}

.top-buyer-product {
  font-size: 0.75rem;
  color: var(--color-text-secondary);
  text-align: center;
  display: block;
  margin-top: 2px;
}

.recent-payments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 12px;
  flex: 1;
  min-width: 0;
  transition: opacity 0.35s ease;
}

.recent-payments-grid.recent-payments-grid--out {
  opacity: 0;
}

.recent-payment-cell {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(10, 31, 38, 0.5);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  transition: border-color 0.2s, transform 0.2s, opacity 0.3s ease, transform 0.3s ease;
}

.recent-payments-grid.recent-payments-grid--in .recent-payment-cell {
  opacity: 0;
  transform: translateY(10px);
}

.recent-payments-grid.recent-payments-grid--in .recent-payment-cell:nth-child(1) { transition-delay: 0.02s; }
.recent-payments-grid.recent-payments-grid--in .recent-payment-cell:nth-child(2) { transition-delay: 0.05s; }
.recent-payments-grid.recent-payments-grid--in .recent-payment-cell:nth-child(3) { transition-delay: 0.08s; }
.recent-payments-grid.recent-payments-grid--in .recent-payment-cell:nth-child(4) { transition-delay: 0.11s; }
.recent-payments-grid.recent-payments-grid--in .recent-payment-cell:nth-child(5) { transition-delay: 0.14s; }
.recent-payments-grid.recent-payments-grid--in .recent-payment-cell:nth-child(6) { transition-delay: 0.17s; }
.recent-payments-grid.recent-payments-grid--in .recent-payment-cell:nth-child(7) { transition-delay: 0.2s; }
.recent-payments-grid.recent-payments-grid--in .recent-payment-cell:nth-child(8) { transition-delay: 0.23s; }
.recent-payments-grid.recent-payments-grid--in .recent-payment-cell:nth-child(9) { transition-delay: 0.26s; }

.recent-payments-grid.recent-payments-grid--in.recent-payments-grid--visible .recent-payment-cell {
  opacity: 1;
  transform: translateY(0);
}

.recent-payment-cell:hover {
  border-color: rgba(0, 229, 255, 0.4);
  transform: translateY(-2px);
}

.recent-payment-cell-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-brighter-bg);
  border: 1px solid var(--glass-border);
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.recent-payment-cell-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  min-width: 0;
  flex: 1;
}

.recent-payment-cell-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text);
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
  line-height: 1.2;
}

.recent-payment-cell-product {
  font-size: 0.72rem;
  color: var(--color-text-secondary);
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.2;
  max-width: 100%;
}

.payment-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  transition: all 0.2s ease;
}

.payment-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-brighter-bg);
  border: 1px solid var(--glass-border);
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
}

.payment-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  flex: 1;
}

.payment-username {
  font-weight: 700;
  color: var(--color-text);
  font-size: 0.9rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.payment-amount {
  font-weight: 500;
  color: var(--color-text-secondary);
  font-size: 0.8rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 960px) {
  .recent-payments-box {
    flex-direction: column;
    align-items: center;
  }
  .recent-payments-left {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    min-width: 0;
  }
  .recent-payments-logo img.recent-payments-logo-img {
    height: 100px;
    max-width: 180px;
  }
  .recent-payments-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, auto);
  }
}

@media (max-width: 600px) {
  .recent-payments-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(9, auto);
  }
}

/* Modern Content Card */
.modern-content-card {
  border-radius: 24px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: all 0.3s ease;
}

.modern-content-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: rgba(0, 229, 255, 0.2);
}

.content-card-inner {
  padding: 48px;
}

@media (max-width: 768px) {
  .content-card-inner {
    padding: 32px 24px;
  }
}

.category-description {
  border-radius: 20px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  padding: 32px;
  margin-bottom: 32px;
}

.store-text {
  border-radius: 24px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-card);
  padding: 48px;
}

.store-text h1,
.store-text h2,
.store-text h3,
.store-text h4,
.store-text h5,
.store-text h6 {
  text-align: center;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.store-text h1 {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #fee2e2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.store-text h2 {
  font-size: 2rem;
}

.store-text p {
  line-height: 1.8;
  color: var(--color-text-darker);
  margin-bottom: 16px;
}

/* Product Grid Layout - 4 columns on PC, 1 column on mobile */
.store-products-list,
.store-products-images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
  padding: 0;
  background: transparent;
}

@media (width > 960px) {
  .store-products-list,
  .store-products-images {
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
  }
}

.store-products-list .store-product,
.store-products-images .store-product {
  border-radius: 0;
  background: var(--glass-bg) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid var(--glass-border) !important;
  box-shadow: var(--shadow-card) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
  padding: 0;
}

/* Product Link Overlay - Makes entire card clickable (only for product cards, not full product pages) */
.store-product:not(.store-product-full) .product-link-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  text-decoration: none;
}

/* Hide overlay on full product pages */
.store-product-full .product-link-overlay {
  display: none !important;
}

/* Ensure buttons and interactive elements are above overlay */
.product-actions,
.product-actions *,
.btn-cart-icon,
.btn-primary,
.btn-secondary {
  position: relative;
  z-index: 2;
}

/* Loading animation on product image only */
.store-product:has(.product-actions.updating) .product-image-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  z-index: 10;
  pointer-events: none;
  border-radius: 0;
}

.store-product:has(.product-actions.updating) .product-image-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  margin-left: -20px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  z-index: 11;
  pointer-events: none;
  transform-origin: center center;
}

.store-product:not(:has(.product-actions.updating)) .product-image-wrapper::before,
.store-product:not(:has(.product-actions.updating)) .product-image-wrapper::after {
  display: none;
}

.store-products-list .store-product:hover,
.store-products-images .store-product:hover {
  transform: translateY(-4px);
}

.store-products-images .store-product {
  text-align: center;
}

/* Product Image Wrapper with Tags */
.product-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 25 / 15;
  overflow: hidden;
  border-radius: 0;
}

.product-image-wrapper .image-link {
  display: block;
  width: 100%;
  height: 100%;
}

.product-image-wrapper .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  min-height: 100%;
  min-width: 100%;
}

/* Ensure product images fill the wrapper completely on category page */
.store-products-list .product-image-wrapper .image,
.store-products-images .product-image-wrapper .image {
  width: 100% !important;
  height: 100% !important;
  min-width: 100% !important;
  min-height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
}

.product-image-wrapper .image-default {
  width: 100%;
  height: 100%;
  background: var(--glass-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Category page - product images extend to window edges */
.store-products-list .product-image-wrapper,
.store-products-images .product-image-wrapper {
  width: calc(100% + 6px);
  margin-left: -3px;
  margin-right: -3px;
  border-radius: 0;
}

/* Product Content */
.product-content {
  padding: 20px;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0;
  min-height: 0;
}

.store-product .product-title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  margin-bottom: 16px;
  color: var(--color-text);
  overflow: hidden;
  flex-shrink: 0;
}

.product-title-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.product-title-text {
  display: inline-block;
  white-space: nowrap;
}

/* Marquee animation for long titles */
.product-title-wrapper.marquee {
  position: relative;
  overflow: hidden;
}

.product-title-wrapper.marquee .product-title-text:not(.marquee-clone) {
  display: inline-block;
  animation: marquee 20s linear infinite;
  padding-right: 50px;
}

/* Hide cloned title text in marquee - it's only for seamless loop animation */
.product-title-wrapper.marquee .product-title-text.marquee-clone {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  left: -9999px !important;
}

.product-title-wrapper.marquee:hover .product-title-text {
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 25px));
  }
}

/* Product Actions - Price and Cart */
.product-actions {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: auto;
  padding-bottom: 20px;
  flex-shrink: 0;
}

.product-price-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  min-width: 0;
}

.product-price-wrapper .price {
  margin: 0;
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  min-width: 0;
  overflow: hidden;
  height: auto;
}

.product-price-wrapper .price .discount {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  text-decoration: line-through;
  opacity: 0.7;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  order: 1;
}

.product-price-wrapper .price .current-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  order: 2;
}

.product-price-wrapper .price strong {
  font-size: 1.125rem;
  color: var(--color-text);
}

/* Cart Icon Button */
.btn-cart-icon {
  width: 48px;
  min-width: 48px;
  height: 100%;
  align-self: stretch;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary) !important;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  cursor: pointer !important;
  transition: all 0.3s ease;
  flex-shrink: 0;
  text-decoration: none;
  position: relative;
  opacity: 1 !important;
  filter: none !important;
}

/* Ensure button is not faded in product cards */
.store-product .btn-cart-icon,
.store-product .product-actions .btn-cart-icon {
  opacity: 1 !important;
  filter: none !important;
}

/* Override updating state - hide shared.css animations */
.store-product .product-actions.updating::before {
  display: none !important;
}

.store-product .product-actions.updating > * {
  opacity: 1 !important;
  filter: none !important;
}

.product-actions.updating {
  position: relative;
}

.product-actions.updating .btn-cart-icon {
  pointer-events: none;
  opacity: 1 !important;
  filter: none !important;
}

.product-actions.updating .product-price-wrapper,
.product-actions.updating .product-price-wrapper * {
  opacity: 1 !important;
  filter: none !important;
}

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

/* Normal button - always light red, no hover/active changes */
.btn-cart-icon:hover {
  background: var(--color-primary) !important;
  transform: scale(1.05);
  cursor: pointer !important;
}

.btn-cart-icon:active {
  transform: scale(0.95);
  background: var(--color-primary) !important;
  cursor: pointer !important;
}

.btn-cart-icon:focus {
  background: var(--color-primary) !important;
  cursor: pointer !important;
}

.btn-cart-icon:visited {
  background: var(--color-primary) !important;
  cursor: pointer !important;
}

/* Added button - always green, no hover/active changes */
.btn-cart-icon.added {
  background: #34C759 !important;
  cursor: pointer !important;
}

.btn-cart-icon.added:hover {
  background: #34C759 !important;
  transform: scale(1.05);
  cursor: pointer !important;
}

.btn-cart-icon.added:active {
  background: #34C759 !important;
  transform: scale(0.95);
  cursor: pointer !important;
}

.btn-cart-icon.added:focus {
  background: #34C759 !important;
  cursor: pointer !important;
}

.btn-cart-icon.added:visited {
  background: #34C759 !important;
  cursor: pointer !important;
}

.btn-cart-icon svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn-cart-icon span {
  white-space: nowrap;
}

.btn-cart-icon[disabled] {
  opacity: 0.5;
  cursor: pointer !important;
}


/* Hide Sidebar */
.sidebar,
.widget {
  display: none !important;
}

/* Show main content in site-content-widgets */
.site-content-widgets {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  min-height: auto !important;
  height: auto !important;
  width: 100% !important;
  position: relative !important;
  overflow: visible !important;
}

.site-content-widgets > main {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  min-height: auto !important;
  height: auto !important;
  width: 100% !important;
  position: relative !important;
  overflow: visible !important;
}

.store-product-full,
.store-product-full[data-popup] {
  visibility: visible !important;
  opacity: 1 !important;
  display: block !important;
  grid-template-columns: none !important;
  grid-template-rows: none !important;
  grid-auto-rows: auto !important;
  grid-auto-columns: auto !important;
  gap: 0 !important;
  min-height: auto !important;
  height: auto !important;
  max-height: none !important;
  width: 100% !important;
  max-width: 100% !important;
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  overflow: visible !important;
  contain: none !important;
  z-index: 1 !important;
}

.store-product-full .product-page-layout,
.store-product-full[data-popup] .product-page-layout {
  visibility: visible !important;
  opacity: 1 !important;
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 48px !important;
  min-height: 0 !important;
  height: fit-content !important;
  max-height: 100vh !important;
  width: 100% !important;
  max-width: 100% !important;
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  overflow: visible !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
  clip-path: none !important;
  clip: auto !important;
  z-index: 1 !important;
  contain: none !important;
  align-content: flex-start !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  box-sizing: border-box !important;
}

.store-product-full .product-media-section,
.store-product-full .product-info-section,
.store-product-full .product-description-section {
  visibility: visible !important;
  opacity: 1 !important;
  display: block !important;
}

.store-product-full .product-media-section {
  display: block !important;
  flex: 0 0 50% !important;
  width: 50% !important;
  min-height: 0 !important;
  height: auto !important;
  max-height: 100vh !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative !important;
  overflow: visible !important;
  align-self: flex-start !important;
  box-sizing: border-box !important;
}

.store-product-full .product-info-section {
  display: flex !important;
  flex-direction: column !important;
  flex: 0 0 50% !important;
  width: 50% !important;
  min-height: 0 !important;
  height: auto !important;
  max-height: 100vh !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative !important;
  overflow: visible !important;
  align-self: flex-start !important;
  box-sizing: border-box !important;
}

.store-product-full .product-info-section * {
  visibility: visible !important;
  opacity: 1 !important;
  position: relative !important;
}

.store-product-full .product-info-section h2,
.store-product-full .product-info-section .product-title {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative !important;
}

.store-product-full .product-info-section .product-meta {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative !important;
}

.store-product-full .product-info-section .product-action-buttons {
  display: flex !important;
  flex-direction: column !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative !important;
}

.store-product-full .product-info-section a,
.store-product-full .product-info-section .btn-youtube-preview,
.store-product-full .product-info-section .btn-documents {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative !important;
}

.store-product-full .product-info-section button {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative !important;
}

.store-product-full .product-description-section {
  display: block !important;
  width: 100% !important;
  grid-column: 1 / -1 !important;
  min-height: auto !important;
  height: auto !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative !important;
  overflow: visible !important;
}

/* Full width content when sidebar is hidden */
.site-content {
  width: 100%;
  max-width: 100%;
  padding: 0 var(--content-padding);
}

/* Remove spacing between header and products on category pages */
body:has(.store-products) .site {
  gap: 0 !important;
  grid-auto-rows: auto;
}

body:has(.store-products) .site-header {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

body:has(.store-products) .header-container {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

body:has(.store-products) .site-content {
  margin-top: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Remove top padding from site-content on category pages, keep horizontal padding */
body:has(.store-products) .site-content {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

body:has(.store-products) .site-content main.store-products {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

body:has(.store-products) .store-products {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

body:has(.store-products) .store-products-list,
body:has(.store-products) .store-products-images {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Ensure no spacing from sidebar on category pages */
body:has(.store-products) .site-content-widgets {
  gap: 0 !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.site-content main.store-products {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.widget-title {
  text-align: center;
}

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

.no-products {
  color: var(--color-text-secondary);
  background: var(--color-brighter-bg);
  border-radius: 5px;
}

/* Override shared.css grid layout for product page */
.store-product-full {
  border-radius: 24px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-card);
  padding: 48px;
  display: block !important; /* Override shared.css grid */
  grid-template-columns: none !important;
  grid-auto-flow: unset !important;
}

/* Override shared.css media query rules */
@media (width > 960px) {
  .store-product-full {
    display: block !important;
    grid-template-columns: none !important;
    gap: 0 !important;
  }
}

/* Product Page Layout - Two Column */
.store-product-full .product-page-layout {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 48px !important;
  margin-bottom: 48px !important;
  width: 100% !important;
  max-width: 100% !important;
}

@media (width > 960px) {
  .store-product-full .product-page-layout {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 48px !important;
  }
}

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

.store-product-full .product-media-section .image,
.store-product-full .product-media-section .media-slider {
  width: 100%;
  max-width: 100% !important;
  border-radius: 12px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .store-product-full .product-media-section .image,
  .store-product-full .product-media-section .media-slider {
    overflow: visible !important;
  }

  .store-product-full .product-media-section {
    margin-bottom: 0 !important;
  }
}

.product-info-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.store-product-full .product-info-section .product-title {
  font-size: 32px !important;
  font-weight: 700;
  margin: 0;
  color: var(--color-text);
}

.product-meta {
  font-size: 16px;
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-frameworks {
  font-weight: 500;
}

.product-category {
  color: var(--color-text-darker);
}

/* Product Action Buttons - Horizontal Layout */
.product-action-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.btn-youtube-preview,
.btn-documents {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  width: 100%;
}

.btn-youtube-preview {
  background: var(--color-primary) !important;
  color: white !important;
}

.btn-youtube-preview:hover {
  background: var(--color-primary-hover) !important;
  transform: translateY(-2px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.btn-documents {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--color-text);
}

.btn-documents:hover {
  background: var(--color-brighter-bg);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.btn-buy-now-wrapper {
  width: 100%;
}

.btn-buy-now-wrapper::before {
  content: "Buy It Now";
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-secondary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-buy-now-wrapper .product-actions {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 16px;
  width: 100%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 16px;
  position: static !important; /* Override shared.css sticky */
  order: unset !important; /* Override shared.css order */
  margin: 0 !important; /* Override shared.css margin */
  background-color: transparent !important; /* Override shared.css background */
  backdrop-filter: none !important; /* Override shared.css backdrop-filter */
}

.btn-buy-now-wrapper .product-price-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.btn-buy-now-wrapper .price {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text);
}

.btn-buy-now-wrapper .btn-cart-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

/* Product Description Section */
.product-description-section {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--glass-border);
}

.product-description-section .descr {
  color: var(--color-text);
  line-height: 1.8;
  font-size: 16px;
}

@media (max-width: 1024px) {
  .store-product-full .product-page-layout,
  .store-product-full[data-popup] .product-page-layout,
  div.product-page-layout[style*="flex-direction"] {
    flex-direction: column !important;
    flex-wrap: wrap !important;
    gap: 32px !important;
  }

  .store-product-full .product-media-section {
    flex: 1 1 100% !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .store-product-full .product-info-section {
    flex: 1 1 100% !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  
  .product-info-section .product-title {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .store-product-full {
    padding: 24px 16px !important;
    border-radius: 16px;
    overflow-x: hidden !important;
  }
  
  .store-product-full .product-page-layout,
  .store-product-full[data-popup] .product-page-layout,
  div.product-page-layout[style*="flex-direction"],
  div.product-page-layout[style*="row"] {
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: wrap !important;
    gap: 24px !important;
    margin-bottom: 24px !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  /* Override inline styles for mobile */
  .store-product-full .product-page-layout[style] {
    flex-direction: column !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .store-product-full .product-media-section {
    flex: 1 1 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    max-height: none !important;
    position: relative !important;
    z-index: 1 !important;
    overflow: visible !important;
    margin-bottom: 0 !important;
    order: 1 !important;
  }

  .store-product-full .product-info-section {
    flex: 1 1 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    max-height: none !important;
    position: relative !important;
    z-index: 10 !important;
    overflow: visible !important;
    margin-top: 0 !important;
    order: 2 !important;
  }

  /* Ensure buttons are visible on mobile */
  .store-product-full .product-actions {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 20 !important;
  }

  .store-product-full .product-price-wrapper {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 20 !important;
  }

  .store-product-full .btn-cart-icon,
  .store-product-full .gift {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 21 !important;
  }

  .store-product-full .product-action-buttons {
    position: relative !important;
    z-index: 20 !important;
  }

  .store-product-full .btn-buy-now-wrapper {
    position: relative !important;
    z-index: 20 !important;
  }
  
  .product-info-section .product-title {
    font-size: 22px !important;
    line-height: 1.3;
  }

  .product-meta {
    font-size: 14px;
    flex-wrap: wrap;
    gap: 6px;
  }
  
  .product-action-buttons {
    gap: 12px;
  }
  
  .btn-youtube-preview,
  .btn-documents {
    padding: 12px 16px !important;
    font-size: 13px !important;
  }

  .btn-buy-now-wrapper {
    width: 100%;
  }

  .btn-buy-now-wrapper::before {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .btn-buy-now-wrapper .product-actions {
    padding: 12px !important;
    gap: 12px !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .btn-buy-now-wrapper .product-actions > * {
    visibility: visible !important;
    opacity: 1 !important;
  }

  .btn-buy-now-wrapper .price {
    font-size: 20px !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .btn-buy-now-wrapper .btn-cart-icon {
    width: 48px !important;
    height: 48px !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .product-info-section .gift {
    width: 48px !important;
    height: 48px !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .btn-buy-now-wrapper .gift {
    width: 48px !important;
    height: 48px !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .product-description-section {
    margin-top: 32px !important;
    padding-top: 24px !important;
  }

  .product-description-section .descr {
    font-size: 14px;
    line-height: 1.7;
  }
}

@media (max-width: 600px) {
  .store-product-full {
    padding: 16px 12px !important;
    border-radius: 12px;
    overflow-x: hidden !important;
  }

  .store-product-full .product-page-layout,
  .store-product-full[data-popup] .product-page-layout,
  div.product-page-layout[style*="flex-direction"],
  div.product-page-layout[style*="row"] {
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: wrap !important;
    gap: 20px !important;
    margin-bottom: 20px !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  /* Override inline styles for small mobile */
  .store-product-full .product-page-layout[style] {
    flex-direction: column !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .store-product-full .product-media-section {
    position: relative !important;
    z-index: 1 !important;
    overflow: visible !important;
    margin-bottom: 0 !important;
    order: 1 !important;
  }

  .store-product-full .product-info-section {
    position: relative !important;
    z-index: 10 !important;
    overflow: visible !important;
    margin-top: 0 !important;
    order: 2 !important;
  }

  /* Ensure buttons are visible on small mobile */
  .store-product-full .product-actions {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 20 !important;
  }

  .store-product-full .product-price-wrapper {
    position: relative !important;
    z-index: 20 !important;
  }

  .store-product-full .btn-cart-icon,
  .store-product-full .gift {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 21 !important;
  }

  .store-product-full .product-action-buttons {
    position: relative !important;
    z-index: 20 !important;
  }

  .store-product-full .btn-buy-now-wrapper {
    position: relative !important;
    z-index: 20 !important;
  }
  
  .product-info-section .product-title {
    font-size: 20px !important;
  }

  .product-meta {
    font-size: 13px;
  }
  
  .btn-youtube-preview,
  .btn-documents {
    padding: 10px 14px !important;
    font-size: 12px !important;
  }

  .btn-buy-now-wrapper .product-actions {
    padding: 10px !important;
    gap: 10px !important;
    flex-wrap: wrap;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .btn-buy-now-wrapper .product-actions > * {
    visibility: visible !important;
    opacity: 1 !important;
  }

  .btn-buy-now-wrapper .price {
    font-size: 18px !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .btn-buy-now-wrapper .btn-cart-icon {
    width: 44px !important;
    height: 44px !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .product-info-section .gift {
    width: 44px !important;
    height: 44px !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .btn-buy-now-wrapper .gift {
    width: 44px !important;
    height: 44px !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .product-description-section {
    margin-top: 24px !important;
    padding-top: 20px !important;
  }

  .product-description-section .descr {
    font-size: 13px;
  }
}

.store-product .quantity-field {
  border-radius: 12px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
}

.store-product .quantity-field input[type=number] {
  border: none;
  background: transparent;
}

@media (width > 960px) {
  .navigation-horizontal > ul {
    border-radius: 5px;
  }
}
.navigation-horizontal .has-children > ul {
  border-radius: 5px;
}

.widget {
  border-radius: 20px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
}

.widget:hover {
  box-shadow: var(--shadow-hover);
  border-color: rgba(0, 229, 255, 0.2);
}
@media (width <= 960px) {
  .widget.site-navigation {
    border-radius: 0;
    background: transparent;
  }
}

.widget-gift-card .gift-card-input {
  border-radius: 2px;
}

.widget-top-donator .avatar {
  border-radius: 50%;
}

.widget-community-goal .progress,
.widget-goal .progress {
  border-radius: 2px;
}
.widget-community-goal .progress-bar,
.widget-goal .progress-bar {
  border-radius: 2px;
}

.popup-content {
  border-radius: 24px;
  background: var(--glass-bg);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.popup-close {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.popup-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

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

.basket-items {
  padding: var(--widget-padding) calc(var(--content-padding) - var(--widget-padding));
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.basket-item {
  border-radius: 16px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  transition: all 0.3s ease;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.basket-item:hover {
  box-shadow: var(--shadow-card);
  border-color: rgba(0, 229, 255, 0.3);
  transform: translateY(-2px);
}

.basket-item .info {
  flex: 1;
  min-width: 0;
}

.basket-item .info .title {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: var(--color-text);
}

.basket-item .info .title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.basket-item .info .title a:hover {
  color: var(--color-primary);
}

.basket-item .info .options {
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

.basket-item .info .options li {
  margin-bottom: 4px;
}

.basket-item .info .price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 16px 0 0 0;
}

.basket-item .quantity-field {
  display: none !important;
}

.basket-item .btn-remove {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 8px;
  color: var(--color-primary);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  flex-shrink: 0;
}

.basket-item .btn-remove:hover {
  background: rgba(0, 229, 255, 0.2);
  border-color: var(--color-primary);
  transform: scale(1.05);
}

.basket-item .btn-remove:active {
  transform: scale(0.95);
}

.basket-item .btn-remove svg {
  width: 20px;
  height: 20px;
}

/* Basket Header */
.basket-header {
  padding: 24px var(--content-padding);
  border-bottom: 1px solid var(--glass-border);
}

.basket-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  color: var(--color-text);
}

.basket-second-header {
  padding: 16px var(--content-padding);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.02);
}

.basket-second-header .count {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  font-weight: 700;
}

.basket-second-header .total {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-top: 4px;
}

/* Basket Checkout */
.basket-checkout {
  padding: 24px var(--content-padding);
  border-top: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.basket-checkout h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
}

.basket-checkout .total {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-top: 4px;
}

.basket-checkout .checkout {
  width: 100%;
  padding: 18px 24px;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 12px;
  color: #ffffff !important;
  background: var(--color-primary) !important;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.basket-checkout .checkout:hover {
  background: var(--color-primary-hover) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 229, 255, 0.4);
}

.basket-checkout .checkout:active {
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 600px) {
  .basket-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .basket-item .btn-remove {
    align-self: flex-end;
  }

  .basket-second-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .basket-checkout h3 {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

.toast {
  border-radius: 16px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-glow);
}

.toast-close {
  border-radius: 8px;
  transition: all 0.3s ease;
}

.toast-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.store-category-tiered {
  border-radius: 24px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  padding: 48px;
}

.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;
}

.store-product-tiered {
  border-radius: 20px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}

.store-product-tiered:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(0, 229, 255, 0.3);
}

.media-slider .slider,
.media-slider .thumb {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.media-slider .open-lightbox {
  border-radius: 12px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}

.media-slider .open-lightbox:hover {
  background: rgba(0, 229, 255, 0.2);
  border-color: var(--color-primary);
}

.popup.popup-media-slider .thumb {
  border-radius: 12px;
  transition: all 0.3s ease;
}

.popup.popup-media-slider .thumb:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-card);
}

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

/* Responsive Adjustments */
@media (max-width: 960px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .products-slider-container .store-product {
    flex: 0 0 280px;
    min-width: 280px;
  }
  
  .payments-slider-track {
    flex-wrap: nowrap !important;
    flex-direction: row !important;
  }
  
  .payment-item {
    min-width: 280px !important;
    flex: 0 0 auto !important;
  }
}

@media (max-width: 600px) {
  /* Disable complex animations on mobile for better performance */
  .products-slider-track,
  .testimonials-slider-track,
  .payments-slider-track {
    animation-duration: 120s !important; /* Slower animation = less CPU usage */
  }
  
  .products-slider-container .store-product {
    flex: 0 0 260px;
    min-width: 260px;
  }
  
  .payments-slider-track {
    flex-wrap: nowrap !important;
    flex-direction: row !important;
  }
  
  .payment-item {
    min-width: 280px !important;
    padding: 20px 24px;
    flex: 0 0 auto !important;
  }
  
  .faq-question {
    padding: 20px;
    font-size: 1rem;
  }
  
  .testimonial-card {
    padding: 32px 24px;
  }
}