@font-face {
  font-family: 'Bison-Bold';
  src: url('https://raw.githubusercontent.com/0resmon/0resmon-fonts/refs/heads/main/Bison-Bold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-primary: #FF3A52;
  --color-primary-hover: #FF5A66;
  --color-bg: transparent;
  --color-text: #fff;
  --color-text-secondary: #ccc;
  --color-text-darker: #e5e5e5;
  --color-brighter-bg: rgba(13, 13, 13, 0.92);
  --content-padding: 24px;
  --bg-image: none;
  --gradient-primary: linear-gradient(135deg, #FF3A52 0%, #E7434F 100%);
  --gradient-secondary: linear-gradient(135deg, #1a1a1a 0%, #0D0D0D 100%);
  --gradient-hero: linear-gradient(135deg, rgba(255, 58, 82, 0.08) 0%, rgba(0, 0, 0, 0.2) 100%);
  --glass-bg: rgba(13, 13, 13, 0.92);
  --glass-border: rgba(255, 255, 255, 0.1);
  --shadow-glow: 0 1px 4px rgba(0, 0, 0, 0.35);
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.4);
  --shadow-hover: 0 8px 20px rgba(0, 0, 0, 0.45);
  --accent-red: #E7434F;
  --font-sans: "Plus Jakarta Sans", "Google Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Bison-Bold", var(--font-sans);
}

html {
  min-height: 100%;
  background: #000;
  background-attachment: scroll;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  letter-spacing: -0.01em;
  background: transparent !important;
  min-height: 100vh;
  color: var(--color-text);
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 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: #FF3A52;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: var(--font-sans);
}

.logo-text-metallic {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-family: var(--font-sans);
  color: var(--color-text);
  background: none;
  -webkit-text-fill-color: currentColor;
  animation: none;
  text-shadow: none;
  filter: none;
  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: color 0.2s ease !important;
  border-radius: 8px;
  display: block !important;
  position: relative;
  text-decoration: none !important;
  white-space: nowrap;
  opacity: 1 !important;
  visibility: visible !important;
  background: transparent !important;
  isolation: isolate;
}

.header-navigation .navigation-list > li > a::before,
.header-navigation .site-navigation .menu > li > a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0);
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
  pointer-events: none;
  will-change: transform, opacity;
  z-index: -1;
}

.header-navigation .navigation-list > li > a:hover::before,
.header-navigation .navigation-list > li > a:focus-visible::before,
.header-navigation .site-navigation .menu > li > a:hover::before,
.header-navigation .site-navigation .menu > li > a:focus-visible::before,
.header-navigation .navigation-list > li > a.link-active::before,
.header-navigation .site-navigation .menu > li > a.link-active::before {
  opacity: 1;
  transform: scale(1);
  border-color: #fff;
}

.header-navigation .navigation-list a:hover,
.header-navigation .navigation-list .active > a,
.header-navigation .navigation-list .link-active,
.header-navigation .site-navigation .menu li a:hover {
  color: #fff !important;
  background: transparent !important;
}

/* 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(255, 58, 82, 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(255, 58, 82, 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(255, 58, 82, 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(8px);
    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: transparent !important;
    color: #fff !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(255, 58, 82, 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: var(--font-display);
  color: #fff;
  background: none;
  -webkit-text-fill-color: currentColor;
  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.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  font-family: var(--font-sans);
  text-transform: uppercase;
  color: var(--color-text-secondary);
  background: none;
  -webkit-text-fill-color: currentColor;
  text-shadow: none;
  filter: none;
  animation: none;
}

.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(255,58,82,0.2), rgba(255,90,102,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(255, 58, 82, 0.3) !important;
  background-clip: padding-box !important;
}

.products-slider-container:hover::before {
  border-color: rgba(255, 58, 82, 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.or-product-card {
  background-color: #1a1a1a !important;
  background-image: radial-gradient(74.31% 154.58% at 50% 50%, rgba(0, 0, 0, 0.31) 0%, rgba(51, 51, 51, 0.31) 100%) !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(8px);
  -webkit-backdrop-filter: blur(8px);
  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(255, 58, 82, 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(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.faq-item.active {
  border-color: rgba(255, 58, 82, 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, #FF3A52);
  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(255, 58, 82, 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(8px);
  -webkit-backdrop-filter: blur(8px);
  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(255, 58, 82, 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(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  padding: 32px;
  margin-bottom: 32px;
}

.store-text {
  border-radius: 24px;
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  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(8px) !important;
  -webkit-backdrop-filter: blur(8px) !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 h1,
.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(8px);
  -webkit-backdrop-filter: blur(8px);
  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(8px);
  -webkit-backdrop-filter: blur(8px);
  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(255, 58, 82, 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(10px);
  -webkit-backdrop-filter: blur(10px);
  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-popup-content,
.basket.or-basket {
  background: #000 !important;
  color: #fff;
}

.basket-popup .popup-close {
  top: 22px !important;
  right: 22px !important;
  width: 36px !important;
  height: 36px !important;
  background: transparent !important;
  border: none !important;
  color: #fff !important;
  opacity: 0.85;
}

.basket-popup .popup-close:hover {
  opacity: 1;
  transform: none !important;
  background: rgba(255,255,255,0.08) !important;
  border-radius: 8px;
}

.basket .basket-title::before,
.or-basket .basket-title::before {
  display: none !important;
  content: none !important;
}

.or-basket-header,
.basket .or-basket-header.basket-header {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 28px 24px 20px !important;
  background: transparent !important;
  border-bottom: none !important;
  font-size: inherit !important;
  font-weight: inherit !important;
}

.or-basket-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.or-basket-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #1a1a1a;
  color: #fff;
  flex-shrink: 0;
}

.or-basket-heading {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.or-basket-title,
.basket .or-basket-title {
  margin: 0 !important;
  font-size: 1.35rem !important;
  font-weight: 700 !important;
  color: #fff !important;
  text-transform: none !important;
  letter-spacing: -0.02em;
}

.or-basket-count,
.basket .or-basket-count.count {
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  color: #FF3A52 !important;
}

.basket-second-header {
  display: none !important;
}

.or-basket-content,
.basket .or-basket-content.basket-content {
  flex: 1;
  overflow-x: hidden;
  overflow-y: auto;
}

.or-basket-items,
.basket-items.or-basket-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 8px 24px 24px !important;
}

.or-basket-item,
.basket-item.or-basket-item {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 14px !important;
  width: 100%;
  padding: 14px !important;
  border-radius: 14px !important;
  background: #141414 !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
  transform: none !important;
  box-sizing: border-box;
}

.or-basket-item:hover,
.basket-item.or-basket-item:hover {
  transform: none !important;
  box-shadow: none !important;
  border-color: rgba(255,255,255,0.14) !important;
}

.or-basket-thumb {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 10px;
  background: #222 center/cover no-repeat;
  flex-shrink: 0;
}

.or-basket-thumb-empty {
  background: #222;
}

.or-basket-item .info {
  flex: 1;
  min-width: 0;
  margin-right: 0 !important;
}

.or-basket-item .info .title {
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  margin: 0 0 4px !important;
  color: #fff !important;
  line-height: 1.3;
}

.or-basket-item .info .title a {
  color: inherit;
  text-decoration: none;
}

.or-basket-item .info .options {
  list-style: none;
  padding: 0;
  margin: 0 0 4px;
  font-size: 0.75rem;
  color: #888;
}

.or-basket-item .info .price,
.or-basket-item .price,
.or-basket-price {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  color: #999 !important;
  margin: 0 !important;
}

.or-basket-current {
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
}

.or-basket-current strong,
.or-basket-item .price strong {
  font-size: inherit !important;
  font-weight: 700 !important;
  color: #fff !important;
}

.or-basket-old {
  color: #777 !important;
  font-size: 0.8rem !important;
  text-decoration: line-through !important;
  font-weight: 500 !important;
}

.or-basket-discount {
  display: inline-flex;
  align-items: center;
  background: #FF3A52;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 6px;
  line-height: 1.3;
}

.or-basket-savings {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #FF3A52;
  font-size: 0.9rem;
  font-weight: 600;
}

.or-basket-savings[hidden] {
  display: none !important;
}

.or-basket-savings-value {
  color: #FF3A52;
  font-weight: 700;
}

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

.or-basket-remove,
.basket-item .or-basket-remove.btn-remove {
  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background: #FF3A52 !important;
  border: none !important;
  border-radius: 10px !important;
  color: #fff !important;
  flex-shrink: 0;
  text-decoration: none;
}

.or-basket-remove:hover,
.basket-item .or-basket-remove.btn-remove:hover {
  background: #e62e45 !important;
  transform: none !important;
  border-color: transparent !important;
}

.or-basket-remove svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
}

.or-basket-checkout,
.basket .or-basket-checkout.basket-checkout {
  margin-top: auto;
  padding: 20px 24px 28px !important;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: transparent !important;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.or-basket-totals {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 8px;
}

.or-basket-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #888;
  font-size: 0.9rem;
  font-weight: 500;
}

.or-basket-subtotal-value,
.or-basket-subtotal .total {
  color: #888 !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  margin: 0 !important;
}

.or-basket-subtotal-value strong,
.or-basket-subtotal .total strong {
  font-size: inherit !important;
  font-weight: 500 !important;
  color: inherit !important;
}

.or-basket-total-row,
.basket-checkout .or-basket-total-row {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  margin: 0 !important;
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  color: #fff !important;
  text-transform: none !important;
}

.or-basket-total-row .total,
.basket-checkout .or-basket-total-row .total {
  color: #fff !important;
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  margin: 0 !important;
}

.or-basket-total-row .total strong {
  font-size: inherit !important;
  font-weight: 700 !important;
  color: inherit !important;
}

.or-basket-checkout-btn,
.basket-checkout .or-basket-checkout-btn.checkout {
  width: 100%;
  min-height: 52px;
  padding: 14px 20px !important;
  border-radius: 999px !important;
  background: #fff !important;
  color: #000 !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  font-family: var(--font-sans);
  letter-spacing: 0 !important;
  text-transform: none !important;
  border: none !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none !important;
  transform: none !important;
}

.or-basket-checkout-btn:hover,
.basket-checkout .or-basket-checkout-btn.checkout:hover {
  background: #f0f0f0 !important;
  transform: none !important;
  box-shadow: none !important;
}

.or-basket-continue {
  width: 100%;
  min-height: 52px;
  padding: 14px 20px;
  border-radius: 999px;
  background: #1a1a1a;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font-sans);
  border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.or-basket-continue:hover {
  background: #222;
}

.login-popup-content,
.or-login {
  max-width: 440px !important;
  width: 100%;
  padding: 40px 32px 36px !important;
  background: #000 !important;
  border-radius: 16px !important;
  text-align: center;
  color: #fff;
  box-sizing: border-box;
}

.login-popup .popup-close {
  top: 16px !important;
  right: 16px !important;
  background: transparent !important;
  border: none !important;
  color: #fff !important;
  opacity: 0.8;
}

.login-popup .popup-close:hover {
  opacity: 1;
  transform: none !important;
  background: rgba(255,255,255,0.08) !important;
  border-radius: 8px;
}

.or-login-brands {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 28px;
}

.or-login-brand-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
  border-radius: 12px;
}

.or-login-cfx-text {
  color: #fff;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}

.or-login-brand-x {
  color: #666;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
}

.or-login-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 0 0 28px;
}

.or-login-title,
.or-login h2.or-login-title {
  margin: 0 0 10px !important;
  font-size: 1.5rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff !important;
}

.or-login-sub,
.or-login p.or-login-sub {
  margin: 0 0 28px !important;
  font-size: 0.95rem !important;
  color: #fff !important;
  font-weight: 400;
  opacity: 0.9;
}

.or-login-field,
.or-login .or-login-field.field {
  margin: 0 0 28px !important;
}

.or-login-fivem,
.or-login a.or-login-fivem.btn-primary,
.or-login button.or-login-fivem.btn-primary {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  padding: 14px 20px !important;
  border-radius: 12px !important;
  background: #1a1a1a !important;
  color: #FF3A52 !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  box-shadow: none !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

.or-login-fivem:hover,
.or-login a.or-login-fivem.btn-primary:hover,
.or-login button.or-login-fivem.btn-primary:hover {
  background: #222 !important;
  color: #FF3A52 !important;
  transform: none !important;
  box-shadow: none !important;
}

.or-login-fivem::before {
  display: none !important;
}

.or-login-secure,
.or-login p.or-login-secure {
  margin: 0 0 16px !important;
  font-size: 0.8rem !important;
  color: #fff !important;
  opacity: 0.75;
}

.or-login-help,
.or-login p.or-login-help {
  margin: 0 !important;
  font-size: 0.8rem !important;
  color: #fff !important;
  opacity: 0.75;
}

.or-login-help a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.or-login-help a:hover {
  color: #FF3A52;
}

@media (max-width: 600px) {
  .or-basket-item,
  .basket-item.or-basket-item {
    flex-direction: row !important;
    align-items: center !important;
  }
  .or-basket-remove {
    align-self: center !important;
  }
  .login-popup-content,
  .or-login {
    padding: 32px 20px 28px !important;
  }
}

.toast {
  border-radius: 16px;
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  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(8px);
  -webkit-backdrop-filter: blur(8px);
  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(8px);
  -webkit-backdrop-filter: blur(8px);
  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(255, 58, 82, 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(255, 58, 82, 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;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .site-sale-banner-track,
  .testimonials-slider-track,
  .products-slider-track,
  .product-title-wrapper.marquee .product-title-text {
    animation: none !important;
  }
}

.site-content.site-content-widgets.product-page-shell,
.store-product.store-product-full.product-page-shell {
  display: block;
  visibility: visible;
  opacity: 1;
  height: auto;
  max-height: none;
  position: relative;
  z-index: 1;
}

.product-page-layout {
  display: flex;
  flex-direction: row;
  gap: 48px;
  visibility: visible;
  opacity: 1;
  height: fit-content;
  max-height: 100vh;
  min-height: 0;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}

@media (max-width: 900px) {
  .product-page-layout {
    flex-direction: column;
    max-height: none;
    gap: 28px;
  }
}

.site-sidebar-data[hidden] {
  display: none !important;
}

.section-title:empty::before {
  content: attr(data-fallback);
  opacity: 0.9;
}

.cms-page-title {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
  color: var(--color-text);
}

.widget-title {
  font-weight: 600;
  letter-spacing: -0.01em;
}

.navigation-horizontal .menu a.link-active,
.navigation-vertical .menu a.link-active {
  color: var(--color-primary);
}

.basket-title {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.category-page-header {
  margin: 0 0 1.5rem;
}

.category-page-title {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
  color: var(--color-text);
}

.category-page-description {
  color: var(--color-text-secondary);
  max-width: 48rem;
}

.category-search-container {
  margin: 1.25rem 0 1.75rem;
}

.category-search-box {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.category-search-input {
  width: 100%;
  padding: 14px 50px 14px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  color: var(--color-text);
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.category-search-input:focus {
  border-color: var(--color-primary);
  background: rgba(255, 58, 82, 0.06);
}

.category-search-icon {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-secondary);
  pointer-events: none;
}

.btn-primary {
  background-color: #FF3A52 !important;
  color: #fff !important;
  border-radius: 6px !important;
  border: none !important;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #FF5A66 !important;
  color: #fff !important;
}

.btn-secondary,
.link-text {
  background-color: #fff !important;
  color: #000 !important;
  border-radius: 6px !important;
}

.text-content h1,
.text-content h2 {
  text-align: center;
  color: #fff;
}

.text-content a,
.product-description-section .descr a,
.descr a {
  color: #FF3A52;
  text-decoration: underline;
}

.text-content a:hover,
.product-description-section .descr a:hover,
.descr a:hover {
  color: #FF5A66;
}

.text-content p,
.text-content li {
  color: var(--color-text-secondary);
}

.product-title,
.section-title,
.category-page-title,
.cms-page-title {
  color: #fff;
  font-family: var(--font-sans);
}

.section-title,
.hero-spotlight-label,
.logo-text-metallic {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
}

.media-slider .slider::part(container) {
  --swiper-theme-color: #E7434F;
}

.site-content {
  min-height: 100vh;
}

.faq-list::-webkit-scrollbar {
  width: 2px;
}

.faq-list::-webkit-scrollbar-track {
  background: transparent;
}

.faq-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}

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

.product-description-section .descr h1 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 4px;
}

.product-description-section .descr h2 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 4px;
}

.product-description-section .descr hr {
  border-color: #ffffff10;
  margin: 12px 0;
}

.product-description-section .descr p {
  color: #fff;
  line-height: 1.6;
}

.header-login-btn,
.open-basket {
  border-radius: 6px;
}

.category-search-input:focus {
  border-color: #FF3A52;
  background: rgba(255, 58, 82, 0.08);
}

.config-loader-spinner {
  border-top-color: #FF3A52 !important;
}

body.page-index {
  background: #000;
}

@keyframes orBgSpin {
  to { transform: rotate(360deg); }
}

.or-bg-loader {
  position: absolute;
  inset: 0;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.28);
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.or-bg-loader.is-hero {
  inset: auto;
  top: 0;
  left: 0;
  right: 0;
  height: min(860px, 100vh);
}

.or-bg-loader i {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.18);
  border-top-color: #FF3A52;
  animation: orBgSpin 0.75s linear infinite;
  box-sizing: border-box;
}

.or-bg-loader.is-done {
  opacity: 0;
  visibility: hidden;
}

body.page-index .or-hero,
body.page-index .home-featured-products,
body.page-index .or-reviews,
body.page-index .or-why,
body.page-index .or-faq,
body.page-index .or-payments {
  position: relative !important;
}

body.page-index .site {
  gap: 0 !important;
  row-gap: 0 !important;
  column-gap: 0 !important;
  position: relative;
  isolation: isolate;
}

body.page-index .site::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 860px;
  background: #000 url("https://0tick.com/img1.webp") center top / cover no-repeat;
  z-index: 0;
  pointer-events: none;
}

body.page-index .site::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 860px;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.45) 14%, rgba(0, 0, 0, 0.12) 32%, transparent 42%),
    linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.45) 72%, rgba(0, 0, 0, 0.85) 88%, #000 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.22) 42%, transparent 68%);
}

body.page-index .site > * {
  position: relative;
  z-index: 1;
}

body.page-index .site > script {
  position: absolute !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  clip: rect(0, 0, 0, 0);
}

.or-sale-banner,
.site-sale-banner-wrapper.or-sale-banner {
  background: #FF3A52 !important;
  animation: none !important;
  overflow: visible;
  height: auto;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px !important;
  position: relative !important;
  z-index: 5 !important;
  margin: 0 !important;
  max-width: none !important;
  width: 100% !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.or-sale-banner .or-sale-inner,
.or-sale-banner .site-sale-banner-track {
  animation: none !important;
  transform: none !important;
  display: flex;
  width: 100%;
  max-width: 1280px;
  justify-content: center;
}

.or-sale-left {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}

.or-sale-text {
  white-space: normal !important;
  color: #fff !important;
}

.page-index .site-header {
  background: transparent !important;
  border-bottom: none !important;
  backdrop-filter: none !important;
  position: relative !important;
  z-index: 4 !important;
  margin: 0 !important;
  max-width: none !important;
  width: 100% !important;
  padding: 0 !important;
}

.page-index .site-header .header-container {
  max-width: 1280px;
}

.page-index .logo-text-metallic {
  font-family: var(--font-sans);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff !important;
}

.or-login-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  padding: 8px 14px !important;
  border-radius: 999px !important;
  background: rgba(26, 26, 26, 0.72) !important;
  color: #fff !important;
  width: auto !important;
  height: auto !important;
}

.or-hero {
  position: relative !important;
  overflow: hidden;
  margin: 0 !important;
  min-height: 640px;
  display: flex;
  align-items: center;
  padding: 32px var(--content-padding) 80px !important;
  background: transparent !important;
  background-image: none !important;
}

body.page-index .or-hero {
  margin-top: 0 !important;
  padding-top: 24px !important;
}

.or-hero::before {
  content: none;
  display: none;
}

body.page-index .home-featured-products.or-section {
  background: #000 url("https://0tick.com/img3.webp") center top / cover no-repeat !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding: 80px var(--content-padding) 120px !important;
  max-width: none !important;
  width: 100% !important;
  position: relative !important;
  z-index: 1;
  overflow-x: hidden !important;
}

body.page-index .home-featured-products.or-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.75) 8%, rgba(0, 0, 0, 0.25) 18%, transparent 28%),
    linear-gradient(180deg, transparent 70%, rgba(0, 0, 0, 0.35) 82%, rgba(0, 0, 0, 0.8) 92%, #000 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.2) 35%, transparent 55%, rgba(0, 0, 0, 0.25) 100%);
}

body.page-index .home-featured-products.or-section > * {
  position: relative;
  z-index: 1;
}

body.page-index .home-featured-products .or-section-divider,
body.page-index .home-featured-products .or-section-cta {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

body.page-index .home-featured-products .or-products-slider {
  max-width: none;
  width: 100%;
  margin: 0;
  overflow: hidden !important;
}

body.page-index .or-discord-cta,
body.page-index .or-footer,
body.page-index .site-footer {
  background: #000;
}

body.page-index .or-reviews {
  background: #000 url("https://0tick.com/img2.webp") center top / cover no-repeat !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding: 80px var(--content-padding) 100px !important;
  max-width: none !important;
  width: 100% !important;
  position: relative !important;
  z-index: 1;
}

body.page-index .or-reviews::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.7) 10%, rgba(0, 0, 0, 0.2) 22%, transparent 32%),
    linear-gradient(180deg, transparent 68%, rgba(0, 0, 0, 0.3) 80%, rgba(0, 0, 0, 0.75) 90%, #000 100%);
}

body.page-index .or-reviews > * {
  position: relative;
  z-index: 1;
}

body.page-index .or-why {
  background: #000 url("https://0tick.com/img4.webp") center top / cover no-repeat !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding: 80px var(--content-padding) 100px !important;
  max-width: none !important;
  width: 100% !important;
  position: relative !important;
  z-index: 1;
}

body.page-index .or-why::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.7) 10%, rgba(0, 0, 0, 0.2) 22%, transparent 32%),
    linear-gradient(180deg, transparent 68%, rgba(0, 0, 0, 0.3) 80%, rgba(0, 0, 0, 0.75) 90%, #000 100%);
}

body.page-index .or-why > * {
  position: relative;
  z-index: 1;
}

body.page-index .or-faq {
  background: #000 url("https://0tick.com/img5.webp") center top / cover no-repeat !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding: 80px var(--content-padding) 100px !important;
  max-width: none !important;
  width: 100% !important;
  position: relative !important;
  z-index: 1;
}

body.page-index .or-faq::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.7) 10%, rgba(0, 0, 0, 0.2) 22%, transparent 32%),
    linear-gradient(180deg, transparent 68%, rgba(0, 0, 0, 0.3) 80%, rgba(0, 0, 0, 0.75) 90%, #000 100%);
}

body.page-index .or-faq > * {
  position: relative;
  z-index: 1;
}

body.page-index .or-payments {
  background: #000 url("https://0tick.com/img6.webp") center top / cover no-repeat !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding: 80px var(--content-padding) 100px !important;
  max-width: none !important;
  width: 100% !important;
  position: relative !important;
  z-index: 1;
}

body.page-index .or-payments::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.7) 10%, rgba(0, 0, 0, 0.2) 22%, transparent 32%),
    linear-gradient(180deg, transparent 68%, rgba(0, 0, 0, 0.3) 80%, rgba(0, 0, 0, 0.75) 90%, #000 100%);
}

body.page-index .or-payments > * {
  position: relative;
  z-index: 1;
}

body.page-index .or-section:not(.home-featured-products):not(.or-reviews):not(.or-why):not(.or-faq):not(.or-payments) {
  background: #000;
}

.or-hero-grid {
  display: none !important;
}

.or-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: block;
}

.or-hero-copy {
  max-width: 640px;
}

.or-hero-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  color: #fff;
  font-family: var(--font-sans);
}

.or-accent,
.or-split-red {
  color: #FF3A52;
  text-shadow: 0 0 24px rgba(255, 58, 82, 0.35);
}

.or-split-light {
  color: #fff;
  text-shadow: 0 0 18px rgba(255,255,255,0.25);
}

.or-split-muted {
  color: #9a9a9a;
}

.or-hero-subtitle,
.or-section-sub {
  color: #bdbdbd;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 560px;
  margin: 0 0 28px;
}

.or-section-sub {
  margin: 12px auto 0;
  text-align: center;
  max-width: 640px;
}

.or-section-sub strong {
  color: #fff;
}

.or-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.or-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease;
}

.or-btn:hover {
  transform: translateY(-1px);
}

.or-btn-light {
  background: #fff;
  color: #000;
}

.or-btn-red {
  background: #FF3A52;
  color: #fff;
}

.or-btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}

.or-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px var(--content-padding);
}

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

.or-split-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  margin: 0;
  text-align: center;
}

.or-section-divider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
}

.or-section-divider::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255,255,255,0.12);
}

.or-section-pill {
  position: relative;
  z-index: 1;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  background: #0d0d0d;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.or-products-slider {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden !important;
}

.or-products-track-wrap {
  position: relative;
  width: 100%;
  overflow: hidden !important;
  mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

.or-products-track-wrap::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

.or-products-grid,
#products-slider-track.or-products-grid,
#products-slider-track.or-products-track,
.or-products-track {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 0 !important;
  width: max-content !important;
  max-width: none !important;
  overflow: visible !important;
  scroll-snap-type: none !important;
  scroll-behavior: auto !important;
  padding: 8px 0 16px !important;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
  pointer-events: auto;
  will-change: transform;
}

.or-products-set {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 18px;
  padding-right: 18px;
  flex: 0 0 auto;
  width: max-content;
}

#products-slider-track.or-products-marquee {
  animation: none !important;
}

.or-products-track::-webkit-scrollbar,
#products-slider-track::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

.or-slider-btn {
  display: none !important;
}

body.page-index #products-slider-track .featured-product-card.or-product-card,
body.page-index .or-product-card {
  background-color: #1a1a1a !important;
  background-image: radial-gradient(74.31% 154.58% at 50% 50%, rgba(0, 0, 0, 0.31) 0%, rgba(51, 51, 51, 0.31) 100%) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  border-radius: 16px !important;
  padding: 12px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
  width: min(300px, 78vw) !important;
  min-width: min(300px, 78vw) !important;
  max-width: 300px !important;
  flex: 0 0 auto !important;
  scroll-snap-align: center;
  box-shadow: 0 10px 28px rgba(0,0,0,0.35) !important;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden !important;
  isolation: isolate;
}

body.page-index #products-slider-track .or-product-card .featured-product-link {
  height: auto !important;
}

.or-product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,58,82,0.35);
  box-shadow: 0 16px 36px rgba(0,0,0,0.45);
}

.or-product-media,
.or-product-card .featured-product-image {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/11;
  background: #0d0d0d;
}

.or-product-card .featured-product-image img,
.or-product-card .featured-product-image-default {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.or-product-card:hover .featured-product-image img {
  transform: scale(1.04);
}

.or-product-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 6px 6px;
  flex: 1;
}

.or-product-title {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
  min-height: 2.7em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.or-product-badges span,
.or-badge {
  padding: 5px 10px;
  border-radius: 999px;
  background: #1f1f1f;
  border: 1px solid rgba(255,255,255,0.08);
  color: #cfcfcf;
  font-size: 11px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.or-badge i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FF3A52;
  display: inline-block;
}

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

.or-product-price {
  color: #fff;
  font-weight: 800;
  font-size: 18px;
}

.or-product-old {
  color: #888;
  font-size: 13px;
  text-decoration: line-through;
}

.or-product-discount {
  background: #FF3A52;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 7px;
  border-radius: 5px;
}

.or-product-cta {
  width: 100%;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 10px;
  background: #f2f2f2 !important;
  color: #111 !important;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border: none;
  transition: background 0.15s ease, transform 0.15s ease;
}

.or-product-cta:hover {
  background: #fff !important;
  transform: translateY(-1px);
}

.or-section-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.or-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: #111;
  color: #ddd;
  font-size: 13px;
}

.or-stars {
  color: #FF3A52;
  letter-spacing: 1px;
}

.or-reviews-layout {
  max-width: 980px;
  margin: 0;
  margin-right: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

.or-reviews-left {
  min-width: 0;
  width: 100%;
}

.or-reviews-lead {
  margin: 0;
  max-width: 520px;
  text-align: left;
  color: #fff !important;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 500;
}

.or-reviews-lead strong {
  color: #fff !important;
  font-weight: 700;
}

.or-reviews-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 14px 18px;
  width: 100%;
}

.or-reviews-footer .or-split-title {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.05;
  text-transform: uppercase;
  text-align: left;
}

.or-reviews-footer .or-rating-badge {
  margin: 0;
}

@media (max-width: 900px) {
  .or-reviews-layout {
    max-width: 100%;
  }
}

.or-reviews-grid,
.or-reviews .testimonials-slider-track,
#testimonials-slider-track.or-reviews-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  grid-template-rows: repeat(2, minmax(0, auto)) !important;
  gap: 16px !important;
  animation: none !important;
  transform: none !important;
  width: 100% !important;
  max-width: none !important;
  flex-wrap: unset !important;
  flex-direction: unset !important;
}

.or-reviews .or-reviews-grid-wrap,
.or-reviews .testimonials-slider-container {
  overflow: visible !important;
  width: 100% !important;
}

.or-review-card {
  min-width: 0 !important;
  max-width: none !important;
  width: auto !important;
  flex: none !important;
  opacity: 1;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.or-review-card.is-fading {
  opacity: 0;
  transform: translateY(8px);
}

.or-review-card.is-appearing {
  animation: orReviewFadeIn 0.42s ease;
}

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

.or-review-inner {
  background: radial-gradient(74.31% 154.58% at 50% 50%, rgba(0, 0, 0, 0.31) 0%, rgba(51, 51, 51, 0.31) 100%), #1a1a1a !important;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 18px;
  height: 100%;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  backdrop-filter: none !important;
}

.or-review-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.or-review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1f1f1f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
}

.or-review-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.or-review-date {
  color: #888;
  font-size: 12px;
}

.or-review-inner .testimonial-text {
  color: #bdbdbd !important;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.or-review-product {
  margin-top: auto;
  padding: 8px 12px;
  border-radius: 999px;
  background: #1a1a1a;
  color: #ddd;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}

.or-why-layout {
  max-width: 720px;
  width: 100%;
  margin: 0 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.or-why-lead {
  margin: 0;
  max-width: 520px;
  text-align: center;
  color: #fff !important;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 500;
}

.or-why-lead strong {
  color: #fff !important;
  font-weight: 700;
}

.or-why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
}

.or-why-title {
  margin: 0;
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.05;
  text-transform: uppercase;
  color: #fff;
}

.or-why-title .or-split-light,
.or-why-title .or-split-muted {
  color: #fff !important;
}

.or-why-card {
  background: radial-gradient(74.31% 154.58% at 50% 50%, rgba(0, 0, 0, 0.31) 0%, rgba(51, 51, 51, 0.31) 100%), #1a1a1a;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 28px;
}

.or-why-card-glow {
  background:
    radial-gradient(circle at top left, rgba(255,58,82,0.18), transparent 45%),
    radial-gradient(74.31% 154.58% at 50% 50%, rgba(0, 0, 0, 0.31) 0%, rgba(51, 51, 51, 0.31) 100%),
    #1a1a1a;
}

.or-why-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 14px;
  color: #FF3A52;
}

.or-why-card h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 1.15rem;
}

.or-why-card p {
  color: #bdbdbd;
  margin: 0 0 14px;
  line-height: 1.55;
}

.or-why-card a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 900px) {
  .or-why-layout {
    max-width: 100%;
    margin: 0 auto;
  }
}

.or-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  text-align: center;
}

.or-stat strong {
  display: block;
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

.or-stat span {
  color: #9a9a9a;
  font-weight: 600;
}

.or-stat-accent strong,
.or-stat-accent span {
  color: #FF3A52;
}

.or-faq-layout {
  max-width: 640px;
  width: 100%;
  margin: 0;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.or-faq-lead {
  margin: 0;
  max-width: 520px;
  text-align: center;
  color: #fff !important;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 500;
}

.or-faq-lead strong {
  color: #fff !important;
  font-weight: 700;
}

.or-faq-shell {
  width: 100%;
  background: radial-gradient(74.31% 154.58% at 50% 50%, rgba(0, 0, 0, 0.31) 0%, rgba(51, 51, 51, 0.31) 100%), #1a1a1a;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 18px;
}

.or-faq-title {
  margin: 0;
  text-align: center;
  font-size: clamp(1.5rem, 2.6vw, 2.4rem);
  line-height: 1.05;
  text-transform: uppercase;
  color: #fff;
}

.or-faq-title .or-split-light {
  color: #fff !important;
}

.or-faq .faq-item {
  background: #171717 !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  border-radius: 12px !important;
  margin-bottom: 10px;
}

@media (max-width: 900px) {
  .or-faq-layout {
    max-width: 100%;
  }
}

.or-payments-layout {
  width: 100%;
  max-width: none;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
}

.or-payments-top {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 22px;
  width: 240px;
  flex: 0 0 240px;
  background: radial-gradient(74.31% 154.58% at 50% 50%, rgba(0, 0, 0, 0.31) 0%, rgba(51, 51, 51, 0.31) 100%), #1a1a1a;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  min-height: 320px;
  justify-content: center;
  margin-right: auto;
}

.or-payments-top .recent-payments-top-title {
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
}

.or-payments-top .top-buyer-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #222;
  border: 2px solid rgba(255,255,255,0.12);
  background-size: cover;
  background-position: center;
}

.or-payments-top .top-buyer-name {
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
  word-break: break-word;
}

.or-payments-top .top-buyer-amount {
  color: #FF3A52;
  font-weight: 700;
  font-size: 1rem;
}

.or-payments-top .top-buyer-product {
  color: #bdbdbd;
  font-size: 0.8rem;
  text-align: center;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.or-payments-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: min(720px, 58vw);
  flex: 0 0 auto;
  margin-left: auto;
}

.or-payments-shell {
  width: 100%;
  padding: 16px;
  border-radius: 18px;
  background: radial-gradient(74.31% 154.58% at 50% 50%, rgba(0, 0, 0, 0.35) 0%, rgba(51, 51, 51, 0.35) 100%), rgba(18, 18, 18, 0.92);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}

.or-payments-lead {
  margin: 0;
  max-width: 100%;
  text-align: center;
  color: #fff !important;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 500;
}

.or-payments-title {
  margin: 0;
  text-align: center;
  font-size: clamp(1.4rem, 2.4vw, 2.2rem);
  line-height: 1.05;
  text-transform: uppercase;
  color: #fff;
}

.or-payments-title .or-split-light {
  color: #fff !important;
}

body.page-index .or-payments-grid,
body.page-index .or-payments .recent-payments-grid,
body.page-index #recent-payments-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  grid-template-rows: repeat(3, minmax(0, auto)) !important;
  gap: 10px !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  animation: none !important;
  transform: none !important;
  flex: none !important;
}

body.page-index .or-payments .or-payment-card,
body.page-index .or-payments .recent-payment-cell {
  background: radial-gradient(74.31% 154.58% at 50% 50%, rgba(0, 0, 0, 0.31) 0%, rgba(51, 51, 51, 0.31) 100%), #1a1a1a !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 12px !important;
  padding: 12px 14px !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 10px !important;
  min-width: 0 !important;
  min-height: 68px !important;
  height: auto !important;
  box-sizing: border-box !important;
}

body.page-index .or-payments .or-payment-avatar,
body.page-index .or-payments .recent-payment-cell-avatar {
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  border-radius: 50% !important;
  background-color: #222 !important;
  background-size: cover !important;
  background-position: center !important;
  flex: 0 0 36px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-weight: 700 !important;
  color: #fff !important;
  font-size: 13px !important;
}

body.page-index .or-payments .recent-payment-cell-info {
  min-width: 0;
  flex: 1 1 auto;
  overflow: hidden;
}

body.page-index .or-payments .recent-payment-cell-name {
  color: #fff !important;
  font-weight: 600 !important;
  font-size: 12px !important;
  display: block !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

body.page-index .or-payments .recent-payment-cell-product {
  color: #999 !important;
  font-size: 11px !important;
  display: block !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: none !important;
}

body.page-index .or-payments .or-payment-amount {
  margin-left: auto !important;
  color: #FF3A52 !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  white-space: nowrap !important;
  flex: 0 0 auto !important;
}

@media (max-width: 900px) {
  .or-payments-layout {
    flex-direction: column;
    align-items: stretch;
  }
  .or-payments-top {
    width: 100%;
    flex: none;
    min-height: 0;
    margin: 0;
  }
  .or-payments-right {
    width: 100%;
    margin: 0;
  }
}

.or-discord-banner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, #141414, #0d0d0d);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 36px;
}

.or-discord-blue {
  color: #5865F2;
}

.or-discord-copy h2 {
  margin: 0 0 12px;
  font-size: 2rem;
  color: #fff;
}

.or-discord-copy p {
  color: #bdbdbd;
  margin: 0 0 20px;
}

.or-discord-visual {
  display: flex;
  justify-content: center;
}

.or-discord-visual img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(88,101,242,0.35));
}

.or-footer {
  background: #0d0d0d;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px var(--content-padding) 24px;
}

.or-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 32px;
  padding: 0 !important;
}

.or-footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  margin-bottom: 8px;
}

.or-footer-powered,
.or-footer-copy {
  color: #888;
  font-size: 12px;
}

.or-footer-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.or-footer-col h4 {
  color: #fff;
  margin: 0 0 12px;
  font-size: 14px;
}

.or-footer-col a {
  color: #aaa;
  text-decoration: none;
  font-size: 13px;
}

.or-footer-col li {
  margin-bottom: 8px;
  list-style: none;
}

.or-footer-col ul {
  margin: 0;
  padding: 0;
}

.or-footer-payments {
  display: flex;
  gap: 8px;
  position: static !important;
}

.or-footer-copy {
  max-width: 1280px;
  margin: 28px auto 0;
  text-align: left;
}

.page-index .home-featured-products .products-slider-container,
.page-index .testimonials-slider-container {
  overflow: visible !important;
}

@media (max-width: 1100px) {
  .or-discord-banner,
  .or-footer-inner {
    grid-template-columns: 1fr;
  }
  .or-products-grid,
  #products-slider-track.or-products-grid,
  #products-slider-track.or-products-track {
    grid-template-columns: none;
  }
  .or-slider-btn {
    display: none;
  }
}

@media (max-width: 700px) {
  .or-stats,
  .or-footer-cols {
    grid-template-columns: 1fr;
  }
}

body.page-category {
  background: #000;
}

body.page-category .site {
  gap: 0 !important;
  background: #000;
}

body.page-category .site-header {
  background: rgba(10, 10, 10, 0.92) !important;
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

body.page-category .site-content.or-category {
  max-width: none !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

body.page-category .or-cat-main {
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 0 80px !important;
  background: #000;
}

.or-cat-hero {
  position: relative;
  text-align: center;
  padding: 56px var(--content-padding) 40px;
  margin: 0 0 28px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,58,82,0.12), transparent 55%),
    linear-gradient(180deg, #0a0a0a 0%, #000 100%);
}

.or-cat-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 90%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 90%);
}

.or-cat-title {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: none;
}

.or-cat-title-light {
  color: #fff;
}

.or-cat-title-accent {
  color: #FF3A52;
}

.or-cat-hero-desc {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto 28px;
  color: #a8a8a8 !important;
  font-size: 15px;
  line-height: 1.55;
}

.or-cat-hero-desc p,
.or-cat-hero-desc * {
  color: #a8a8a8 !important;
}

.or-cat-search {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto 18px;
}

.or-cat-search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  pointer-events: none;
}

.or-cat-search-input,
body.page-category .category-search-input {
  width: 100%;
  padding: 16px 20px 16px 48px !important;
  background: #141414 !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 999px !important;
  color: #fff !important;
  font-size: 15px !important;
  outline: none;
}

.or-cat-search-input:focus,
body.page-category .category-search-input:focus {
  border-color: rgba(255,58,82,0.45) !important;
  background: #181818 !important;
}

.or-cat-chips {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.or-cat-chip {
  appearance: none;
  border: 1px solid rgba(255,255,255,0.12);
  background: #141414;
  color: #ddd;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.or-cat-chip:hover,
.or-cat-chip.is-active {
  border-color: rgba(255,58,82,0.55);
  background: rgba(255,58,82,0.12);
  color: #fff;
}

body.page-category .or-cat-grid,
body.page-category #category-products-container.or-cat-grid,
body.page-category .store-products-list.or-cat-grid,
body.page-category .store-products-images.or-cat-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 22px !important;
  max-width: 1280px;
  margin: 0 auto !important;
  padding: 0 var(--content-padding) !important;
  width: 100%;
  box-sizing: border-box;
}

body.page-category .or-cat-card.store-product {
  background: radial-gradient(74.31% 154.58% at 50% 50%, rgba(0, 0, 0, 0.31) 0%, rgba(51, 51, 51, 0.31) 100%), #1a1a1a !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 16px !important;
  box-shadow: 0 10px 28px rgba(0,0,0,0.35) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  padding: 12px !important;
  gap: 0 !important;
  min-width: 0 !important;
}

body.page-category .or-cat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,58,82,0.3) !important;
}

body.page-category .or-cat-card .product-image-wrapper {
  width: 100% !important;
  aspect-ratio: 16 / 10 !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  margin: 0 !important;
  background: #0d0d0d !important;
}

body.page-category .or-cat-card .product-image-wrapper .image,
body.page-category .or-cat-card .product-image-wrapper img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 12px !important;
}

body.page-category .or-cat-card .or-cat-body,
body.page-category .or-cat-card .product-content {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  padding: 14px 6px 6px !important;
  flex: 1 !important;
  text-align: left !important;
}

body.page-category .or-cat-card .product-title,
body.page-category .or-cat-card .product-title-wrapper,
body.page-category .or-cat-card .product-title-text {
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
  margin: 0 !important;
  white-space: normal !important;
  animation: none !important;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

body.page-category .or-cat-card .product-title-wrapper.marquee .product-title-text {
  animation: none !important;
  transform: none !important;
}

body.page-category .or-cat-desc {
  color: #9a9a9a !important;
  font-size: 13px !important;
  line-height: 1.45 !important;
  margin: 0 !important;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: 4.4em;
}

body.page-category .or-cat-desc * {
  color: inherit !important;
  font-size: inherit !important;
  margin: 0 !important;
  padding: 0 !important;
  display: inline !important;
}

body.page-category .or-cat-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

body.page-category .or-cat-badge {
  padding: 5px 10px;
  border-radius: 999px;
  background: #1f1f1f;
  border: 1px solid rgba(255,255,255,0.08);
  color: #cfcfcf;
  font-size: 11px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

body.page-category .or-cat-badge i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FF3A52;
  display: inline-block;
}

body.page-category .or-cat-actions {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  margin-top: auto !important;
  width: 100% !important;
}

body.page-category .or-cat-price-row,
body.page-category .or-cat-price {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  background: transparent !important;
}

body.page-category .or-cat-card .current-price {
  color: #fff !important;
  font-weight: 800 !important;
  font-size: 18px !important;
}

body.page-category .or-cat-old,
body.page-category .or-cat-card del.discount {
  color: #888 !important;
  font-size: 13px !important;
  text-decoration: line-through !important;
}

body.page-category .or-cat-discount {
  background: #FF3A52;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
}

body.page-category .or-cat-cta {
  width: 100% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 46px !important;
  height: auto !important;
  padding: 12px 16px !important;
  border-radius: 999px !important;
  background: #fff !important;
  color: #000 !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  border: none !important;
  box-shadow: none !important;
  margin: 0 !important;
}

body.page-category .or-cat-cta svg {
  display: none !important;
}

body.page-category .or-cat-cta:hover {
  background: #f2f2f2 !important;
  color: #000 !important;
  transform: translateY(-1px);
}

body.page-category .or-cat-cta-added {
  background: #4caf50 !important;
  color: #fff !important;
}

body.page-category .or-cat-subscribe {
  width: 100%;
  border-radius: 999px !important;
}

body.page-category .no-products,
body.page-category .no-products-search {
  text-align: center;
  padding: 40px 20px;
  color: #aaa;
  max-width: 1280px;
  margin: 0 auto;
}

@media (max-width: 1100px) {
  body.page-category .or-cat-grid,
  body.page-category #category-products-container.or-cat-grid,
  body.page-category .store-products-list.or-cat-grid,
  body.page-category .store-products-images.or-cat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 700px) {
  body.page-category .or-cat-grid,
  body.page-category #category-products-container.or-cat-grid,
  body.page-category .store-products-list.or-cat-grid,
  body.page-category .store-products-images.or-cat-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .or-cat-hero {
    padding: 36px var(--content-padding) 28px;
  }
}

body.page-package {
  background: #000;
}

body.page-package .site {
  gap: 0 !important;
  background: #000;
}

body.page-package .site-header {
  background: rgba(10, 10, 10, 0.92) !important;
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

body.page-package .or-package-page {
  max-width: none !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

body.page-package .or-pkg-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 36px var(--content-padding) 72px;
  box-sizing: border-box;
}

body.page-package .or-pkg-back {
  display: inline-flex;
  align-items: center;
  color: #999;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 28px;
  transition: color 0.2s;
}

body.page-package .or-pkg-back:hover {
  color: #fff;
}

body.page-package .or-pkg-layout,
body.page-package .store-product-full .or-pkg-layout.product-page-layout {
  display: grid !important;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr) !important;
  gap: 40px !important;
  align-items: start !important;
  max-height: none !important;
  height: auto !important;
  width: 100% !important;
  flex-direction: unset !important;
  flex-wrap: unset !important;
}

body.page-package .or-pkg-media,
body.page-package .store-product-full .or-pkg-media.product-media-section {
  flex: none !important;
  width: auto !important;
  max-width: 100% !important;
  min-width: 0 !important;
  max-height: none !important;
}

body.page-package .or-pkg-side,
body.page-package .store-product-full .or-pkg-side.product-info-section {
  flex: none !important;
  width: auto !important;
  max-width: 100% !important;
  min-width: 0 !important;
  max-height: none !important;
  overflow: hidden !important;
  gap: 10px !important;
}

body.page-package .or-pkg-media .image,
body.page-package .or-pkg-media .media-slider,
body.page-package .or-pkg-media .image-default {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
}

body.page-package .or-pkg-media .image,
body.page-package .or-pkg-media .slide-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

body.page-package .or-pkg-card {
  background: radial-gradient(74% 155% at 50% 0%, rgba(255,255,255,0.06) 0%, rgba(0,0,0,0.45) 100%), #141414;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 12px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

body.page-package .or-pkg-title {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}

body.page-package .or-pkg-badges {
  margin-bottom: 16px;
}

body.page-package .or-pkg-price-row,
body.page-package .or-pkg-price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
}

body.page-package .or-pkg-price .current-price {
  color: #fff;
  font-weight: 800;
  font-size: 28px;
}

body.page-package .or-pkg-price del.discount,
body.page-package .or-pkg-price .or-cat-old {
  color: #777;
  font-size: 15px;
}

body.page-package .or-pkg-actions,
body.page-package .store-product-full .or-pkg-actions.actions {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  position: relative !important;
  bottom: auto !important;
  background: transparent !important;
  backdrop-filter: none !important;
  box-sizing: border-box !important;
}

body.page-package .or-pkg-cta,
body.page-package .or-pkg-cta-added,
body.page-package .store-product-full .or-pkg-actions .btn-cart-icon {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  height: auto !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 52px !important;
  padding: 14px 20px !important;
  border-radius: 999px !important;
  background: #fff !important;
  color: #000 !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  text-decoration: none !important;
  border: none !important;
  cursor: pointer !important;
  box-sizing: border-box !important;
  flex-shrink: 1 !important;
  transform: none !important;
}

body.page-package .or-pkg-cta svg,
body.page-package .or-pkg-actions .btn-cart-icon svg {
  display: none !important;
}

body.page-package .or-pkg-cta.added,
body.page-package .or-pkg-cta-added {
  color: #fff !important;
}

body.page-package .or-pkg-subscribe,
body.page-package .or-pkg-gift {
  width: 100%;
  border-radius: 999px;
}

body.page-package .or-pkg-trust {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: #888;
  font-size: 12px;
  line-height: 1.4;
}

body.page-package .or-pkg-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  min-height: 56px;
  padding: 0 20px;
  margin: 0 0 10px !important;
  border-radius: 14px;
  background: #141414;
  border: 1px solid rgba(255,255,255,0.1);
  box-sizing: border-box;
  color: #fff;
  text-decoration: none;
}

body.page-package .or-pkg-row-link:hover {
  border-color: rgba(255,255,255,0.2);
  background: #1a1a1a;
}

body.page-package .or-pkg-row-label {
  font-weight: 600;
  font-size: 15px;
}

body.page-package .or-pkg-row-icons {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #aaa;
}

body.page-package .or-pkg-desc {
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
}

body.page-package .or-pkg-desc-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 56px;
  padding: 0 20px;
  background: transparent;
  border: none;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  box-sizing: border-box;
}

body.page-package .or-pkg-chevron {
  transition: transform 0.25s;
  color: #aaa;
}

body.page-package .or-pkg-desc.is-open .or-pkg-chevron {
  transform: rotate(180deg);
}

body.page-package .or-pkg-desc-body {
  display: none;
  padding: 0 20px 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

body.page-package .or-pkg-desc.is-open .or-pkg-desc-body {
  display: block;
}

body.page-package .or-pkg-desc-body .descr {
  color: #ccc;
  font-size: 14px;
  line-height: 1.65;
  padding-top: 16px;
}

body.page-package .or-pkg-desc-body .descr strong {
  color: #fff;
}

body.page-package .or-payments,
body.page-package .or-reviews,
body.page-package .or-discord-cta {
  position: relative !important;
}

body.page-package .or-payments {
  background: #000 url("https://0tick.com/img6.webp") center top / cover no-repeat !important;
  margin: 0 !important;
  padding: 80px var(--content-padding) 100px !important;
  max-width: none !important;
  width: 100% !important;
}

body.page-package .or-payments::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.7) 10%, rgba(0, 0, 0, 0.2) 22%, transparent 32%),
    linear-gradient(180deg, transparent 68%, rgba(0, 0, 0, 0.3) 80%, rgba(0, 0, 0, 0.75) 90%, #000 100%);
}

body.page-package .or-payments > * {
  position: relative;
  z-index: 1;
}

body.page-package .or-reviews {
  background: #000 url("https://0tick.com/img2.webp") center top / cover no-repeat !important;
  margin: 0 !important;
  padding: 80px var(--content-padding) 100px !important;
  max-width: none !important;
  width: 100% !important;
}

body.page-package .or-reviews::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.7) 10%, rgba(0, 0, 0, 0.2) 22%, transparent 32%),
    linear-gradient(180deg, transparent 68%, rgba(0, 0, 0, 0.3) 80%, rgba(0, 0, 0, 0.75) 90%, #000 100%);
}

body.page-package .or-reviews > * {
  position: relative;
  z-index: 1;
}

body.page-package .or-discord-cta {
  background: #000;
  margin: 0 !important;
  padding: 0 var(--content-padding) 80px !important;
  max-width: none !important;
  width: 100% !important;
}

body.page-package .or-payments-grid,
body.page-package .or-payments .recent-payments-grid,
body.page-package #recent-payments-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  grid-template-rows: repeat(3, minmax(0, auto)) !important;
  gap: 10px !important;
  width: 100% !important;
  animation: none !important;
  transform: none !important;
}

body.page-package .or-payments .or-payment-card,
body.page-package .or-payments .recent-payment-cell {
  background: radial-gradient(74.31% 154.58% at 50% 50%, rgba(0, 0, 0, 0.31) 0%, rgba(51, 51, 51, 0.31) 100%), #1a1a1a !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 12px !important;
  padding: 12px 14px !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 10px !important;
  min-height: 68px !important;
}

body.page-package .or-payments .or-payment-avatar,
body.page-package .or-payments .recent-payment-cell-avatar {
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  border-radius: 50% !important;
  background-color: #222 !important;
  background-size: cover !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-weight: 700 !important;
  color: #fff !important;
  font-size: 13px !important;
}

body.page-package .or-payments .or-payment-amount {
  color: #FF3A52;
  font-weight: 700;
  font-size: 12px;
  white-space: nowrap;
  flex: 0 0 auto;
}

@media (max-width: 960px) {
  body.page-package .or-pkg-layout,
  body.page-package .store-product-full .or-pkg-layout.product-page-layout {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  body.page-package .or-pkg-main {
    padding-top: 24px;
  }
}

@media (max-width: 700px) {
  body.page-package .or-payments-grid,
  body.page-package #recent-payments-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-template-rows: auto !important;
  }
}

.or-logout-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

.or-logout-modal[hidden] {
  display: none !important;
}

.or-logout-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.or-logout-dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  padding: 36px 28px 28px;
  border-radius: 20px;
  background: radial-gradient(120% 100% at 50% 0%, rgba(255, 58, 82, 0.14) 0%, transparent 55%), #121212;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.6);
  text-align: center;
  color: #fff;
  box-sizing: border-box;
}

.or-logout-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.or-logout-close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.or-logout-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 58, 82, 0.12);
  border: 1px solid rgba(255, 58, 82, 0.35);
  color: #FF3A52;
  font-size: 1.65rem;
  box-shadow: 0 0 28px rgba(255, 58, 82, 0.18);
}

.or-logout-title {
  margin: 0 0 10px;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.or-logout-text {
  margin: 0 0 26px;
  font-size: 0.95rem;
  color: #a8a8a8;
  line-height: 1.55;
}

.or-logout-actions {
  display: flex;
  gap: 12px;
}

.or-logout-cancel,
.or-logout-confirm {
  flex: 1;
  min-height: 50px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  font-family: var(--font-sans);
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.or-logout-cancel i,
.or-logout-confirm i {
  font-size: 0.85rem;
}

.or-logout-cancel {
  background: #1a1a1a;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.or-logout-cancel:hover {
  background: #242424;
}

.or-logout-confirm {
  background: #FF3A52;
  color: #fff;
  box-shadow: 0 8px 22px rgba(255, 58, 82, 0.28);
}

.or-logout-confirm:hover {
  background: #e62e45;
}
